/* CSS Document */
.containerFlex {
    display: flex;
    max-width: 100%;
    justify-content: space-between;
    margin: 0 auto;
}

.asideCont {
    margin-right: 20px;
    width: 25%;
    max-width: 310px;
}

.contactCard {
    border: 1px solid #00d1ff;
    border-radius: 6px;
    background-color: transparent;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-image: linear-gradient(48deg, #030303 75%, #00D1FFA6 100%);
}

.contactInfors img {
    display: block;
    width: 100%;
}

.contactInfors p {
    gap: 10px;
    display: flex;
    font-size: 14px;
    color: #ffffffcc;
    margin: 0px;
}

.wd-icon svg {
    fill: #ffffff;
    width: 4px;
}

.contactCard h2 {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.contactInfors h3 {
    text-align: center;
    color: #ffffff;
    font-weight: bold;
        font-size: 22px;
}

.asideUser img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.asideUser {
    margin-bottom: 15px;
}

.asideStar {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.asideStar svg {
    width: 15px;
    height: 15px;
}

.asideSwiper {
    position: relative;
}

.asideSwiper p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: #ffffffcc;
}

.asideSwiper span {
    display: block;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    margin-top: 15px;
    font-size: 16px;
}

.asideSwiper .swiper-button-prev,
.asideSwiper .swiper-button-next {
    color: #000000;
}

.asideSwiper .swiper-button-prev:hover,
.asideSwiper .swiper-button-next:hover {
    color: #ffffffcc;
}

.asideSwiper .swiper-button-prev:after,
.asideSwiper .swiper-button-next::after {
    font-size: 30px;
}

.asideSwiper .swiper-button-prev {
    visibility: hidden;
    opacity: 0;
    transition: all .4s;
    left: -60px;
}

.contactCard:hover .swiper-button-prev {
    visibility: visible;
    opacity: 1;
    left: -35px;
}

.asideSwiper .swiper-button-next {
    visibility: hidden;
    opacity: 0;
    transition: all .4s;
    right: -60px;
}

.contactCard:hover .swiper-button-next {
    visibility: visible;
    opacity: 1;
    right: -35px;
}

.asideFaq li h2 {
    cursor: pointer;
    padding: 15px;
    background: #09242A;
    border-bottom: 1px solid #114551;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.asideFaq li h2 .asideControlBtn {
    width: 16px;
}

.asideControlBtn span:nth-child(1) svg {
    fill: #ffffff9e
}

.asideControlBtn span:nth-child(2) svg {
    fill: #ffffff
}

.asideControlBtn span:nth-child(2) {
    display: none;
}

.asideFaq li.cur .asideControlBtn span:nth-child(1) {
    display: none;
}

.asideFaq li.cur .asideControlBtn span:nth-child(2) {
    display: block;
}

.asideFaq li h2 p {
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.2;
    margin: 0px;
}

.questionSub {
    display: none;
    padding: 10px 0;
    font-size: 14px;
    color: #ffffff;
    line-height: 2;
}

.contactCard {
    margin-bottom: 20px;
}

.contactCard:last-child {
    margin-bottom: 0;
}

.contactInfors {
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rightContainer {
    padding: 0px;
    box-sizing: border-box;
    flex: 1;
}

@media screen and (max-width:1200px) {}

@media screen and (max-width:780px) {
    .containerFlex {
        flex-direction: column-reverse;
    }

    .rightContainer {
        margin-bottom: 20px;
        width: 100%;
    }

    .asideCont {
        width: 100%;
        margin: 0;
        max-width: none;
    }
}

.asideFaq ul {
    list-style: none;
    margin-left: 0px;
    padding-left: 0px;
}

.asideCont {

    padding: 40px 12px 0;
}