body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    background: #e5e7eb;
    color: #000;
}

.container {
    width: 81.25rem;
}
a {
    color: inherit;
}
ul,
li {
    list-style: none;
}
button,
input,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    outline: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

section {
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

.full-width {
    width: 100%;
}

/* BTN */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.125rem;
    padding: 0 1.5rem;
    border-radius: 0.625rem;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 0.75rem;
}
.btn.blue {
    background: #094a89;
    color: #fff;
}
.btn.blue:hover {
    background: #111827;
}
.btn.gray {
    background: #687280;
    color: #fff;
}
.btn.gray:hover {
    background: #343940;
}
.btn.white {
    background: #f7f8fa;
    color: #094a89;
}
.btn.white:hover {
    color: white;
    background: #111827;
}

/* HEADER */

.header {
    padding: 1.1rem;
    transition: all 0.25s ease;
    /* background: white; */
}
.shadow{
    background: #e5e7eb;
}
.white_header:not(.shadow) a{
    color: white;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    width: 10.95rem;
    height: 3.125rem;
    flex-shrink: 0;
    display: block;
}

.logo img {
    width: 100%;
    height: 100%;
}
.top-link-in {
    flex-wrap: wrap;
}
.logo span {
    display: block;
    margin-top: -0.5rem;
    font-size: 0.66rem;
    font-weight: 500;
    color: #000;
    width: max-content;
    transition: all 0.35s;
    pointer-events: none;
}
.shadow .logo span{
    opacity: 0;
}
.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease-in;
}

.nav a:hover,
.nav  a.active {
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

/* BURGER */
.burger {
    width: 1.65rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.burger img {
    width: 100%;
    height: 100%;
}

/* MOB MENU */
.mob-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mob-menu.open {
    visibility: visible;
    opacity: 1;
}

.mob-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 38, 74, 0.6);
}

.mob-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    padding: 1rem;
    background: #e5e7eb;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mob-in {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.mob-menu.open .mob-menu-inner {
    transform: translateX(0);
}

.mob-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mob-close {
    width: 1.75rem;
    height: 1.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mob-close img {
    width: 100%;
    height: 100%;
}

.mob-nav {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mob-nav a {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: #000;
}

.mob-nav a.active {
    color: #1b4c8b;
}

/* HERO */
.hero-section {
    position: relative;
    height: 43rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.hero-back {
    display: flex;
    align-items: stretch;
    position: absolute;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    pointer-events: none;
}
.hero-map {
    flex-shrink: 0;
    width: 18.5rem;
    height: 100%;
    object-fit: contain;
}
.hero-bg-overlay {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 0 0 0 1.875rem;
    overflow: hidden;
}
.hero-bg {
    height: 100%;
    width: 100%;
    object-fit: cover;
    inset: 0;
    position: absolute;
}
.hero-bg-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        83deg,
        rgba(0, 85, 211, 0.8) -21.87%,
        rgba(0, 85, 211, 0.4) 56.78%
    );
    z-index: 1;
}

.hero-inner {
    display: flex;
    justify-content: flex-end;
}
.hero-box {
    display: flex;
    width: 63rem;
    justify-content: space-between;
    padding-top: 2rem;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 44rem;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.hero-text {
    width: 30rem;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.hero-btns .btn {
    width: 15rem;
}

.hero-cards {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 17.5rem;
    flex-shrink: 0;
}

.hero-card {
    display: flex;
    padding: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.3125rem;
    align-self: stretch;
    border-radius: 0.625rem;
    border: 0.5px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(35px);
}

.hero-card-num {
    font-size: 2.125rem;
    font-weight: 600;
    color: #fff;
}

.hero-card-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* KICKER */
.kicker {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #7b8089;
}
.kicker::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #094a89;
    flex-shrink: 0;
}

/* ABOUT */
.about-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.about-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    flex-shrink: 0;
}

.about-left .btn {
    width: 15rem;
}
.content{
    margin-bottom: -1rem;
}
.about-right {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*gap: 1.25rem;*/
    opacity: 0.8;
}

.about-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* height: 26.5rem; */
    padding: 1.75rem;
    border-radius: 1rem;
    overflow: hidden;
}
.ab-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        83deg,
        rgba(0, 85, 211, 0.1) -3.16%,
        rgba(0, 85, 211, 0.05) 24.09%
    );
    z-index: 1;
    pointer-events: none;
}
.about-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 32.5rem;
    padding: 1.75rem;
    border-radius: 1rem;
    border: 0.5px solid rgba(104, 114, 128, 0.3);
    background: #f7f8fa;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 1.85rem;
}

