:root {
    --color1: #46617b;
    --color2: #f38ab2;
    --color3: #0a2540;
    --color4: #a3b0bd;
    --color5: #7a8c9f;
    --color6: #ffcaca;

    --space: 15rem;

    --space-sm: 10rem;

}

/* Custom gutter overrides */
.g-0,
.gx-0,
.gy-0 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.g-1,
.gx-1,
.gy-1 {
    --bs-gutter-x: 1rem;
    /* 10px */
    --bs-gutter-y: 1rem;
}

.g-2,
.gx-2,
.gy-2 {
    --bs-gutter-x: 1.5rem;
    /* 15px */
    --bs-gutter-y: 1.5rem;
}

.g-3,
.gx-3,
.gy-3 {
    --bs-gutter-x: 2rem;
    /* 20px */
    --bs-gutter-y: 2rem;
}

.g-4,
.gx-4,
.gy-4 {
    --bs-gutter-x: 4rem;
    /* 40px */
    --bs-gutter-y: 4rem;
}

.g-5,
.gx-5,
.gy-5 {
    --bs-gutter-x: 6rem;
    /* 60px */
    --bs-gutter-y: 6rem;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 1.4rem;
    line-height: 1.3;
    background-color: #fefefe;
    overflow-x: hidden;
}

.alert {
    width: 30rem;
    z-index: 111;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
}

.alert button {
    background-color: #fff;
    font-size: 1.5rem;
}

.title h2 {
    font-size: 4rem;
    font-weight: bold;
    color: var(--color3);
}

.title p {
    color: var(--color5);
}

.title-sm h2 {
    font-size: 2.9rem;
    font-weight: 700;
    color: var(--color3);
    /* margin-bottom: 2rem; */
}

.title-sm p {
    color: var(--color5);
}

.title-sm h2 span,
.title h2 span {
    color: var(--color2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color3);
}

.space_top {
    padding-top: var(--space);
}

.space_bottom {
    padding-bottom: var(--space);
}

.space {
    padding: var(--space) 0;
}

.space_sm_top {
    padding-top: var(--space-sm);
}

.space_sm_bottom {
    padding-bottom: var(--space-sm);
}

.space_sm {
    padding: var(--space-sm) 0;
}

::-webkit-scrollbar-thumb {
    border-radius: 7.1428571429rem;
    background: #f38ab2;
}

.btn-primary {
    background: var(--color2);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    border: var(--color2) solid 1px;
    border-radius: 50px;
    padding: 8px 25px;
    transition: all .2s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color1);
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50px;
    transition: all .2s ease;
    visibility: hidden;
    z-index: -1;
}

.btn-primary:hover {
    background-color: var(--color2);
    border: var(--color1) solid 1px;
}

.btn-primary:hover::before {
    transition: all .2s ease;
    width: 100%;
    height: 100%;
    visibility: visible;
    bottom: 0px;
}

.btn-primary.btn-lg {
    padding: 1.2rem 3.5rem;
}

.btn-primary.white {
    background-color: #fff;
    border-color: #fff;
    color: var(--color3);
    border: #e8e9ea solid 1px;
}

.btn-primary.white:hover {
    color: #fff;
}

.btn-primary i {
    position: relative;
    right: 0;
    transition: all .5s ease;
}

.btn-primary:hover i {
    right: -3px;
}

.btn:focus-visible {
    background-color: var(--color1);
    border-color: var(--color1);
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(70, 97, 123, 0.35);
    /* optional custom shadow */
    outline: none;
    /* remove default outline */
}

a:focus-visible {
    color: var(--color1);
    outline: 2px solid var(--color1);
    /* visible focus outline */
    outline-offset: 2px;
    /* optional spacing */
    text-decoration: underline;
}

.container {
    max-width: 1050px;
}

.hidden {
    visibility: hidden;
    opacity: 0;
}

/* Navbar */
.site_header {
    position: fixed;
    width: 100%;
    left: 0px;
    top: 0;
    padding-top: 15px;
    z-index: 111;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.site_header.scrolled {
    background: rgba(255, 255, 255, 0.25);
    /* semi-transparent white */
    backdrop-filter: blur(2px);
    /* frosted glass blur */
    -webkit-backdrop-filter: blur(2px);
    /* Safari support */
    box-shadow: 0 2px 6px rgb(0 0 0 / 4%)
        /* soft shadow */
}

.navbar-nav {
    border-radius: .8571428571rem;
    border: 2px solid #ffcaca;
    background: #fff;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: .6428571429rem;
    padding: 0.9rem 1.5rem;
    overflow: hidden;
}

.navbar-expand-lg .btn {
    font-weight: 400 !important;
    padding: 5px 13px !important;
    font-size: 1.3rem !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
    color: var(--color1);
    font-size: 1.2rem;
    font-weight: 600;
}

.navbar-expand-lg .container-fluid {
    padding-left: 3rem;
    padding-right: 3rem;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--color2);
}

@media only screen and (max-width:992px) {
    .navbar-nav {
        border: 0px;
        background-color: var(--color3);
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: var(--color1) solid 1px;
        text-align: center;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: 0px;
    }

    .navbar-expand-lg .btn {
        width: 100%;
        padding: 8px 5px !important;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        color: #fff;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 1.5rem 0.5rem;
    }

    .navbar-toggler {
        border: 0px;
    }

    .navbar-toggler:focus {
        box-shadow: inherit;
        outline: 0px;
    }

    .navbar-toggler-icon {
        width: 3rem;
    }
}

.about {
    position: relative;
    /* padding: 18rem 0; */
    padding: 18rem 0 14rem;
    background: linear-gradient(180deg, #faf5ff, #fff3f3 77.67%, #fefefe) no-repeat bottom;
}

.about h2 {
    font-size: 4rem;
    font-weight: bold;
    color: var(--color3);
    padding: 1rem 0 2rem;
}

.about .content p {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color5);
    padding-right: 10%;
    padding-bottom: 2.5rem;
    line-height: 1.3;
    letter-spacing: -.32px;
}

.about .content p:first-child {
    padding-bottom: 1rem;
}

.about-arrow {
    top: 0rem;
    width: 1rem;
    height: 20rem;
    position: absolute;
}

.about .right {
    position: relative;
    width: 100%;
}

.about .box1 {
    position: absolute;
    top: -3rem;
    left: -3rem;
    width: 22.5rem;
    height: 22.5rem;
    background: linear-gradient(313deg, rgb(255, 204, 215) -7.58%, rgb(252, 244, 250) 98.03%);
    border-radius: 2.5rem;
}

.about .copy1 {
    background-color: #ffccd7;
    border-radius: 2.5rem;
    height: 23.5rem;
    width: 23.5rem;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2rem 3rem 3rem;
}

.about .copy1 h3 {
    font-size: 6rem;
    font-weight: 700;
    color: var(--color3);
    letter-spacing: -.02em;
}

.about .copy1 h3 small {
    font-weight: 500;
    font-size: 2rem;
}

.about .copy1 p {
    color: var(--color3);
    font-weight: 500;
    font-size: 1.1rem;
}

.about .box2 {
    position: absolute;
    bottom: -3rem;
    right: -3rem;
    height: 13.5rem;
    width: 20.5rem;
    background: linear-gradient(314deg, #fcf4fa 4.9%, #cbc5e1 97.99%);
    border-radius: 2.5rem;
}

.about .copy2 {
    background: #cbc5e1;
    border-radius: 2.5rem;
    height: 13rem;
    width: 20rem;
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1rem 2rem 2rem;
}

.about .copy2 h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color3);
    letter-spacing: -.02em;
}

.about .copy2 h3 small {
    font-weight: 500;
    font-size: 2rem;
}

.about .copy2 p {
    color: var(--color3);
    font-weight: 500;
    font-size: 1.1rem;
}

.about .copy2 svg {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
    /* scale: 1.2; */
}

@media only screen and (max-width:767px) {
    .about {
        padding-top: 21rem;
    }

    .about .copy1 {
        height: 17rem;
        width: 17rem;
    }

    .about .box1 {
        height: 17.5rem;
        width: 17.5rem;
    }

    .about .copy2 {
        height: 15rem;
        width: 15rem;
    }

    .about .box2 {
        height: 15.5rem;
        width: 15.5rem;
    }
}

/* Card about*/
.card-about {
    /* background-color: var(--color2); */
    /* background: linear-gradient(313deg, rgb(255, 204, 215) -7.58%, rgb(252, 244, 250) 98.03%); */
    /* background: linear-gradient(360deg, #faf5ff, #fff3f3 77.67%, #fefefe) no-repeat bottom; */
    color: var(--color3);
}

.card-about .title {
    margin-bottom: 6rem;
}

.card-about .title h2 {
    font-size: 3.6rem;
    margin-bottom: 0px;
}

.card-about .card {
    background-color: #f6edf4;
    border: 0px;
    padding: 3rem 2rem;
    color: var(--color3);
    height: 20rem;
    border-radius: 2rem;
    display: flex;
    justify-content: space-between;
    position: relative;
    border: transparent solid 1px;
    border-bottom: transparent solid 3px;
}

.card-about .card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-right: 20%;
    color: var(--color3);
}

.card-about .card p {
    margin-bottom: 0px;
    color: var(--color1);
}

.card-about .card svg {
    position: absolute;
    right: 2rem;
    top: 2rem;
    width: 3rem;
    height: 3rem;
}

