/*=============== FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/PoppinsVN-400.ttf");
    font-weight: 400;
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/PoppinsVN-400-italic.ttf");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/PoppinsVN-500.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/PoppinsVN-600.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/PoppinsVN-700.ttf");
    font-weight: 700;
}
/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 60px;
    /*========== Font and typography ==========*/
    --body-font: "Poppins", sans-serif;
    --title-font: "Montserrat", sans-serif;
    --first-color: #f48120;
    --first-color-alt: #f58020e7;
    --title-color: #18949e;
    --text-color: #3e3e3e;
    --white-color: #ffffff;
    --bg-section-color: #f5f5f5;
    --bg-section-blue-color: #f4feff;
    --biggest-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
    /*========== Font weight ==========*/
    --font-normal: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-black: 900;
    /*========== Margin Bottom ==========*/
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    /*========== Margin Left ==========*/
    --ml-0-25: 0.25rem;
    --ml-0-5: 0.5rem;
    --ml-0-75: 0.75rem;
    --ml-1: 1rem;
    --ml-1-5: 1.5rem;
    --ml-2: 2rem;
    --ml-2-5: 2.5rem;
    /*========== Margin right ==========*/
    --mr-0-25: 0.25rem;
    --mr-0-5: 0.5rem;
    --mr-0-75: 0.75rem;
    --mr-1: 1rem;
    --mr-1-5: 1.5rem;
    --mr-2: 2rem;
    --mr-2-5: 2.5rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}
@media screen and (min-width: 992px) {
    :root {
        --biggest-font-size: 2.875rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: 0.875rem;
        --smaller-font-size: 0.813rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--text-color);
}