.about-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}

.about-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.about-item-text {
    opacity: 0.5;
}

/* SLIDER ARROWS */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 6.25rem;
    border: 1px solid #fff;
    background:
        linear-gradient(
            264deg,
            rgba(9, 9, 9, 0.25) 51.51%,
            rgba(58, 53, 47, 0.03) 150.02%
        ),
        linear-gradient(
            97deg,
            rgba(249, 249, 249, 0.3) 48.86%,
            rgba(249, 249, 249, 0) 128.5%
        );
    transition: all 0.3s ease-in;
}

.slider-arrow img {
    height: 1.39419rem;
    width: 1.74656rem;
}

.slider-arrow:hover {
    background: #094a89;
}

/* SERVICES */
.services-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.services-head-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services-head .btn {
    width: 12.5rem;
    color: #000;
}

.services-slider-wrap {
    position: relative;
}

.services-slider {
    margin: 0 -0.625rem;
}

.services-slider .slick-slide {
    height: auto;
    padding: 0 0.625rem;
}

.services-prev {
    left: -1.5rem;
}

.services-next {
    right: -1.5rem;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 32rem;
    padding: 1.85rem;
    border-radius: 1rem;
    overflow: hidden;
    color: #fff;
}

.service-card-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 29.11%, #000 112.37%);
}

.service-card:hover .service-card-img img {
    transform: scale(1.06);
}

.service-card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    background: #f7f8fa;
    transition: all 0.35s ease;
    transform: rotate(-45deg);
}

.service-card-arrow img {
    height: 1.39419rem;
    width: 1.74656rem;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.service-card:hover .service-card-arrow img {
    transform: rotate(45deg);
}

.service-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
}
.service-card-text {
    letter-spacing: -0.02rem;
}
.service-card-btn {
    margin-top: 0.5rem;
}

.service-card-btn img {
    width: 1rem;
    height: 0.79825rem;
    transform: rotate(-45deg);
    transition: transform 0.35s ease;
}

.service-card:hover .service-card-btn img {
    transform: rotate(0deg);
}

/* ADVANTAGES */
.adv-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.adv-head {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.adv-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    height: 23.75rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #f7f8fa;
    overflow: hidden;
    color: #111827;
}

.adv-card.blue {
    background: #094a89;
    color: #fff;
}

.adv-card-wide {
    grid-column: span 2;
}

.adv-card-half {
    grid-column: span 2;
    height: 19rem;
}

.adv-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 26.25rem;
    height: 100%;
    z-index: 0;
}

.adv-card-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.adv-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
}

.adv-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
}

.adv-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: #094a89;
}

.adv-card.blue .adv-card-icon {
    background: #afd8ff;
}

.adv-card-icon img {
    width: 2.15rem;
    height: 2.15rem;
}

.adv-card-photo {
    position: relative;
    z-index: 2;
    min-height: 10rem;
    height: 100%;
    min-height: 0;
    border-radius: 0.625rem;
    overflow: hidden;
}

.adv-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adv-card-text {
    position: relative;
    z-index: 2;
    letter-spacing: -0.02rem;
}

.adv-card.blue .adv-card-text {
    color: rgba(255, 255, 255);
}

.adv-card-wide .adv-card-title,
.adv-card-wide .adv-card-text {
    width: 30rem;
    z-index: 2;
    max-width: 100%;
}
.adv-card-text.third {
    width: 18rem;
}

