.section-gap {
    padding: 50px 0;
}

.section-gap-lg {
    padding: 100px 0;
}

.section-gap-xl {
    padding: 150px 0;
}

.section-gap-xxl {
    padding: 200px 0;
}

.section-heading {
    margin-bottom: 30px
}

.section-heading .heading-title {
    margin-bottom: 0;
    font-size: 2.6em;
    font-weight: 600;
    color: var(--bs-black);
}

.section-heading .heading-description {
    margin-top: 25px;
    font-size: 1.175em;
}

.section-heading .heading-title-2 {
    margin-bottom: 0;
    font-size: 1.9em;
    font-weight: 600;
    color: var(--bs-black);
}

.section-heading .heading-description-2 {
    margin-top: 10px;
    font-size: 1.15em;
    font-weight: 500;
    color: var(--bs-gray-600);
}

.section-heading .heading-title-3 {
    margin-bottom: 0;
    font-size: 2.2em;
    font-weight: 600;
    color: var(--bs-black);
    line-height: 1.1;
}

.section-heading .heading-title span,
.section-heading .heading-title-2 span{
    color:var(--secondary-color);
}
.button-theme {
    border-radius: 25px;
    padding: 10px 25px;
    color: var(--bs-black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 310px;
    font-size: 1.1em;
    font-weight: 600;
    border: 1px solid transparent;
}

.button-theme .icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bs-white);
    color: var(--bs-black);
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    overflow: hidden;
}
.button-theme:hover{
    color:var(--bs-white);
}
.button-theme:hover .icon i{
    animation: .4s ease-in-out 1 slideInLeft;
}
@keyframes slideInLeft {

    33.33% {
        transform: translateX(100px);
    }

    66.66% {
        transform: translateX(-100px);
        opacity: 0;
        visibility: hidden;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
}

.button-theme.button-theme_primary {
    background: var(--primary-gradient);
}

.button-theme-2 {
    color: var(--bs-white);
    background: var(--primary-color);
}

.button-theme-2:hover {
    color: var(--bs-white);
    background: var(--primary-hover);
}

.link-all {
    font-weight: 600;
    font-size: 1.1em;
    color: var(--primary-color);
    transition: var(--transition-default);
    align-items: center;
}
.link-all i{
    transition: var(--transition-default);
}

.link-all:hover {
    color: var(--primary-hover);
}
.link-all:hover i{
    transform: translateX(5px);
}
.section-form .link-all:hover i{
    transform: translateX(-5px);
}
@media (max-width: 1200px) {
    .section-gap-lg {
        padding: 50px 0;
    }

    .section-heading .heading-title {
        font-size: 2.4em;
    }

    .section-heading .heading-description {
        font-size: 1.1em;
    }

    .button-theme {
        width: 260px;
    }
}

@media (max-width: 1024px) {
    .section-heading .heading-title,
    .section-heading .heading-title-3{
        font-size: 2em;
    }

    .section-heading .heading-description {
        font-size: 1.05em;
    }

    .section-heading .heading-title-2 {
        font-size: 1.6em;
    }

    .section-heading .heading-description-2 {
        font-size: 1.05em;
    }
    .button-theme .icon{
        width: 35px;
    }
}

@media (max-width: 992px) {
    .section-heading .heading-title{
        font-size: 1.8em;
    }
    .section-heading .heading-title-3{
        font-size: 1.7em;
    }
    .link-all{
        font-size: 1em;
    }
}
@media(max-width: 576px) {
    .button-theme {
        width: 260px;
        font-size: 1em;
    }

}
/*============================
         header
 ======================================*/
header {
    z-index: 20;
    position: relative;
    transition: var(--transition-default);
    background-color: transparent;
    padding: 15px 0;
}

.header-logo {
    width: 170px;
}

.header-navigation ul > li > a {
    padding: 20px 15px;
    transition: var(--transition-default);
    color: var(--bs-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    text-transform: capitalize;
}

.header-navigation ul > li:hover > a {
    color: var(--secondary-color);
}

.header-navigation ul > li ul {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background-color: var(--bs-white);
    border-radius: 3px;
    transition: var(--transition-default);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-navigation ul > li:hover ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-navigation ul > li ul > li > a {
    color: var(--bs-black);
    padding: 10px 15px;
    transition: var(--transition-default);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
    font-size: 1em;
}

.header-navigation ul > li ul > li:not(:last-child) {
    border-bottom: 1px solid var(--bs-gray-200);
}

.header-navigation ul > li ul > li > a:hover {
    color: var(--primary-color);
}

.hamburger-button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background-color: transparent;
    color: var(--bs-white);
    padding: 4px;
}

.hamburger-button span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--bs-white);
}

header.is-scroll {
    padding: 8px 0;
    background-color: var(--primary-color);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
}

header.is-scroll .header-logo {
    width: 140px;
}

.page-home .header-logo img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.other-page header {

}