h1,
h2,
h3,
h4 {
    font-family: var(--title-font);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input {
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

.button-test {
    font-weight: var(--font-bold);
    border: 2px solid var(--first-color) !important;

    background-color: var(--first-color) !important;
}

.button-test span {
    color: #fff !important;
}

.button-test:hover {
    border: 2px solid var(--first-color) !important;
    background-color: transparent !important;
}

.button-test:hover span {
    color: var(--first-color) !important;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
    padding: calc(var(--header-height) - 1rem) 0
        calc(var(--header-height) + 1rem);
}
.section__title {
    font-size: var(--h1-font-size);
    margin-bottom: var(--mb-2);
    font-weight: var(--font-bold);
}
.section__title::after {
    content: " ";
    position: relative;
    top: 5px;
    display: block;
    width: 20%;
    height: 3px;
    background-color: var(--first-color);
}

/*=============== LAYOUT ===============*/
.container {
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
}

.main {
    position: relative;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
@-moz-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
@-ms-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
@-o-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
/*=============== BUTTON ===============*/
.button {
    display: inline-block;
    background-color: var(--first-color);
    color: var(--title-color);
    padding: 1rem 1.75rem;
    border-radius: 0.5rem;
    font-family: var(--title-font);
    font-weight: var(--font-semi-bold);
    transition: 0.3s;
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
.button__icon {
    font-size: 1.25rem;
}
.button--ghost {
    border: 2px solid;
    background-color: transparent;
    border-radius: 3rem;
    padding: 0.75rem 1.5rem;
}
.button--link {
    color: var(--title-color);
}
.button--flex {
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
}

.button:hover {
    background-color: var(--text-color);
    text-decoration: none;
}

/*=============== HEADER ===============*/
.header {
    width: 100%;
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
}
.header__switch {
    position: relative;
    display: inline-block;
    margin: 0 5px;
}
.header__switch > span {
    position: absolute;
    top: 10px;
    pointer-events: none;
    font-weight: var(--font-bold);
    font-size: var(--smaller-font-size);
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    width: 50%;
    text-align: center;
}
.header__switch--on {
    left: 0;
    padding-left: 2px;
    color: #0097bd;
}
.header__switch--off {
    right: 0;
    padding-right: 4px;
    color: #fff;
}
.header__check--toggle-round + label {
    padding: 2px;
    width: 97px;
    height: 35px;
    background-color: #0097bd;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}
.header__check--toggle-round + label:before,
.header__check--toggle-round + label:after {
    display: block;
    position: absolute;
    content: "";
}
.header__check--toggle-round + label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: #0097bd;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}
.header__check--toggle-round + label:after {
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: 48px;
    background-color: #fff;
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    -ms-border-radius: 52px;
    -o-border-radius: 52px;
    border-radius: 52px;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
}
.header__check--toggle-round:checked + label:after {
    margin-left: 41px;
}
.header__check--toggle-round:checked ~ .header__switch--off {
    color: #0097bd;
}
.header__check--toggle-round:checked ~ .header__switch--on {
    color: #fff;
}
.header__check--toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}
.header__check--toggle + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__menu {
    flex: 1;
}
.nav__menu-sub {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.nav__flag {
    display: flex;
}
.nav__language {
    justify-self: center;
    cursor: pointer;
}
.nav__logo {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-weight: var(--font-medium);
}
.nav__logo-img {
    width: 80%;
    transform: translateY(-5px);
}
.nav__toggle {
    font-size: 1.25rem;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        width: 100%;
        top: -150%;
        left: 0;
        padding: 3.5rem 0;
        transition: 0.4s;
        z-index: var(--z-fixed);
        border-radius: 0 0 1.5rem 1.5rem;
    }
}
.nav__close {
    font-size: 1.8rem;
    position: absolute;
    top: 0.5rem;
    right: 0.7rem;
    cursor: pointer;
}
.nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
    margin-bottom: var(--mb-1-5);
}
.nav__link {
    text-transform: uppercase;
    font-weight: var(--font-medium);
    color: #0097bd;
    font-family: var(--title-font);
    font-size: var(--small-font-size);
    transition: 0.4s;
}
.nav__link:hover {
    color: var(--first-color);
}

/*=============== SHOW MENU ===============*/
.show-menu {
    top: 0;
    background-color: var(--white-color);
    box-shadow: 0px 4px 15px #eaeaea;
}

.scroll-header {
    position: fixed;
    background-color: var(--white-color);
    box-shadow: 0px 4px 15px #eaeaea;
}

/* Active link */
.active-link {
    color: var(--first-color);
}

.home {
    position: relative;
}
.home__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: fill;
    object-position: center;
}
.home__content {
    padding: calc(var(--header-height) + 50px) 0 50px;
    row-gap: 2rem;
}
.home__group {
    display: grid;
    position: relative;
}
.home__img {
    max-width: 100%;
    justify-self: center;
}
.home__details-img {
    position: absolute;
    right: 0.5rem;
}
.home__details-title,
.home__details-subtitle {
    display: block;
    font-size: var(--small-font-size);
    text-align: right;
}
.home__subtitle {
    font-family: var(--body-font);
    color: var(--text-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-bold);
}
.home__mb {
    margin-bottom: 27px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.home__mb img:last-child {
    width: 100px;
    margin-left: 20px;
}
.home__title {
    font-size: var(--biggest-font-size);
    font-weight: var(--font-black);
    margin-bottom: var(--mb-1);
}
.home__title span {
    color: var(--first-color);
}
.home__tagline {
    color: var(--text-color);
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
    letter-spacing: -0.7px;
}
.home__description {
    line-height: 22px;
    margin-bottom: 27px;
    list-style-type: disc;
    margin-left: 20px;
    max-width: 360px;
}
.home__description li {
    margin-bottom: 7px;
}
.home__buttons {
    margin-bottom: 0;
}
.home__buttons a span {
    font-size: var(--normal-font-size);
    color: var(--white-color);
    text-transform: uppercase;
}

section#introduction {
    padding-bottom: 0;
}

.introduction__text p {
    text-align: justify;
    margin-bottom: 5px;
    line-height: 24px;
    font-size: 15.8px;
}
.introduction__text ul {
    margin-bottom: 10px;
    list-style-type: disc;
}
.introduction__text ul li {
    margin-left: 20px;
}
.introduction__text ul li span {
    line-height: 22px;
    text-align: justify;
}
/* .introduction__text ul li:first-child {
    margin-left: 0;
    list-style-type: none;
} */
.introduction__img {
    width: 400px;
    transform: translateY(-40px);
    height: auto;
}
.introduction__group {
    justify-self: center;
}

.introduction__buttons {
    display: flex;
    justify-content: space-between;
    justify-self: center;
    margin-top: var(--mb-1-5);
    margin-bottom: 50px;
}
.introduction__buttons a span {
    font-size: var(--normal-font-size);
    color: #fff;
}

.introduction__buttons-cta {
    position: fixed;
    z-index: 10;
    bottom: 35px;
    right: 20px;
    transform: translateX(150%);
    transition: all 0.5s ease;
}

.button-cta {
    color: #fff;
    font-size: 16px;
    animation: headerAnimation;
    transition: 1s;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.button-cta span {
    color: unset !important;
}

.button-cta:hover {
    background-color: #fff;
    color: #f48120;
    border: 1px solid #f48120;
    animation: unset;
    text-decoration: none;
}

@keyframes headerAnimation {
    0% {
        background-color: #fff;
        color: #f48120;
        border: 1px solid #f48120;
    }
    50% {
        color: #fff;
        background-color: #f48120;
    }
    100% {
        background-color: #fff;
        color: #f48120;
        border: 1px solid #f48120;
    }
}

section#structure {
    margin-bottom: -20px;
}

.structure .modal-content {
    border-radius: 12px;
    width: 726px;
}

.structure .modal-header {
    justify-content: center;
    background-color: #46b4bd;
}

.structure .modal-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
}

.structure .modal-body span,
.structure .modal-body li span {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.structure .modal ul {
    margin-bottom: 4px;
}

.structure .btn-modal {
    display: block;
    width: 150px;
    height: 50px;
    line-height: 30px;
    font-size: 16px;
    font-family: sans-serif;
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    transition: all 0.35s;
    background-color: #46b4bd;
    overflow: hidden;
    border: 1px solid #46b4bd;
    outline: none;
    font-weight: 600;
    margin: 20px auto 10px;
}

.structure .btn-modal {
    position: relative;
    z-index: 2;
}

.structure .btn-modal:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    transition: all 0.35s;
    z-index: -1;
}

.structure .btn-modal:hover {
    color: #000;
    border: 1px solid #46b4bd;
}

.structure .modal-footer {
    border-top: unset;
    justify-content: center;
}

.structure .modal-footer button {
    width: 144px;
    height: 45px;
    background: #46b4bd;
    border-radius: 10px;
    border: none;
    outline: none;
}

.structure .btn-modal:hover:after {
    width: 100%;
}

.structure {
    background-color: var(--bg-section-blue-color);
}
.structure__img {
    width: 76px;
    height: 76px;
    background-color: #fff;
    border-radius: 50%;
}
.structure__box {
    margin-top: 30px;
}
.structure__box--top {
    display: flex;
    align-items: center;
    border-radius: 15px;
    padding: 23px;
    padding-bottom: 20px;
    background-color: #46b4bd;
    margin-bottom: 30px;
}
.structure__box--top > .structure__text {
    color: #fff;
    margin-left: 20px;
}
.structure__box--top > .structure__text p {
    font-size: var(--small-font-size);
    line-height: 22px;
    margin-bottom: 0;
}
.structure__box--top > .structure__text h6 {
    font-size: var(--h2-font-size);
    line-height: 24px;
    padding: 5px 0;
    margin-bottom: 0;
}
.structure__box--bottom {
    position: relative;
    padding: 0 10px;
}
.structure__box--bottom .structure__line {
    display: none;
    position: absolute;
    top: 30px;
    left: -20px;
}
.structure__box--bottom p {
    font-size: 15.4px;
    line-height: 22px;
    margin-bottom: 7px;
}
.structure__box--bottom ul {
    list-style-type: disc;
    margin-left: 25px;
}
.structure__box--bottom ul li {
    margin-top: 12px;
}
.structure__box:first-child {
    margin-top: 0;
}

.question {
    background-color: var(--bg-section-color);
}
.question .section__title {
    margin-bottom: 50px;
}
.question__content {
    display: flex;
    flex-direction: column-reverse;
}
.question__text p {
    text-align: justify;
    margin-bottom: var(--mb-1-5);
    line-height: 22px;
}
.question__img {
    justify-self: center;
    position: relative;
    margin-bottom: 40px;
}
.question__buttons {
    display: flex;
    justify-self: center;
}
.question__buttons .button {
    animation: none;
}
.question__buttons button {
    font-size: var(--normal-font-size);
    color: #ffffff;
}
.question__buttons button:first-child {
    margin-right: 7px;
}
.question__buttons button:last-child {
    margin-left: 7px;
}
.question__buttons .btn__blue {
    background-color: var(--title-color);
    color: #ffffff;
}
.question__buttons .btn__blue:hover {
    background-color: var(--text-color);
}

.process {
    background-color: var(--bg-section-color);
    padding-top: 0;
}
.process__group {
    display: none;
}
.process__step {
    display: flex;
    position: relative;
    align-items: center;
    margin-bottom: 28px;
}
.process__step:last-child {
    margin-bottom: 0;
}
.process__img {
    position: relative;
    transform: translate(-30px, -100px);
}
.process__num {
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--title-color);
    justify-content: center;
    align-items: center;
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: var(--font-bold);
    margin-right: 20px;
    transition: 0.2s all;
    cursor: pointer;
}
.process__num:hover {
    color: #fff;
    background-color: var(--title-color);
}
.process__line {
    position: absolute;
    width: 2px;
    height: 28px;
    background-color: var(--title-color);
    bottom: -28px;
}

