:root {
    /* color */
    --black-color: rgba(0, 0, 0, 1);
    --white-color: #fff;
    --gray-color: rgba(247, 246, 249, 1);
    --blue-color: #418ED4;
    --deep-blue-color: rgba(65, 142, 212, 1);
    /* font */
    --primary-font: 'Inter', sans-serif;
    --secondary-font: Helvetica, Arial, sans-serif;
    --tertiary-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --quaternary-font: 'DM Sans', sans-serif;
}

/* Scrooling */
html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none !important;

}

a:hover {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

button,
input,
select,
textarea {
    margin: 0;
}

img {
    width: 100%;
}


body {
    font-family: var(--primary-font);
    margin: 0 auto;
    background-color: white;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;

}

.row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;

}

/* HEADER */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 58px;
}

.logo p {
    font-family: var(--secondary-font) !important;
    color: #6B7280;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0px;
    text-align: left;
}

.logo p span {
    background: linear-gradient(90deg, #95BFE5 0%, #204E86 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 16px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0px;
    text-align: left;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--deep-blue-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--white-color);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 100px 30px 30px;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-overlay ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
    align-items: flex-start;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu-overlay ul li {
    display: block !important;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu-overlay ul li a {
    color: var(--black-color) !important;
    font-family: var(--primary-font) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    display: block !important;
    width: 100%;
    padding: 10px 0;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
    padding: 0px;
}

.nav-menu li a {
    color: var(--black-color) !important;
    font-family: var(--primary-font) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0%;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--blue-color) !important;
}

/* HERO SECTION */
.hero-container {
    position: relative;
    height: 80vh;
    border-radius: 0px 0px 20px 20px;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
}

.hero-bg-layer-1 {
    z-index: 1;
    opacity: 1;
}

.hero-bg-layer-2 {
    z-index: 2;
    opacity: 0;
}

.hero-row {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-content h1 {
    color: rgba(255, 255, 255, 1);

    font-family: var(--primary-font) !important;
    font-style: Bold;
    font-size: 80px;
    font-weight: 700;
    line-height: 86px;
    letter-spacing: 0%;
    text-align: left;
}

.hero-content p {
    color: rgba(255, 255, 255, 1);
    margin-top: 20px;
    font-family: var(--primary-font) !important;
    font-size: 32px;
    font-weight: 400;
    line-height: 38px;
}

.btn-primary {
    display: inline-block;
    border-radius: 15px;
    background: rgba(255, 255, 255, 1);
    color: rgba(65, 142, 212, 1);
    height: 69px;
    width: 372px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--primary-font) !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--black-color);
}

.hero-content .hero-content-text {
    color: rgba(238, 238, 238, 1) !important;
    font-family: var(--tertiary-font) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    margin-top: 50px;
}

/* WHY SECTION */
.why-container {
    padding-top: 100px;
    padding-bottom: 40px;
}

.why-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mini-title {
    font-family: var(--primary-font) !important;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0px;

}

.mini-title span {
    background: linear-gradient(90deg, #95BFE5 0%, #204E86 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.why-content-text {
    color: rgba(107, 114, 128, 1);
    max-width: 590px;
    font-family: var(--secondary-font) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    margin-top: 23px;
}

/* WHY ITEMS SECTION */
.why-items-container {
    padding: 39px 0;
    background-color: rgba(247, 246, 249, 1);
    max-width: 100% !important;
    display: flex;
    justify-content: center;
}

.why-items-row {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1440px;
    gap: 33px;
}

.why-item-box {
    border-radius: 16px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 8px 24px 0px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 1);
    max-width: 368px;
    padding: 32px;
}

.why-item-icon {
    width: 64px;
    height: 64px;
}

.why-item-title {
    color: rgba(51, 51, 51, 1);
    margin-top: 24px;
    font-family: var(--primary-font) !important;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: left;
}

.why-item-text {
    color: rgba(107, 114, 128, 1);
    font-family: var(--secondary-font) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    margin-top: 11px;
}

/* NUMBERS SECTION */
.number-container {
    padding-top: 64px;
    padding-bottom: 0px;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
}

.number-row {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1168px;
    background-color: var(--blue-color);
    color: var(--white-color);
    border-radius: 16px;
    padding: 45px;
}

