@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/font/PlusJakartaSans-Bold.eot');
    src: url('../fonts/font/PlusJakartaSans-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/font/PlusJakartaSans-Bold.woff2') format('woff2'),
    url('../fonts/font/PlusJakartaSans-Bold.woff') format('woff'),
    url('../fonts/font/PlusJakartaSans-Bold.ttf') format('truetype'),
    url('../fonts/font/PlusJakartaSans-Bold.svg#PlusJakartaSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/font/PlusJakartaSans-ExtraBold.eot');
    src: url('../fonts/font/PlusJakartaSans-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/font/PlusJakartaSans-ExtraBold.woff2') format('woff2'),
    url('../fonts/font/PlusJakartaSans-ExtraBold.woff') format('woff'),
    url('../fonts/font/PlusJakartaSans-ExtraBold.ttf') format('truetype'),
    url('../fonts/font/PlusJakartaSans-ExtraBold.svg#PlusJakartaSans-ExtraBold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/font/PlusJakartaSans-Medium.eot');
    src: url('../fonts/font/PlusJakartaSans-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/font/PlusJakartaSans-Medium.woff2') format('woff2'),
    url('../fonts/font/PlusJakartaSans-Medium.woff') format('woff'),
    url('../fonts/font/PlusJakartaSans-Medium.ttf') format('truetype'),
    url('../fonts/font/PlusJakartaSans-Medium.svg#PlusJakartaSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/font/PlusJakartaSans-Regular.eot');
    src: url('../fonts/font/PlusJakartaSans-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/font/PlusJakartaSans-Regular.woff2') format('woff2'),
    url('../fonts/font/PlusJakartaSans-Regular.woff') format('woff'),
    url('../fonts/font/PlusJakartaSans-Regular.ttf') format('truetype'),
    url('../fonts/font/PlusJakartaSans-Regular.svg#PlusJakartaSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/font/PlusJakartaSans-SemiBold.eot');
    src: url('../fonts/font/PlusJakartaSans-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/font/PlusJakartaSans-SemiBold.woff2') format('woff2'),
    url('../fonts/font/PlusJakartaSans-SemiBold.woff') format('woff'),
    url('../fonts/font/PlusJakartaSans-SemiBold.ttf') format('truetype'),
    url('../fonts/font/PlusJakartaSans-SemiBold.svg#PlusJakartaSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


* {
    font-family: "", sans-serif;
    outline: none !important;
}

html, body {
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    min-height: 100vh;
    background: var(--color-white);
    color: var(--color-secondary);
}

ul, li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}


/*---------------------header-----------------------*/
header {
    margin: 18px auto 24px auto;
    padding: 12px 0;
    background: var(--color-white);
    z-index: 1000;
}

header .nav-link {
    font-weight: 500;
    position: relative;
    padding-right: 12px !important;
    padding-left: 12px !important;
    display: block;
}

header .nav-link.active {
    font-weight: 600;
}

header .nav-link.active:after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background-color: var(--color-primary);
    box-shadow: 0 0 14px #FFC107;
    position: absolute;
    bottom: -4px;
    right: calc(50% - 3px);
}

@media only screen and (max-width: 1200px) {
    header .nav-link.active:after {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 100%;
        background-color: var(--color-primary);
        box-shadow: 0 0 14px #FFC107;
        position: absolute;
        bottom: calc(50% - 3px);
        right: 0;
    }
}

/*-------------------------main-----------------------*/
.HeroBox {
    background-image: url("../img/heroBg.png");
    width: 100%;
    border-radius: 20px;
    height: 90vh;
    max-height: 750px;
    min-height: 550px;
    background-size: cover;
    background-position: right;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 32px;
}

.HeroBox > * {
    z-index: 2;
    position: relative;
}

.HeroBox:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.HeroBox:before {
    content: "";
    width: 100%;
    height: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 45%);
    z-index: 1;
}