.process.section {
    padding-top: 0;
}

section#benefit {
    margin-bottom: -20px;
}

.benefit {
    background-color: #fff;
}
.benefit__data {
    margin-bottom: 34px;
}
.benefit__box {
    display: flex;
    align-items: center;
    background-color: var(--white-color);
    margin-bottom: 16px;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 2px 2px 2px #dadada;
    border: 1px solid #dadada;
}

.benefit__box p {
    font-size: 13.9px;
    margin-bottom: 0;
}

.benefit__img {
    width: 50px;
    height: 50px;
    margin-right: 12px;
}
.benefit__buttons {
    display: flex;
    justify-content: center;
}
.benefit__buttons a span {
    font-size: var(--normal-font-size);
    color: var(--white-color);
}

.product .section__title {
    margin-bottom: 50px;
}
.product__group {
    display: flex;
    max-width: 440px;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    background-color: #e9f7f8;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: 0.2s all;
    cursor: pointer;
    margin-bottom: 30px;
}
.product__group:last-child {
    margin-bottom: 0;
}
.product__group:hover {
    transform: scale(1.05);
}
.product__group:hover .product__buttons a {
    border: 2px solid var(--title-color);
    background-color: var(--title-color);
}
.product__group:hover .product__buttons a span {
    color: #e9f7f8;
}
.product__texts {
    padding: 0 10px;
    margin: 10px 0 20px 0;
    display: grid;
    justify-content: center;
}
.product__text {
    display: flex;
    align-items: center;
    color: #000;
    margin: 0 30px;
    margin-bottom: var(--mb-0-5);
}
.product__text i {
    font-weight: var(--font-bold);
    margin-right: var(--mr-0-5);
}
.product__version {
    display: flex;
    justify-content: center;
}
.product__version span {
    display: inline-block;
    background-color: var(--title-color);
    min-width: 270px;
    padding: 10px 0;
    margin-top: 30px;
    font-family: var(--title-font);
    font-weight: var(--font-bold);
    font-size: var(--h2-font-size);
    color: #ffffff;
    text-align: center;
    border-radius: 10px;
}
.product__img {
    margin: 0 auto;
    width: 50%;
}
.product__buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.product__buttons a {
    min-width: 270px;
    text-align: center;
    font-weight: var(--font-bold);
    border: 2px solid var(--title-color);
    background-color: transparent;
}
.product__buttons a span {
    font-size: var(--normal-font-size);
    color: var(--title-color);
}
.product__blue {
    background-color: var(--title-color);
}
.product__blue .product__version span {
    background-color: #f3fdff;
    color: var(--title-color);
}
.product__blue .product__text {
    color: #ffffff;
}
.product__blue .product__text i {
    color: #000;
}
.product__blue .product__buttons {
    position: relative;
}
.product__blue .product__buttons a {
    position: relative;
    border: 2px solid #ffffff;
    background-color: transparent;
}
.product__blue .product__buttons a span {
    color: #ffffff;
}
.product__blue .product__buttons .product__discount {
    position: absolute;
    font-size: var(--smaller-font-size);
    top: 10px;
    left: 57%;
}
.product__blue .product__buttons .product__discount::before {
    content: " ";
    position: relative;
    top: 9px;
    display: block;
    height: 2px;
    background-color: #fff;
}
.product__blue .product__buttons .product__time {
    position: absolute;
    bottom: -48px;
    right: 15px;
    color: #fff;
    font-size: var(--smaller-font-size);
    font-style: italic;
    font-weight: var(--font-normal);
}

.product__blue:hover .product__buttons a {
    border: 2px solid #e9f7f8;
    background-color: #e9f7f8;
}
.product__blue:hover .product__buttons a span {
    color: var(--title-color);
}
.product__blue:hover .product__buttons .product__discount {
    color: var(--title-color);
}
.product__blue:hover .product__buttons .product__discount::before {
    background-color: var(--title-color);
}