.number-icon {
    width: 64px;
    height: 64px;
}

.number-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.number-title {
    font-family: var(--primary-font) !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: center;
    margin-top: 18px;
}

.number-text {
    color: rgba(255, 255, 255, 1);
    font-family: var(--primary-font) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    margin-top: 11px;
}

/* ADS SOLUTIONS SECTION */
.ads-solutions-items-container {

    padding-bottom: 0px;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
}

.ads-solutions-content-text {
    margin-top: 12px;
}

.ads-solutions-items-row {
    display: flex;
    justify-content: center;

    max-width: 1188px;
    /* margin-top: 37px; */

}

.ads-solutions-item-box {
    padding: 8px 0px 8px 58px;
    display: flex;
    flex-direction: row;


}

.ads-solutions-item-box-img {
    margin-bottom: 44px;
}

.ads-solutions-item-box-2 {
    padding: 8px 58px 0px 0px;
}

.ads-solutions-item-number span {
    color: rgba(124, 192, 255, 0.8);

    font-family: var(--quaternary-font) !important;
    font-style: Bold;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -2%;
}

.ads-solutions-item-number-2 {
    padding: 8px 0px 0px 0px;
}

.ads-solutions-item-title {
    color: rgba(5, 5, 9, 1);
    font-family: var(--quaternary-font) !important;
    font-style: bold;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;
}

.ads-solutions-item-text {
    padding: 8px 0px 0px 22px;
}

.ads-solutions-item-text-2 {
    padding: 8px 0px 0px 0px;
}

.ads-solutions-item-row-icon {
    width: 18px;

}

.ads-solutions-item-p {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    margin-top: 24px;
}

.ads-solutions-item-p-text p {
    color: rgba(107, 114, 128, 1);

    font-family: var(--quaternary-font) !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -3%;
}

.ads-solutions-item-p-text ul {
    list-style: disc;
    color: rgba(5, 5, 9, 1);
    font-family: var(--quaternary-font) !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -3%;
    margin-top: 6px;
    padding-left: 55px;
}

.ads-solutions-item-p-text ul li::marker {
    font-size: 0.5em;
}



/* GEO SECTION */
.geo-container {
    padding-top: 64px;
    padding-bottom: 64px;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
}

.geo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1188px;
}

.geo-content {
    background-color: #448DD1;
    border-radius: 16px;
    padding: 51px 47px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.geo-text-content {
    flex: 0 0 auto;
}

.geo-title {
    font-family: var(--secondary-font) !important;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0px;
    color: var(--white-color);
    margin-bottom: 0;
}

.geo-subtitle {
    font-family: var(--secondary-font) !important;
    font-size: 24px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: 0px;
    color: rgba(195, 215, 232, 0.65);
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 350px;
}

.geo-regions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 auto;
    justify-content: flex-start;
    align-items: flex-end;
    max-width: 600px;
}

.geo-regions-row {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    width: 100%;
}

.geo-regions-row-top {
    /* 4 карточки в верхнем ряду */
}

.geo-regions-row-bottom {
    /* 3 карточки в нижнем ряду - увеличиваем gap для аккуратного вида */
    gap: 30px;
}

.geo-region-card {
    background: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(124, 192, 255, 0.8);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.05);
    min-width: 103px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 60px;
}

.geo-regions-row-bottom .geo-region-card {
    min-width: 140px;
}

.geo-region-card-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    border-radius: 8px;
    opacity: 0.1;
}

.geo-region-name {
    font-family: var(--secondary-font) !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 1%;
    color: var(--white-color);
    text-align: center;
    position: relative;
    z-index: 1;
}


/* INDUSTRIES SECTION */
.why-container-3 {
    padding-top: 40px;
}

/* INDUSTRIES ITEMS SECTION */
.industries-items-container {
    width: 100%;

}

.industries-items-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    gap: 70px;
}

.industries-item-box {
    max-width: 262px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    box-shadow: 4px 4px 30px 0px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;

}

.industries-item-icon {
    width: 99px;
    height: 99px;

}

.industries-item-title {
    color: rgba(29, 29, 29, 1);
    font-family: var(--primary-font) !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 24px;
}