.card-about .card svg path {
    stroke: var(--color2);
}

.card-about .card:hover {
    border: #d8bfd3 solid 1px;
    border-bottom: #d8bfd3 solid 3px;
}

/* footer */


/* Loader full screen */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a2540;
    /* change to your brand color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #fff;
    display: grid;
    place-items: center;
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #ff4b6e;
    /* accent color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Fade-out animation */
#loader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.home-hero {
    padding: 14rem 0 14rem;
    background: linear-gradient(180deg, #faf5ff, #fff3f3 77.67%, #fefefe) no-repeat bottom;
    /* background-size: 137.1428571429rem auto; */
}

.home-hero .container {
    max-width: 1230px;
}

.home_hero_left {
    position: relative;
    padding-right: 3rem;
}

.home_hero_left h2 {
    font-size: 3.7rem;
    font-weight: 700;
    color: var(--color3);
}

.home_hero_left h2 span {
    color: var(--color2);
}

.home_hero_left .copy {
    color: rgba(10, 37, 64, .6);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    padding-top: 2.8rem;
    margin-bottom: 6.5rem;
}

/* .home_hero_left .rose{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 133px;
} */
.home_hero_left .boxes {
    background-color: #fff;
    border-radius: 1.5rem;
    display: grid;
    padding: 3.5rem 0;
    grid-template-columns: 1fr 1fr;
}

.home_hero_left .boxes .box:first-child {
    border-right: #ffe7ec solid 1px;
}

.home_hero_left .boxes .box {
    font-size: 1.2rem;
    padding: 0 2.5rem;
}

.home_hero_left .boxes .box h3 {
    color: var(--color3);
    font-weight: 600;
    margin-bottom: 1rem;
}

.home_hero_left .boxes .box p {
    color: var(--color1);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    min-height: 8rem;
}

.home_hero_left .boxes .box a {
    color: var(--color2);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    font-weight: 600;
    font-size: 1.2rem;
}

.heroSwiper {
    display: block;
    position: relative;
    background: linear-gradient(93deg, #ffe1e1 -33.46%, #f7e0e8 59.02%, #fffcfd 151.5%);
    border-radius: 2rem;
}

.heroSwiper .swiper-slide {
    padding: 4rem;
    height: 55rem;
}

.heroSwiper .swiper-slide h3 {
    font-size: 3.5rem;
    font-weight: 600;
    padding-right: 30%;
    margin-bottom: 4rem;
    color: var(--color3);
}

.heroSwiper .swiper-slide p {
    margin-bottom: 3rem;
    padding-right: 25%;
    color: var(--color1);
    font-size: 1.4rem;
}

.heroSwiper .swiper-slide img {
    height: 150px;
    margin-bottom: 5em;
}

.heroSwiper .swiper-slide .img1 {
    height: 17.5rem;
}

.heroSwiper .swiper-slide .img2 {
    height: 20rem;
}

.heroSwiper .swiper-slide .img3 {
    height: 21.5rem;
}

.heroSwiper .swiper-slide .svgIcon {
    width: 5rem;
}

.heroSwiper .swiper-slide .bottom {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    left: 0px;
    padding: 0 6%;
}

.heroSwiper .swiper-pagination {
    top: 2rem;
    right: 2rem;
    left: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.heroSwiper .swiper-pagination-bullet {
    position: relative;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.heroSwiper .swiper-pagination-bullet svg {
    position: absolute;
    transform: rotate(90deg);
    /* start from top */
}

.heroSwiper .swiper-pagination-bullet circle {
    fill: none;
    stroke-width: 2;
    r: 15;
    cx: 24;
    cy: 24;
}

.heroSwiper .swiper-pagination-bullet circle.progress {
    stroke: var(--color2);
    stroke-dasharray: 125.6;
    stroke-dashoffset: 125.6;
    transition: stroke-dashoffset linear;
}

.heroSwiper .swiper-pagination-bullet .number {
    position: relative;
    font-size: 1.3rem;
    font-weight: 500;
}

@media only screen and (max-width: 1024px) {
    .heroSwiper .swiper-slide {
        height: 60rem;
    }
}

@media only screen and (max-width: 767px) {
    .heroSwiper .swiper-slide {
        height: 60rem;
    }

    .home_hero_left {
        padding-right: 0px;
    }

    .home_hero_left .copy {
        margin-bottom: 3rem;
    }

}

/* Product slider */

.custom-pagination {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-pagination .tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    cursor: pointer;
    font-weight: 500;
    color: #deb6c4;
    opacity: 1;
    width: 100%;
    background-color: inherit;
    padding: 3rem 0;
}

.custom-pagination .tab-number {
    font-size: 3rem;
    font-weight: 700;
}

.custom-pagination .tab-label {
    font-weight: 700;
    text-transform: uppercase;
}

.custom-pagination .arrow {
    width: 1.7rem;
    position: absolute;
    right: 1rem;
    display: none;
}

.custom-pagination .swiper-pagination-bullet-active {
    color: #465465;
}

.custom-pagination .swiper-pagination-bullet-active .arrow {
    display: block;
}

.custom-pagination .progress-bar {
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 100%;
    background: rgba(195, 208, 224, .5);
    overflow: hidden;
}

.custom-pagination .progress-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffe2d2, #ffc9d6 50%, #f98dc6);
    transition: width 0.1s linear;
}

.tag {
    background: linear-gradient(180deg, #f38ab2, #f54c7a 85.78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    font-weight: 650;
    padding-bottom: 1rem;
    display: inline-block;
}

.slider2 .swiper-wrapper {
    /* padding-bottom: 4rem; */
}

.slider2 .copy {
    padding: 2.5rem;
    padding-bottom: 0px;
}

.slider2 .copy p {
    height: 8rem;
    overflow: hidden;
}

.slider2 .number {
    color: var(--color2);
    font-weight: 700;
    font-size: 1.3rem;
}

.slider2 .swiper-slide {
    background-color: #fbf6f6;
    border-radius: 1.5rem;
    /* box-shadow: 0 40px 32px -24px rgba(95,92,121,.22); */
}

.slider2 .svgIcon {
    height: 30rem;
    background: url(/images/svg/Slider_Image_BG_desktop.svg) no-repeat;
    /* background-size: cover; */
    background-position: center -25px;
    background-color: #fff;
    border-radius: 2rem;
    margin: 1rem 1rem;
    padding: 3rem 1rem;
}

.slider2 .svgIcon svg {
    width: 100%;
    height: 100%;
}

.slider2 h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 2rem 0;
}

.slider2 p {
    color: var(--color5);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0px;
}


/* Price */
.price .left {
    position: sticky;
    top: 13rem;
}

.price .title h2 {
    margin-top: 2rem;
    font-size: 2.9rem;
}

.price .title img {
    width: 80%;
    margin-top: 4.5rem;
}

.price .title p {
    padding-top: 2rem;
    font-weight: 500;
}

.price .right {
    padding-left: 5rem;
}

.price .card {
    border: 0px;
    border-radius: 1.1428571429rem;
    background: #fff;
    box-shadow: 0 0 22px 2px rgba(160, 68, 103, .15), 0 40px 32px -24px rgba(95, 92, 121, .22);
    padding: 3rem;
    max-width: 60rem;
    margin-bottom: 7.5rem;
}

.price .card:last-child {
    margin-bottom: 0px;
}

.price .card .leftPrice {
    border-right: #ccc solid 1px;
    height: 100%;
}

.price .card .light-gray {
    color: #7a8c9f;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
}

.price .card .content {
    padding-left: 3rem;
}

.price .card .rate {
    color: var(--color3);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0.7rem 0;
}

.price .card .month {
    color: var(--color3);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 140%;
    padding-bottom: .5714285714rem;
}

.price .card h3 {
    color: var(--color3);
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
}

.price .card ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.price .card ul li {
    display: flex;
    align-items: center;
    gap: .5357142857rem;
    color: rgba(10, 37, 64, .6);
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 1rem;
}

.price .card ul li i {
    color: var(--color2);
    font-size: 1.7rem;
}

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

    .price .right,
    .price .card .content {
        padding-left: 0px;
    }

    .price .card {
        margin-bottom: 4rem;
    }

    .price .card .leftPrice {
        border-right: 0px;
    }
}

/* footer */
.nextjs-footer {
    background-color: #000;
    /* color: #888; */

    background: linear-gradient(180deg, #fefefe, #fff3f3 50%, #faf5ff);
    padding: 5.7142857143rem 8.5714285714rem 4.5714285714rem;
    background-size: cover;
}

.footer-content {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: var(--color3);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--color1);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #3331;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}



.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--color1);
    font-size: 20px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: #fff;
}