.contact {
    background-color: var(--bg-section-blue-color);
}
.contact__nav {
    margin-bottom: 15px;
}
.contact__nav ul {
    padding: 30px;
    display: flex;
}
.contact__nav ul li {
    position: relative;
    margin-right: 30px;
}
.contact__nav ul li a {
    color: var(--white-color);
    font-weight: var(--font-medium);
    font-size: var(--h3-font-size);
    font-family: var(--title-font);
    line-height: 22px;
}
.contact__nav ul li::before {
    content: " ";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    transition: all 0.2s ease-in-out;
}
.contact__nav ul li:first-child::after {
    content: " ";
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 2px;
    background-color: var(--white-color);
    height: 15px;
}
.contact__nav ul li:last-child {
    margin-right: 0;
}
.contact__nav--active::before {
    background-color: var(--white-color);
    width: 100% !important;
}
.contact__cta {
    position: relative;
    font-size: var(--smaller-font-size);
    color: var(--white-color);
    padding: 0 30px;
    margin-bottom: 40px;
}
.contact__group {
    display: none;
}
.contact__form {
    position: relative;
    margin: 30px auto 0;
    background-color: var(--title-color);
    border-radius: 20px;
    max-width: 459px;
    overflow: hidden;
    transition: 0.3s all;
}
.contact__form h3 {
    display: block;
    padding-top: 40px;
    padding-bottom: 30px;
    text-align: center;
    font-size: var(--h2-font-size);
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    font-family: var(--body-font);
}
.contact__form form {
    width: 100%;
}
.contact__form-sub {
    margin-bottom: 0 !important;
}
.contact__form-sub:first-child .contact__input {
    margin-right: 7px;
}
.contact__form-sub:last-child label {
    padding-left: 7px;
}
.contact__form-sub:last-child i {
    left: 30px;
}
.contact__form-sub:last-child .contact__input {
    margin-left: 7px;
}
.contact__form-group {
    margin-bottom: 20px;
}
.contact__form-group label {
    display: block;
    padding: 0 30px;
    color: var(--white-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    margin-bottom: 10px;
}
.contact__forgot {
    text-align: right;
}
.contact__forgot a {
    padding: 0 30px;
    font-size: var(--small-font-size);
    color: var(--white-color);
    text-decoration: underline;
}
.contact__form-input {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.contact__form-input i {
    position: absolute;
    top: 50%;
    left: 55px;
    transform: translate(-50%, -50%);
    color: #727272;
    font-size: var(--h2-font-size);
}
.contact__input {
    display: inline-block;
    border: none;
    padding: 0 20px 0 50px;
    border-radius: 7px;
    width: 100%;
    height: 50px;
    margin: 0 30px;
    font-size: var(--small-font-size);
    font-family: var(--body-font);
    color: var(--text-color);
}
.contact__input::-webkit-input-placeholder {
    /* Edge */
    font-size: var(--small-font-size);
    font-family: var(--body-font);
    color: #8e8e8e;
}
.contact__input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-size: var(--small-font-size);
    font-family: var(--body-font);
    color: #8e8e8e;
}
.contact__input::placeholder {
    font-size: var(--small-font-size);
    font-family: var(--body-font);
    color: #8e8e8e;
}
.contact__buttons {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}
.contact__buttons a {
    background-color: transparent;
    border: 2px solid var(--white-color);
    animation: none;
    padding: 0.75rem 1.75rem;
}
.contact__buttons a:hover {
    border: 2px solid #f3fdff;
    background-color: #f3fdff;
}
.contact__buttons a:hover span {
    color: var(--title-color);
}
.contact__buttons a span {
    font-size: var(--small-font-size);
    color: var(--white-color);
}
.contact__icon {
    text-align: center;
    margin-bottom: 30px;
}
.contact__icon p {
    font-size: var(--small-font-size);
    color: var(--white-color);
    line-height: 22px;
    margin-bottom: 20px;
}
.contact__icon a {
    margin-right: 7px;
}
.contact__icon a i {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    border: 2px solid var(--white-color);
    border-radius: 50%;
    padding: 5px;
    transition: 0.3s all;
}
.contact__icon a:last-child {
    margin-right: 0;
    margin-left: 7px;
}
.contact__icon a:hover i {
    border: 2px solid #f3fdff;
    background-color: #f3fdff;
    color: var(--title-color);
}
.contact__login {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: -200px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact__login-active {
    position: relative;
    visibility: visible;
    left: 0;
    opacity: 1;
}
.contact__register {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    right: -200px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact__register-active {
    position: relative;
    visibility: visible;
    opacity: 1;
    right: 0;
}

.about__box {
    background-color: #d0f2f9;
    border-radius: 20px;
    margin-bottom: 30px;
}
.about__img {
    object-fit: cover;
    object-position: center;
}
.about__box:last-child {
    margin-bottom: 0;
}

.about__text {
    text-align: justify;
}

.about__text h6 {
    font-family: var(--title-font);
    font-weight: var(--font-medium);
    font-size: var(--small-font-size);
    color: var(--title-color);
    padding: 35px 0 0 35px;
}
.about__text h3 {
    position: relative;
    font-family: var(--title-font);
    font-weight: var(--font-bold);
    font-size: var(--h1-font-size);
    padding-left: 35px;
    margin-bottom: 30px;
}
.about__text h3::after {
    content: " ";
    position: absolute;
    display: block;
    width: 15%;
    height: 2px;
    top: 35px;
    background-color: var(--title-color);
}
.about__text p {
    margin-bottom: 15px;
    color: var(--title-color);
    padding: 0 35px;
    padding-right: 30px;
    line-height: 23px;
}
.about__text p:last-child {
    margin-bottom: 35px;
}
.about__group {
    display: none;
}
.about__blue {
    background-color: var(--title-color);
}
.about__blue .about__text h6 {
    color: var(--white-color);
    padding-right: 35px;
}
.about__blue .about__text h3 {
    color: var(--white-color);
    padding-right: 35px;
}
.about__blue .about__text h3::after {
    background-color: var(--white-color);
    width: 30%;
}
.about__blue .about__text p {
    color: var(--white-color);
}
.about__blue .about__text p:nth-child(3) {
    font-style: italic;
    font-size: var(--small-font-size);
    line-height: 20px;
    margin-bottom: var(--mb-1-5);
    padding-left: 35px;
}
.about__orange {
    background-color: #ffe4d4;
}
.about__orange .about__text h6 {
    color: var(--first-color);
    padding-left: 35px;
}
.about__orange .about__text h3 {
    color: var(--first-color);
    padding-left: 35px;
}
.about__orange .about__text h3::after {
    left: 35px;
    background-color: var(--first-color);
    width: 30%;
}
.about__orange .about__text p {
    color: var(--first-color);
}
.about__orange .about__text p:nth-child(3) {
    font-style: italic;
    font-size: var(--small-font-size);
    line-height: 20px;
    margin-bottom: var(--mb-1-5);
    padding-left: 35px;
}

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    background-color: #fff;
    border-top: 1px solid #ccc;
}
@media screen and (max-width: 1366px) {
    footer {
        padding-top: 0;
    }
}

footer.white-bg {
    padding-top: 0;
}
footer.white-bg .top-content {
    display: none !important;
}
footer.white-bg .bottom-content {
    margin-top: 0 !important;
}
footer .top-content {
    max-width: 1366px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (max-width: 1366px) {
    footer .top-content {
        max-width: 1110px;
        padding: 30px 12px 10px 12px;
    }
}

footer .top-content .item-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 240px;
}
footer .top-content .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: justify;
}

@media screen and (max-width: 1366px) {
    footer .top-content .item .text {
        font-size: var(--small-font-size);
        width: 100% !important;
    }
}
footer .top-content .item .head-title {
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.46;
    letter-spacing: normal;
    text-align: left;
    color: #2f2f2f;
}
footer .top-content .item .divider {
    width: 30px;
    height: 3px;
    background-color: #2f2f2f;
    margin-top: 15px;
    margin-bottom: 15px;
}
footer .top-content .item .text {
    margin-bottom: 10px;
    font-size: var(--small-font-size);
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #707070;
    width: 100%;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}
footer .top-content .item .text.no-hover:hover {
    color: #707070 !important;
}
footer .top-content .item .text:hover {
    color: #ed7323;
}
footer .bottom-content {
    margin-top: 15px;
    width: 100%;
    height: 100px;
    background-color: rgba(28, 190, 215, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1366px) {
    footer .bottom-content {
        margin-top: 0;
        height: 80px;
    }
}
footer .bottom-content .content-new {
    width: 968px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

footer .bottom-content .content-new .left-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

footer .bottom-content .content-new .left-content .text {
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #707070;
    margin-left: 30px;
}
footer .bottom-content .content-new .right-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}
footer .bottom-content .content-new .right-content .text {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #707070;
}

footer .bottom-content .content-new .right-content .dot {
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: #707070;
    margin: 0 10px;
}
footer .bottom-content .content-new .right-content img {
    margin-left: 20px;
}

.popup {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 100;
    transition: 0.2s all;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}
.popup__header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.popup .section__title {
    font-size: var(--normal-font-size);
}
.popup__icon {
    display: flex;
    justify-content: flex-end;
    font-size: var(--biggest-font-size);
}
.popup__icon i {
    transform: translateY(-10px);
    cursor: pointer;
}
.popup__content {
    position: relative;
    top: -1000px;
    opacity: 0;
    background-color: #fff;
    margin-left: var(--ml-1-5);
    margin-right: var(--mr-1-5);
    border-radius: 20px;
    padding: 30px 15px;
    max-width: 767px;
    max-height: calc(100vh - 100px);
}

#popup-reports .popup__body {
    height: calc(100vh - 230px);
}
#popup-reports .popup__body iframe {
    height: 100%;
}