/* PROJECTS */
.projects-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.projects-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.projects-head-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.projects-head .btn {
    width: 12.5rem;
    color: black;
    border-radius: 10rem;
}

.projects-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.projects-tab {
    display: inline-flex;
    align-items: center;
    height: 3.125rem;
    padding: 0 1.25rem;
    border-radius: 0.625rem;
    font-weight: 500;
    color: #094a89;
    background: transparent;
    transition: all 0.3s ease;
}

.projects-tab:hover {
    background: #f7f8fa;
}

.projects-tab.active {
    background: #094a89;
    color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 1.25rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    color: #111827;
}

.project-card.hide {
    display: none;
}

.project-card-img {
    width: 100%;
    height: 15.6rem;
    border-radius: 1rem;
    overflow: hidden;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-card-img img {
    transform: scale(1.05);
}

.project-card-logo {
    display: flex;
    align-items: center;
    height: 5rem;
}

.project-card-logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.project-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-card:hover .project-card-title {
    color: #094a89;
}

.project-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    color: #1f2021;
}

.project-card-row span {
    font-weight: 600;
    color: #111827;
}

.project-card-more {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-weight: 600;
    color: #094a89;
    margin-top: auto;
}

.project-card-more img {
    width: 1.875rem;
    height: 1.875rem;
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-more img {
    transform: translateX(0.4rem);
}

/* LOGISTICS */
.logistics-section {
    overflow: hidden;
    padding: 2rem 0;
    background: white;
    position: relative;
}

.logistics-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.logistics-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 3;
    flex-shrink: 0;
}
.logistics-img {
    position: absolute;
    width: 45.35619rem;
    height: 45.35619rem;
    transform: rotate(-7.437deg);
    left: -1rem;
    bottom: -9rem;
}

.logistics-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.logistics-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    height: 10.0625rem;
    border-radius: 1rem;
    background: #e5e7eb;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.logistics-card.active {
    background: #094a89;
}

.logistics-card-num {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%) scale(0.85);
    z-index: 1;
    font-size: 16rem;
    letter-spacing: -0.27725rem;
    line-height: 120%;
    font-weight: 700;
    background: linear-gradient(
        150deg,
        rgba(255, 255, 255, 0.3) 45.79%,
        rgba(255, 255, 255, 0) 177.27%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    user-select: none;
}

.logistics-card.active .logistics-card-num {
    opacity: 1;
}

.logistics-card-title {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.15rem;
    color: #111827;
    transition: all 0.4s ease;
}

.logistics-card-text {
    position: relative;
    z-index: 2;
    width: 24.5rem;
    transition: all 0.4s ease;
}

.logistics-card.active .logistics-card-title {
    color: #fff;
}

.logistics-card.active .logistics-card-text {
    color: rgba(255, 255, 255);
}

/* PARTNERS */
.partners-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.partners-inner .slick-list{
    overflow: unset;
}
.partners-slider {
    width: 100%;
    margin: 0 -0.625rem;
}

.partners-slider .slick-track {
    display: flex;
    align-items: stretch;
    transition-timing-function: linear !important;
}

.partners-slider .slick-slide {
    height: auto;
    padding: 0 0.625rem;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 11.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #fff;
    transition: all 0.3s ease;
}

.partner-card img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-card:hover img {
    scale: calc(1.04);
}

.partners-btn {
    width: 25rem;
}

/* FORM */
.form-section {
    position: relative;
    padding: 3rem 0;
    border-radius: 1.25rem 1.25rem 0 0;
    min-height: 37rem;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.form-section::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}
.form-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    color: #fff;
}

.form-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.25rem 1.25rem 0 0;
}

.kicker.white {
    color: rgba(255, 255, 255, 0.8);
}

.kicker.white::before {
    background: #fff;
}

.form-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.65rem;
    flex-shrink: 0;
}

.form-head {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-photo {
    height: 20rem;
    border-radius: 1.5rem;
    object-fit: cover;
}

.form-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    min-width: 0;
}

.form-desc {
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.8;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    position: relative;
    min-width: 0;
}