.HeroBox .title {
    color: var(--color-white);
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.HeroBox .subtitle {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}

.HeroBox .searchBox {
    position: relative;
}

.HeroBox .searchBox .form-control {
    border-radius: 32px;
    border: 5px solid rgba(255, 255, 255, 0.10);
    padding-left: 48px;
}

.HeroBox .searchBox .icon {
    position: absolute;
    left: 16px;
    top: 16px;
}

.HeroBox .items {
    text-align: center;
    display: flex;
    align-items: center;
}

.HeroBox .items .item {
    margin: 0 22px;
}

.HeroBox .items .item .title span {
    color: var(--color-primary);
}

.HeroBox .items .item .title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.HeroBox .items .item .subtitle {
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
}

.brands {
    margin: 36px auto;
    position: relative;
}

.brands .owl-carousel .owl-item img {
    opacity: 0.2 !important;
    transition: all 0.3s;
}

.brands .owl-carousel .owl-item img:hover {
    opacity: 0.8 !important;
    cursor: pointer;
}

.brands:after {
    content: "";
    height: 100%;
    width: 300px;
    left: 0;
    top: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, var(--color-white) 100%);
    position: absolute;
    z-index: 1000;
}

.brands:before {
    content: "";
    height: 100%;
    width: 300px;
    right: 0;
    top: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.00) 0%, var(--color-white) 100%);
    position: absolute;
    z-index: 1000;
}

@media only screen and (max-width: 992px) {
    .HeroBox {
        padding: 28px;
    }

    .HeroBox .title {
        font-size: 30px;
    }

    .HeroBox .subtitle {
        font-size: 14px;
    }

    .HeroBox {
        max-height: 520px;
    }

    .HeroBox .btn {
        font-size: 12px;
    }

    .HeroBox .btn {
        padding: 12px 16px;
    }

    .HeroBox .btn img {
        width: 18px;
    }

    .HeroBox .items .item {
        margin: 0 10px;
    }

    .HeroBox .items .item .title {
        font-size: 16px;
    }

    .HeroBox .items .item .subtitle {
        font-size: 10px;
    }

    .brands:after {
        width: 150px;
    }

    .brands:before {
        width: 150px;
    }
}

.sectionTitle {
    margin: 40px auto;
    padding: 5px 15px;
}

.sectionTitle .title {
    color: var(--color-black);
    font-size: 32px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    margin-bottom: 24px;
}

.sectionTitle .subtitle {
    color: #404040;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    max-width: 575px;
    margin: 0 auto;
}

@media only screen and (max-width: 992px) {

    .sectionTitle .title {
        color: var(--color-black);
        font-size: 20px;
        line-height: 24px;
    }

    .sectionTitle .subtitle {
        font-size: 12px;
    }
}

.service {
    position: relative;
    overflow: hidden;
}

.service:before {
    content: "";
    background-image: url("../img/Vector1.svg");
    position: absolute;
    left: 0%;
    top: 2%;
    width: 100%;
    height: 100%;
    background-size: contain;
    max-height: 200px;
    background-position: -5%;
    background-repeat: no-repeat;
    z-index: 1;
}

.service:after {
    content: "";
    background-image: url("../img/Vector2.svg");
    position: absolute;
    right: -55px;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    max-height: 200px;
    background-position: right;
    background-repeat: no-repeat;
    z-index: 1;
}

.service .serviceCard {
    border-radius: 16px;
    border: 1px solid rgba(33, 37, 41, 0.15);
    padding: 16px;
    transition: all 0.2s;
    margin: 16px auto;
    position: relative;
    z-index: 5;
    background-color: var(--color-white);
    max-width: 275px;
}

.service .serviceCard .icon {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.2s;
}