.show-popup {
    top: 0;
    animation-name: show;
    -webkit-animation-name: show;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-delay: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-duration: 0.2s;
}
.show-popup .popup__content {
    opacity: 100%;
    animation-name: move;
    -webkit-animation-name: move;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-delay: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
}

/* History */
.history {
    background-color: #f5f5f5;
    padding-top: 50px;
}

.history h2.section__title {
    margin-bottom: 0;
}

.history-body,
.history-content {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.history-body-btn-group {
    width: 34%;
    margin-right: 30px;
    position: relative;
}
.history-body-btn-group.mb {
    display: none;
}
.history-body-btn-group::after {
    content: " ";
    height: 100%;
    width: 1px;
    background-color: #46b4bd;
    position: absolute;
    top: 0;
    right: -20px;
}

.history-content-group {
    width: 66%;
    margin-left: 30px;
}

.history-content-item {
    display: flex;
    align-items: center;
}

.history-body {
    margin-top: 20px;
}

.history-content-item p {
    margin: 10px 0;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #232323;
}

.history-content-img {
    width: 45%;
}

.history-content-icon {
    margin-right: 10px;
}

.history-content-list {
    margin-right: 10px;
}

.history-content-img {
    margin-left: 10px;
}

.history-body-btn {
    width: 100%;
    height: 64px;
    margin: 20px 0;
    border-radius: 10px;
    background-color: #fff;
    text-align: left;
    padding: 24px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    outline: none;
    box-shadow: 4px 4px #888888;
    transition: all 0.2s linear;
    border: 2px solid transparent;
}

.history-body-btn:hover {
    border: 2px solid #46b4bd;
    transform: translateX(4px);
}

.history-body-btn.active {
    background: #46b4bd;
    color: #fff;
    box-shadow: 4px 4px #a3e0e6;
    /* transform: translateX(4px); */
}
.history-body-btn.mb.active {
    background: #46b4bd;
    color: #fff;
    box-shadow: 4px 4px #a3e0e6;
    /* transform: translateX(4px); */
}

/* Major */

.major {
    background-color: #f5f5f5;
    padding-top: 50px;
    overflow: hidden;
}

.major-title {
    text-align: center;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: #46b4bd;
    text-transform: uppercase;
}

.major .line {
    height: 1.4px;
    width: 90%;
    background-color: #626262;
    margin: 0 auto;
}

.major-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 145px;
}

.major-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    text-align: center;
    width: 154px;
    height: 154px;
    border: 1px dotted #46b4bd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.major-item::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #626262;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -48px;
    border: 3px solid #fff;
}

.major-item::after {
    content: "";
    position: absolute;
    width: 46px;
    height: 140px;
    background-color: #46b4bd;
    border-radius: 30px;
    bottom: 50%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
}

.major-item-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
}

.major-item p {
    margin: 0px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #46b4bd;
}

.line-column {
    position: absolute;
    height: 108px;
    width: 1.4px;
    background-color: #626262;
    top: -145px;
    left: 50%;
    transform: translateX(-50%);
}

.rectangle {
    width: 1800px;
    height: 415px;
    background: #46b4bd;
    opacity: 0.1;
    border-radius: 0px 80px 80px 0px;
    position: relative;
    left: -100%;
    top: 230px;
}

.major-skip {
    text-align: center;
    background: #ffffff;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 25%);
    border-radius: 10px;
    z-index: 10;
    position: relative;
    padding: 36px;
}

.major-skip-title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    text-align: center;
    color: #46b4bd;
    position: relative;
    margin-bottom: 30px;
}

/* .major-skip-title::after {
    content: " ";
    display: block;
    position: absolute;
    height: 1px;
    width: 250px;
    color: #F48120;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
} */

.major-skip-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    height: 75px;
    margin: 0 auto;
    border: 2px solid #46b4bd;
    border-radius: 3px;
}

.major-skip-group-text {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #46b4bd;
    padding: 10px;
    text-align: left;
}

.major-skip-img {
    max-width: 100%;
    margin-bottom: 50px;
}

/* .major-skip-group-btn {
    width: 167px;
    height: 100%;
    background: #46b4bd;
    border: 2px solid #ffffff;
    border-radius: 3px;
    outline: none;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-decoration: none !important;
    padding: 0 18px;
} */

.major-slogan {
    text-align: center;
    margin-top: 34px;
    padding-bottom: 30px;
}

.major-slogan-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: #46b4bd;
}

.major-slogan-title span {
    color: #f48120;
}

.major-slogan-text {
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #f48120;
    margin-top: 20px;
}

