/*
Theme Name: EPAL Solution Corp.
Theme URI: https://epal.vn
Author: EPAL Team
Author URI: https://epal.vn
Description: Web Design & Web Development, API, Cloud ERP/CRM/SERVER, Web Plus Services, Digital Marketing, Mobile Application (IOS/Android), Hosting, Domain.
Version: 2019
Text Domain: epal-theme
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
}

body.mobile-menu-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    overflow: visible;
    isolation: isolate;
    border: 0;
    box-shadow: none;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%), rgba(240, 255, 243, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    pointer-events: none;
}

.site-header__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-left: auto;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.38);
    box-shadow: 0 16px 40px rgba(3, 109, 53, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #212121;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header--menu-open .mobile-menu-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header--menu-open .mobile-menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.site-header--menu-open .mobile-menu-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-header__mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-header__mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-header__mobile-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(8, 31, 18, 0.18);
    cursor: pointer;
}

.site-header__mobile-panel .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    padding-top: clamp(112px, 12vw, 148px);
    padding-bottom: 24px;
    min-height: 100vh;
}

.site-header__mobile-sheet {
    width: min(420px, 100%);
    padding: 24px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(240, 255, 243, 0.92) 100%);
    box-shadow: 0 24px 60px rgba(3, 109, 53, 0.18);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateY(-18px) scale(0.98);
    transition: transform 0.3s ease;
}

.site-header__mobile-panel.is-open .site-header__mobile-sheet {
    transform: translateY(0) scale(1);
}

.site-header__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.site-header__mobile-kicker {
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    line-height: 140%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header__mobile-close {
    position: relative;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.56);
    cursor: pointer;
}

.site-header__mobile-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #212121;
}

.site-header__mobile-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-header__mobile-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nav__mobile-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__mobile-list li {
    list-style: none;
}

.nav__mobile-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.52);
    color: #212121;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.nav__mobile-list a::after {
    content: "";
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid #03A24E;
    border-right: 1.5px solid #03A24E;
    transform: rotate(45deg);
}

.nav__mobile-list a:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.72);
}

.site-header__mobile-support {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(3, 109, 53, 0.08);
}

.site-header__mobile-support span {
    color: #F37022;
    font-weight: 500;
    font-size: 12px;
    line-height: 146%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header__mobile-support a {
    color: #212121;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    text-decoration: none;
}

.lang__options__select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang__options__select {
    width: max-content;
    padding: 8px 36px 8px 12px;
    background-color: transparent;
    color: #212121;
    font-weight: 400;
    font-size: 12px;
    line-height: 146%;
    letter-spacing: 0.12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    opacity: 0.5;
    cursor: pointer;
}

.lang__options__icon {
    position: absolute;
    top: 50%;
    right: 12px;
    display: inline-flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.5;
    transform: translateY(-50%);
}

.admin-bar .site-header {
    top: 32px;
}

/* my css */
.logo__main img {
    width: auto;
    height: 96px;
}

.nav__desktop ul {
    display: flex;
    gap: 48px;
    align-items: center;
    list-style: none;
}

.nav__desktop ul li {
    list-style: none;
}

.nav__desktop ul li a {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 2%;
    text-decoration: none;
}

.header__info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.header__info__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header__info__content span {
    color: #F37022;
    font-weight: 400;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 146%;
    letter-spacing: 1%;
    text-align: right;
}

.header__info__content a {
    color: #212121;
    font-weight: 500;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
    text-decoration: none;
}

.header__info__btn {
    padding: 12px 24px;
    border-radius: 24px;
    background-color: #03A24E;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
}

.header__info__btn:hover {
    background-color: #F37022;
    transition: all 0.3s ease;
}

/* section 1 */
.section-1 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0F172A;
    background-image: var(--section-1-bg-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-1::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(15, 23, 42, 0.13);  
}
.section-1::after {
    z-index: 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.section-1 .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;

}

.banner__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subtitle-box {
    padding: 4px 16px;
    border-radius: 24px;
    background-color: #F37022CC;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 12px;
    line-height: 146%;
    letter-spacing: 1%;
    width: max-content;
}

.banner__heading1 {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 64px;
    line-height: 122%;
    letter-spacing: 2%;
}

.banner__describe {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
    line-height: 146%;
    letter-spacing: 1%;
}