.form-input {
    width: 100%;
    height: 3.5rem;
    padding: 0 1.25rem;
    border: none;
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.3);
}
.select {
    position: relative;
    z-index: 5;
}
.select.open {
    z-index: 10;
}
.select-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    height: 3.5rem;
    padding: 0 1.25rem;
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    transition: all 0.3s ease;
}

.select.selected .select-head {
    height: auto;
    min-height: 3.5rem;
    padding: 0.85rem 1.25rem;
    background: #fff;
    color: #111827;
}

.select-current {
    flex: 1;
    min-width: 0;
}

.select-arrow {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.select.open .select-arrow {
    transform: rotate(180deg);
}

.select-drop {
    position: absolute;
    top: calc(100% + 0.625rem);
    left: 0;
    width: 100%;
    max-height: 24rem;
    padding: 0.5rem 0;
    border-radius: 0.9375rem;
    background: #fff;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.625rem);
    transition: all 0.3s ease;

    scrollbar-width: none;
    -ms-overflow-style: none;
}
.select-drop::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.select.open .select-drop {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.select-option {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    color: #111827;
    cursor: pointer;
    transition: all 0.25s ease;
}

.select-option:hover,
.select-option.active {
    color: #094a89;
    font-weight: 600;
}

/* FILE */
.form-file {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 3.5rem;
    padding: 0 1.25rem;
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding-right: 1rem;
}

.form-file:hover {
    background: rgba(255, 255, 255, 0.4);
}

.form-file input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.form-file-text {
    flex: 1;
    min-width: 0;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.form-file.filled .form-file-text {
    color: #fff;
}

.form-file-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    object-fit: contain;
}

/* BOTTOM */
.form-bottom {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.form-bottom .btn {
    width: 14.5rem;
    flex-shrink: 0;
}

.form-policy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}
.form-policy a{
    text-decoration: underline;
}
.form-policy a:hover{
    text-decoration: none;
}
.result {
    grid-column: span 2;
}

/* CONTACTS */
.contacts-section {
    padding: 3rem 0;
    border-radius: 0 0 1.25rem 1.25rem;
    background: #fff;
}
.contacts-inner {
    display: grid;
    grid-template-columns: 26rem minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.contacts-info {
    display: grid;
    gap: 1.85rem;
}

.contacts-list {
    display: grid;
    gap: 1.85rem;
}

.contacts-item {
    display: grid;
    gap: 0.625rem;
}

.contacts-item-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contacts-item-title::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #094a89;
    flex-shrink: 0;
}

.contacts-item-body {
    display: grid;
    gap: 0.5rem;
}

.contacts-item-body a {
    transition: all 0.25s ease;
}

.contacts-item-body a:hover {
    color: #094a89;
}

.contacts-socials {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contacts-social {
    font-size: 2rem;
    color: #094a89;
    transition: all 0.25s ease;
}

.contacts-social:hover {
}

.contacts-map {
    height: 100%;
    border-radius: 1.875rem;
    overflow: hidden;
}

.contacts-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

/* FOOTER */
.footer {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}
.footer-inner {
    display: grid;
    gap: 2.25rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 19rem minmax(0, 1fr) 14rem;
    gap: 1.25rem;
    align-items: center;
}
.footer-main {
    display: grid;
    grid-template-columns: 19rem 12.5rem minmax(0, 1fr) 16rem;
    gap: 1.25rem;
}

.footer-form {
    display: contents;
}

.footer-form-input {
    width: 100%;
    height: 3.125rem;
    padding: 0 1.5rem;
    border: none;
    border-radius: 0.625rem;
    background: #687280;
    color: #fff;
    transition: all 0.3s ease;
}
.footer-form-input.error{
    background: #cd5d5d!important;
}
.footer-form-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.footer-form-input:focus {
    background: #5a636f;
}

.footer-form-btn {
    width: 100%;
}
.footer-form-btn img {
    width: 1rem;
    height: 0.79825rem;
    transform: rotate(-45deg);
    transition: transform 0.35s ease;
}
.footer-form-btn:hover img {
    transform: rotate(0deg);
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 1.25rem;
}

.footer-col-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.footer-col-body {
    display: grid;
    gap: 0.75rem;
}

.footer-col-body a {
    transition: all 0.25s ease;
}

.footer-col-body a:hover {
    color: #094a89;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-social {
    font-size: 2rem;
    transition: all 0.25s ease;
}

.footer-social:hover {
}

.footer-nav {
    display: grid;
    align-content: start;
    gap: 1.375rem;
}

.footer-nav a {
    transition: all 0.25s ease;
}

.footer-nav a:hover, .footer-nav a.active {
    color: #094a89;
}

.footer-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.footer-link {
    padding-bottom: 0.625rem;
    padding-right: 1rem;
    border-bottom: 3px solid #094a89;
    transition: all 0.25s ease;
}

.footer-link:hover {
    color: #094a89;
}

/* INTRO */
.intro-inner {
    display: grid;
    gap: 2rem;
}

.intro-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.25rem;
}

.intro-left {
    display: grid;
    align-content: start;
    gap: 2rem;
}

.intro-icon {
    display: flex;
    align-items: center;
    width: 4rem;
    height: 2.125rem;
}

.intro-icon img {
    width: 100%;
    height: 100%;
}

.intro-right {
    /*display: grid;*/
    /*gap: 1.25rem;*/
    color: #111827;
}

.intro-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.intro-gallery-item {
    height: 19.375rem;
    border-radius: 1rem;
    overflow: hidden;
}

.intro-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.top-link-section {
    padding-top: 7.5rem;
    margin-bottom: 2rem;
}
.top-link-in {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #687280;
}
.top-link-in a:hover {
    color: #000;
}
.ab-top {
    width: 58.0625rem;
    height: 19.15513rem;
    position: absolute;
    top: -2rem;
    left: -4rem;
    pointer-events: none;
}

/* MISSION */
.mission-section {
    padding: 2.25rem 0;
    background: #094a89;
    color: #fff;
}

.mission-inner {
    display: grid;
    justify-items: center;
    gap: 2rem;
    text-align: center;
}

.mission-head {
    display: grid;
    justify-items: center;
    gap: 1.5rem;
    width: 68rem;
}

.mission-text {
    width: 53rem;
}

.mission-numbers {
    display: grid;
    justify-items: center;
    gap: 2rem;
    width: 100%;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    width: 53rem;
}

.mission-card {
    display: grid;
    align-content: space-between;
    gap: 1.25rem;
    min-height: 10rem;
    padding: 1.25rem;
    border-radius: 0.625rem;
    border: 0.5px solid rgba(255, 255, 255, 0.6);
    background: #f7f8fa;
    backdrop-filter: blur(35px);
    text-align: left;
    color: #111827;
}
.mission-card-num {
    font-size: 2.25rem;
    font-weight: 600;
    color: #094a89;
}

/* VALUES */
.values-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
}

.values-photo {
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.values-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-content {
    display: grid;
    align-content: start;
    gap: 1.85rem;
}

.values-list {
    display: grid;
    gap: 1.85rem;
}

.values-item {
    display: grid;
    gap: 0.65rem;
}

.values-item-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

.values-item-title::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #094a89;
    flex-shrink: 0;
}
.values-item-text {
    font-size: 1.25rem;
}

.ser-big-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.ser-big-grid .service-card {
    height: 27.5rem;
}

.cert-card {
    height: 27.3125rem;
    overflow: hidden;
    border-radius: 1rem;
}
.cert-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certs-head {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    align-items: flex-end;
}
.certs-head-left {
    display: grid;
    align-content: start;
    gap: 1.25rem;
}
.certs-head-right {
    width: 26.25rem;
}

/* SUPPLY */
.supply-inner {
    display: grid;
    grid-template-columns: 30rem minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.supply-content {
    display: grid;
    align-content: start;
    gap: 2rem;
}

.supply-text {
    /*display: grid;*/
    /*gap: 1.25rem;*/
    /*color: #111827;*/
}
/*.supply-text ul {*/
/*    padding-left: 1.15rem;*/
/*}*/
/*.supply-text li {*/
/*    list-style: disc;*/
/*}*/

.supply-btn {
    width: 15rem;
}

.supply-photo {
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.supply-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* PAGINATION */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding-top: 2rem;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    transition: all 0.3s ease;
}

.pagination-item:hover {
    background: #f7f8fa;
}

.pagination-item.active {
    background: #094a89;
    color: #fff;
}

.pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: #f7f8fa;
    transition: all 0.3s ease;
}

.pagination-arrow img {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}

.pagination-arrow:hover {
    background: #094a89;
}

/* CONTROL */
.control-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: center;
}