.footer-legal {
    color: #666;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* Exam page */
.exam-banner {
    background: linear-gradient(180deg, #faf5ff, #fff3f3 77.67%, #fefefe) no-repeat bottom;
    /* background-image: url('/images/grid_1920.svg'); */
    background-position: 50%, 50%, 0 0, 50%;
    background-size: cover, cover, auto, cover;
    padding-top: 18rem;
    padding-bottom: 18rem;
}

.exam-banner .container {
    max-width: 1230px;
}

.exam-banner .title-sm .tag {
    margin-bottom: 2rem;
}

.exam-banner .title-sm h2 {
    font-size: 4rem;
    font-weight: bold;
    color: var(--color3);
}

.exam-banner .title-sm p {
    padding: 2.5rem 0;
}

.exam-banner .dashboard {
    position: relative;
    text-align: right;
}

.exam-banner .dashboard .score {
    max-width: 40rem;
    margin-left: auto;
    background-color: var(--color1);
    border-radius: 2rem;
}

.exam-banner .dashboard .bar {
    position: absolute;
    bottom: -10rem;
    left: 0rem;
    max-width: 35rem;
}

@media only screen and (max-width:992px) {
    .exam-banner .dashboard .line {
        display: none;
    }
}

.proven .top {
    background: url('/images/exam/pattern.webp') left top / cover no-repeat,
        linear-gradient(314deg, #fcf4fa 4.9%, #cbc5e1 97.99%);
    ;
    color: var(--color3);
    height: 18rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 2rem;
    border-radius: 1.5rem;
    position: relative;
}

.proven .top h3 {
    font-size: 2rem;
    color: var(--color3);
    text-transform: uppercase;
}

.proven .top .icon {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 2rem;
    opacity: .5;
}

.proven .top p {
    margin-bottom: 0px;
    color: var(--color1);
}

.proven .bottom .frame {
    height: 25rem;
    width: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.proven .top.last {
    direction: rtl;
}

.proven .top.last .icon {
    right: inherit;
    left: 1.5rem;
}

.proven .middle {
    background:
        url('/images/exam/pattern.webp') center center / cover no-repeat,
        linear-gradient(93deg, #ffe1e1 -33.46%, #f7e0e8 59.02%, #fffcfd 151.5%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    border-radius: 1.5rem;
    color: var(--color3);
    position: relative;
}

.proven .middle h3 {
    color: var(--color3);
    text-transform: uppercase;
    margin: 2rem 0;
}

.proven .middle .icon {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 2rem;
    opacity: .5;
}

.proven .middle .fect {
    display: inline-block;
    background: inherit;
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.proven .middle p {
    color: var(--color1);
    margin-bottom: 2rem;
}

.solutions .item {
    color: var(--color3);
}

.solutions .item .num {
    color: var(--color1);
    font-size: 8rem;
    font-weight: 600;
}

.solutions .bar {
    height: 100%;
    width: 3px;
    background-color: var(--color1);
}

.solutions {
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(254, 244, 244, 1) 33%, rgba(243, 231, 249, 1) 100%);
}

.solutions .title {
    padding-bottom: 12rem;
}

.solutions .title h2 {
    font-size: 4rem;
    font-weight: bold;
    color: var(--color3);

}

.process-widget-block {
    grid-column-gap: 2.4rem;
    grid-row-gap: 2.4rem;
    flex-flow: column;
    max-width: 796px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
}

.process-widget-row {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    justify-content: space-between;
    display: flex;
}

.progress-widget-left {
    margin-top: -10rem;
}

.process-widget {
    max-width: 342px;
}

.process-widget-no {
    color: var(--color3);
    font-size: 8rem;
    font-weight: 500;
    background: linear-gradient(180deg, #f38ab2, #f54c7a 85.78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: .5;
}

.process-widget-body {
    grid-column-gap: 0.8rem;
    grid-row-gap: 0.8rem;
    color: var(--color3);
    flex-flow: column;
    display: flex;
}

.process-widget-body h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.process-widget-body p,
.process-widget-body ul {
    margin-bottom: 0px;
}

.process-widget-body p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color1);
    line-height: 1.5;
}

.process-widget-body ul {
    list-style: none;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color1);
    line-height: 1.5;
    padding: 0px;
    margin: 0px;
}

.progress-widget-right {
    margin-top: 49px;
}

.process-progress-bar {
    background-color: var(--color6);
    width: 2px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    overflow: hidden;
}

.process-progress-inner {
    background-color: var(--color2);
    width: 100%;
    height: 15rem;
    /* your fixed line height */
    transform-origin: top center;
    position: relative;
}

.services .card {
    border-radius: 10px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    padding: 30px;
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: rgb(215, 218, 238);
    border: 0px;
    height: 30rem;
    display: flex;
    justify-content: space-between;
}

.services .card .btn-tag {
    background-color: #fff;
    color: var(--color3);
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
}

.services .card .btn-tag span {
    display: inline-block;
    height: 1rem;
    width: 1rem;
    border-radius: 50px;
    background-color: #5d6fd1;
    margin-right: 5px;
}

.services .card.two {
    background-color: rgb(202, 202, 202);
}

.services .card.two .btn-tag span {
    background-color: #1f1f1f;
}

.services .card.three .btn-tag span {
    background-color: #fc7c35;
}

.services .card.four .btn-tag span {
    background-color: #7bc8a4;
}

.services .card.five .btn-tag span {
    background-color: #5266d1;
}

.services .card.six .btn-tag span {
    background-color: #1f1f1f;
}

.services .card.three {
    background-color: rgb(246, 221, 207);
}

.services .card.four {
    background-color: rgb(221, 236, 229);
}

.services .card.five {
    background-color: rgb(215, 218, 238);
}

.services .card.six {
    background-color: rgb(202, 202, 202);
}

.services .card .service_card {
    object-fit: cover;
    height: 100%;
    position: absolute;
    inset: 0% 0% 0% auto;
}

.services .card h3 {
    color: var(--color3);
    font-size: 2.5rem;
    margin-bottom: 0px;
}

.services .card p {
    margin: 1.5rem 0;
}

.services .card h3 a {
    text-decoration: none;
    color: currentColor;
}

.link {
    text-decoration: none;
    color: var(--color3);
    font-size: 1.7rem;
    letter-spacing: -0.2px;
    display: inline-block;
    position: relative;
    padding: 0.5rem 0;
    transition: all .5s ease;
    font-weight: 500;
}

.link::before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 3rem;
    height: 1px;
    content: '';
    background-color: var(--color3);
    transition: all .5s ease;
}

.link:hover::before {
    width: 100%;
}

.new_faq {
    /* background: 
    url('/images/home/stars.svg') center top / cover no-repeat,
    url('/images/exam/plan-bg.webp') center -50% / cover no-repeat; */

    background-color: #0c0d2f;
    background-image: url(https://cdn.prod.website-files.com/68a4104899d5bbafe20262c7/68a557d56fcac774de968ead_texture.svg), url(https://cdn.prod.website-files.com/68a4104899d5bbafe20262c7/68a557d56fcac774de968eac_rt-hero-v4-star.svg), url(https://cdn.prod.website-files.com/68a4104899d5bbafe20262c7/68a557d56fcac774de968eab_hero-v4-star.svg), url(https://cdn.prod.website-files.com/68a4104899d5bbafe20262c7/68a557d56fcac774de968ea9_hero-v4-line.svg), radial-gradient(circle at 100% 0, #ce8bff99, #fff0 19%), radial-gradient(circle at 100% 0, #4b1fad, #fff0 69%);
    background-position: 50%, 100% 0, 0%, 50%, 0 0, 0 0;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat;
    background-size: cover, auto, cover, cover, auto, auto;
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
    color: #fff;
}

.new_faq .title-sm h2 {
    color: #fff;
}

.f-tab {
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #c2bfcc66;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.f-tab:first-child {
    padding-top: 0px;
}

.f-tab:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
}

.f-tab .heading {
    position: relative;
    padding-right: 3.5rem;
}

.f-tab .heading h3 {
    color: #fff;
    margin-bottom: 0px;
    font-size: 1.7rem;
}

.f-tab .toggle {
    position: absolute;
    right: 1px;
    top: -1px;
    color: #c3bfcc;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.f-tab.active .toggle {
    transform: rotate(180deg);
}

.f-tab .content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.f-tab .content p {
    margin-bottom: 0px;
    color: #fff;
    padding-top: 1.5rem;
    line-height: 2rem;
    letter-spacing: 0.2px;
    font-size: 1.4rem;
    padding-right: 2.5rem;
}

.f-tab.active .content {
    max-height: 300px;
    opacity: 1;
}




.faqs {
    grid-column-gap: 4.25rem;
    grid-row-gap: 4.25rem;
    -webkit-backdrop-filter: blur(274.5px);
    backdrop-filter: blur(274.5px);
    background-color: #ffffff0d;
    border: 1px solid #92939e;
    border-radius: 30px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 6.25rem 4.375rem;
}

.plan {
    background:
        url('/images/home/stars.svg') center top / cover no-repeat,
        url('/images/exam/plan-bg.webp') center top / cover no-repeat;

    background-attachment: fixed;
}

.plan .main_box {
    -webkit-backdrop-filter: blur(151.5px);
    backdrop-filter: blur(151.5px);
    background-color: #ffffff0d;
    border: 1px solid #85859e;
    border-radius: 20px;
    padding: 3rem;
}

.plan .title-sm h2 {
    color: #fff;
}

.plan .standard {
    padding: 2rem 0;
}

.plan .standard.inside {
    padding: 0;
}

.plan .standard .name {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.plan .standard .name h3 {
    font-size: 2.5rem;
    color: var(--color2);
}

.plan .standard p {
    color: #aeb9e1;
    margin: 2rem 0;
    font-size: 1.3rem;
}

.plan .standard .name .rc_tag {
    background-color: var(--color6);
    color: #000;
    display: inline-block;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 1.2rem;
    border-radius: 50px;
}

.plan .standard .price_tag {
    font-size: 3rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #60628380;
    padding-bottom: 2rem;
}

.plan .standard .price_tag span {
    color: var(--color1);
    font-size: 1.5rem;
}

.standard_list {
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin: 2rem 0;
}

.standard_list li {
    margin-bottom: 1.5rem;
    color: var(--color1);
    background: url('/images/exam/li_star1.svg') left 2px no-repeat;
    padding-left: 3rem;
    color: #aeb9e1;
    font-size: 1.3rem;
}

.standard_list.inside li {
    background: url('/images/exam/li_star.svg') left 2px no-repeat;
    color: var(--color3);
}

.plan .box {
    border: #ccc solid 1px;
    border-radius: 1.5rem;
    padding: 2rem;
    background-color: #fff;
}

.standard.inside p {
    color: #535e82;
}

.standard.inside .price_tag {
    color: var(--color3);
}


.gradient {
    background-image: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.1));
    width: 10%;
    position: absolute;
    inset: 0% auto 0% 0%;
    z-index: 1;
}

.testiSwiper .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    padding: 2rem 0 4rem;
}