.banner__btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner__btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 2%;
    border-radius: 24px;
}

.banner__btn a svg {
    width: 20px;
    height: 20px;
}

.banner__btn a:first-child {
    background-color: #03A24E;
}

.banner__btn a:first-child:hover {
    background-color: #F37022;
    transition: all 0.3s ease;
}

.banner__btn a:last-child {
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background-color 0.3s ease-out;
}

.banner__btn a:last-child:hover {
    background: rgba(255, 255, 255, 0.28);
}

/* section 1 end */
/* section 2 */
.aboutus {
    background-color: #03A24E08;

}

.aboutus .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 72px;
}

.about__image {
    width: 100%;
}

.about__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: -10px 10px 24px 0px #03A24E29;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about__content__top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.heading2 {
    color: #212121;
    font-weight: 700;
    font-size: 40px;
    line-height: 136%;
    letter-spacing: 1%;
}

.about__content__des {
    color: #212121;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1%;
}

/* section 2 end */
/* section 3 */
.office .container {
    padding-top: 96px;
    padding-bottom: 96px;
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 32px;
    align-items: center;
}

.office__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.office__content p {
    color: #616161;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1%;
}

.office__branch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.office__branch__card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
}

.office__branch__card a {
    text-decoration: none;
}

.office__branch__card img {
    width: 100%;
    height: auto;
    min-height: 275px;
    max-height: 320px;
    object-fit: cover;
    margin-bottom: 8px;
    border-radius: 16px;
}

.office__branch__card h4 {
    color: #000000;
    font-weight: 600;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 138%;
    letter-spacing: 1%;
}

.office__branch__card__info {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #616161;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;

}

.office__branch__card__info svg {
    width: 24px;
    height: 24px;
}

/* section 3 end */
/* section 4  */
.services {
    background-color: #F7FCFA;
}

.services .container {
    padding-top: 72px;
    padding-bottom: 72px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.services__title {
    display: flex;
    flex-direction: column;
    gap: 8px;

}

.services__title h2 {
    text-align: center;

}

.services__title p {
    color: #616161;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;
}

.services__box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.services__box__card {
    --service-accent: #03A24E;
    --service-accent-shadow: rgba(3, 162, 78, 0.16);
    --service-accent-icon-bg: rgba(3, 162, 78, 0.12);
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #DEF5E4;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.services__box__card:hover,
.services__box__card.is-border-hovered {
    box-shadow: 0px 0px 20px 0px var(--service-accent-shadow);
}

.services__box__card__icon {
    width: max-content;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--service-accent-icon-bg);
}

.services__box__card__icon img {
    width: 24px;
    height: 24px;
}

.services__box__card h3 {
    color: #212121;
    font-weight: 600;
    font-size: 20px;
    line-height: 138%;
    letter-spacing: 1%;
}

.services__box__card__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services__box__card__info li {
    color: #616161;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
}

.services__box__card__info li::marker {
    color: var(--service-accent);
}

.services__box__card__border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    shape-rendering: geometricPrecision;
}