.control-photo {
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.control-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.control-content {
    display: grid;
    align-content: start;
    gap: 1.75rem;
}

.control-text {
    /*display: grid;*/
    /*gap: 1.25rem;*/
}
.control-text.content ul{
    margin-left: 0.2rem;
    list-style-type: none;
}
.control-text.content ul li{
    position: relative;
    padding-left: 1.9rem;
    list-style-type: none;
}
.control-text.content ul li:not(:last-child) {
    margin-bottom: 1rem;
}
.control-text.content ul li:after{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    background: #094A89;
    content: "";
}
.control-block {
    display: grid;
    gap: 1.25rem;
}

.control-block-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.control-list {
    display: grid;
    gap: 1rem;
}

.control-list-item {
    display: flex;
    align-items: center;
    gap: 1.125rem;
}

.control-list-item::before {
    content: "";
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    background: #094a89;
    flex-shrink: 0;
}

.control-btn {
    width: 15rem;
    margin-top: 0.5rem;
}

/* BENEFITS */
.benefits-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
}

.benefits-list {
    display: grid;
    gap: 1.25rem;
}

.benefits-item {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1.85rem;
    padding: 1.25rem 1.5625rem 1.5625rem 1.5625rem;
    border-radius: 1rem;
    border: 0.5px solid rgba(104, 114, 128, 0.3);
    background: #f7f8fa;
    transition: all 0.3s ease;
}