.industries-item-text {
    color: rgba(107, 114, 128, 1);

    font-family: var(--secondary-font) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -3%;
    text-align: center;
    margin-top: 16px;
}

/* PRICE SECTION */
.price-items-container {
    width: 100%;
    padding-bottom: 100px;

}

.price-items-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1188px;
    margin: 0 auto;

}

.price-item-box {
    border-radius: 16px;
    background: rgba(68, 140, 212, 1);
    padding: 30px;
}

.price-item-box ul li {
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    justify-content: flex-start;
    gap: 10px;
    color: white;
}

.price-item-number {
    font-size: 22px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0%;
}

.price-item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.price-item-title {
    font-family: var(--primary-font) !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: -3%;
    text-align: left;
}

.price-item-price {
    font-family: var(--secondary-font) !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -3%;
    text-align: left;
    color: #c3d7e8c4;
}

.price-item-box-2 {
    border-radius: 16px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    background: linear-gradient(180.00deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1) 0.01%);
    padding: 40px 20px;

}

.price-item-box-2-title {
    color: rgba(23, 24, 24, 1);
    font-family: var(--secondary-font) !important;
    font-size: 38px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0%;
    text-align: left;
}

.price-item-box-2-under-title {
    color: rgba(107, 114, 128, 1);
    font-family: var(--secondary-font) !important;
    font-size: 15.4px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -3%;
    text-align: left;
    margin-top: 10px;
}

.btn-contact {
    display: inline-block;
    border-radius: 14px;
    background: rgba(68, 140, 212, 1);
    width: 100%;
    color: rgba(255, 255, 255, 1);
    font-family: var(--tertiary-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    padding: 10px 20px;
    margin-top: 42px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: black;

}

.price-item-box-2-creative-production {
    color: rgba(107, 114, 128, 1);
    font-family: var(--tertiary-font) !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 20px;
}

.price-item-box-2-creative-production span {
    font-weight: 600;
}

/* LOGOS SECTION */
.logos-section {
    background-color: var(--white-color);
    padding: 56px 0;
    overflow: hidden;
}

.logos-track-wrap {
    width: 100%;
    overflow: hidden;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 48px;
    min-height: 100px;
    padding: 20px 0;
    width: max-content;
    animation: logos-scroll 30s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

@keyframes logos-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logos-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    min-height: 80px;
}

.logos-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logos-img.logos-img-black {
    filter: grayscale(100%) brightness(0);
}

/* TEAM TRUST SECTION */
.team-trust-container {
    position: relative;
    background-color: transparent;


}

.team-trust-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    top: 0;
    bottom: 0;
    background-color: rgba(247, 246, 249, 1);
    z-index: -1;
}

.team-trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 33px;
    margin-top: 40px;
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.team-trust-card {
    flex: 0 0 calc((100% - 99px) / 4);
    max-width: calc((100% - 99px) / 4);
    box-sizing: border-box;
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.05);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-trust-card-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    min-height: 240px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(247, 246, 249, 1);
    margin-bottom: 20px;
}

.team-trust-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-trust-card-name {
    font-family: var(--primary-font) !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    color: rgba(35, 56, 118, 1);
    margin: 0 0 4px 0;
}

.team-trust-card-title {
    font-family: var(--secondary-font) !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: rgba(107, 114, 128, 1);
    margin: 0 0 12px 0;
}

.team-trust-card-desc {
    font-family: var(--secondary-font) !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    color: rgba(107, 114, 128, 1);
    margin: 0;
}

/* TRUST SECTION */
.trust-items-container {
    width: 100%;

}

.trust-items-row {
    display: flex;
    flex-wrap: wrap;
    max-width: 1188px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    gap: 38px;
    border-radius: 16px;
    background: rgba(68, 141, 209, 1);
    color: #fff;
    padding: 45px;
}

.trust-item-box {
    max-width: 259px;
}

.trust-item-box-title {
    font-family: var(--primary-font) !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1%;
    text-align: left;
}

.trust-item-box-text {
    font-family: var(--secondary-font) !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -3%;
    text-align: left;
    margin-top: 16px;
}

.compliance-policy-link {
    text-align: center;
}

.compliance-policy-link-img {
    width: 29px;
    height: 29px;
}