.testi {
    /* border: #ccc solid 1px; */
    /* border-radius: 1rem; */
    /* padding: 3rem 3rem; */
    padding: 2.4285714286rem 2.5714285714rem;
    background: #fefefe;
    border-radius: 1.1428571429rem;
    box-shadow: 0 0 11.538px 0 rgba(0, 0, 0, .04), 0 38.46px 30.768px -23.076px rgba(95, 92, 121, .22);
}

.testi .info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testi .info .user {
    width: 7rem;
}

.testi .info .rating {
    display: flex;
    color: #ffb320;
}

.testi .info .name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.testi .info .name h3 {
    font-size: 1.8rem;
}

.testi .info .name h3 span {
    color: var(--color1);
    font-weight: 400;
    font-size: 1.5rem;
}

.testi .info .name h3 small {
    font-size: 1.3rem;
}

.testi .content {
    padding-top: 3rem;
}

.testi .content p:last-child {
    margin-bottom: 0px;
}

.new-container {
    padding-left: calc((100vw - 1050px) / 2);
    /* 1320px = .container max width at xl */
    padding-right: 0;
}

.faq {
    /* background: linear-gradient(360deg, #faf5ff, #fff3f3 77.67%, #fefefe) no-repeat bottom; */
    background-color: #f1ebf9;
}

.faq.no-bg {
    background: #f1ebf9;
}

/* Remove focus outline & box shadow */
.accordion-button:focus {
    box-shadow: none;
    outline: none;
}



/* Always keep transparent background and border */
.accordion-button {
    background-color: transparent;
    border: none;
    padding-left: 0;
    /* optional: adjust padding */
    padding-right: 0;
}

/* Remove border from accordion item itself */
.accordion-item {
    border: none;
    border-bottom: #f1ebf9 solid 1px;
    background-color: inherit;
}

.accordion-item:last-child {
    border-bottom: 0px;
}

.accordion-item .accordion-button {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 2rem 3rem;
    color: var(--color3);
    background-color: #fff;
}

.accordion-button::after {
    width: 2rem;
    height: 2rem;
    background-size: 2rem;
}

/* Remove the default collapse border */
.accordion-body {
    border-top: none;
    padding-left: 3rem;
    /* optional */
    padding-right: 3rem;
    padding-bottom: 2rem;
    font-size: 1.6rem;
    color: var(--color1);
    background-color: #fff;
}

/* Optional: remove hover background */
.accordion-button:hover {
    /* background-color: #f7f7f7; */
    color: var(--color2);
}

/* Remove the default background color when expanded */
.accordion-button:not(.collapsed) {
    color: var(--color2);
    /* keep your normal text color */
    box-shadow: none;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem
}

/* Exam Put */
.exam_put .content h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.exam_put .content p {
    margin: 5rem 0;
}

.exam_put .content ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.exam_put .content ul li {
    background-color: #f9e7ee;
    color: #000;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    padding: 2rem;
    font-size: 1.6rem;
}

.exam_put .content ul li:last-child {
    margin-bottom: 0px;
}

.exam_put .content .picture img {
    border-radius: 2rem;
}

.exam_put .tab-content {
    margin-top: 4rem;
}

.exam_put .nav {
    background-color: #f9e7ee;
    padding: 2rem 1rem;
    border-radius: 2rem;
    gap: 2rem;
}

.exam_put .nav-link {
    font-size: 1.4rem;
    color: var(--color3);
    /* opacity: .8; */
    border-radius: inherit;
    border-bottom: transparent solid 2px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 0px;
    padding-right: 0px;
}

.exam_put .nav-link i {
    font-size: 2.5rem;
}

.exam_put .nav-link.active,
.exam_put .nav-pills .show>.nav-link {
    background-color: inherit;
    opacity: 1;
    border-bottom: var(--color2) solid 2px;
    color: var(--color2);
}


/* Contact Us page */
.pricing_plan {
    /* background: linear-gradient(180deg, #faf5ff, #fff3f3 77.67%, #fefefe) no-repeat bottom; */
}

.pricing_plan .container {
    max-width: 1180px;
}

.pricing_plan .nav-link {
    padding: 3rem 3rem;
    position: relative;
    text-align: left;
    opacity: 0.423694;
    box-shadow: 0 4px 4px #d3d3d30f, 0 1px 1px #0e0e0e0f;
    border-radius: 2rem;
    border: #ccc solid 1px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all .3s ease;
    max-width: 40rem;
    background-color: #fff;
}

.pricing_plan .nav-link img {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 5rem;
    border-radius: 50px;
}

.pricing_plan .nav-link h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.pricing_plan .nav-link p {
    font-weight: 500;
}

.pricing_plan .nav-link h2,
.pricing_plan .nav-link p,
.pricing_plan .nav-link .tb_link {
    color: var(--color3);
    padding-right: 20%;
    margin-bottom: 2rem;
    z-index: 1;
    position: relative;
}

.pricing_plan .nav-link .tb_link {
    display: inline-block;
    margin-bottom: 0px;
    font-weight: 600;
}

.pricing_plan .nav-link::before {
    position: absolute;
    top: 3rem;
    right: 3rem;
    content: '';
    background-color: #f8edf2;
    background-image: linear-gradient(240deg, #f0e2f8, #dbb5ec 25%, #fcf2f2 50%, #fefbfb 75%, #f0e2f8 103%);
    height: 3rem;
    width: 3rem;
    transition: all .3s ease;
    border-radius: 2rem;
}

.pricing_plan .nav-pills .nav-link:hover {
    opacity: 1;
}

.pricing_plan .nav-pills .nav-link.active,
.pricing_plan .nav-pills .show>.nav-link {
    opacity: 1;
    background-color: #fff;
    border-color: transparent;
}

.pricing_plan .nav-pills .nav-link.active::before {
    width: 100%;
    height: 100%;
    right: 0px;
    top: 0px;
}

.pricing_plan .content {
    padding: 4rem;
    border: 1px solid #e8e9ea;
    border-radius: 3.2rem;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 #19213d14;
    overflow: hidden;
}

.pricing_plan .top {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding-bottom: 3rem;
}

.pricing_plan .top h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing_plan .top p {
    margin-bottom: 0px;
}

.pricing_plan .bottom .pic img {
    max-width: 30rem;
}

.pricing_plan .bottom .rate {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color2);
    margin-bottom: 2rem;
}

.pricing_plan .bottom .rate span {
    opacity: .7;
    font-size: 2rem;
}

.pricing_plan .bottom .info {
    flex-basis: 50%;
}

.pricing_plan .bottom ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    width: 100%;
    margin-bottom: 3rem;
}

.pricing_plan .bottom ul li {
    border-bottom: #ededed solid 1px;
    padding: 1rem 0;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--color3);
}

.pricing_plan .bottom ul li:last-child {
    border-bottom: 0px;
}

.pricing_plan .d-flex {
    gap: 3rem;
}