.benefits-item:hover {
    background: #fff;
}

.benefits-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

.benefits-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefits-item-body {
    display: grid;
    gap: 1rem;
}

.benefits-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.benefits-item-text {
    opacity: 0.5;
}

.benefits-photo {
    position: sticky;
    top: 6.5rem;
    height: 32rem;
    border-radius: 1.25rem;
    overflow: hidden;
}

.benefits-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ */
.faq-section {
    border-radius: 0 0 1.25rem 1.25rem;
    background: #f7f8fa;
    padding: 3rem 0 2rem;
}
.faq-inner {
    display: grid;
    gap: 1.5rem;
}

.faq-head {
    display: grid;
    gap: 1.25rem;
}

.faq-list {
    display: grid;
    gap: 1.35rem;
}

.faq-item {
    border-bottom: 0.0625rem solid #094a89;
}
.faq-item:last-child {
    border-bottom: none;
}

.faq-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.35rem;
    cursor: pointer;
}
.faq-question {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    transition: all 0.3s ease;
}

.faq-item.open .faq-question,
.faq-head-row:hover .faq-question {
    color: #094a89;
}

.faq-toggle {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #111827;
    transition:
        transform 0.35s ease-in,
        opacity 0.35s ease-in,
        background 0.35s ease-in;
}

.faq-toggle::before {
    width: 1.15rem;
    height: 0.15rem;
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    width: 0.15rem;
    height: 1.15rem;
    transform: translate(-50%, -50%);
}

.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after {
    background: #094a89;
}

.faq-item.open .faq-toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-body {
    max-height: 20rem;
}

.faq-answer {
    padding-bottom: 1.35rem;
    width: 50rem;
    max-width: 100%;
}