.compliance-policy-link-text {
    font-family: var(--secondary-font) !important;
    color: rgba(195, 215, 232, 1);
    font-size: 16px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 1%;
    text-align: left;
    margin-left: 16px;
}

/* CONTACTS SECTION */
.contacts-container {
    margin-top: 100px;
    margin-bottom: 100px;
}

.contacts-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.contacts-info {
    max-width: 500px;
}

.contacts-info-items {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 100px;
}

.contacts-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 45px;
}

.contacts-info-item img {
    width: 22px;
}

.contacts-info-item-text {
    font-family: var(--secondary-font) !important;
    color: rgba(107, 114, 128, 1);
    font-size: 20px;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0%;
    text-align: left;
}

.contacts-content-form {
    max-width: 466px;
}

.contacts-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contacts-form input,
.contacts-form textarea,
.contacts-form select {
    box-sizing: border-box;
    border: 1px solid rgba(189, 189, 189, 1);
    border-radius: 11px;
    background: rgba(255, 255, 255, 1);
    padding: 20px;
    color: rgba(0, 0, 0, 1);
    font-family: var(--primary-font) !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 24px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.contacts-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.contacts-form select option {
    color: rgba(0, 0, 0, 1);
    background: rgba(255, 255, 255, 1);
    padding: 10px;
}

.contacts-form select option:disabled {
    color: rgba(153, 159, 174, 1);
}

.contacts-form-field {
    position: relative;
    width: 100%;
}

.contacts-form-field p {
    position: absolute;
    left: 76px;
    top: 35px;
    transform: translateY(-50%);
    color: rgba(235, 87, 87, 1);
    transition: opacity 0.2s ease;
}

.contacts-form-field-required {
    position: absolute;
    left: 100px !important;
    top: 35px;
    transform: translateY(-50%);
    color: rgba(235, 87, 87, 1);
    transition: opacity 0.2s ease;
}

.contacts-form-field:has(input:focus) p,
.contacts-form-field:has(input:not(:placeholder-shown)) p,
.contacts-form-field:has(select:focus) p,
.contacts-form-field:has(select:valid) p {
    opacity: 0;
    pointer-events: none;
}

.contacts-form input::placeholder,
.contacts-form textarea::placeholder {
    color: rgba(153, 159, 174, 1);
}

.btn-submit {
    border-radius: 15px;
    background: rgba(70, 137, 204, 1);
    color: rgba(255, 255, 255, 1);
    font-family: var(--primary-font) !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0px;
    text-align: center;
    padding: 16px 67px;
    margin-top: 24px;
    width: fit-content;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-submit:hover {
    background: black;
}
























/* FOOTER SECTION */
.footer {
    background-color: #4281CC;
    width: 100%;
    padding: 24px 0;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-copyright {
    color: rgba(255, 255, 255, 1);
    font-family:  var(--primary-font)  ;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

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

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: opacity 0.2s ease;
}

.footer-social-link:hover {
    opacity: 0.8;
    color: var(--white-color);
}

.footer-social-link svg {
    width: 16px;

}

/* Media Queries */

@media (max-width: 768px) {

    .container {
        padding: 0 15px;
    }

    .header-container {
        height: 70px;
    }

    .header-container .row {
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        gap: 8px;
        flex: 0 0 auto;
    }

    .logo img {
        width: 45px;
    }

    .logo p {
        font-size: 10px;
        line-height: 12px;
    }

    .logo p span {
        font-size: 14px;
        line-height: 12px;
    }

    .navigation {
        justify-content: flex-end;
        flex: 0 0 auto;
    }

    .nav-menu {
        display: none !important;
    }

    .burger-menu {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero-container {
        height: 80vh;
        border-radius: 0px 0px 15px 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-row {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 38px;
        text-align: center;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 22px;
        margin-top: 15px;
        text-align: center;
    }

    .btn-primary {
        width: 100%;
        max-width: 300px;
        height: 55px;
        font-size: 18px;
        line-height: 22px;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content .hero-content-text {
        font-size: 14px !important;
        line-height: 18px !important;
        margin-top: 30px;
        text-align: center;
    }

    /* WHY SECTION Mobile */
    .why-container {
        padding-top: 50px;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .why-row {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mini-title {
        font-family: var(--primary-font) !important;
        font-size: 30px !important;
        font-weight: 700;
        line-height: 32px !important;
        letter-spacing: 0px !important;

    }

    .mini-title span {
        background: linear-gradient(90deg, #95BFE5 0%, #204E86 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .why-content-text {
        color: rgba(107, 114, 128, 1);
        max-width: 100% !important;
        font-family: var(--secondary-font) !important;
        font-size: 16px;
        font-weight: 400;
        line-height: 23px;
        margin-top: 20px;
    }

    /* WHY ITEMS SECTION */
    .why-items-container {
        padding: 18px 18px;
        background-color: rgba(247, 246, 249, 1);
        max-width: 100% !important;
        display: flex;
        justify-content: center;
    }

    .why-items-row {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1440px;
        gap: 18px;
    }

    .why-item-box {
        border-radius: 16px;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 8px 24px 0px rgba(0, 0, 0, 0.05);
        background: rgba(255, 255, 255, 1);
        max-width: 100%;
        padding: 18px;
    }

    .why-item-icon {
        width: 50px;
        height: 50px;
    }

    .why-item-title {
        color: rgba(51, 51, 51, 1);
        margin-top: 18px;
        font-family: var(--primary-font) !important;
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0px;
        text-align: left;
    }

    .why-item-text {
        color: rgba(107, 114, 128, 1);
        font-family: var(--secondary-font) !important;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0px;
        text-align: left;
        margin-top: 11px;
    }

    /* NUMBERS SECTION */
    .number-container {
        padding-top: 50px;
        padding-bottom: 50px;
        max-width: 100% !important;
        display: flex;
        justify-content: center;
    }

    .number-row {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1168px;
        background-color: var(--blue-color);
        color: var(--white-color);
        border-radius: 16px;
        padding: 20px;

    }

    .child-box {
        margin-top: 10px;
    }

    .number-icon {
        width: 50px;
        height: 50px;
    }

    .number-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .number-title {
        font-family: var(--primary-font) !important;
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0px;
        text-align: center;
        margin-top: 15px;
    }

    .number-text {
        color: rgba(255, 255, 255, 1);
        font-family: var(--primary-font) !important;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0px;
        text-align: center;
        margin-top: 0px;
    }

    .why-container-2 {
        padding-top: 0px;
    }

    /* ADS SOLUTIONS SECTION */
    .ads-solutions-items-container {

        padding-bottom: 0px;
        max-width: 100% !important;
        display: flex;
        justify-content: center;
    }

    .ads-solutions-content-text {
        margin-top: 12px;
    }

    .ads-solutions-items-row {
        display: flex;
        justify-content: center;

        max-width: 1188px;
        /* margin-top: 37px; */

    }

    .ads-solutions-item-box {
        padding: 8px 0px 8px 0px;
        display: flex;
        flex-direction: row;


    }

    .ads-solutions-item-box-img {
        margin-bottom: 10px;
        padding: 0px;
    }

    .ads-solutions-item-box-2 {
        padding: 8px 58px 0px 0px;
    }

    .ads-solutions-item-number span {
        color: rgba(124, 192, 255, 0.8);

        font-family: var(--quaternary-font) !important;
        font-style: Bold;
        font-size: 35px;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: -2%;
    }

    .ads-solutions-item-number-2 {
        padding: 8px 0px 0px 0px;
    }

    .ads-solutions-item-title {
        color: rgba(5, 5, 9, 1);
        font-family: var(--quaternary-font) !important;
        font-style: bold;
        font-size: 20px;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: 0%;
    }

    .ads-solutions-item-text {
        padding: 8px 0px 0px 14px;
    }

    .ads-solutions-item-text-2 {
        padding: 8px 0px 0px 0px;
    }

    .ads-solutions-item-row-icon {
        width: 18px;

    }

    .ads-solutions-item-p {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0px;
        margin-top: 14px;
    }

    .ads-solutions-item-p-text p {
        color: rgba(107, 114, 128, 1);

        font-family: var(--quaternary-font) !important;
        font-size: 16px;
        font-weight: 500;
        line-height: 120%;
        letter-spacing: -3%;
    }

    .ads-solutions-item-p-text ul {
        list-style: disc;
        color: rgba(5, 5, 9, 1);
        font-family: var(--quaternary-font) !important;
        font-size: 16px;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: -3%;
        margin-top: 6px;
        padding-left: 0px;
        margin-bottom: 14px;
    }

    .ads-solutions-item-p-text ul li::marker {
        font-size: 0.5em;
    }

    /* GEO SECTION Mobile */
    .geo-container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .geo-content {
        padding: 30px 20px;
        flex-direction: column;
        gap: 30px;
    }

    .geo-title {
        font-size: 28px !important;
        line-height: 32px !important;
    }

    .geo-subtitle {
        font-size: 18px !important;
        line-height: 24px !important;
        margin-top: 12px;
        max-width: 100% !important;
    }

    .geo-regions {
        margin-top: 0;
        max-width: 100%;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .geo-regions-row {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .geo-regions-row-bottom {
        gap: 12px;
    }

    .geo-region-card {
        min-width: 90px;
        padding: 12px 8px;
        flex: 0 0 auto;
        height: auto;
    }

    .geo-regions-row-bottom .geo-region-card {
        min-width: 90px;
    }

    .geo-region-name {
        font-size: 18px !important;
        line-height: 24px !important;
    }

    /* INDUSTRIES SECTION Mobile */
    .why-container-3 {
        padding-top: 0px;
    }

    /* INDUSTRIES ITEMS SECTION */
    .industries-items-container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        display: flex;
        justify-content: center;
        margin: 0 auto;
        padding-bottom: 50px;
    }

    .industries-items-row {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        max-width: 100%;
        gap: 8px;
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
    }

    .industries-item-box {
        flex: 0 0 calc(50% - 4px);
        max-width: calc(50% - 4px);
        width: calc(50% - 4px);
        box-sizing: border-box;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        box-shadow: 4px 4px 30px 0px rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px 8px;
        min-height: auto;
    }

    .industries-item-icon {
        width: 50px;
        height: 50px;
    }

    .industries-item-title {
        color: rgba(29, 29, 29, 1);
        font-family: var(--primary-font) !important;
        font-size: 16px;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: 0%;
        text-align: center;
        margin-top: 12px;
    }

    .industries-item-text {
        color: rgba(107, 114, 128, 1);
        font-family: var(--secondary-font) !important;
        font-size: 14px;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: -3%;
        text-align: center;
        margin-top: 10px;
    }

    /* PRICE SECTION Mobile */
    .price-items-container {
        padding-bottom: 50px;
    }

    .price-items-row {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .price-item-box {
        padding: 20px 16px;
    }

    .price-item-box ul li {
        margin-top: 12px;
        gap: 8px;
    }

    .price-item-box ul li:first-child {
        margin-top: 0;
    }

    .price-item-number {
        font-size: 18px;
    }

    .price-item-title {
        font-size: 16px;
        line-height: 140%;
    }

    .price-item-price {
        font-size: 13px;
        line-height: 150%;
    }

    .price-item-box-2 {
        padding: 24px 16px;
    }

    .price-item-box-2-title {
        font-size: 26px;
        line-height: 28px;
    }

    .price-item-box-2-under-title {
        font-size: 14px;
        margin-top: 8px;
    }

    .btn-contact {
        padding: 12px 16px;
        margin-top: 24px;
        font-size: 14px;
    }

    .price-item-box-2-creative-production {
        font-size: 13px;
        line-height: 18px;
        margin-top: 16px;
    }

    /* LOGOS SECTION Mobile */
    .logos-section {
        padding: 40px 0;
    }

    .logos-track {
        gap: 32px;
        min-height: 72px;
        animation-duration: 25s;
    }

    .logos-item {
        width: 100px;
        min-height: 60px;
    }

    .logos-img {
        max-height: 60px;
    }

    /* TEAM TRUST SECTION Mobile */

    .team-trust-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box;
    }

    .team-trust-container .row.team-trust-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }

    .team-trust-container .col-12.why-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%;
    }

    .team-trust-row {
        padding-top: 50px;
    }

    .team-trust-items {
        flex-direction: column;
        gap: 24px;
        margin-top: 24px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .team-trust-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 20px 16px;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }

    .team-trust-card-img-wrap {
        margin-bottom: 16px;
    }

    .team-trust-card-name {
        font-size: 18px;
    }

    .team-trust-card-title {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .team-trust-card-desc {
        font-size: 13px;
        line-height: 150%;
    }

    /* TRUST SECTION Mobile */
    .trust-container {
        padding-top: 50px;

    }



    .trust-items-container {
        width: 100%;

    }

    .trust-items-row {
        display: flex;
        flex-wrap: wrap;
        max-width: 1188px;
        margin: 0 auto;
        flex-direction: row;
        justify-content: space-between;
        gap: 18px;
        border-radius: 16px;
        background: rgba(68, 141, 209, 1);
        color: #fff;
        padding: 20px 16px;
    }

    .trust-item-box {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .trust-item-box-title {
        font-family: var(--primary-font) !important;
        font-size: 24px;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: 1%;
        text-align: left;
    }

    .trust-item-box-text {
        font-family: var(--secondary-font) !important;
        font-size: 14px;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: -3%;
        text-align: center;
        margin-top: 5px;
    }

    .compliance-policy-link {
        text-align: center;
    }

    .compliance-policy-link-img {
        width: 29px;
        height: 29px;
    }

    .compliance-policy-link-text {
        font-family: var(--secondary-font) !important;
        color: rgba(195, 215, 232, 1);
        font-size: 16px;
        font-weight: 700;
        line-height: 14px;
        letter-spacing: 1%;
        text-align: left;
        margin-left: 16px;
    }

    /* CONTACTS SECTION */
.contacts-container {
    margin-top: 50px;
    margin-bottom: 50px;
}

.contacts-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 103% !important;
}

.contacts-info {
    max-width: 100%;
}

.contacts-info-items {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 50px;
}

.contacts-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.contacts-info-item img {
    width: 20px;
}

.contacts-info-item-text {
    font-family: var(--secondary-font) !important;
    color: rgba(107, 114, 128, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0%;
    text-align: left;
}

.contacts-content-form {
    max-width: 100%;
padding-right: 0 !important;
margin-right: 0 !important;
}

.contacts-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 25px;
}

.contacts-form input,
.contacts-form textarea,
.contacts-form select {
    box-sizing: border-box;
    border: 1px solid rgba(189, 189, 189, 1);
    border-radius: 11px;
    background: rgba(255, 255, 255, 1);
    padding: 15px;
    color: rgba(0, 0, 0, 1);
    font-family: var(--primary-font) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 15px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.contacts-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.contacts-form select option {
    color: rgba(0, 0, 0, 1);
    background: rgba(255, 255, 255, 1);
    padding: 10px;
}

.contacts-form select option:disabled {
    color: rgba(153, 159, 174, 1);
}

.contacts-form-field {
    position: relative;
    width: 100%;
}

.contacts-form-field p {
    position: absolute;
    left: 65px;
    top: 25px;
    transform: translateY(-50%);
    color: rgba(235, 87, 87, 1);
    transition: opacity 0.2s ease;
}

.contacts-form-field-required {
    position: absolute;
    left: 85px !important;
    top: 35px;
    transform: translateY(-50%);
    color: rgba(235, 87, 87, 1);
    transition: opacity 0.2s ease;
}

.contacts-form-field:has(input:focus) p,
.contacts-form-field:has(input:not(:placeholder-shown)) p,
.contacts-form-field:has(select:focus) p,
.contacts-form-field:has(select:valid) p {
    opacity: 0;
    pointer-events: none;
}

.contacts-form input::placeholder,
.contacts-form textarea::placeholder {
    color: rgba(153, 159, 174, 1);
}

.btn-submit {
    border-radius: 15px;
    background: rgba(70, 137, 204, 1);
    color: rgba(255, 255, 255, 1);
    font-family: var(--primary-font) !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0px;
    text-align: center;
    padding: 12px 40px;
    margin-top: 15px;
    width: fit-content;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-submit:hover {
    background: black;
}

    /* FOOTER SECTION Mobile */
    .footer {
        padding: 20px 0;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .footer-copyright {
        font-size: 12px;
        order: 2;
    }

    .footer-social {
        order: 1;
        gap: 20px;
    }

    .footer-social-link svg {
        width: 20px;
        height: 20px;
    }

}