.major-skip-group-btn {
    display: flex;
    padding: 4px 4px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: white;
    background: #46b4bd;
    transition: 1s;
    box-shadow: 3px 3px 0 black;
    margin-right: 10px;
    margin-bottom: 5px;
}

.major-skip-group-btn span {
    margin-left: 12px;
}

.major-skip-group-btn:focus {
    outline: none;
}

.major-skip-group-btn:hover {
    transition: 0.5s;
    box-shadow: 6px 6px 0 #fbc638;
    color: #fff;
    text-decoration: none;
}

.major-skip-group-btn span:nth-child(2) {
    transition: 0.5s;
    margin-right: 0px;
}

.major-skip-group-btn:hover span:nth-child(2) {
    transition: 0.5s;
    margin-right: 45px;
}

/* span {
    transform: skewX(15deg);
} */

.major-skip-group-btn span:nth-child(2) {
    width: 20px;
    margin-left: 20px;
    position: relative;
    top: 12%;
}

/**************SVG****************/

path.one {
    transition: 0.4s;
    transform: translateX(-60%);
}

path.two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.major-skip-group-btn:hover path.three {
    animation: color_anim 1s infinite 0.2s;
}

.major-skip-group-btn:hover path.one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.major-skip-group-btn:hover path.two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */

@keyframes color_anim {
    0% {
        fill: white;
    }
    50% {
        fill: #fbc638;
    }
    100% {
        fill: white;
    }
}