.txt-head {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

/* CASE */
.case-inner {
    width: 67.5rem;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.case-head {
    display: grid;
    justify-items: center;
    gap: 1rem;
    text-align: center;
}

.case-kicker {
    font-size: 1.25rem;
    opacity: 0.8;
    font-weight: 500;
    color: #094a89;
}

.case-photo {
    height: 29rem;
    border-radius: 1.25rem;
    overflow: hidden;
}
.case-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-params {
    /*display: grid;*/
    /*grid-template-columns: repeat(4, minmax(0, 1fr));*/
    gap: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 0.5px solid rgba(9, 74, 137, 0.5);
}

.case-param {
    display: grid;
    align-content: start;
    gap: 0.375rem;
}

.case-param-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.case-content {
    /*display: grid;*/
    /*gap: 1.5rem;*/
    padding-bottom: 1.5rem;
    border-bottom: 0.5px solid rgba(9, 74, 137, 0.5);
}
.case-content h1, .case-content h2, .case-content h3, .case-content h4, .case-content h5, .case-content h6{
    color: #094A89;
    padding-top: 0.5rem;
}
.case-block {
    display: grid;
    gap: 1rem;
    color: #111827;
}

.case-block-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #094a89;
}

.case-ul {
    display: grid;
    gap: 0.5rem;
    padding-left: 1.5rem;
}

.case-ul li {
    list-style: disc;
}

.case-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.case-nav-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: all 0.25s ease;
}

.case-nav-next {
    justify-content: flex-end;
    text-align: right;
}

.case-nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.10419rem;
    height: 3.13781rem;
    flex-shrink: 0;
}

.case-nav-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.case-nav-body {
    display: grid;
    gap: 0.375rem;
}

.case-nav-label {
    font-size: 0.9rem;
}

.case-nav-name {
    font-weight: 600;
    color: #111827;
    transition: all 0.25s ease;
}

.case-nav-item:hover .case-nav-name {
    color: #094a89;
}

/* PARTNER BANNER */
.pbanner-top {
    position: relative;
    display: flex;
    align-items: center;
    height: 23rem;
    overflow: hidden;
    color: #fff;
}

.pbanner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pbanner-top::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.pbanner-top .container {
    position: relative;
    z-index: 2;
}

.pbanner-inner {
    display: grid;
    justify-items: center;
    gap: 1.85rem;
    text-align: center;
}

.pbanner-text {
    width: 55rem;
    letter-spacing: -0.02rem;
}

.pbanner-btn {
    width: 14rem;
}

.pbanner-bottom {
    padding: 2.5rem 0;
    background: #141d2e;
    color: #fff;
}

.pbanner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.pbanner-card {
    display: grid;
    grid-template-columns: 3.75rem minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.pbanner-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background: #094a89;
}

.pbanner-card-icon img {
    width: 2rem;
    height: 2rem;
}

.pbanner-card-body {
    display: grid;
    gap: 1rem;
}

.pbanner-card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.pbanner-card-text {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* PARTNER BENEFITS */
.pbenefits-section {
    position: relative;
    padding: 2.5rem 0;
    background: #141d2e;
    overflow: hidden;
    color: #fff;
}

.pbenefits-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pbenefits-section .container {
    position: relative;
    z-index: 2;
}

.pbenefits-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.pbenefits-head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.pbenefits-btn {
    width: 12.75rem;
}

.pbenefits-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 15rem;
    padding: 1.25rem;
    border-radius: 0.625rem;
    overflow: hidden;
}

.pbenefits-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pbenefits-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 29.11%, #000 112.37%),
        linear-gradient(
            0deg,
            rgba(9, 74, 137, 0.2) 0%,
            rgba(9, 74, 137, 0.2) 100%
        );
}

.pbenefits-card:hover .pbenefits-card-img {
    transform: scale(1.06);
}

.pbenefits-card-body {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 0.65rem;
}

.pbenefits-card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.pbenefits-card-text {
    letter-spacing: -0.02rem;
}

/* STEPS */
.steps-inner {
    display: grid;
    gap: 2rem;
}

.steps-head {
    display: grid;
    gap: 1.25rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem;
}

.steps-item {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 1.25rem;
    text-align: center;
}

.steps-item-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background: #094a89;
}