.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    background-color: rgb(14 14 14 / 75%);
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.is-navigation .header-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 1200px) {

    .header-right,
    .header-navigation__header,
    .header-navigation__bottom {
        display: flex !important;
    }

    header .header-logo {
        width: 150px;
    }

    .header-navigation__header {
        padding: 10px 10px 20px 10px;
        border-bottom: 1px solid #80808030;
    }

    .header-navigation__bottom {
        padding: 10px;
    }

    .header-navigation_logo {
        width: 150px;
    }

    .close-navigation {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3em;
        background-color: var(--bs-white);
        color: var(--bs-black);
        border-radius: 3px;
    }

    .header-navigation {
        position: fixed;
        right: -200%;
        width: 400px;
        height: 100%;
        transition: all 0.6s ease-in-out;
        top: 0;
        z-index: 22;
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .is-navigation .header-navigation {
        right: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header-navigation ul {
        flex-direction: column;
        margin-bottom: auto !important;
    }

    .header-navigation ul > li {
        width: 100%;
    }

    .header-navigation ul > li > a {
        width: 100%;
        padding: 10px 20px;
        font-size: 1.1em;
        justify-content: space-between;
    }

    .header-navigation ul > li > a[aria-expanded='true'] i {
        transform: rotate(180deg);
    }

    .header-navigation ul > li ul {
        position: unset;
        left: unset;
        top: unset;
        transform: unset;
        opacity: unset;
        visibility: unset;
        pointer-events: unset;
        min-width: unset;
        border-radius: 0;
        background-color: var(--primary-color);
        border-left: 1px solid #b7b7b75c;
        margin-left: 20px;
    }

    .header-navigation ul > li ul > li:not(:last-child) {
        border-bottom: unset;
    }

    .header-navigation ul > li ul > li > a {
        color: var(--bs-gray-300);
    }

    .header-navigation ul > li ul > li:hover > a {
        color: var(--bs-white);
        opacity: 0.8;
    }

}

@media (max-width: 1024px) {
    header {
        padding: 8px 0;
    }

    header.is-scroll .header-logo,
    header .header-logo {
        width: 70px;
    }
}

@media (max-width: 992px) {
    header {
        background-color: var(--primary-color-2);
    }
}

@media (max-width: 375px) {
    .header-navigation {
        width: 100%;
    }
}

/*=================================
       section-introduction
=================================*/

.section-introduction {
    padding: 280px 0 200px 0;
}

.section-introduction::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #081a43 20%, #05339ba3 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

@media (max-width: 1024px) {
    .section-introduction {
        padding: 250px 0 150px 0;
    }
}

@media (max-width: 992px) {
    .section-introduction::after {
        background: linear-gradient(to right, #081a43 20%, #081a44 100%);
    }
}

/*=================================
       section-form
=================================*/
.section-form{
    height: 100vh;
}
.section-form__wrap {
    box-shadow: 0 0 50px rgba(167, 171, 183, .03);
    border-radius: 20px;
    padding: 40px 35px;
}
.section-form__close{
    font-size: 1.5em;
    width: 35px;
    height: 35px;
    color:var(--text-color);
    transition: var(--transition-default);
}
.section-form__close:hover{
    color:var(--primary-color);
}
.section-form .form-control,
.section-form .form-select {
    height: 48px;
    border-radius: 25px;
    font-size: 1em;
    padding: 3px 20px;
    font-weight: 500;
}
.section-form .form-check{
    display: flex;
    gap:10px;
}
.section-form .form-check .form-check-input {
    width: 18px;
    height: 18px;
   flex-shrink: 0;
}

.section-form .form-check-label p {
    margin-bottom: 0;
}

.section-form__button {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    padding: 5px 30px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition-default);
}

.section-form__text {
    font-weight: 500;
    width: max-content;
    position: relative;
    color: var(--bs-gray-700);
}

.section-form__text span::before {
    position: absolute;
    content: '';
    height: 1px;
    width:100%;
    top: 50%;
    left: 100%;
    background-color: var(--bs-gray-300);
}

.section-form__text span::after {
    position: absolute;
    content: '';
    height: 1px;
    width:100%;
    top: 50%;
    right: 100%;
    background-color: var(--bs-gray-300);
}

.section-form__button:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

@media (max-width: 1024px) {
    .section-form__wrap {
        padding: 30px;
    }
}
@media(max-width: 992px) {
    .section-form__text span::before
    ,.section-form__text span::after{
        width: 70px;
    }
}
@media (max-width: 576px) {
    .section-form {
        padding: 30px 0;
        background-color: var(--bs-white) !important;
    }

    .section-form__wrap {
        padding: 0;
    }
    .section-form__button{
        padding: 5px 20px;
        font-size: 0.9em;
    }

}
/*=================================
      section-introduce
=================================*/
.section-introduce .section-introduce__box .heading-title{
    font-size: 1.6em;
    font-weight: 700;
    color: #226bf9;
    transform: translateY(11px);
    padding-left: 30px;
}
.card-introduce{
    padding: 30px;
}
.card-introduce__title{
    font-weight: 600;
    font-size: 1.3em;
    color:var(--bs-black);
}

.card-price{
    border-left: 2px solid var(--primary-color) !important;
    padding: 0 25px;
}
.card-price__subtitle{
    color: #9e9e9e;
    font-size: 0.85em;
    font-weight: 500;
    letter-spacing: .5px;
}
.card-price__title{
    font-size: 1.35em;
    font-weight: 600;
    color:var(--bs-black);
}
.card-price__text{
    font-weight: 500;
}
.card-price__link{
    font-size: 0.875em;
    letter-spacing: .6px;
}
.card-price__image{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
}
@media(max-width: 1024px) {
    .card-price__title,
    .card-introduce__title{
        font-size: 1.3em;
    }
    .section-introduce .section-introduce__box .heading-title{
        font-size: 1.5em;
    }
    .card-introduce {
        padding: 30px 20px;
    }
    .section-introduce .section-introduce__box .heading-title{
        padding-left: 20px;
    }
}