/* responsive */
@-webkit-keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }
}
@-moz-keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }
}
@-ms-keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }
}
@-o-keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }
}
@keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }
}
@-webkit-keyframes move {
    0% {
        top: -1000px;
    }
    100% {
        top: 0;
    }
}
@-moz-keyframes move {
    0% {
        top: -1000px;
    }
    100% {
        top: 0;
    }
}
@-ms-keyframes move {
    0% {
        top: -1000px;
    }
    100% {
        top: 0;
    }
}
@-o-keyframes move {
    0% {
        top: -1000px;
    }
    100% {
        top: 0;
    }
}
@keyframes move {
    0% {
        top: -1000px;
    }
    100% {
        top: 0;
    }
}
/* For small devices */
@media screen and (max-width: 320px) {
    .home__mb {
        flex-direction: column;
        align-items: start;
    }
    .home__mb img:last-child {
        margin-left: 0;
        margin-top: 10px;
    }

    .container {
        margin-left: var(--ml-1);
        margin-right: var(--mr-1);
    }
}
/* For medium devices */
@media screen and (min-width: 576px) {
    .home__img {
        height: auto;
    }
    .home__title {
        margin-bottom: var(--mb-1-5);
    }
    .home__tagline {
        margin-bottom: var(--mb-1-5);
    }

    .question__img {
        max-width: 380px;
    }

    .benefit .section__title {
        margin-bottom: 50px;
    }
    .benefit__data {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefit__box:nth-child(2n + 1) {
        margin-right: 10px;
    }
    .benefit__img {
        width: 50px;
        height: 50px;
    }

    .structure__data {
        grid-template-columns: repeat(2, 1fr);
    }
    .structure__box:first-child {
        margin-right: 15px;
    }
    .structure__box:nth-child(2n) {
        margin-left: 15px;
        margin-top: 0;
    }
    .structure__box:last-child {
        margin-top: 40px;
        /* transform: translate(50%); */
    }

    .footer__top {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (min-width: 767px) {
    .nav {
        height: calc(var(--header-height) + 1rem);
        align-items: center;
        justify-content: unset;
    }
    .nav__img,
    .nav__close,
    .nav__toggle {
        display: none;
    }
    .nav__menu-sub {
        flex-direction: row;
    }
    .nav__list {
        flex-direction: row;
        column-gap: 1rem;
        margin-bottom: 0;
    }
    .nav__link {
        text-transform: initial;
    }

    .section {
        padding: calc(var(--header-height) + 1rem) 0;
    }

    .popup__content {
        margin: 0 auto;
        padding: 40px 30px;
    }
    .popup__icon i {
        transform: translateY(0px);
    }

    .home__content {
        padding: calc(var(--header-height) + 1.25rem + 50px) 0 50px;
        min-height: 719px;
        grid-template-columns: repeat(2, 1fr);
    }
    .home__group {
        align-content: center;
        justify-content: start;
    }
    .home__img {
        width: 100%;
        max-width: 100%;
        padding-right: 24px;
        height: auto;
    }
    .home__title {
        margin-bottom: 25px;
    }
    .home__tagline {
        margin-bottom: 25px;
    }

    .introduction__content {
        grid-template-columns: repeat(2, 1fr);
    }
    .introduction__text {
        max-width: 466px;
    }
    .introduction__buttons {
        max-width: 100%;
        justify-self: unset;
        margin-top: -70px;
        margin-bottom: 25px;
    }

    .question__content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .question__data {
        display: block;
        max-width: 440px;
    }
    .question__img {
        max-width: 300px;
        transform: translate(40px, -10px);
    }
    .question__group {
        position: relative;
    }
    .question__buttons {
        justify-self: normal;
    }

    .question.section {
        padding-bottom: 10px;
    }

    .process .section__title {
        position: relative;
        text-align: right;
    }
    .process .section__title::after {
        position: absolute;
        top: unset;
        right: 0;
        bottom: -10px;
    }
    .process__content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .process__group {
        display: block;
    }
    .process__step {
        flex-direction: row-reverse;
    }
    .process__num {
        margin-right: 0;
        margin-left: 20px;
    }

    .process.section {
        padding-bottom: 0px;
    }

    .about__box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .about__group {
        display: flex;
        padding: 35px;
        width: 100%;
    }
    .about__text h3 {
        margin-bottom: 50px;
    }
    .about__text h3::after {
        top: 60px;
    }
    .about__img {
        border-radius: 20px;
    }
    .about__blue {
        justify-self: flex-end;
    }

    .product__content {
        grid-template-columns: repeat(2, 1fr);
    }
    .product__group {
        margin-bottom: 0;
        margin-right: 50px;
    }
    .product__group:last-child {
        margin-right: 0;
        margin-left: 50px;
    }

    .contact__content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .contact__form {
        max-width: none;
        width: 100%;
        margin-right: 25px;
    }
    .contact__img {
        position: relative;
        width: auto;
        height: 100%;
        object-fit: contain;
    }
    .contact__group {
        position: relative;
        display: flex;
        justify-content: center;
    }

    .footer__top {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: var(--mb-2);
    }
}
/* For large devices */
@media screen and (min-width: 992px) {
    .nav__list {
        column-gap: 2rem;
    }

    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .section__title {
        font-size: 26px;
    }

    .popup__icon i {
        transform: translateY(-15px);
    }

    .introduction__buttons {
        margin-top: -100px;
        margin-bottom: 48px;
    }

    .question__img {
        max-width: 380px;
        transform: translate(70px, -30px);
    }

    .home__group {
        padding-top: 0;
    }
    .home__img {
        width: 535px;
        transform: translateY(-30px);
        padding-right: 24px;
        height: auto;
        max-width: unset;
    }
    .home__details-img {
        bottom: 0%;
        right: 58%;
    }
    .home__description {
        max-width: 470px;
    }

    .structure__data {
        grid-template-columns: repeat(3, 1fr);
    }
    .structure__box--bottom .structure__line {
        display: block;
    }
    .structure__box:first-child {
        margin-right: 20px;
    }
    .structure__box:nth-child(2n) {
        margin: 0 10px;
    }
    .structure__box:last-child {
        margin-top: 0;
        margin-left: 20px;
        /* transform: translate(0); */
    }

    .benefit__data {
        grid-template-columns: repeat(3, 1fr);
    }
    .benefit__box {
        margin-right: 10px;
        padding: 12px;
    }
    .benefit__box:nth-child(3n + 3) {
        margin-right: 0;
    }

    .product__group {
        max-width: none;
        width: 440px;
    }

    .contact__img {
        transform: translateX(15px);
    }

    .footer__top {
        display: grid;
        grid-template-columns: 160px 245px 245px auto;
        gap: 2rem;
    }
    .footer__divider {
        margin-bottom: var(--mb-2-5);
    }
    .footer__bottom {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__bottom-right {
        align-items: flex-end;
        justify-content: flex-end;
    }
    .footer__dflex {
        margin-bottom: 25px;
    }
}
@media screen and (min-width: 1200px) {
    .contact__img {
        transform: translateX(30px);
    }
}
.jt-form-err {
    color: #e30f0f;
    font-size: var(--small-font-size);
    margin-left: 32px;
    margin-top: 7px;
}
/*# sourceMappingURL=styles.css.map */
@media screen and (min-width: 1024px) {
    .structure__box--bottom {
        padding: 0 4px;
    }

    .structure__box--bottom p {
        letter-spacing: -0.1px;
    }
}
@media screen and (max-width: 1023px) {
    footer .bottom-content .content-new {
        width: 100%;
    }
    footer .bottom-content .content-new .left-content img {
        transform: scale(0.8);
    }
    footer .bottom-content .content-new .left-content .text {
        margin-left: 0px;
        margin-right: 20px;
        font-size: 14px;
    }
    .c-2,
    .c-3,
    .c-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    footer .top-content {
        padding: 30px 0 10px;
    }
    .about__group {
        width: 150%;
    }
}

@media screen and (max-width: 768px) {
    .home__buttons {
        text-align: center;
    }
    footer .bottom-content .content-new {
        padding: 0 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    footer .bottom-content {
        height: auto !important;
        padding: 40px 0px;
    }
    footer .bottom-content .content-new .left-content {
        flex-direction: column;
        align-items: flex-start;
    }
    footer .bottom-content .content-new .left-content .text {
        margin-left: 0 !important;
        margin-top: 20px !important;
        margin-bottom: 60px !important;
    }
    footer .bottom-content .content-new .right-content .text {
        font-size: 14px;
        white-space: nowrap;
    }
    footer .bottom-content .content-new .right-content img {
        margin-left: 10px;
    }
    footer {
        padding-top: 40px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.c-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.c-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}
.c-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col {
    padding-left: 10px;
    padding-right: 10px;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li button {
    background-color: rgba(0, 0, 0, 0.5);
    width: 12px;
    height: 12px;
    border-radius: 100%;
    text-indent: -9999px;
    border: none !important;
    margin: 0 5px;
}

@media (min-width: 991px) {
    .home__title {
        font-size: 42px;
    }
}

@media (max-width: 990px) {
    .major-skip-group {
        width: 100%;
    }
    .major-skip-group-text {
        font-size: 14px;
    }
    .major-skip-title {
        font-size: 24px;
    }
    /* History */
    .history-body {
        flex-direction: column;
    }
    .history-body-btn-group {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        margin-right: 0;
    }
    .history-body-btn-group::after {
        display: none;
    }
    .history-body-btn {
        width: 100%;
        padding: 24px 10px;
        font-size: 12px;
        margin: 20px 12px;
    }
    .history-content-group {
        width: 78%;
    }

    .major-item {
        width: 134px;
        height: 134px;
    }

    .major-item-text {
        width: 120px;
        height: 120px;
        font-size: 13px;
    }

    .major-item p {
        font-size: 16px;
        line-height: 22px;
    }
    .major-slogan-text {
        font-size: 18px;
    }
}

@media (min-width: 800px) and (max-width: 990px) {
    .home__title {
        max-width: 380px;
    }
}

@media (min-width: 800px) and (max-width: 880px) {
    .introduction__text p {
        letter-spacing: 0.9px;
    }
}
@media (max-width: 780px) {
    .major-item-text {
        width: 100px;
        height: 100px;
        font-size: 10px;
    }
    .major-item {
        width: 110px;
        height: 110px;
    }
    .major-item p {
        font-size: 14px;
        line-height: 16px;
    }

    .major-item::after {
        width: 40px;
        height: 120px;
    }
    .major-skip {
        padding: 36px 20px;
    }
    .major-slogan-title {
        font-size: 30px;
    }
    .major-skip-group-text {
        font-size: 10px;
    }
    .major-slogan-text {
        max-width: 460px;
        margin: auto;
    }
}
@media (max-width: 739px) {
    .introduction__buttons-cta {
        bottom: -30px;
    }
    .introduction__buttons-cta a {
        padding: 12px 10px;
    }
    .introduction__buttons-cta a span {
        font-size: 12px;
    }
    .history-body-btn-group {
        width: 100%;
    }
    .history-content-group {
        width: 90%;
    }
    .history-content-item p {
        font-size: 12px;
    }

    .major-skip-title {
        max-width: 100%;
        margin: 0 auto;
        font-size: 20px;
    }
}

@media (min-width: 600px) and (max-width: 656px) {
    .structure__box--first {
        letter-spacing: 1.6px;
    }
}

@media (max-width: 630px) {
    .major {
        padding-top: 20px;
    }
    .home__data.grid {
        max-width: 540px;
    }
    .home__title {
        font-size: 1.8rem;
    }

    .introduction__group {
        margin-top: 15px;
    }

    .button-design {
        padding: 10px;
        display: flex;
        align-items: center;
        width: 135px;
        height: 40px;
        justify-content: center;
    }

    .about__text p {
        padding: 0 10px;
        font-size: 14px;
    }

    .history-content-img {
        width: 38%;
    }

    .history-body-btn-group {
        display: none;
    }
    .history-body-btn-group.mb {
        display: block;
        width: 50%;
        position: relative;
    }

    .slick-prev,
    .slick-next {
        transform: translateY(-50%);
        font-size: 22px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 3px solid #fd7e14;
        line-height: 20px;
        font-weight: 700;
        position: absolute;
    }

    .slick-prev {
        left: -50px;
        top: 50%;
    }

    .slick-next {
        right: -50px;
        top: 52%;
    }

    .history-body-btn {
        line-height: 0;
    }
    .major-skip-title {
        font-size: 28px;
    }
    .major .line {
        width: 80%;
        margin-bottom: 30px;
    }
    .major-list {
        position: relative;
        justify-content: space-between;
        padding-top: 102px;
    }
    .major-item {
        z-index: 2;
    }
    .major-item:nth-child(4) {
        position: absolute;
        left: 0;
        top: 284px;
        z-index: 1;
    }
    .major-item:nth-child(5) {
        position: absolute;
        right: 0;
        top: 284px;
        z-index: 1;
    }
    .line-column {
        height: 60px;
        top: -102px;
    }

    .history-content-icon {
        max-width: 12%;
    }
    .history-content-item {
        margin: 5px;
    }
    .history-content-item p {
        font-size: 10px;
        margin: 0;
        line-height: 16px;
    }
    .major-title {
        font-size: 30px;
    }
    .major-skip-title {
        font-size: 17px;
        max-width: 100%;
        margin: 0 auto;
        line-height: 30px;
    }
    .major-skip-img {
        max-width: 60%;
    }

    .major-skip-group {
        flex-direction: column;
        padding-bottom: 10px;
        height: 100%;
    }
    .major-skip-group-text {
        width: 100%;
        font-size: 12px;
    }
}

@media (max-width: 590px) {
    .home__data.grid {
        max-width: 500px;
    }
    .home__sp {
        line-height: 26px;
    }
    .home__title {
        font-size: 1.7rem;
    }
    .major-slogan-title {
        font-size: 28px;
    }
}

@media (min-width: 536px) and (max-width: 575px) {
    .structure__box--first {
        letter-spacing: 0.7px;
    }
}

@media (max-width: 540px) {
    .home__data.grid {
        max-width: 374px;
    }
    .home__title {
        text-align: center;
    }
    .home__title,
    .home__tagline {
        text-align: center;
    }

    .home__description {
        padding: 0 5px;
    }
    /* haha */
    .major-slogan {
        max-width: 350px;
        margin: 38px auto 0;
    }

    .major-slogan-title {
        font-size: 18px;
        line-height: 28px;
    }

    .major-slogan-text {
        font-size: 14px;
        line-height: 22px;
        margin-top: 0px;
    }
    .major-skip {
        padding: 24px 10px;
    }
    .major-skip-title {
        font-size: 16px;
        line-height: 28px;
    }
    .major-skip-group {
        display: block;
        height: unset;
        width: 100%;
    }
    .major-skip-img {
        margin-bottom: 20px;
    }
    .major-skip-group-btn {
        width: 40%;
        margin: 10px auto;
        padding: 0;
        font-size: 28px;
        display: flex;
        align-items: center;
    }
    .major-skip-group-text {
        font-size: 14px;
        padding: 10px 19px;
    }

    .major-title {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .section__title {
        text-align: center;
        padding: 0 40px;
    }
    .section__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .home__description {
        padding: 0 5px;
        font-size: 12px;
        font-weight: 600;
    }

}

@media (max-width: 470px) {
    .history-body-btn-group.mb {
        width: 60%;
    }
    .major-skip-title {
        font-size: 12px;
        line-height: 22px;
    }
    .history-content-group {
        width: 100%;
        margin-left: 0;
    }
    .major-item::after {
        width: 40px;
        height: 100px;
    }
    .major-item::before {
        top: -34px;
    }
    .line-column {
        top: -86px;
    }
    .major .line {
        width: 100%;
    }
    .major-list {
        padding-top: 85px;
    }
    .major-item:nth-child(4) {
        top: 250px;
    }
    .major-item:nth-child(5) {
        top: 250px;
    }

    .major-item-text {
        width: 90px;
        height: 90px;
    }
    .major-item {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 430px) {
    .major-title {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .major-skip-group-text {
        font-size: 14px;
        padding: 10px 20px;
        max-width: 342px;
        margin: 0 auto;
    }
    .home__tagline {
        font-size: 13px;
        font-weight: 700;
    }

    .home__description {
        margin-left: 12px;
        font-size: 14px;
        padding: 0 5px;
    }

    
    .contact__icon p {
        max-width: 230px;
        margin: auto;
    }
    .section__title {
        font-size: 20px;
    }
}

@media (max-width: 376px) {
    .section__title {
        padding: 0;
    }
    .home__description {
        padding: 0 10px;
        font-size: 11px;
    }
    .structure__box--bottom {
        padding: 0;
    }
}

.modal-content {
    overflow: hidden;
}

.carousel-control-next i,
.carousel-control-prev i {
    font-size: 30px;
    color: #000;
}

.carousel-indicators li {
    background-color: #000;
}

.modal-dialog-design {
    max-width: 1100px;
}

.modal-dialog-design2 {
    max-width: 730px;
}

.carousel-item {
    min-height: 170px;
}

.carousel-item-design {
    text-align: center;
}

.carousel-control-next {
    right: -50px;
}

.carousel-control-prev {
    left: -50px;
}

.modal-body-design {
    height: 500px;
}

@media (max-width: 1000px) {
    .modal-body-design {
        height: unset;
    }
}

.about__img-1 {
    max-height: 450px;
    padding: 0 35px;
}

.modal-header button span {
    color: #000;
    font-size: 20px;
}

.carousel-indicators-design {
    bottom: -35px;
}