.steps-item-icon img {
    width: 2rem;
    height: 2rem;
}
.steps-item::after {
    content: "";
    position: absolute;
    top: 2rem;
    left: calc(50% + 2.75rem);
    width: calc(100% - 4.5rem);
    height: 0.125rem;
    background-image: linear-gradient(
        90deg,
        #094a89 0.3125rem,
        transparent 0.3125rem
    );
    background-size: 0.5625rem 0.125rem;
    background-repeat: repeat-x;
}

.steps-item::before {
    content: "";
    position: absolute;
    top: 2.075rem;
    left: calc(150% - 1.85rem);
    width: 0;
    height: 0;
    border-top: 0.3125rem solid transparent;
    border-bottom: 0.3125rem solid transparent;
    border-left: 0.5rem solid #094a89;
    transform: translateY(-50%);
}

.steps-grid .steps-item:last-child::after,
.steps-grid .steps-item:last-child::before {
    display: none;
}

.steps-item-icon::after {
    display: none;
}

.steps-item-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.steps-item-text {
    opacity: 0.7;
}

/* WHOM */
.whom-inner {
    display: grid;
    gap: 2rem;
}

.whom-head {
    display: grid;
    gap: 1.25rem;
}

.whom-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.whom-list {
    display: grid;
    gap: 1rem;
}

.whom-card {
    display: grid;
    gap: 0.65rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}

.whom-card.active {
    background: #094a89;
}

.whom-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #094a89;
    transition: color 0.4s ease;
}

.whom-card-text {
    opacity: 0.7;
    transition: color 0.4s ease;
}

.whom-card.active .whom-card-title {
    color: #fff;
}

.whom-card.active .whom-card-text {
    color: rgba(255, 255, 255, 0.85);
}

.whom-photo {
    position: relative;
    height: 39rem;
    border-radius: 1.25rem;
    overflow: hidden;
}

.whom-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition:
        opacity 0.5s ease,
        transform 0.6s ease;
}

.whom-photo-img.active {
    opacity: 1;
    transform: scale(1);
}

.almaty {
    box-shadow:
        -2px -2px 10px 0 #156ef5,
        2px 2px 10px 0 #156ef5;
}

.content li{
    list-style: auto;
}
#map_section{
    position: relative;
    margin-top: -10rem;
    margin-bottom: -7rem;
}
#map_section rect,
#map_section circle,
#map_section g[filter]{
    pointer-events: none;
}
.country_box{
    transition: all 0.5s;
    cursor: pointer;
}
.country_box.is-active{
    fill: rgb(9, 74, 137) !important;
    fill-opacity: 1 !important;
    stroke: rgb(229, 231, 235);
}
.map_country_label{
    transition: opacity 0.2s;
}
.map_country_label.is-hidden{
    opacity: 0;
    visibility: hidden;
}
.map_country_dot{
    stroke: transparent;
    stroke-width: 0;
    filter: none;
    transform-box: fill-box;
    transform-origin: center;
}
.map_country_dot.is-active{
    stroke: #fff;
    stroke-width: 8px;
    filter: drop-shadow(0 0 10px rgba(9, 74, 137, 0.85));
    animation: mapCountryDotPulse 1.4s ease-in-out infinite;
}
@keyframes mapCountryDotPulse{
    0%, 100%{
        opacity: 1;
        transform: scale(1);
    }
    50%{
        opacity: 0.7;
        transform: scale(1.45);
    }
}
.map_country_data{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s;
    border-radius: 10px;
    background: #F7F8FA;
    padding: 1.25rem;
    pointer-events: none;
    z-index: 2;
}
.map_country_data.is_active{
    opacity: 1;
    visibility: visible;
}
.country_data_title{
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    color: #094A89;
    margin-bottom: 0.4rem;
}
.country_data_sub_title{
    color: #111827;
    opacity: 0.5;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0.55rem;
}
.country_data_service_item{
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.country_data_service_item img{
    width: 1rem;
}
.country_data_services{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.services-section{
    position: relative;
    z-index: 1;
}
