:root {
--bg-dark: #0d1b2e;
--bg-mid: #0f1f35;
--bg-card: #0f1829;
--bg-white: #ffffff;
--blue-neon: #4a9eda;
--blue-mid: #2271b3;
--blue-deep: #0d2a4a;
--blue-panel: #0d2744;
--red-accent: #c0392b;
--red-dark: #8b1a1a;
--red-panel: #6e1515;
--white: #ffffff;
--text-dark: #1a2332;
--text-mid: #4a5568;
--gray: rgba(255, 255, 255, 0.55);
--nav-h: 68px;
--font: 'Inter', sans-serif;
--glass: rgba(255, 255, 255, 0.06);
--shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
--radius: 14px;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font);
background: #0d1b2e;
color: var(--white);
overflow-x: hidden;
padding-bottom: 0;
}
.navbar {
display: block;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
height: var(--nav-h);
padding: 0;
}
.nav-link {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 8px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.85) !important;
text-decoration: none;
white-space: nowrap;
transition: color 0.2s, background 0.2s;
cursor: pointer;
background: transparent;
}
.lang-switcher {
display: flex;
align-items: center;
gap: 7px;
padding: 7px 14px;
border-radius: 20px;
border: 1.5px solid rgba(255, 255, 255, 0.2);
font-size: 13px;
font-weight: 600;
color: rgba(255, 255, 255, 0.8);
cursor: pointer;
transition: border-color 0.2s, color 0.2s;
}
@media (max-width: 768px) {
.nav-container {
padding: 0 24px;
}
.nav-links {
display: none;
}
.nav-links.open {
display: flex;
flex-direction: column;
align-items: flex-start;
position: fixed;
inset: var(--nav-h) 0 0 0;
background: rgba(10, 16, 30, 0.98);
padding: 28px 24px;
gap: 4px;
z-index: 998;
overflow-y: auto;
}
.hamburger {
display: flex;
}
.has-dropdown .dropdown {
position: static;
transform: none;
opacity: 0;
pointer-events: none;
max-height: 0;
overflow: hidden;
background: transparent;
border: none;
box-shadow: none;
padding: 0 0 0 16px;
margin-top: 0;
width: 100%;
min-width: unset;
transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.has-dropdown.dropdown-open .dropdown {
opacity: 1;
pointer-events: all;
max-height: 350px;
margin-top: 8px;
}
.has-dropdown .dropdown a {
padding: 8px 12px;
}
}
.section {
padding: 80px 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}
@media (max-width: 768px) {
.container {
padding: 0 24px;
}
.section {
padding: 60px 0;
}
}
.section-title-dark {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #1a2332;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.section-desc-dark {
font-size: 14px;
color: #6b7a8d;
max-width: 580px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.section-title-white {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #ffffff;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.section-desc-white {
font-size: 14px;
color: rgba(255, 255, 255, 0.65);
max-width: 580px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.section-header-center {
text-align: center;
margin-bottom: 56px;
}
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
will-change: transform, opacity;
}
.footer {
background: #0a0a0a;
padding: 44px 0 0;
}
.footer-top>div {
max-width: 100% !important;
flex: none !important;
}
@media (max-width: 1100px) {
.footer-top {
grid-template-columns: auto auto auto;
gap: 32px;
}
.footer-contact {
grid-column: span 3;
text-align: left;
justify-self: start;
min-width: unset;
}
.footer-contact h5 {
text-align: left;
}
.footer-contact-list li {
justify-content: flex-start;
}
}
@media (max-width: 900px) {
.footer-top {
grid-template-columns: 1fr 1fr;
gap: 28px;
}
.footer-contact {
grid-column: span 2;
text-align: left;
justify-self: start;
}
.footer-contact h5 {
text-align: left;
}
.footer-contact-list li {
justify-content: flex-start;
}
}
@media (max-width: 576px) {
.footer-top {
grid-template-columns: 1fr;
gap: 24px;
}
.footer-contact {
grid-column: span 1;
}
}
@keyframes heroFadeIn {
from {
opacity: 0;
transform: translateY(22px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes dividerGlow {
0%,
100% {
box-shadow: 0 0 8px rgba(74, 158, 218, 0.5);
width: 60px;
}
50% {
box-shadow: 0 0 18px rgba(74, 158, 218, 0.9);
width: 80px;
}
}
:root {
--bg-dark: #0d1b2e;
--bg-mid: #0f1f35;
--bg-card: #0f1829;
--bg-white: #ffffff;
--blue-neon: #4a9eda;
--blue-mid: #2271b3;
--blue-deep: #0d2a4a;
--blue-panel: #0d2744;
--red-accent: #c0392b;
--red-dark: #8b1a1a;
--red-panel: #6e1515;
--white: #ffffff;
--text-dark: #1a2332;
--text-mid: #4a5568;
--gray: rgba(255, 255, 255, 0.55);
--nav-h: 68px;
--font: 'Inter', sans-serif;
--glass: rgba(255, 255, 255, 0.06);
--shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
--radius: 14px;
}
.nav-link {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 8px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
white-space: nowrap;
transition: color 0.2s, background 0.2s;
cursor: pointer;
}
.co-hero {
position: relative;
width: 100%;
height: 100vh;
min-height: 600px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.co-hero-bg {
position: absolute;
inset: 0;
}
.co-hero-bg-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.co-hero-overlay {
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(180deg,
rgba(10, 16, 30, 0.72) 0%,
rgba(10, 16, 30, 0.30) 35%,
rgba(10, 16, 30, 0.38) 65%,
rgba(10, 16, 30, 0.75) 100%);
}
.co-hero-content {
position: relative;
z-index: 5;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
animation: heroFadeIn 0.9s ease 0.15s both;
padding: 0 20px;
margin-top: -60px;
}
.co-hero-title {
font-size: clamp(48px, 7.5vw, 86px);
font-weight: 800;
letter-spacing: 2px;
color: #fff;
line-height: 1;
text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 255, 255, 0.08);
margin: 0;
}
.co-hero-divider {
width: 60px;
height: 2.5px;
background: linear-gradient(90deg, transparent, var(--blue-neon), transparent);
border-radius: 2px;
margin: 24px auto;
box-shadow: 0 0 10px rgba(74, 158, 218, 0.7);
animation: dividerGlow 2.5s ease-in-out infinite;
}
.co-hero-subtitle {
font-size: clamp(15px, 2vw, 19px);
font-weight: 300;
letter-spacing: 4px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.70);
margin: 0;
}
.section {
padding: 80px 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}
.section-title-dark {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #1a2332;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.section-desc-dark {
font-size: 14px;
color: #6b7a8d;
max-width: 720px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.section-title-white {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #ffffff;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.section-desc-white {
font-size: 14px;
color: rgba(255, 255, 255, 0.6);
max-width: 580px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.section-header-center {
text-align: center;
margin-bottom: 56px;
}
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.65s ease, transform 0.65s ease;
}
.wcu-section {
background: #ffffff;
}
.wcu-subheading {
font-size: clamp(16px, 2vw, 20px);
color: #111111;
font-weight: 600;
text-align: center;
margin-top: -6px;
margin-bottom: 12px;
}
.wcu-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-top: 48px;
}
.wcu-card {
background: #F2F6F5;
border-radius: 12px;
padding: 32px 20px;
text-align: center;
border: 1px solid rgba(0, 0, 0, 0.01);
transition: transform 0.25s, box-shadow 0.25s;
}
.wcu-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.wcu-icon-wrap {
width: 32px;
height: 32px;
background: #5ea47d;
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 13px;
}
.wcu-card h3 {
font-size: 14px;
font-weight: 800;
color: #111111;
margin-bottom: 12px;
}
.wcu-card p {
font-size: 12px;
color: #4a5568;
line-height: 1.65;
}
.ecosystem-section {
position: relative;
background: #1a2332;
overflow: hidden;
}
.ecosystem-section::before {
content: '';
position: absolute;
inset: 0;
background: url('images/ecosystem-bg.webp') center/cover no-repeat;
opacity: 0.35;
z-index: 0;
}
.ecosystem-section::after {
content: '';
position: absolute;
inset: 0;
background: rgba(15, 25, 45, 0.62);
z-index: 0;
}
.ecosystem-section .container {
position: relative;
z-index: 1;
}
.partners-slider-wrapper {
position: relative;
width: 100%;
}
.partners-slider {
display: grid;
grid-template-rows: repeat(2, minmax(100px, auto));
grid-auto-flow: column;
grid-auto-columns: calc(33.333% - 11px);
gap: 16px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding-bottom: 8px;
cursor: grab;
}
.partners-slider:active {
cursor: grabbing;
}
.partners-slider::-webkit-scrollbar {
display: none;
}
.ep-dots {
display: none;
justify-content: center;
gap: 8px;
margin-top: 28px;
}
.ep-dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: none;
background: rgba(255, 255, 255, 0.35);
cursor: pointer;
padding: 0;
transition: background 0.25s, transform 0.25s;
}
.ep-dot.active {
background: #3b82f6;
transform: scale(1.2);
}
.partner-card {
background: #ffffff;
border-radius: 12px;
scroll-snap-align: start;
padding: 22px 20px;
display: flex;
align-items: center;
transition: transform 0.25s, box-shadow 0.25s;
cursor: default;
min-height: 100px;
}
.partner-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.ep-card-inner {
display: flex;
align-items: center;
gap: 16px;
width: 100%;
}
.ep-logo-box {
flex-shrink: 0;
width: 72px;
height: 72px;
display: flex;
align-items: center;
justify-content: center;
}
.ep-logo-img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
.ep-info {
display: flex;
flex-direction: column;
gap: 5px;
}
.ep-name {
font-size: 14px;
font-weight: 700;
color: #1a2332;
line-height: 1.35;
margin: 0;
}
.ep-desc {
font-size: 12px;
color: #6b7a8d;
line-height: 1.55;
margin: 0;
}
.gp-section {
background: #ffffff;
padding: 80px 0;
}
.gp-subheading {
font-size: clamp(15px, 1.8vw, 19px);
color: #1a2332;
font-weight: 600;
text-align: center;
margin-top: 8px;
margin-bottom: 20px;
}
.gp-section .section-desc-dark {
max-width: 680px;
font-size: 14px;
line-height: 1.7;
color: #556275;
}
.gp-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
margin-top: 56px;
}
.gp-card {
background: transparent;
border-radius: 0;
padding: 0;
text-align: center;
border: none;
transition: transform 0.25s ease;
}
.gp-card:hover {
transform: translateY(-3px);
}
.gp-icon-wrap {
width: 32px;
height: 32px;
background: #549b73;
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 16px;
font-size: 13px;
}
.gp-card h3 {
font-size: 15px;
font-weight: 700;
color: #1a2332;
margin-bottom: 8px;
}
.gp-card p {
font-size: 13px;
color: #556275;
line-height: 1.6;
}
.gp-details-row {
display: grid;
grid-template-columns: 42% 55%;
gap: 3%;
margin-top: 56px;
}
.gp-details-box {
border-radius: 14px;
padding: 28px 36px;
text-align: left;
}
.gp-details-box--offices {
background: #f2ebff;
}
.gp-details-box--partners {
background: #e8eefe;
}
.gp-details-box h4 {
font-size: 18px;
font-weight: 700;
color: #1a2332;
margin-bottom: 16px;
}
.gp-locations {
display: flex;
flex-wrap: wrap;
gap: 16px 24px;
}
.gp-location-item {
display: inline-flex;
align-items: center;
font-size: 14px;
font-weight: 600;
color: #1a2332;
gap: 8px;
}
.gp-loc-icon {
color: #549b73;
font-size: 15px;
}
.why-section.overview-bg {
position: relative;
background: none;
overflow: hidden;
}
.why-section.overview-bg::before {
content: '';
position: absolute;
inset: 0;
background: url('images/overview-servise-bg.webp') center/cover no-repeat;
z-index: 0;
}
.why-bg-overlay {
position: absolute;
inset: 0;
background: rgba(10, 16, 30, 0.72);
z-index: 1;
}
.relative-z {
position: relative;
z-index: 2;
}
.why-slider-wrapper {
position: relative;
width: 100%;
}
.why-slider {
display: flex;
gap: 16px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding-bottom: 8px;
cursor: grab;
}
.why-slider:active {
cursor: grabbing;
}
.why-slider::-webkit-scrollbar {
display: none;
}
.why-card {
flex: 0 0 calc(25% - 12px);
min-width: 220px;
background: #ffffff;
border-radius: 16px;
padding: 28px 22px;
scroll-snap-align: start;
transition: transform 0.25s, box-shadow 0.25s;
cursor: default;
display: flex;
flex-direction: column;
gap: 14px;
}
.why-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.why-card-icon {
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.why-icon-img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
.why-card-title {
font-size: 15px;
font-weight: 700;
color: #1a2332;
line-height: 1.35;
margin: 0;
}
.why-bullet-list {
list-style: disc;
padding-left: 17px;
display: flex;
flex-direction: column;
gap: 7px;
margin: 0;
}
.why-bullet-list li {
font-size: 12.5px;
color: #4a5568;
line-height: 1.6;
}
.why-dots {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 24px;
}
.why-dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: none;
background: rgba(255, 255, 255, 0.4);
cursor: pointer;
padding: 0;
transition: background 0.25s, transform 0.25s;
}
.why-dot.active {
background: var(--blue-neon);
transform: scale(1.2);
}
.es-section {
background: #ffffff;
}
.es-subheading {
font-size: clamp(15px, 1.8vw, 19px);
color: #1a2332;
font-weight: 600;
text-align: center;
margin-top: 8px;
margin-bottom: 20px;
}
.es-slider-wrapper {
position: relative;
width: 100%;
}
.es-slider {
display: flex;
gap: 16px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding-bottom: 8px;
cursor: grab;
}
.es-slider:active {
cursor: grabbing;
}
.es-slider::-webkit-scrollbar {
display: none;
}
.es-card {
flex: 0 0 calc(25% - 12px);
min-width: 220px;
border-radius: 16px;
padding: 32px 24px;
scroll-snap-align: start;
transition: transform 0.25s, box-shadow 0.25s;
cursor: default;
display: flex;
flex-direction: column;
gap: 14px;
}
.es-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.es-icon-wrap {
width: 32px;
height: 32px;
background: #549b73;
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
flex-shrink: 0;
}
.es-card h3 {
font-size: 16px;
font-weight: 700;
color: #1a2332;
line-height: 1.3;
margin: 0;
text-transform: none;
}
.es-card p {
font-size: 13px;
color: #4a5568;
line-height: 1.55;
margin: 0;
}
.es-card--blue {
background: #CCDCEF;
}
.es-card--green {
background: #CCEFD3;
}
.es-card--yellow {
background: #EFE9CC;
}
.es-card--green-light {
background: #E6EFCC;
}
.es-card--teal {
background: #CCEFED;
}
.es-card--purple {
background: #DDCCEF;
}
.es-dots {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 24px;
}
.es-dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: none;
background: #c8d6e8;
cursor: pointer;
padding: 0;
transition: background 0.25s, transform 0.25s;
}
.es-dot.active {
background: #2271b3;
transform: scale(1.2);
}
.comparison-section.overview-bg {
position: relative;
background: none;
overflow: hidden;
padding: 70px 24px 90px;
color: white;
}
.comparison-section.overview-bg::before {
content: '';
position: absolute;
inset: 0;
background: url('images/overview-p-and-m.webp') center/cover no-repeat;
z-index: 0;
}
.comparison-bg-overlay {
position: absolute;
inset: 0;
background: rgba(10, 16, 30, 0.72);
z-index: 1;
}
.cmp-inner {
max-width: 1140px;
margin: 0 auto;
}
.cmp-h1 {
text-align: center;
font-size: clamp(26px, 3.5vw, 42px);
font-weight: 700;
margin-bottom: 16px;
color: #ffffff;
letter-spacing: -0.5px;
line-height: 1.25;
}
.cmp-h1 span {
margin: 0 12px;
color: rgba(255, 255, 255, 0.8);
font-weight: 400;
text-transform: lowercase;
}
.cmp-divider {
border: none;
border-top: 1px solid rgba(255, 255, 255, 0.30);
margin: 0 0 32px 0;
width: 100%;
}
.comparison-grid {
display: grid;
grid-template-columns: 1fr 40px 1fr;
gap: 0 16px;
align-items: stretch;
}
.cmp-col-head {
padding-bottom: 14px;
border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.cmp-head-mid {
padding-bottom: 14px;
border-bottom: none;
}
.cmp-col-head h2 {
font-size: clamp(22px, 2.5vw, 32px);
font-weight: 700;
margin-bottom: 0;
color: #ffffff;
letter-spacing: -0.3px;
}
.cmp-item {
padding: 14px 0 16px;
border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.cmp-item--last {
border-bottom: none;
}
.cmp-item h3 {
font-size: clamp(16px, 1.8vw, 20px);
margin-bottom: 6px;
font-weight: 700;
color: #ffffff;
line-height: 1.35;
}
.cmp-item p {
color: rgba(255, 255, 255, 0.76);
font-size: 14px;
line-height: 1.6;
margin: 0;
}
.cmp-arrows-cell {
display: flex;
align-items: center;
justify-content: center;
padding: 14px 0 16px;
}
.cmp-arrows-cell--last {
border-bottom: none;
}
.cmp-arrow {
width: 38px;
height: 38px;
background: #ffffff;
color: #1e3d62;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 700;
flex-shrink: 0;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
line-height: 1;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cmp-arrow:hover {
transform: scale(1.12);
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.26);
cursor: pointer;
}
.policy-section {
padding: 140px 0 100px;
background-color: #ffffff;
color: #1a2332;
min-height: 70vh;
}
.policy-content-wrapper {
max-width: 800px;
margin: 0 auto;
line-height: 1.8;
}
.policy-content-wrapper h1 {
font-size: 38px;
font-weight: 800;
margin-bottom: 20px;
color: #0d1b2e;
}
.policy-content-wrapper .policy-date {
font-size: 14px;
color: #718096;
margin-bottom: 40px;
border-bottom: 1px solid #e2e8f0;
padding-bottom: 15px;
}
.policy-content-wrapper h2 {
font-size: 22px;
font-weight: 700;
margin-top: 40px;
margin-bottom: 15px;
color: #0d1b2e;
border-left: 3px solid var(--blue-neon);
padding-left: 12px;
}
.policy-content-wrapper h3 {
font-size: 17px;
font-weight: 600;
margin-top: 25px;
margin-bottom: 12px;
color: #0d1b2e;
}
.policy-content-wrapper p {
color: #4a5568;
margin-bottom: 20px;
font-size: 15px;
}
.policy-content-wrapper ul {
margin-bottom: 20px;
padding-left: 20px;
color: #4a5568;
}
.policy-content-wrapper li {
margin-bottom: 10px;
font-size: 15px;
}
.policy-content-wrapper a {
color: var(--blue-mid);
text-decoration: underline;
}
.policy-content-wrapper a:hover {
color: var(--blue-neon);
}
.policy-content-wrapper table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 35px;
font-size: 14.5px;
text-align: left;
}
.policy-content-wrapper th {
background-color: #f7fafc;
color: #2d3748;
font-weight: 600;
padding: 12px 16px;
border-bottom: 2px solid #edf2f7;
}
.policy-content-wrapper td {
padding: 12px 16px;
border-bottom: 1px solid #edf2f7;
color: #4a5568;
}
.policy-content-wrapper tr:hover {
background-color: #fcfcfd;
}
@media (max-width: 1024px) {
.ep-dots {
display: flex;
}
.wcu-grid {
grid-template-columns: repeat(2, 1fr);
}
.gp-grid {
grid-template-columns: repeat(2, 1fr);
}
.partners-slider {
grid-auto-columns: calc(50% - 8px);
}
.why-card {
flex: 0 0 calc(50% - 8px);
}
.es-card {
flex: 0 0 calc(50% - 8px);
}
}
@media (max-width: 768px) {
.nav-links.open {
display: flex;
flex-direction: column;
align-items: flex-start;
position: fixed;
inset: var(--nav-h) 0 0 0;
background: rgba(10, 16, 30, 0.98);
padding: 28px 24px;
gap: 4px;
z-index: 998;
}
.has-dropdown .dropdown {
position: static;
transform: none;
opacity: 0;
pointer-events: none;
max-height: 0;
overflow: hidden;
background: transparent;
border: none;
box-shadow: none;
padding: 0 0 0 16px;
margin-top: 0;
width: 100%;
min-width: unset;
transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.has-dropdown.dropdown-open .dropdown {
opacity: 1;
pointer-events: all;
max-height: 350px;
margin-top: 8px;
}
.has-dropdown .dropdown a {
padding: 8px 12px;
}
.gp-details-row {
grid-template-columns: 1fr;
}
.cmp-h1 {
font-size: clamp(22px, 4vw, 28px);
margin-bottom: 40px;
}
.comparison-grid {
grid-template-columns: 1fr;
gap: 0;
}
.comparison-grid> :nth-child(1) {
order: 1;
border-bottom: 2px solid rgba(255, 255, 255, 0.25);
padding-bottom: 8px;
margin-bottom: 8px;
}
.comparison-grid> :nth-child(4) {
order: 2;
}
.comparison-grid> :nth-child(7) {
order: 3;
}
.comparison-grid> :nth-child(10) {
order: 4;
}
.comparison-grid> :nth-child(13) {
order: 5;
border-bottom: none;
}
.comparison-grid> :nth-child(3) {
order: 6;
border-bottom: 2px solid rgba(255, 255, 255, 0.25);
padding-bottom: 8px;
margin-top: 40px;
margin-bottom: 8px;
}
.comparison-grid> :nth-child(6) {
order: 7;
}
.comparison-grid> :nth-child(9) {
order: 8;
}
.comparison-grid> :nth-child(12) {
order: 9;
}
.comparison-grid> :nth-child(15) {
order: 10;
border-bottom: none;
}
.cmp-head-mid,
.cmp-arrows-cell {
display: none !important;
}
.cmp-item {
padding: 16px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.container {
padding: 0 24px;
}
}
@media (max-width: 540px) {
.wcu-grid {
grid-template-columns: 1fr;
}
.gp-grid {
grid-template-columns: 1fr;
}
.partners-slider {
grid-auto-columns: 100%;
}
.why-card {
flex: 0 0 100%;
}
.es-card {
flex: 0 0 100%;
}
}
.contact-section {
padding: 80px 0;
background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.contact-container {
width: 90%;
max-width: 1200px;
margin: auto;
display: grid;
grid-template-columns: 380px 1fr;
gap: 80px;
background: #fff;
padding: 55px;
border-radius: 24px;
border: 1px solid #edf1f7;
box-shadow:
0 10px 30px rgba(16, 24, 40, .05),
0 20px 50px rgba(16, 24, 40, .08);
align-items: start;
}
.contact-info {
padding-top: 10px;
}
.contact-info h2,
.contact-form h2 {
margin: 0 0 30px;
font-size: 32px;
font-weight: 700;
color: #1d2939;
text-transform: uppercase;
}
.contact-info h3 {
margin: 0 0 25px;
font-size: 20px;
font-weight: 700;
color: #1d2939;
}
.contact-info p {
display: flex;
align-items: center;
gap: 12px;
margin: 0 0 18px;
font-size: 17px;
color: #667085;
}
.contact-info i {
width: 35px;
color: #2f80ed;
font-size: 18px;
}
.contact-form {
width: 100%;
}
.contact-form h2 {
margin-bottom: 30px;
}
.form-row {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 22px 25px;
}
.form-group {
display: flex;
flex-direction: column;
}
.form-group.full {
grid-column: 1 / 3;
}
.form-group label {
margin-bottom: 8px;
font-size: 14px;
font-weight: 600;
color: #344054;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 12px 15px;
height: 46px;
border: 1px solid #d0d5dd;
border-radius: 12px;
background: #fcfdff;
font-size: 14px;
color: #344054;
box-sizing: border-box;
}
.form-group textarea {
height: auto;
min-height: 140px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: #2f80ed;
background: #fff;
box-shadow: 0 0 0 4px rgba(47, 128, 237, .12);
}
button {
margin-top: 25px;
width: 160px;
height: 52px;
background: #2f80ed;
color: #fff;
border: none;
border-radius: 12px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: .3s;
}
button:hover {
background: #1759b0;
transform: translateY(-2px);
}
@media(max-width:991px) {
.contact-container {
grid-template-columns: 1fr;
gap: 50px;
padding: 35px;
}
.form-row {
grid-template-columns: 1fr;
}
.form-group.full {
grid-column: auto;
}
}
@media(max-width:576px) {
.contact-container {
width: 94%;
padding: 25px;
}
.contact-info h2,
.contact-form h2 {
font-size: 26px;
}
}
.captcha-button-wrapper {
display: flex;
justify-content: space-between;
align-items: start;
width: 100%;
}
.captcha-container {
display: flex;
flex-direction: column;
}
.captcha-error {
margin-top: 5px;
font-size: 14px;
color: red;
}
.hp-field {
position: absolute;
left: -9999px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
}
.captcha-button-wrapper button {
height: fit-content;
margin-left: 20px;
padding: 12px 35px;
}