@media only screen and (max-width:1150px) {
    .pricing_plan .bottom .pic img {
        display: none;
    }
}

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

    /* .big_tab{
        flex-wrap: wrap;
    } */
    .pricing_plan .bottom .pic img,
    .pricing_plan .nav-link .tb_link {
        display: none;
    }

    .pricing_plan .bottom {
        gap: 2rem;
    }

    .pricing_plan .nav-link p {
        display: none;
    }

    .pricing_plan .nav-link {
        width: 18rem;
    }

    .pricing_plan .nav-link img {
        display: none;
    }

    .pricing_plan .nav-link::before {
        height: 0rem;
        width: 0rem;
    }

    .pricing_plan .nav-link h2 {
        font-size: 1.5rem;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

    .pricing_plan .nav-link {
        padding: 1rem;
        border-radius: 6px;
    }

    .pricing_plan .nav-pills .nav-link.active::before {
        border-radius: 6px;
    }

    .pricing_plan .top {
        flex-wrap: wrap;
    }

    .pricing_plan .bottom .info {
        flex-basis: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .big_tab {
        flex-wrap: wrap;
    }

    .pricing_plan .nav {
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}

.growth {
    background: url('/images/desktopRLBG.svg') left bottom /cover no-repeat;
    /* background-color: var(--color6); */
    padding: 8rem 0;

    padding-top: 30rem;
    margin-top: -30rem;
}

.growth .title {
    margin-bottom: 6rem;
}

.growth .title h2 {
    color: var(--color3);
    margin-bottom: 2rem;
}

.growth .title p {
    color: var(--color1);
}

.growth .box {
    text-align: center;
}

.growth .box img {
    width: 6rem;
}

.growth .box .num {
    font-size: 15rem;
    font-weight: bold;
    /* linear-gradient(90deg,#ffe2d2,#ffc9d6 50%,#f98dc6) */
    background: linear-gradient(360deg, #ffe2d2, #ffc9d6 20%, #f98dc6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.growth .box h3 {
    color: var(--color3);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.growth .box p {
    color: var(--color1);
}

.growth .row .col-lg-4:nth-child(2) .box {
    margin-top: 5rem;
}

.growth .row .col-lg-4:nth-child(3) .box {
    margin-top: 10rem;
}

/* Contact page */
.contact-form {
    padding-bottom: 10rem;
    /* background: linear-gradient(180deg, #faf5ff, #fff3f3 77.67%, #fefefe) no-repeat bottom; */
    background: url('/images/desktopLRBG.svg') left top / cover no-repeat;
}

.contact-form .container {
    max-width: 1230px;
}

.contact-form .cover_img {
    border-radius: 1.5rem;
    border: 1px solid #ffcaca;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0 22px 2px rgba(160, 68, 103, .15), 0 40px 32px -24px rgba(95, 92, 121, .22);
}

.form-contact {
    padding: 3.9rem;
    border-radius: 1.5rem;
    border: 1px solid #ffcaca;
    background: #fff;
    box-shadow: 0 0 22px 2px rgba(160, 68, 103, .15), 0 40px 32px -24px rgba(95, 92, 121, .22);
    height: 100%;
}

.contact-form .form-label {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color3);
}

.contact-form .form-control {
    width: 100%;
    border-radius: 0.47rem;
    background: #fff;
    box-shadow: inset 0 4px 1px 0 rgba(71, 68, 90, .02);
    padding: .75rem 1rem;
    color: #1f3750;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    transition: all .25s ease;
    height: 4.7rem;
    font-size: 1.26rem;
    border: 1.5px solid rgba(243, 138, 178, .278);
}

.contact-form textarea {
    border-radius: 0.47rem;
    height: inherit !important;
}

.contact-form .form-control::placeholder {
    font-weight: 500;
    color: var(--color1);
}

.contact-form .form-control:focus {
    border: var(--color2) solid 1.5px;
    /* Change border color */
    box-shadow: 0 1px 3px 0 #19213d1a;
    outline: none;
}

.submit {
    background-color: var(--color2);
    color: #fff;
    border: 0px;
    display: inline-block;
    width: fit-content;
    padding: 1.5rem 4rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 50px;
    transition: filter 0.3s ease;
}

.submit:hover {
    filter: brightness(90%);
}

.offices .cover_img2 {
    border-radius: 2rem;
    height: 100%;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.offices .content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    padding-top: 4rem;
}

.offices .accordion-item {
    border-bottom-color: #ccc;
}

.offices .accordion-item .accordion-button {
    padding: 2rem 0;
    font-size: 2.3rem;
}

.offices .accordion-item .accordion-body {
    padding: 0px;
    padding-bottom: 3rem;
    padding-right: 15%;
}

.offices .accordion-item .accordion-body p {
    font-size: 1.5rem;
    margin-bottom: 0rem;
}

.offices .accordion-item .accordion-body a {
    color: var(--color1);
    text-decoration: none;
    font-weight: 500;
}


.questions {
    background-color: #f1ebf9;
    padding: 6rem 0;
}

.questions .title p {
    color: var(--color1);
}


.customize .container {
    max-width: 1230px;
}

.customize .background {
    background-color: #f8edf2;
    background-image: linear-gradient(240deg, #f0e2f8, #dbb5ec 25%, #fcf2f2 50%, #fefbfb 75%, #f0e2f8 103%);
    padding: 4rem;
    border-radius: 3rem;
}

@media only screen and (max-width:767px) {
    .customize .background {
        padding: 2rem;
    }

    .stats .stat p {
        font-size: 1.1rem;
    }
}

.customize .cover {
    border-radius: 3rem;
    width: 100%;
}

.customize .copy {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.customize .copy h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0px;
}

.customize .copy p {
    margin: 3rem 0;
    font-size: 1.5rem;
    color: var(--color3);
}

.customize .copy .btn {
    align-self: flex-start;
}

.customize .copy hr {
    margin: 2rem 0;
    border-top-width: 1.5px;
    border-color: #a095a5;
}

.customize .copy .box {
    padding: 2.4rem 2.4rem;
    background: #fefefe;
    border-radius: 1.3rem;
    /* box-shadow: 0 0 11.538px 0 rgba(0, 0, 0, .04), 0 38.46px 30.768px -23.076px rgba(95, 92, 121, .22); */
}

.customize .copy .box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0px;
}

.customize .copy .box p {
    margin: 0px;
    margin-top: 1rem;
    color: var(--color1);
    font-size: 1.3rem;
}

.stats {
    margin-top: 5rem;
}

.stats .stat {
    text-align: center;
}

.stats .stat h3 {
    font-size: 4rem;
    font-weight: 700;
}

.stats .stat p {
    color: var(--color1);
}


.customize1 .container {
    background-color: #faf8fd;
    /* background-image: linear-gradient(240deg, #f0e2f8, #dbb5ec 25%, #fcf2f2 50%, #fefbfb 75%, #f0e2f8 103%); */
    padding: 3rem;
    border-radius: 2rem;
    padding-bottom: 3rem;
    max-width: 1180px;
}

.customize1 .cover {
    border-radius: 2rem;
    width: 100%;
    height: 100%;
}

.customize1 .title-sm p {
    color: var(--color1);
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.customize1 .box {
    padding: 2rem 2rem;
    background: #fefefe;
    border-radius: 1.3rem;
    height: 100%;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; */
}

.customize1 .box h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0px;
}

.customize1 .box p {
    margin: 0px;
    margin-top: 1rem;
    color: var(--color1);
    font-size: 1.1rem;
    font-weight: 500;
}

.customize1 .box.one {
    background-color: #f9e7ee;
}

.customize1 .box.two {
    background-color: #dfe8fd;
}

.customize1 .box.three {
    background-color: #ede9fd;
}

.customize1 .box.four {
    background-color: #dff5fe;
}

.customize-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.customize-menu .arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.customize-arrow-prev,
.customize-arrow-next {
    background-color: #fff;
    border: var(--color6) solid 1px;
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px; */
    height: 4rem;
    width: 4rem;
    border-radius: 50px;
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
}

/* Statics */
/* .statics .container{
    max-width: 1230px;
} */
.statics .box {
    background-color: #ccc;
    border-radius: 1rem;
    padding: 1rem;
    height: 100%;
    padding-bottom: 13rem;
    position: relative;
}

.statics .box .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.statics .box .header .icon {
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #000 solid 1.6px;
    padding: 0.8rem;
}

.statics .box h2 {
    margin-bottom: 0px;
    font-size: 4rem;
}

.statics .box p {
    margin-top: 0px;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0px;
    position: absolute;
    left: 0px;
    bottom: 2rem;
    width: 100%;
    padding: 0 2rem;
}

.statics .box.one {
    background-color: #d5f1ff;
}

.statics .box.two {
    background-color: #ffd5ea;
}

.statics .box.three {
    background-color: #d0fbe9;
}

.statics .box.four {
    background-color: #ffefcc;
}

/* Customize end */


.free_call {
    padding: 6rem 0 6rem;
    background-color: #faf8fd;
    position: relative;
    overflow: hidden;
}

.free_call .box .wave {
    position: absolute;
    left: 0px;
    width: 100%;
    opacity: .2;
}

.free_call .box .wave1 {
    position: absolute;
    left: -23rem;
    top: -39rem;
    width: 100%;
    opacity: .2;
    transform: rotate(180deg);
}

.free_call .box {
    text-align: center;
    border: #f3e9f8 solid 1px;
    border-radius: 2rem;
    padding: 6rem 3rem;
    background-color: var(--color3);
    position: relative;
    overflow: hidden;
    /* background-image: linear-gradient(240deg, #f0e2f8, #dbb5ec 25%, #fcf2f2 50%, #fefbfb 75%, #f0e2f8 103%); */
}

.free_call .box h2 {
    font-size: 4rem;
    font-weight: 700;
    text-wrap: balance;
    color: #fff;
}

.free_call .box p {
    font-size: 2rem;
    text-wrap: balance;
    margin: 4rem 0;
    color: #fff;
}

/* .integration .container{
    max-width: 1180px;
} */
.integration .box {
    background-color: #dfe8fd;
    border-radius: 2rem;
    padding: 2rem;
    height: 100%;
    position: relative;
    padding-left: 8rem;
}

.integration .box h3 {
    color: #0b0922;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.integration .box i {
    position: absolute;
    left: 2rem;
    background-color: #fef7f8;
    border-radius: 10px;
    height: 4.5rem;
    width: 4.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color3);
    font-size: 2.5rem;
}

.integration .box p {
    color: #0b0922;
    margin-bottom: 0px;
    font-size: 1.3rem;
    opacity: .8;
}

.integration .box ul {
    margin: 0px;
    padding-left: 1.5rem;
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* two columns */
    gap: 0.5rem 2rem;
    /* spacing between items */
    font-size: 1.3rem;
    margin-top: 1.5rem;
    opacity: .8;
}

@media (max-width: 768px) {
    .integration .box ul {
        grid-template-columns: 1fr;
    }
}

.integration .box.two {
    background-color: #f9e7ee;
}

.integration .box.three {
    background-color: #ede9fd;
}

.integration .box.four {
    background-color: #fdf6c9;
}

.integration .box.five {
    background-color: #121827;
    color: #fff;
}

.integration .box.five h3,
.integration .box.five p {
    color: #fff;
}

.integration .box.five i {
    background-color: #2a303d;
    color: #fff;
}

.integration .box.six {
    background-color: #ddfae6;
}

.integration .box.seven {
    background-color: #dff5fe;
}

/* Exam Detail page */
.introduction {
    padding: 14rem 0;
    background-color: #feedf3;
}

.introduction h2 {
    padding: 2rem 0;
    font-size: 5.7rem;
}

.introduction p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--color1);
}