.service .serviceCard .title {
    color: var(--color-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    transition: all 0.2s;
}

.service .serviceCard .text {
    color: #616161;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
    transition: all 0.2s;
    max-height: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.service .serviceCard .link {
    color: var(--color-secondary);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px
}

.service .serviceCard:hover {
    background: #FAA92F;
    box-shadow: 0 0 70px 0 rgba(255, 193, 7, 0.20);
}

.service .serviceCard:hover .title, .service .serviceCard:hover .text {
    color: #333;
}

.service .serviceCard:hover .icon {
    background: var(--color-black);
}

.service .serviceCard:hover .icon img {
    filter: invert(71%) sepia(91%) saturate(801%) hue-rotate(334deg) brightness(99%) contrast(98%);
}

.cta .ctaBox {
    padding: 8px 0 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.cta .title {
    color: var(--color-black);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    padding-left: 8px;
    border-left: 2px solid var(--color-black);
}

.cta .text {
    color: #616161;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.cta .link {
    color: var(--color-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding-left: 0;
    transition: all 0.3s;
}

.cta .link:hover {
    padding-left: 5px;
}

@media only screen and (max-width: 1200px) {
    .cta {
        background: #F7F7F7;
    }
}

.arrivals {
    position: relative;
    overflow: hidden;
}

.arrivals:before {
    content: "";
    background-image: url("../img/Vector3.svg");
    position: absolute;
    left: 0;
    top: 5%;
    width: 100%;
    height: 100%;
    background-size: contain;
    max-height: 200px;
    background-position: 0;
    background-repeat: no-repeat;
    z-index: 1;
}

.arrivals:after {
    content: "";
    background-image: url("../img/Vector4.svg");
    position: absolute;
    right: 0;
    bottom: 50px;
    width: 100%;
    height: 100%;
    background-size: contain;
    max-height: 200px;
    background-position: right;
    background-repeat: no-repeat;
    z-index: 1;
}

.arrivalItems {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}

.arrivalItems .arrivalItem {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 44px;
    background-color: #F7F7F7;
    margin: 24px 8px;
    color: var(--color-black);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: all 0.3s;
}

.arrivalItems .arrivalItem .icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border-radius: 100%;
    transition: all 0.3s;
}

.arrivalItems .arrivalItem:hover {
    background-color: var(--color-primary);
    box-shadow: 0 0 30px 0 rgba(255, 193, 7, 0.50);
    cursor: pointer;
}

.arrivalItems .arrivalItem:hover .icon {
    background: var(--color-black);
}

.arrivalItems .arrivalItem:hover .icon img {
    filter: invert(71%) sepia(91%) saturate(801%) hue-rotate(334deg) brightness(99%) contrast(98%);
}

@media only screen and (max-width: 992px) {
    .arrivalItems .arrivalItem {
        font-size: 12px;
        padding: 8px 16px;
        margin: 8px;
    }

    .arrivalItems .arrivalItem .icon {
        width: 24px;
        height: 24px;
    }

    .arrivalItems .arrivalItem .icon img {
        width: 16px;
    }
}

.faq {
    background-color: #F7F7F7;
    padding: 40px 0;
}

.faq .accordion-item {
    margin: 8px auto;
}

.faq .accordion, .faq .accordion-item {
    background-color: unset;
    border: unset;
    border-radius: 0;
}

.faq .accordion-button::after {
    background-image: url("../img/add-circle.svg");
}

.faq .accordion-button:not(.collapsed)::after {
    background-image: url("../img/minus-cirlce.svg");
}

.faq .accordion-button {
    background-color: unset;
    border-radius: 0;
    border-top: unset;
    border-right: unset;
    border-left: unset;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: unset;
    color: var(--color-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 24px;
    cursor: pointer;
}

.faq .accordion-body {
    color: rgba(0, 0, 0, 0.70);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 0;
}

.faq .video {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.faq .video .cover {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(20px);
}

.faq .video .cover .icon {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
}

.faq .video .cover .time {
    color: var(--color-black);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border-radius: 8px;
    background: var(--color-white);
    padding: 8px 16px;
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

@media only screen and (max-width: 992px) {

    .faq .video .cover .icon {
        width: 40px;
        height: 40px;
    }

    .faq .video .cover .icon img {
        width: 16px;
    }

    .faq .video .cover .time {
        font-size: 12px;
        padding: 4px 8px;
        bottom: 16px;
        left: 16px;
    }
}

.roadMap {
    padding-top: 260px;
    padding-bottom: 128px;
    position: relative;
}

.roadMap > * {
    position: relative;
    z-index: 5;
}

.roadMap:after {
    content: " ";
    width: 80px;
    height: 80px;
    position: absolute;
    left: 10%;
    top: 15%;
    background-image: url("../img/shape_25.svg");
    background-size: cover;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 992px) {
    .roadMap {
        padding-top: 68px;
        padding-bottom: 58px;
    }

    .roadMap:after {
        width: 40px;
        height: 40px;
    }

}

.pricing {
    padding-top: 60px;
    padding-bottom: 80px;
    background-color: var(--color-black);
    background-image: url("../img/pricingBg.png");
    background-repeat: no-repeat;
}

.pricing .pricing-card .card {
    background-color: #F7F7F7;
    border-radius: 24px;
    padding: 32px 48px;
    margin: 28px auto;
}

.pricing .pricing-card .card .icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
}

.pricing .pricing-card .card .card-header {
    margin: 0;
}

.pricing .pricing-card .card .card-header .title {
    color: var(--color-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 24px;
}

.pricing .pricing-card .card .card-header .subtitle {
    color: var(--color-black);
    font-size: 24px;
    font-style: normal;
    line-height: 24px;
}

.pricing .pricing-card .card .card-body .text {
    color: #404040;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.pricing .pricing-card .card .card-body {
    padding: 0;
}

.pricing .pricing-card .card .card-body .items .item {
    display: flex;
    align-items: center;
    color: var(--color-black);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 16px;
}

.pricing .pricing-card .card .card-body .items .item img {
    margin-right: 8px;
}

.pricing .pricing-card.pro .card {
    position: relative;
    background-color: var(--color-primary);
}

.pricing .pricing-card.pro .card:after {
    content: "";
    width: 50px;
    height: 50px;
    background-image: url("../img/Vector5.svg");
    background-size: cover;
    left: -30px;
    top: -40px;
    position: absolute;
}

.pricing .pricing-card.pro .card .icon {
    background-color: var(--color-secondary);
}

.pricing .pricing-card.pro .badgeBox {
    position: absolute;
    top: -16px;
    text-align: center;
    width: 100%;
    right: 0;
}

.pricing .pricing-card.pro .badge {
    background-color: var(--color-secondary);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    line-height: 24px;

}

.ColleaguesBox {
    width: 90%;
    margin-left: auto;
    background-color: #F7F7F7;
    padding: 32px 24px;
    border-radius: 16px 0 0 16px;
}

.ColleaguesBox .ColleaguesItem {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    max-width: 200px;
    height: 320px;
    margin: 8px auto;
}

.ColleaguesBox .ColleaguesItem img {
    width: 100%;
    height: 100%;
}

.ColleaguesBox .ColleaguesItem .contents {
    position: absolute;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 50%);
    padding: 16px;
    top: 50%;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s;
}

.ColleaguesBox .ColleaguesItem:hover .contents {
    top: 0;
    height: 100%;
}

.ColleaguesBox .ColleaguesItem .contents .title {
    color: var(--color-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%;
}

.ColleaguesBox .ColleaguesItem:hover {
    cursor: pointer;
}

.ColleaguesBox .ColleaguesItem .contents .text {
    color: var(--color-white);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    height: 0;
}

.ColleaguesBox .ColleaguesItem:hover .contents .text {
    opacity: 1;
    visibility: visible;
    height: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

@media only screen and (max-width: 1200px) {
    .ColleaguesBox {
        width: 100%;
        margin: 0 auto !important;
        background-color: #F7F7F7;
        padding: 32px 0;
        border-radius: 0;
    }
}


/*-------------------------Footer-------------------------*/
Footer {
    background-color: var(--color-black);
    background-image: url("../img/Footer.svg");
    padding: 32px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

footer .title {
    color: rgba(253, 253, 253, 0.99);
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
    margin-bottom: 24px;
}

footer .formBox {
    position: relative;
    margin-bottom: 48px;
}

footer .formBox .form-control {
    border-radius: 40px;
    padding-right: 130px;
    border-color: var(--color-white);
    height: 62px;
}

footer .formBox .btn {
    position: absolute;
    right: 5px;
    top: 5px;
    padding-right: 38px;
    padding-left: 38px;
}

footer .links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

footer .links .link {
    padding: 16px;
    color: var(--color-white);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

footer .links .link:hover {
    color: var(--color-primary);
}

footer .social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

footer .social .link {
    padding: 12px;
}

footer .copyright {
    color: var(--color-white);
    font-size: 12px;
    opacity: 0.65;
}

footer .social .link:hover img {
    filter: invert(66%) sepia(94%) saturate(713%) hue-rotate(354deg) brightness(147%) contrast(79%);
}

@media only screen and (max-width: 992px) {
    footer .title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    footer .links .link {
        padding: 8px;
        font-size: 12px;
    }
}


.moreCta .moreCtaImage {
    width: 100%;
    border-radius: 16px;
}

.moreCta .title, .pageTitle {
    color: var(--color-black);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 116.667% */
    letter-spacing: -0.96px;
}

.moreCta .text {
    color: #717171;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    margin-bottom: 38px;
}

@media only screen and (max-width: 1200px) {
    .moreCta .moreCtaImage {
        margin-bottom: 16px;
    }

    .moreCta .title, .pageTitle {

        font-size: 32px;
    }

    .moreCta .text {
        font-size: 14px;
    }
}

.contactUs .form-label {
    color: rgba(0, 0, 0, 0.50);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px; /* 100% */
    text-transform: capitalize;
    margin-bottom: 12px;
}

.contactUs {
    background-color: var(--color-white);
    background-image: url("../img/contactUs.svg");
    background-size: cover;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 1200px) {
    .contactUs form {
        border-radius: 24px;
        background: #F7F7F7;
        padding: 24px;
    }
}

.pricingPage .pricing, .pricingPage .faq {
    background-color: #F7F7F7;
    position: relative;
}

.pricingPage .faq .accordion-button:not(.collapsed)::after {
    background-image: url("../img/minus-cirlce2.svg");
    background-size: cover;
}


.pricingPage .faq:after {
    content: "";
    background-image: url("../img/pricingFaq.svg");
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    max-height: 200px;
    background-position: right;
    background-repeat: no-repeat;
    z-index: 1;
}

.pricingTable {
    position: relative;
}

.pricingTable th, .pricingTable td {
    border: 1px solid #F0F0F0;
    padding: 16px;
}

.pricingTable th:first-child .title {
    color: var(--color-black);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 12px;
}

.pricingTable th .title {
    color: var(--color-black);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 118%;
    margin-bottom: 24px;
}

.pricingTable th .title span {
    color: rgba(0, 0, 0, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.planType {
    border-radius: 56px;
    background: #F2F2F2;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0 auto;
}

.planType .item:hover {
    color: var(--color-secondary);
    cursor: pointer;
}

.planType .item {
    color: rgba(0, 0, 0, 0.40);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 8px 30px;
    border-radius: 39px;
    transition: all 0.3s;

}

.planType .item.active {
    background: var(--color-white);
    box-shadow: 0 8px 30px 0px rgba(7, 11, 24, 0.08);
    color: var(--color-primary);
    font-weight: 600;
}

.pricingPage .pricingTable:after {
    content: "";
    background-image: url("../img/pricingTable1.svg");
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    max-height: 200px;
    background-position: right;
    background-repeat: no-repeat;
    z-index: 1;
}

.pricingPage .pricingTable:before {
    content: "";
    background-image: url("../img/pricingTable2.svg");
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    max-height: 200px;
    background-position: left;
    background-repeat: no-repeat;
    z-index: 1;
}


/*-----------------------authPage---------------------*/
.authPage {
    padding: 30px;
    min-height: 100vh;
    align-items: center;
    display: flex;
}

.authPage .cover {
    width: 100%;
    height: calc(100vh - 100px);
    position: relative;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    overflow: hidden;
}

.authPage .cover:after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
    position: absolute;
    bottom: 0;
    right: 0;
}

.authPage .cover .coverImage {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
}

.authPage .cover .phone {
    position: relative;
    z-index: 100;
    color: var(--color-black);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;

}

.authPage .cover .text {
    position: relative;
    z-index: 100;
    color: var(--color-white);
    font-weight: 400;
    font-size: 32px;
    font-style: normal;
    line-height: normal;
}

.authPage .sectionTitle .title {
    font-size: 30px;
    font-weight: 500;
}

.authPage .sectionTitle .subtitle {
    opacity: 0.6;
    font-size: 16px;
}

.authPage .sectionTitle .topLink {
    color: var(--color-primary);
    text-decoration: underline;
}

.authPage .sectionTitle .topLink:hover, .authPage .link:hover {
    color: #ff9d0d;
}

.authPage .form-label {
    font-size: 14px;
    font-weight: 500;
}

.authPage .link {
    color: var(--color-primary);
    font-weight: 500;
}

.authPage .form-check-label {
    color: rgba(0, 0, 0, 0.30);
    font-weight: 500;
}

.authPage .passBox {
    position: relative;
}

.authPage .passBox .la {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 24px;
    cursor: pointer;
    color: #CCCCCC;
}

.authPage .passBox .la:hover {
    color: var(--color-secondary);
}

.authPage .or {
    text-align: center;
    background-color: var(--color-white);
    padding: 8px;
    position: relative;
    width: max-content;
    margin: 0 auto;
}

.authPage .or:after {
    content: "";
    width: 60px;
    height: 1px;
    background: rgba(181, 181, 181, 0.50);
    position: absolute;
    right: -65px;
    top: 15px;
}

.authPage .or:before {
    content: "";
    width: 60px;
    height: 1px;
    background: rgba(181, 181, 181, 0.50);
    position: absolute;
    right: 100%;
    top: 15px;
}

.modal .modal_header_title {
    color: var(--color-black);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    position: relative;
    text-align: center;
    margin: 0 auto 24px auto;
}

.modal .modal_header_title:after {
    content: "";
    width: 70px;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    bottom: -12px;
    right: calc(50% - 35px);
}

#verify .date {
    color: #A1A1A1;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
}

#verify .title {
    color: var(--color-black);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
}

#verify .text {
    color: rgba(0, 0, 0, 0.80);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 32px;
}

#verify .modal-body {
    position: relative;
}

#verify .modal-body:after {
    content: "";
    width: 100%;
    height: 30px;
    position: sticky;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.40) -46.43%, var(--color-white) 83.93%);
    display: block;
}


/*-----------------------progress---------------------*/
.steps .stepsName {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 8px auto;
}

.steps .active .stepsName .stepLevel, .steps .done .stepsName .stepLevel {
    background-color: var(--color-primary);
}

.steps .stepsName .stepLevel {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F2F2F2;
    position: relative;
    border-radius: 100%;
    overflow: hidden;
    flex-direction: column;
}

.steps .stepsName .stepLevel .number {
    color: var(--color-black);
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.steps .done .stepsName .stepLevel .number {
    height: 0;
    overflow: hidden;
}

.steps .active .stepsName .stepLevel .number {
    color: var(--color-white);
}

.steps .stepsName .stepLevel .check {
    width: 20px;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    font-size: 16px;
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.2s;
}

.steps .done .stepsName .stepLevel .check {
    height: 20px;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    background-color: var(--color-primary);
}

.steps .stepsName .title {
    color: rgba(0, 0, 0, 0.50);
    font-size: 12px;
    line-height: 24px;
    margin-top: 8px;
    text-align: center;
}

.steps .stepsName .subtitle {
    color: rgba(0, 0, 0, 1);
    font-size: 12px;
    line-height: 24px;
    text-align: center;
}

.steps .stepsLine {
    position: relative;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid #DEDEDE;
    padding-bottom: 8px;
}

.steps .done .stepsLine {
    border-bottom: 2px solid var(--color-primary);
}

.steps .stepsLine .state {
    border-radius: 2px;
    background: rgba(250, 169, 47, 0.10);
    padding: 8px;
    text-align: center;
    font-size: 12px;
    color: var(--color-primary);
    display: inline-block;
    opacity: 0;
}

.steps .active .stepsLine .state, .steps .done .stepsLine .state {
    opacity: 1;
}

.steps .stepsLine .state {
    height: 34px;
    overflow: hidden;
}

.steps .active .stepsLine .state .two {
    display: none;
}

.steps .done .stepsLine .state .one {
    display: none;
}

.steps .stepsLine .dot {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    position: absolute;
    bottom: -4px;
    background-color: #DEDEDE;
    right: calc(50% - 4px);
}

.steps .done .stepsLine .dot, .steps .active .stepsLine .dot {
    background-color: var(--color-primary);
}

.steps .stepsLine:after {
    content: " ";
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    position: absolute;
    transition: all 0.2s;
}

.steps .active .stepsLine:after {
    width: 50%;
}

@media only screen and (max-width: 1200px) {
    .steps .stepsName .stepLevel .number {
        font-size: 11px;
    }

    .steps .stepsName .stepLevel {
        width: 22px;
        height: 22px;
    }

    .steps .stepsName .title {
        display: none;
    }

    .steps .stepsName .subtitle {
        font-size: 10px;
        text-align: center;
    }

    .steps .stepsLine {
        transform: translateY(10px);
    }

    .steps .stepsLine .dot {
        display: none;
    }

    .steps .stepsLine .state {
        display: none;
    }

    .steps {
        width: 100%;
        margin: 0 auto;
    }

    .steps .col {
        padding: 0;
    }
}

.stepContents {
    border-radius: 24px;
    border: 2px solid #F2F2F2;
    padding: 32px 56px 56px 56px;
    margin: 50px auto;
}

.stepContents .stepContent .stepName {
    color: rgba(0, 0, 0, 0.50);
    font-size: 14px;
}

.stepContents .stepContent .archive:hover {
    cursor: pointer;
    color: #FAA92F;
}

.stepContents .stepContent .archive.active {
    filter: invert(66%) sepia(94%) saturate(713%) hue-rotate(354deg) brightness(147%) contrast(79%);
}

.stepContents .stepContent .stepTitle {
    color: var(--color-black);
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 40px;
}

.stepContents .stepContent .descriptions {
    border-bottom: 1px solid #D1D1D1;
    margin-bottom: 64px;
}

.stepContents .stepContent .descriptions li p {
    color: rgba(0, 0, 0, 0.70);
    font-size: 16px;
    padding-left: 16px;
    font-weight: 500;
    margin-bottom: 34px;
}

.stepContents .stepContent .descriptions li {
    list-style-type: disc !important;
    color: var(--color-primary);
}

.stepContents .stepContent .form-label {
    color: rgba(0, 0, 0, 0.50);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px; /* 100% */
    text-transform: capitalize;
    margin-bottom: 12px;
}

@media only screen and (max-width: 1200px) {
    .stepContents .stepContent .descriptions {
        margin-bottom: 32px;
    }

    .stepContents .stepContent .stepTitle {
        margin-bottom: 20px;
    }
}

.lessonLists {
    position: relative;
}

.lessonLists .lessonItem {
    width: 100%;
    margin: 8px auto;
    position: relative;
    transition: transform 0.3s, opacity 0.3s;
}

.lessonLists .lessonItem:nth-child(2n) .lessonHead {
    background: var(--color-white);
}

.lessonLists .lessonItem:nth-child(2n-1) .lessonHead {

    background: #F4F4F4;
}

.lessonLists .lessonItem:nth-child(1) .lessonHead {
    border-radius: 16px 16px 0 0;
}

.lessonLists .lessonItem:last-child .lessonHead {
    border-radius: 0 0 16px 16px;
}

.lessonLists .lessonItem .lessonHead {
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s;
}

.lessonLists .lessonItem .lessonHead .name {
    font-size: 14px;
    font-weight: 600;
    flex-grow: 1;
}

.lessonLists .lessonItem .lessonHead .name img {
    width: 24px;
    margin-right: 8px;
}

.lessonLists .lessonItem .otherItems .drag-icon:hover {
    cursor: grab;
}

.lessonLists .lessonItem .otherItems .delete img {
    transform: scale(1, 1);
    transition: all 0.2s;
}

.lessonLists .lessonItem .otherItems .delete:hover img {
    transform: scale(1.1, 1.1);
}

.lessonLists .lessonItem .lessonOptions {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    padding: 16px 32px;
    margin: 8px auto;
    background-color: var(--color-white);
    display: none;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: height 0.3s;
}

.lessonLists .lessonItem .lessonOptions.show {
    display: block;
    opacity: 1;
    visibility: visible;
    height: 100%;

}

.lessonLists .lessonItem .lessonOptions .form-control {
    border-color: var(--color-white);
}

.lessonLists .lessonItem .lessonOptions .form-control:focus {
    border: 1px solid var(--color-primary);
}

.lessonLists .lessonItem .lessonOptions .row {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.lessonLists .lessonItem .lessonOptions .row:last-child {
    border: unset;
}

.lessonLists .lessonItem .lessonOptions .title {
    color: var(--color-black);
    font-size: 14px;
    font-weight: 500;
}

.lessonLists .lessonItem .lessonOptions .subtitle {
    color: rgba(0, 0, 0, 0.80);
    font-size: 12px;
    text-align: right;
    display: block;
    font-weight: 400;
}

.ui-sortable-placeholder {
    border: 1px dotted;
    padding: 30px 20px;
}

.rotate {
    display: inline-block;
    transform: rotateZ(180deg);
}

.pagination .page-item.active .page-link {
    color: var(--color-primary);
    background-color: var(--color-white);
    border-color: var(--color-primary);
}

.pagination .page-link {
    padding: 8px 12px;
    color: #6F6F6F;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    box-shadow: unset !important;
}

.paginationBox .form-label {
    color: var(--color-black) !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 150% !important;
}

.paginationBox .form-select {
    color: var(--color-black);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    padding: 10px 13px;
    max-width: 70px;
    border-radius: 5px;
}

@media only screen and (max-width: 1200px) {
    .lessonLists .lessonItem .lessonHead .name {
        font-size: 12px;
    }

    .lessonLists .lessonItem .lessonHead {
        padding: 12px 8px;
    }

    .lessonLists .lessonItem .lessonHead .name img {
        width: 16px;
        margin-right: 4px;
    }

    .lessonLists .lessonItem .lessonOptions .subtitle, .lessonLists .lessonItem .lessonOptions .form-control {
        color: rgba(0, 0, 0, 0.80);
        font-size: 10px;
        font-style: normal;
        font-weight: 300;
        line-height: 120%;
        text-align: left !important;
        margin-top: 8px;
        display: block;
    }
}

.paymentsItem .card {
    border-radius: 12px;
    border: 2px solid #D6D6D6;
    max-width: 270px;
    margin: 16px auto;
    padding: 16px;
    position: relative;
    transition: all 0.2s;
}

.paymentsItem .card.selected {
    border: 2px solid var(--color-primary);
}

.paymentsItem .card .badge.bg-danger {
    border-radius: 0 10px;
    background: #FA2F2F !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px 14px;
}

.paymentsItem .card .card-title {
    color: #3C3C43;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.paymentsItem .card .card-img-top {
    max-height: 230px;
    object-fit: cover;
}

.paymentsItem .card .price {
    color: var(--color-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 16px auto;
}

.paymentsItem .card .item {
    color: var(--color-black);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 8px auto;
}

.paymentsItem .card .form-check-label {
    color: var(--color-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.form-check-input {
    box-shadow: unset !important;
    border-color: var(--color-black);
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-black);
}

.Discount {
    max-width: 350px;
    margin: 8px auto;
    padding-bottom: 32px;
    border-bottom: 1px solid #D1D1D1;
}

.Discount .form-control, .Discount .btn {
    border-radius: 30px;
}

.totalPrice {
    max-width: 350px;
    color: var(--color-black);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    margin: 8px auto;
    padding-top: 32px;
}

.paymentResult {
    background-color: #F7F7F7;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paymentResult .paymentResultBox .icon img {
    width: 120px;
}

.paymentResult .paymentResultBox .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 32px auto;
}

.paymentResult .paymentResultBox {
    border-radius: 24px;
    background: var(--color-white);
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

.paymentResult .paymentResultBox .items {
    width: 100%;
}

.paymentResult .paymentResultBox .items .item {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.paymentResult .paymentResultBox .items .item .title {
    color: var(--color-black);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.paymentResult .paymentResultBox .items .item .subtitle {
    color: rgba(0, 0, 0, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.paymentResult .paymentResultBox .text {
    text-align: center;
    color: rgba(0, 0, 0, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.v-select .vs__dropdown-menu {
    border: 1px solid #ccc;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-color: #fff;
    }

    /* Dropdown option styles */
    .v-select .vs__dropdown-option {
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    }

    /* Hover effect for dropdown options */
    .v-select .vs__dropdown-option:hover {
    background-color: #f0f0f0;
    color: #007bff; /* Change color on hover */
    }

    /* Selected option styles */
    .v-select .vs__dropdown-option--selected {
    background-color: #e9ecef;
    font-weight: bold;
    color: #333;
    }

    /* Adjust font styles and padding for better appearance */
    .v-select .vs__dropdown-option {
    font-size: 16px;
    padding: 10px 15px;
    }

    /* Additional custom styles if necessary */
    .v-select .vs__dropdown-toggle {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

    .borderd .vs__dropdown-toggle{
        padding: 2px 0px !important;
    }