.services__box__card__border rect {
    fill: none;
    stroke: var(--service-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    opacity: 0;
    will-change: stroke-dashoffset, opacity;
    transition: opacity 0.24s ease;
}

.services__box__card.is-border-hovered .services__box__card__border rect {
    opacity: 1;
}

.services__content {
    display: grid;
    grid-template-columns: 7fr 5fr;
    padding-top: 72px;
    align-items: center;
    gap: 48px;
}

.services__content__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services__content__left__top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services__content__left__top p {
    color: #212121;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
    margin-top: 12px;
}

.services__content__left__procedure {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.procedure__item {
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #FFFFFF;
    border: 1px solid #DEF5E4;
    cursor: pointer;
}

.procedure__item:hover {
    border: 1px solid #03A24E;
    box-shadow: 0px 0px 20px 0px #03A24E1A;
}

.procedure__item.active {
    border: 1px solid #03A24E;
    box-shadow: 0px 0px 20px 0px #03A24E1A;
}

.procedure__item__icon {
    padding: 12px;
    border-radius: 8px;
    background-color: #F2FFFA;
}

.procedure__item__icon img {
    width: 24px;
    height: 24px;
}

.procedure__item__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.procedure__item__content h3 {
    color: #212121;
    font-weight: 600;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 138%;
    letter-spacing: 1%;
}

.procedure__item__content p {
    color: #616161;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
}

.trip {
    color: #03A24E;
    font-weight: 600;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 138%;
    letter-spacing: 1%;
}

.follow__procedure__item {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

/* section 4 end */
/* section 5  */
.partners {
    display: flex;
    flex-direction: column;
}

.partners__st {
    background-color: #DEF5E4;

}

.partners__st .container {
    padding-top: 72px;
    padding-bottom: 72px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.partners__st__title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.partners__st__title h2 {
    text-align: center;
}

.partners__st__title p {
    color: #616161;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;
}

.carousel__logo__customer {
    display: flex;
    gap: 24px;
}

.carousel__logo__customer.owl-carousel {
    display: block;
}

.carousel__logo__customer.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.carousel__logo__customer.owl-carousel .owl-stage {
    display: flex;
}

.carousel__logo__customer.owl-carousel .owl-item {
    display: flex;
}

.carousel__logo__customer.owl-carousel .customer__logo {
    width: 100%;
}

.customer__logo {
    border: 1px solid #FFFFFF80;
    padding: 8px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background-color: #FFFFFF1A;
}

.customer__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.partners__tw {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: #036D354D;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.partners__tw::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #036D354D;
    pointer-events: none;
}

.partners__tw .container {
    position: relative;
    z-index: 1;
    padding-top: 72px;
    padding-bottom: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.partners__tw__card {
    padding: 32px;
    background-color: #FFFFFF29;
    border: 1px solid #FFFFFF29;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 16px;

}

.partners__tw__card .count__number {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 124%;
    letter-spacing: 2%;
    text-align: center;
}

.partners__tw__card p {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;
}

.owl-nav {
    display: none;
}

.partners__thr .container {
    padding-bottom: 24px;
    padding-top: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.partners__thr__left img {
    width: 100%;
    border-radius: 16px;
}

.partners__thr__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partners__thr__right__title {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.partners__thr__right__title p {
    color: #212121;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
    margin-top: 12px;
}

.quality {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quality__card {
    border-left: 5px solid #03A24E;
    box-shadow: 0px 0px 20px 0px #03A24E1A;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #FFFFFF;
    gap: 16px;
    border-radius: 16px;
}

.quality__card__icon {
    background-color: #F2FFFA;
    padding: 12px;
    border-radius: 24px;
}

.quality__card__icon svg {
    width: 24px;
    height: 24px;
}

.quality__card h4 {
    color: #212121;
    font-weight: 600;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 138%;
    letter-spacing: 1%;

}

/* section 5 end */
/* section 6  */
.contacts {
    padding-top: 72px;
    padding-bottom: 72px;
}

.contacts .container {

    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
    align-items: center;
    box-shadow: 0px 0px 30px 0px #03A24E24;
}

.contacts__left {
    background-color: #F7FCFA;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacts__left__title {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contacts__left__title p {
    color: #212121;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
    margin-top: 12px;
}

.contacts__left__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contacts__left__info .item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contacts__left__info .item .icon {
    background-color: #DEF5E4;
    padding: 12px;
    border-radius: 8px;
}

.contacts__left__info .item .icon img {
    width: 24px;
    height: 24px;
}

.contacts__left__info .item .text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contacts__left__info .item .text span {
    color: #F37022;
    font-weight: 400;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 146%;
    letter-spacing: 1%;
}

.contacts__left__info .item .text p {
    color: #212121;
    font-weight: 500;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
}

.contacts__form {
    background-color: #FFFFFF;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contacts__form h5 {
    color: #03A24E;
    font-weight: 500;
    font-style: Italic;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;

}

.ff-default .ff-el-form-control {
    background-color: #FAFAFA !important;
}
input.ff-el-form-control,
select.ff-el-form-control {
    height: 43px !important;
}
.fluentform .ff-el-group {
    margin-bottom: 24px;
}

.fluentform .ff-el-input--label {
    margin-bottom: 16px;
}


/* section 6 end */
/* footer  */
.colunm-ft {
    display: grid;
    grid-template-columns: 4fr 5.5fr 2.5fr;
    gap: 72px;
    padding-top: 72px;
    padding-bottom: 72px;
}

.colunm-ft-1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo__ft img {
    width: 124px;
    height: auto;
}

.colunm-ft-1 h2 {
    color: #212121;
    font-weight: 500;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 146%;
    letter-spacing: 1%;
}

.colunm-ft-1 p {
    color: #616161;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
}

.colunm-ft-2,
.colunm-ft-3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.colunm-ft-2 h4,
.colunm-ft-3 h4 {
    color: #9E9E9E;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
}

.colunm-ft-2-info,
.colunm-ft-3-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.colunm-ft-2-info a,
.colunm-ft-3-info a {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #212121;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
    text-decoration: none;
}

.copyright {
    background-color: #F7FCFA;
}

.copyright .container {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    justify-content: space-between;
}

.text-cp {
    color: #9E9E9E;
    font-weight: 400;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 146%;
    letter-spacing: 1%;
}

.text-cp a {
    color: #9E9E9E;
}

.social-ft {
    display: flex;
    gap: 16px;

}

.social-ft img {
    width: 16px;
    height: 16px;
}

/*  footer end */
@media (max-width: 1440px) {
    .container {
        max-width: 1296px;
    }
}

@media (max-width: 1296px) {
    .container {
        max-width: 1024px;
    }

    .nav__desktop,
    .header__info__content {
        display: none;
    }

    .site-header__inner {
        gap: 20px;
    }

    .site-header__actions {
        gap: 12px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .banner__heading1 {
        font-size: 48px;
    }

    .section-1 .container {
        gap: 32px;
    }

    .services__box {
        grid-template-columns: 1fr;
    }

    .office .container {
        grid-template-columns: 1fr;
    }

    .heading2 {
        font-size: 32px;
    }

    .services__content {
        grid-template-columns: 1fr;
    }

    .partners__thr .container {
        grid-template-columns: 1fr;
    }

    .contacts .container {
        grid-template-columns: 1fr;
    }

    .colunm-ft {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 888px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .site-header__inner {
        gap: 12px;
    }

    .site-header__actions {
        gap: 10px;
    }

    .logo__main img {
        height: 80px;
    }

    .header__info__btn {
        padding: 11px 20px;
    }

    .site-header__mobile-sheet {
        width: min(380px, 100%);
        border-radius: 28px;
    }

    .aboutus .container {
        grid-template-columns: 1fr;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .office .container,
    .services .container,
    .partners__st .container,
    .partners__thr .container,
    .contacts,
    .colunm-ft,
    .partners__tw .container {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .services__content {
        padding-top: 48px;
    }

    .colunm-ft {
        gap: 32px;
    }
    .partners__tw .container {
        grid-template-columns: 1fr;
    }
    .partners__tw__card .count__number {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .logo__main img {
        height: 68px;
    }

    .lang__options__select {
        padding-right: 30px;
        padding-left: 8px;
    }

    .header__info__btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .site-header__mobile-panel .container {
        padding-top: 108px;
    }

    .site-header__mobile-sheet {
        padding: 20px;
        border-radius: 24px;
    }

    .nav__mobile-list a {
        padding: 14px 16px;
        font-size: 15px;
    }

    .banner__heading1 {
        font-size: 32px;
    }

    .banner__describe {
        font-size: 16px;
    }

    .section-1 .container {
        gap: 24px;
    }
    .heading2 {
        font-size: 24px;
    }
    .about__content__top,
    .office__content {
        gap: 6px;
    }
    .office__branch {
        grid-template-columns: 1fr;
    }
    .quality__card h4 {
        font-size: 18px;
    }
    .copyright .container {
       flex-direction: column;
       gap: 12px;
    }
    .site-header__mobile-support a {
        font-size: 16px;
    }
    .contacts__left,
    .contacts__form {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .site-header__inner {
        gap: 8px;
    }

    .site-header__actions {
        gap: 8px;
    }

    .logo__main img {
        height: 56px;
    }

    .lang__options__select {
        padding-right: 26px;
        padding-left: 4px;
        font-size: 11px;
    }

    .lang__options__icon {
        right: 8px;
    }

    .header__info__btn {
        padding: 9px 14px;
        border-radius: 20px;
        font-size: 13px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .mobile-menu-toggle__line {
        width: 18px;
    }
    .banner__heading1 {
        font-size: 28px;
    }
    .banner__btn a {
        font-size: 14px;
    }
    .quality__card {
        padding: 8px 20px;
    }
    .quality__card h4 {
        font-size: 16px;
    }
}