.introduction .glance {
    /* background: linear-gradient(93deg, #ffe1e1 -33.46%, #f7e0e8 59.02%, #fffcfd 151.5%); */
    padding: 3rem;
    border-radius: 2rem;
    background: linear-gradient(rgba(245, 139, 176, 0.094), rgba(231, 215, 255, 0.333));
    border: 1px solid rgb(239, 231, 246);
}

.introduction .glance h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color3);
}

.introduction .glance ul {
    list-style: none;
    color: var(--color1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.what_exam {
    background: linear-gradient(#ffffffa6, #ffffffa6);
    padding: 6rem 0;
}

.what_exam .num {
    font-weight: 700;
    color: var(--color2);
}

.sm-tag {
    background-color: #ffe1eb;
    display: inline-block;
    color: var(--color3);
    font-size: 1.3rem;
    border-radius: 50px;
    padding: 0.5rem 1.4rem;
    font-weight: 500;
}

.what_exam h2 {
    margin: 2rem 0;
    font-size: 3rem;
    font-weight: 600;
}

.what_exam p {
    color: var(--color1);
}

.what_exam .points {
    list-style: none;
    color: var(--color1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2.5rem;
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.what_exam .points li {
    position: relative;
    padding-left: 1.5rem;
}

.what_exam .points li::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 5px;
    height: 8px;
    width: 8px;
    border-radius: 50px;
    background-color: var(--color2);
}

.what_exam .copy.right h2 {
    font-size: 2rem;
}

.what_exam .copy.right ul {
    color: var(--color1);
    margin: 0px;
    /* padding: 0px; */
}

.what_exam .copy.right ul li {
    margin-bottom: 1.5rem;
}

.what_exam .copy.right ul li:last-child {
    margin-bottom: 0px;
}


.what_exam .equal ul {
    color: var(--color1);
    margin: 0px;
    /* padding: 0px; */
}

.what_exam .equal ul li {
    margin-bottom: 1.5rem;
}

.what_exam .equal ul li:last-child {
    margin-bottom: 0px;
}

.candidate {
    background-color: #f6edf4;
    padding: 6rem 0;
}

.candidate h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.candidate p {
    color: var(--color1);
    margin: 2rem 0;
}

.candidate ul {
    color: var(--color1);
    margin: 0px;
}

.candidate ul li {
    margin-bottom: 1.5rem;
}

.candidate ul li:last-child {
    margin-bottom: 0px;
}

.how_works {
    background-color: #fbf9fc;
    padding: 6rem 0;
}

.how_works h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.how_works ul {
    list-style: none;
    margin: 0px;
    padding: 3rem 0;
    padding-left: 3rem;
    position: relative;
    color: var(--color1);
}

.how_works ul::before {
    width: 1px;
    height: 100%;
    position: absolute;
    background-color: #dbdbdb54;
    content: '';
    left: 0px;
    top: 0px;
}

.how_works ul li {
    margin-bottom: 2.5rem;
    position: relative;
    line-height: 1.6;
}

.how_works ul li:last-child {
    margin-bottom: 0px;
}

.how_works ul li strong {
    display: block;
}

.how_works ul li::before {
    content: '';
    position: absolute;
    left: -3.4rem;
    top: 0.7rem;
    height: 1rem;
    width: 1rem;
    border-radius: 50px;
    background-color: var(--color2);
}

.measures {
    padding: 6rem 0;
    background-color: #fbeef4;
}

.measures h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.measures p {
    color: var(--color1);
    margin-bottom: 4rem;
}

.measures .box {
    color: var(--color1);
}

.measures .box i {
    font-size: 2.5rem;
    background-color: var(--color2);
    color: #fff;
    height: 3.5rem;
    width: 3.5rem;
    display: inline-flex;
    font-size: 2.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.measures .box h3 {
    margin: 1.2rem 0;
}

.explore {
    padding: 6rem 0;
    background-color: #faf8fd;
}

.explore h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.explore p {
    color: var(--color1);
    margin-bottom: 4rem;
}



.card1 {
    padding: 2rem;
    border-radius: 2rem;
    height: 100%;
    position: relative;
    border: rgb(239, 231, 246) solid 1px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(14, 26, 58, 0.06) 0px 16px 40px;
    transition: all .5s ease;
    height: 100%;
}

.card1:hover {
    transform: translateY(1rem);
}

.card1 .sm-tag {
    font-size: 1rem;
    background-color: #e1d7fe;
}

.card1 .line {
    width: 50px;
    display: block;
    height: 5px;
    background-color: var(--color2);
    border-radius: 50px;
}

.card1 .line2 {
    background-color: rgb(231, 215, 255);
}

.card1 h3 {
    margin: 1.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 7px;
}

.card1 p {
    font-size: 1.3rem;
}

.card1 ul {
    color: var(--color1);
    font-size: 1.3rem;
}

.card1 ol {
    color: var(--color1);
    font-size: 1.3rem;
    list-style: none;
    margin: 0px;
    padding: 0px;
    line-height: 1.6;
}

.card1 ol li {
    margin-bottom: 1.5rem;
}

.card1 ol li:last-child {
    margin-bottom: 0px;
}

.card1 a {
    color: var(--color2);
    text-decoration: none;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
}

.card1 a i {
    font-size: 1.8rem;
    margin-left: 0.8rem;
}

.detail_faq {
    background-color: #fcf8fd;
    padding: 6rem 0;
}

.detail_faq h2.title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.detail_book {
    padding: 6rem 0;
    background-color: #f2eafb;
}

.detail_book h2 {
    font-weight: 600;
    font-size: 2.5rem;
}

.detail_book p {
    color: var(--color1);
    margin-bottom: 0px;
}

.detail_book .container {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #fff;
    padding: 3rem 2.5rem;
    border-radius: 2rem;
}

.payment_easy .frame {
    border-radius: 2rem;
    width: 100%;
    object-fit: cover;
}

.payment_easy .box h3 {
    font-size: 4rem;
}

.payment_easy .box p {
    font-size: 1.3rem;
    margin-bottom: 0px;
}

.payment_easy .box {
    background-color: var(--color1);
    border-radius: 2rem;
    min-height: 24rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 100%; */
    background: url('/images/exam/pattern.webp') left top / cover no-repeat,
        linear-gradient(314deg, #fcf4fa 4.9%, #cbc5e1 97.99%);
    color: var(--color3);
}

.payment_easy .box.two {
    background: url('/images/exam/pattern.webp') left top / cover no-repeat,
        linear-gradient(314deg, #fff 4.9%, var(--color6) 97.99%);
}

@media only screen and (max-width: 767px) {
    .payment_easy .frame {
        aspect-ratio: 1;
        object-fit: cover;
        object-position: center;
        width: 100%;
    }

    .payment_easy .box {
        aspect-ratio: 1;
    }
}

.informed h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color3);
    margin-bottom: 4rem;
}

.informed p {
    color: var(--color3);
    margin-bottom: 4rem;
}

.informed ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.informed ul li {
    font-weight: 600;
    padding: 2rem 0;
    border-top: var(--color6) solid 1px;
    padding-left: 2.5rem;
    position: relative;
    display: flex;
    align-items: center;
}

.informed ul li:last-child {
    border-bottom: var(--color6) solid 1px;
}

.informed ul li::before {
    content: '';
    position: absolute;
    left: 0px;
    height: 8px;
    width: 8px;
    border-radius: 50px;
    background-color: var(--color2);
}

.informed a {
    display: block;
    width: 100%;
    margin-top: 3.5rem;
}

.informed .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.informed .left img {
    border-radius: 2rem;
    min-height: 40rem;
    object-fit: cover;
}

.informed .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.culture {
    background-color: #faf8fd;
}

.culture h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color3);
    margin-bottom: 2rem;
}

.culture p {
    color: var(--color1);
}

.culture .box {
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 2rem;
    border-radius: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.5s ease;
    border: transparent solid 1px;
}

.culture .box .icon {
    background-color: #ffcaca78;
    color: var(--color3);
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.culture .box:hover {
    background-color: #dff5fe;
    transition: all 0.5s ease;
    border: #d5f1fc solid 1px;
    transform: translateY(5px);
}

.culture .box:hover .icon {
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.culture .box h3 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: var(--color3);
}

.b2b {
    padding: 6rem 0;
}

.b2b .box {
    background: url('/images/book_bg.webp') left top / cover no-repeat;
    text-align: center;
    padding: 8rem 0;
    border-radius: 2rem;
}

.b2b .box h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color6);
}

.b2b .box a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.b2b .link-box {
    display: flex;
}

.b2b .link-box .svg_icon {
    width: 15%;
    opacity: .5;
}

.b2b .link-box .svg_icon img {
    width: 80%;
}

.b2b .link-box .copy {
    width: 75%;
}

.b2b .link-box {
    background-color: #f4edf7;
    text-decoration: none;
    padding: 2rem 1rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
}

.b2b .link-box p {
    margin-bottom: 0px;
}

.b2b .link-box .icon {
    width: 10%;
    font-size: 3rem;
    color: var(--color2);
    opacity: .8;
}

.b2b .link-box h3 {
    color: var(--color3);
    font-size: 1.5rem;
}

.b2b .link-box p {
    color: var(--color1);
}



.history .copy {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.history .title-sm .tag {
    margin-bottom: 1rem;
    display: inline-block;
}

.history .title-sm h2 span {
    color: var(--color2);
}

.history .title-sm p {
    color: var(--color1);
}

.history img {
    border-radius: 2rem;
    height: 100%;
    object-fit: cover;
}




.history ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-top: auto;
}

.history ul li {
    font-weight: 600;
    padding: 2rem 0;
    border-top: var(--color6) solid 1px;
    padding-left: 2.5rem;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}

.history ul li strong {
    margin-right: 5px;
}

.history ul li:last-child {
    border-bottom: var(--color6) solid 1px;
}

.history ul li::before {
    content: '';
    position: absolute;
    left: 0px;
    height: 8px;
    width: 8px;
    border-radius: 50px;
    background-color: var(--color2);
}

.closer .container {
    max-width: 1230px;
}

.closer .inner {
    padding: 5rem;
    background-color: var(--color3);
    border-radius: 3rem;
}

.closer .inner .title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7rem;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.closer .inner .title h2 {
    color: #fff;
}

.closer .stream {
    background-color: #133252;
    border-radius: 3rem;
    padding: 5rem;
    padding-right: 12.5rem;
    padding-bottom: 0px;
    color: #fff;
    overflow: hidden;
}

.closer .stream .dashboards {
    position: relative;
    height: 100%;
}

.closer .stream .dashboards img {
    position: absolute;
    bottom: -2rem;
}

.closer .stream .dashboards .dash-1 {
    position: absolute;
    top: -1rem;
    right: -7.4rem;
}

.closer .stream h3 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.closer .stream p {
    margin-bottom: 15rem;
}

.closer .stream ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 5rem;
}

.closer .stream ul li {
    position: relative;
    padding-left: 1.5rem;
}

.closer .stream ul li::before {
    position: absolute;
    left: 0px;
    top: 5px;
    content: '';
    background-color: var(--color2);
    height: 8px;
    width: 7px;
    border-radius: 50px;
}

.closer .cards {
    margin-top: 5rem;
}

.closer .cards .card {
    border: 0px;
    padding: 3rem;
    border-radius: 3rem;
}

.closer .cards .card .icon {
    background-color: #735ff4;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 2rem;
    display: flex;
}

.closer .cards .card h3 {
    font-size: 2rem;
    font-weight: 700;
}

.closer .cards .card p {
    margin-bottom: 0px;
    opacity: .8;
}

.closer .cards .card .icon.two {
    background-color: #ff6bc4;
}

.closer .cards .card .icon.three {
    background-color: #fbe274;
}

@media only screen and (max-width:992px) {
    .closer .inner {
        padding: 2rem;
    }

    .closer .stream {
        padding: 2rem;
    }

    .closer .stream p {
        margin-bottom: 2rem;
    }

    .closer .stream .dashboards {
        text-align: center;
    }

    .closer .stream .dashboards img,
    .closer .stream .dashboards .dash-1 {
        position: inherit;
        bottom: inherit;
        top: inherit;
        margin: 0 auto;
        margin-top: 1rem;
        right: inherit;
    }

    .closer .cards .card {
        height: 100%;
    }
}

.makes .box {
    border-radius: 3rem;
    padding: 3rem;
    background-color: #f4edf7;
    height: 100%;
}

.makes .box h2 {
    position: relative;
    padding-left: 7rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-weight: 700;
    font-size: 1.8rem;
    min-height: 8rem;
}

.makes .box h2 .highlight {
    text-transform: uppercase;
    color: var(--color1);
    font-size: 1.3rem;
    display: block;
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.makes .box h2 img {
    position: absolute;
    left: 0px;
    height: 6rem;
    width: 6rem;
    border-radius: 50px;
    background-color: var(--color2);
    padding: 1rem;
}

.makes .box p {
    font-size: 1.5rem;
    color: var(--color1);
}

.mission p {
    opacity: .8;
    margin-bottom: 4rem;
}

.mission .title-sm .tag {
    margin-bottom: 2rem;
    display: inline-block;
}

.mission .title-sm h2 span {
    color: var(--color2);
}

.mission .title-sm p {
    color: #000;
    opacity: .7;
    margin-bottom: 6rem;
}

.mission .image {
    background-color: var(--color3);
    height: 100%;
    position: relative;
    border-radius: 3rem;
}

.mission .image .card-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    border-radius: 3rem;
    animation: cardShake 3s ease-in-out infinite;
}

@keyframes cardShake {
    0% {
        margin-top: 0;
    }

    50% {
        margin-top: 1rem;
    }

    100% {
        margin-top: 0;
    }
}

.mission .copy {
    position: relative;
    padding-left: 4rem;
    padding-right: 25%;
    margin-bottom: 3rem;
}

.mission .copy i {
    position: absolute;
    left: 0;
    font-size: 3rem;
    color: var(--color2);
}

.mission .copy h3 {
    font-weight: 700;
}


.tech {
    background-color: var(--color3);
}

.tech h2,
.tech h3,
.tech p,
.tech .title-sm p {
    color: #fff;
}

.tech i {
    color: var(--color2);
}

.mission .circle-pic {
    height: 100%;
    position: relative;
}

.mission .circle-pic .circle-photo {
    display: inline-block;
    animation: rotateBack 8s ease-in-out infinite;
    transform-origin: center;
}

@keyframes rotateBack {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-50deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.mission .circle-pic .round {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 30rem;
    width: 30rem;
    border-radius: 50%;
    background-color: #000;
    background-image: linear-gradient(#866bf0, #ea7343);
}

@keyframes waveShake {
    0% {
        margin-top: 0;
    }

    50% {
        margin-top: 1rem;
    }

    100% {
        margin-top: 0;
    }
}

.mission .circle-pic .center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    border-radius: 3rem;
    animation: waveShake 3s ease-in-out infinite;
}

@media only screen and (max-width:992px) {
    .mission .circle-pic {
        max-width: 50rem;
        margin: 0 auto;
    }
}

.principles {
    background-image: linear-gradient(#866bf0, var(--color2));
}

.principles .title-sm h2,
.principles .title-sm p {
    color: #fff;
}

.principles .box {
    background-color: var(--color3);
    border-radius: 3rem;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.principles .box h3 {
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
    color: #fff;
}

.principles .box p {
    margin-bottom: 0px;
    color: #fff;
}

.principles .box h3::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 5px;
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50px;
    background-color: var(--color2);
}

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

    .about,
    .payment_easy,
    .product,
    .price,
    .customize,
    .culture,
    .history,
    .informed,
    .plan,
    .faq,
    .b2b,
    .home-hero,
    .closer,
    .card-about,
    .mission,
    .exam-banner {
        overflow: hidden;
    }
}

.protection .boxes .box {
    border-radius: 2rem;
    background-color: #ebeaf3;
    overflow: hidden;
    height: 100%;
}

.protection .boxes .copy {
    padding: 2rem;
}

.protection .boxes .copy h3 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.protection .boxes .copy p {
    margin-bottom: 2.5rem;
}

.protection .boxes .copy ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.protection .boxes .copy ul li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.protection .boxes .copy ul li i {
    position: absolute;
    left: 0px;
    top: -2px;
    font-size: 2rem;
}

.protection .boxes .copy ul li:last-child {
    margin-bottom: 0;
}


.protection .boxes .boxsm h3 {
    font-size: 2.2rem;
}

.protection .boxes .boxsm p {
    font-size: 1.4rem;
}

.protection .boxes .boxsm {
    background-color: #f9e7ee;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.protection .boxes .boxsm img {
    border-radius: 1rem;
    border: #f5d1df solid 4px;
}

.protection .boxes .bottom2 {
    background-color: #dfe8fd;
}

.protection .boxes .bottom2 img {
    border: #cbdafd solid 4px;
}

.protection .boxes .bottom3 {
    background-color: #ede9fd;
}

.protection .boxes .bottom3 img {
    border: #d7d0f4 solid 4px;
}

/* process */
.process {
    background: url(/images/exam/pattern.webp) left top / cover no-repeat, linear-gradient(314deg, #fff 4.9%, var(--color6) 97.99%);
}

.process .title-sm {
    position: sticky;
    top: 8rem;
}

.process .title-sm svg {
    width: 10rem;
    height: 10rem;
    margin-bottom: 2rem;
}

.process .title-sm svg path {
    fill: none;
    stroke: var(--color2);
    stroke-width: 18px;
}

.process .title-sm h2 {
    margin-bottom: 0px;
}

.process .title-sm p {
    color: var(--color3);
    margin: 3rem 0;
    line-height: 1.5;
    font-size: 1.4rem;
}

.process .box {
    border: 0px;
    border-radius: 1.15rem;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 5rem;
    padding-top: 2rem;
    max-width: 60rem;
    margin-bottom: 5rem;
    position: sticky;
    top: 10rem;
}

.process .box:nth-child(2) {
    top: 18.5rem;
}

.process .box:nth-child(3) {
    top: 27rem;
}

.process .box:nth-child(4) {
    top: 35.5rem;
}

.process .box:nth-child(5) {
    top: 44rem;
}

.process .box:nth-child(6) {
    top: 70rem;
}

.process .box .heading {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.process .box .heading h2 {
    font-weight: 600;
}

.process .box p {
    margin-bottom: 0px;
    color: var(--color1);
    font-size: 1.4rem;
    line-height: 1.5;
}

.process .box .heading .num {
    width: 5rem;
    height: 5rem;
    background-color: var(--color2);
    color: #fff;
    border-radius: 50px;
    display: grid;
    place-content: center;
    box-shadow: #f38ab299 0px 0px 4px 3px;
    font-size: 1.7rem;
    font-weight: 800;
}

.transforming {
    background-color: #f4edf7;
    background-image: linear-gradient(90deg, var(--color1) 2%, var(--color5) 98%);
    color: #fff;
}

.transforming .container {
    max-width: 1230px;
}

.transforming .title-sm {
    border-right: #fff5 solid 1px;
    padding-right: 3rem;

}

.transforming .title-sm .tag {
    padding-bottom: 2rem;
    display: block;
}

.transforming .title-sm h2 {
    color: #fff;
}

.transforming .title-sm p {
    color: #fff !important;
    opacity: .8;
    margin: 1.5rem 0 3rem;
}

.transforming .box {
    position: relative;
    padding: 3rem;
    padding-left: 6.5rem;
    height: 100%;
}

.transforming .box i {
    position: absolute;
    left: 2rem;
    top: 2.5rem;
    font-size: 3rem;
    color: #fff8;
}

.transforming .box h2 {
    color: #fff;
    margin-bottom: 3rem;
}

.transforming .box p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 1.4rem;
    line-height: 1.5;
    text-wrap: balance;
}


/* creative */
.creative .box .image {
    background-color: #dff5fe;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.creative .box .image.two {
    background-color: #ede9fd;
}

.creative .box {
    margin-top: 3rem;
    border: var(--color5) solid 1px;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
}

.creative .box .copy {
    padding: 3rem 2rem 3rem 0;
}

.creative .box h2 {
    font-size: 2.5rem;
}

.creative .box p {
    margin: 4rem 0;
    color: #0008;
}

.creative .box .bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

/* your_exam */
.your_exam {
    background: linear-gradient(180deg, #faf5ff, #fff3f3 77.67%, #fefefe) no-repeat bottom;
}

.your_exam .container {
    max-width: 1230px;
}

.your_exam .image {
    height: 100%;
}

.your_exam .image img {
    border-radius: 2rem;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

.your_exam .buttons {
    display: flex;
    flex-wrap: wrap;
    margin: 5rem 0
}

.your_exam .buttons a {
    text-decoration: none;
    display: inline-block;
    padding: 1.3rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    color: var(--color3);
}

.your_exam .buttons .otherLink {
    position: relative;
}

.your_exam .buttons .otherLink:hover {
    color: var(--color2);
}

.your_exam .buttons .otherLink::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 4px;
    border-radius: 50px;
    background-color: var(--color1);
    transition: all 0.3s ease;
}

.your_exam .buttons .otherLink:last-child::after {
    display: none;
}

.your_exam .buttons .booking {
    background-color: var(--color3);
    color: #fff;
}

.your_exam .buttons .booking:hover {
    background-color: var(--color6);
    color: var(--color3);
}

.your_exam .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.your_exam .tabs .box {
    background-color: var(--color4);
    /* border: var(--color5) solid 1px; */
    border-radius: 1rem;
    padding: 1rem;
    color: var(--color3);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 1rem;
    padding: 1.5rem 2rem;
}

.your_exam .tabs .box i {
    font-size: 2rem;
}

/* Funded */
.founded .heading {
    position: sticky;
    top: 15rem;
}

.founded .heading h2 {
    margin-bottom: 0px;
    font-size: 3.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.founded .heading h2 span {
    color: var(--color2);
}

.founded .box {
    background-color: #d5f1ff;
    transition: all .4s;
    cursor: pointer;
    padding: 5.4rem 5rem;
    margin-bottom: 4rem;
    border-radius: 2rem;
}

.founded .box img {
    width: 7rem;
}

.founded .box ul {
    line-height: 1.7;
}

.founded .box:last-child {
    margin-bottom: 0px;
}

.founded .box:nth-child(2) {
    background-color: #ffd5ea;
}

.founded .box:nth-child(3) {
    background-color: #d0fbe9;
}

/* .founded .box:nth-child(3) h3{
    color: #fff;
}
.founded .box:nth-child(3) ul{
    color: #fff9;
} */
.founded .box:nth-child(4) {
    background-color: #ffefcc;
}

.founded .box:hover {
    background-color: #acacac;
}

.founded .box img {
    margin-bottom: 6.5rem;
    display: inline-block;
}

.founded .box h3 {
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 3rem;
    /* text-transform: uppercase; */
    color: #1f1f1f;
}

.founded .box p {
    margin-bottom: 0px;
    color: #1f1f1f99;
    letter-spacing: -.72px;
    font-size: 1.8rem;
    line-height: 150%;
}


/* core_feature */
.core_feature {
    background-color: #faf8fd;
}

.core_feature .box {
    background-color: #fff;
    border-radius: 2rem;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
    min-height: 24rem;
    transition: all 0.5s ease;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 1px 8px;
}

.core_feature .box .top {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
}

.core_feature .box h3 {
    color: var(--color3);
    transition: all .5s ease;
    margin-bottom: 0px;
}

.core_feature .box h3 span {
    color: var(--color3);
}

.core_feature .box .icon {
    background-color: var(--color2);
    color: var(--color3);
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: all .5s ease;
    flex: 0 0 1;
}

.core_feature .box .icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.core_feature .box .icon svg path {
    fill: #fff;
    stroke: #fff;
}

.core_feature .image {
    height: 100%;
}

.core_feature .image img {
    border-radius: 2rem;
    height: 100%;
    object-fit: cover;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 1px 8px;
}

.core_feature .box:hover h3 {
    color: var(--color3);
    transition: all .5s ease;
}

.core_feature .box:hover .icon {
    transform: rotate(360deg);
    transition: all .5s ease;
}

.core_feature .box:hover {
    background-color: #dff5fe;
    transition: all 0.5s ease;
    transform: translateY(5px);
}

/* customer_stats */
.customer_stats .box {
    border-radius: 2rem;
    background-color: #ebe9e5;
    padding: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.customer_stats .box:last-child {
    margin-bottom: 0px;
}

.customer_stats .box h3 {
    color: #131313;
    font-size: 4rem;
    margin-bottom: 2rem;
}

.customer_stats .box h4 {
    color: #131313;
    margin-bottom: 0px;
    font-weight: 400;
}

.customer_stats .box p {
    color: #111111a6;
    margin-bottom: 0px;
}

.customer_stats .image {
    height: 100%;
}

.customer_stats .image img {
    border-radius: 2rem;
    height: 100%;
    object-fit: cover;
}

/* idea */
.idea .box {
    border: 1px solid #f2f2f2;
    border-radius: 1.2rem;
    background-color: #fafafa;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    display: flex;
    height: 100%;
}

.idea .box span {
    font-weight: 300;
    display: block;
    margin-bottom: 2rem;
}

.idea .box h2 {
    font-size: 3rem;
}

.idea .box p {
    font-size: 1.4rem;
    margin: 3rem 0;
}

.alignment {
    background: #f8edf6;
}

.label .box {
    border-color: rgb(239, 231, 246);
    background: rgb(255, 255, 255);
    box-shadow: rgba(14, 26, 58, 0.06) 0px 16px 40px;
    border-radius: 2.4rem;
    padding: 1.5rem;
    height: 100%;
}

.label .box .lebel-tag {
    color: var(--color2);
    font-size: 1.3rem;
}

.label .box h3 {
    font-size: 1.4rem;
    margin: 1rem 0;
}

.label .box p {
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 0px;
    opacity: .8;
}

.cta_link {
    display: inline-flex;
    color: var(--color2);
    align-items: center;
    transition: all .5s ease;
}

.cta_link:hover {
    color: var(--color3);
}

.measures table {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: rgba(14, 26, 58, 0.06) 0px 16px 40px;
}

.table>:not(caption)>*>* {
    padding: 1.5rem;
    color: var(--color1);
}

.already {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;

    background: #dc3545;
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 500;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

    animation:
        slideUpFade 0.4s ease,
        hideToast 5s forwards;
}


.successalready {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;

    background: green;
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 500;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

    animation:
        slideUpFade 0.4s ease,
        hideToast 5s forwards;
}

/* Entry animation */
@keyframes slideUpFade {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Auto hide after 5 sec */
@keyframes hideToast {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.auth-text {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
}

.auth-text a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.auth-text a:hover {
    text-decoration: underline;
}