/*
 Theme Name:   Threllis Child Theme
 Template:     genesis-block-theme
 Version:      1.0.0
*/

/* 1. Light (300) – normal */
@font-face {
  font-family: "aeonik";
  src: url("assets/fonts/aeonik/aeonik-light.woff2") format("woff2"),
       url("assets/fonts/aeonik/aeonik-light.woff")  format("woff");
  font-weight: 300;          /* ← weight controls which file loads */
  font-style:  normal;
  font-display: swap;        /* avoids FOIT, keeps CLS low */
}

/* 2️⃣  Light (300) – italic */
@font-face {
  font-family: "aeonik";
  src: url("assets/fonts/aeonik/aeonik-lightitalic.woff2") format("woff2"),
       url("assets/fonts/aeonik/aeonik-lightitalic.woff")  format("woff");
  font-weight: 300;
  font-style:  italic;
  font-display: swap;
}

/* 3️⃣  Regular (400) – normal */
@font-face {
  font-family: "aeonik";
  src: url("assets/fonts/aeonik/aeonik-regular.woff2") format("woff2"),
       url("assets/fonts/aeonik/aeonik-regular.woff")  format("woff");
  font-weight: 400;
  font-style:  normal;
  font-display: swap;
}

/* 4️⃣  Regular (400) – italic */
@font-face {
  font-family: "aeonik";
  src: url("assets/fonts/aeonik/aeonik-regularitalic.woff2") format("woff2"),
       url("assets/fonts/aeonik/aeonik-regularitalic.woff")  format("woff");
  font-weight: 400;
  font-style:  italic;
  font-display: swap;
}

/* 5️⃣  Medium (500) – normal */
@font-face {
  font-family: "aeonik";
  src: url("assets/fonts/aeonik/aeonik-medium.woff2") format("woff2"),
       url("assets/fonts/aeonik/aeonik-medium.woff")  format("woff");
  font-weight: 500;
  font-style:  normal;
  font-display: swap;
}

/* 6️⃣  Medium (500) – italic */
@font-face {
  font-family: "aeonik";
  src: url("assets/fonts/aeonik/aeonik-mediumitalic.woff2") format("woff2"),
       url("assets/fonts/aeonik/aeonik-mediumitalic.woff")  format("woff");
  font-weight: 500;
  font-style:  italic;
  font-display: swap;
}

/* @font-face {
    font-family: 'Aeonik';
    src: url('assets/fonts/aeonik/aeonik-regular.woff2') format('woff2'),
        url('assets/fonts/aeonik/aeonik-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

body {
    font-family: aeonik, Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: visible;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Aeonik';
}

h2 {
    color: #335F69;
    font-size: 48px;
    font-style: normal;
    font-weight: 250;
    line-height: 100%;
    letter-spacing: -0.96px;
}

h2 strong {
    font-weight: 900;
}

.heading {
    color: #335F69;
    font-size: 48px;
    font-style: normal;
    font-weight: 250;
    line-height: 100%;
    letter-spacing: -0.96px;
}

.heading strong {
    font-weight: 500;
}

p {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

p strong {
    font-weight: 500;
}

.btn {
    display: flex;
    height: 42px;
    padding: 14px 28px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 360px;    
    text-decoration: none;
    color: #335F69;
    border: 2px solid #89B5BA;
    background: #FAF7F6;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.btn:hover {
    border: 1px solid #89B5BA;
    background: #89B5BA;
    color: #FAF7F6;
}

.gap-6 {
    margin-bottom: 48px;
}

.content-wrapper {
    display: flex;
    width: 540px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    flex-shrink: 0;
}

.container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0;
}


/* Header */
header {
    background: #FAF7F6;    
    width: 100%;    
    z-index: 1000;
    position: sticky;
    top: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0px;
}

.nav-links a {
    text-decoration: none;
    color: #09090A;
    /* font-family: "Helvetica Neue"; */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.16px;
}

.nav-links li a:hover, .nav-links .current_page_item a {
    color: #335F69;
    border-bottom: 1px solid #335f69;
}

.mobile-menu-links li a:hover, .mobile-menu-links .current_page_item a {
    color: #335F69;
    border-bottom: 1px solid #335f69;
}

.nav-links .current_page_item a, .nav-links li:hover a {
    color: #335F69;
}


.nav-links .current_page_item:has(> a.cta-button), 
.nav-links .current_page_item:has(> a.btn-secondary),
.nav-links li:has(> a.btn-secondary) { 
    border-bottom: 0;
}

.cta-button {
    display: flex;
    padding: 12px 18px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 360px;
    border: 1px solid #89B5BA;
    background: #89B5BA;
    color: #FAF7F6 !important;
    text-decoration: none;
}

.cta-button:hover {
    background: #234a87;
}

.btn-primary, .contact .gform_button {
    display: inline-flex !important;
    padding: 12px 16px !important;
    justify-content: center !important;
    align-items: center !important;    
    border-radius: 999px !important;
    background: #335F69 !important;
    color: #FAF7F6 !important;    
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 20px !important; /* 125% */
    letter-spacing: -0.16px !important;
    text-decoration: none !important;
}

.btn-primary:hover, .contact .gform_button:hover{
    background: #89B5BA !important;
}

.btn-secondary {
    display: inline-flex;
    padding: 14px 28px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 360px;
    border: 2px solid #335F69 !important;
    background: #FAF7F6;
    color: #335F69 !important;
    text-align: center !important;    
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 16px !important; /* 100% */
    text-decoration: none !important;
}

.btn-secondary:hover {    
    border: 2px solid #89B5BA !important;
    background: #89B5BA !important;
    color: #FAF7F6 !important;
}

/* mobile #START#*/

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: #333;
    margin: 2.5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FAF7F6;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    /* border-bottom: 1px solid #e9ecef; */
}

.mobile-menu-close {
    background: #fff;
    border: none;
    cursor: pointer;
    color: #09090A;
    padding: 8px;
    border-radius: 999px;
    display: flex;
    align-items: flex-start;
}

.mobile-menu-close img {
    width: 24px;
    height: 24px;
}

.mobile-menu-content {
    padding: 2rem;
}

.mobile-menu-section {
    margin-bottom: 3rem;
}

.mobile-menu-section h3 {
    overflow: hidden;
    color: #89B5BA;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px;
}

.mobile-menu-links {
    list-style: none;
    margin-left: 0px;
}

.mobile-menu-links li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-links a {
    overflow: hidden;
    color: #335F69;
    text-overflow: ellipsis;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #5a7d8b;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s;
}

.mobile-menu-links a:hover {
    color: #2c5aa0;
}

.mobile-menu-links a.external::after {
    /* content: '↗';
    font-size: 1.2rem;
    opacity: 0.6; */
}

.mobile-menu-divider {
    height: 1px;
    background: #e9ecef;
    margin: 40px 0;
}

.mobile-menu .social-links {
    padding-left: 33px;
    position: absolute;
    bottom: 30px;
}

/* mobile #START#*/


/* Hero Section */
.hero {
    color: white;
    /* margin-top: 70px; */
    position: relative;
    overflow: hidden;
}

.hero-bg {
    background-color: #335F69;
    border-radius: 24px 0px;
    padding: 30px 48px;
}

.hero-content {
    display: flex;
    height: 605px;
    padding: 186px 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 150px;
}

.hero-text {
    display: flex;
    width: 521px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.hero-text .heading {
    color: #FAF7F6;
    font-size: 60.209px;
    font-style: normal;
    font-weight: 250;
    line-height: 100%;
    letter-spacing: -1.204px;
    margin-bottom: 0;
}

.hero-text .heading strong {
    font-weight: 500;
}

.hero-text p {
    color: #FAF7F6;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.hero-text p em {
    color: #FAF7F6;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 19.6px */
}

.hero-image {
    /* position: relative;
    height: 400px;    
    border-radius: 20px;
    overflow: hidden; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 546px;
    height: 546px;
}

/* Content Sections */
.content-section {
    padding: 160px 0 0 0;
}

.section-grid {
    display: flex;
    padding-left: 48px;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.row-reversed {
    flex-direction: row-reverse;
}

.section-text {
    max-width: 540px;
}


.section-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-content p {
    margin-bottom: 0;
}

.section-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-image img {
    width: 600px;
    height: 541px;
}

.growth-image {}


.partner-image {
    background: linear-gradient(135deg, #dee2e6 0%, #e9ecef 100%);
}

/* Solutions Section */
.solutions {
    /* background: #f8f9fa; */
    padding: 160px 0;
}

.solutions .content-wrapper {
    width: 836px;
    padding-left: 60px;
}

.solutions-grid {
    display: flex;    
    gap: 24px;
    margin-top: 70px;
}

.solution-card {
    display: flex;
    height: 500px;
    justify-content: space-between;
    align-items: flex-end;
    flex: 1 0 0;
    border-radius: 24px;
    /* background: #9A9999; */
    gap: 60px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;    
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.solution-card-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    color: #FFFFFF;
    width: 100%;
    max-width: 350px;
}

.solution-card .btn {
    min-width: 150px;
}

.solution-card-wrap h3,
.solution-card-wrap p {
    margin-bottom: 0;
}

.solution-card-wrap p {
    color: #FFFFFF;
}

.solution-card a {
    align-self: self-end;
}

/* FAQ Section */
.faq {
    padding-bottom: 80px;
    /* background: #f8f9fa; */
    width: 836px;
    margin-left: auto;
    margin-right: auto;
}

.faq h2 {
    color: #335F69;
    text-align: center;
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1.08px;
    margin-bottom: 60px;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    position: relative;
    color: #335F69;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    font-size: 30px;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
    color: #363637;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #F3F0EF;
}

.contact h2 {
    color: #335F69;
    text-align: center;    
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1.08px;
    margin-bottom: 60px;
}

.contact .gform_wrapper {
    max-width: 786px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    padding: 32px;
    border-radius: 32px;
}

.contact .gform_heading {
    display: none;
}

.contact .gfield--width-half {
    padding-right: 10px;
    box-sizing: border-box;
    float: left;
}

.contact .gfield--width-half:last-of-type {
    padding-right: 0;
}

.contact .gfield_label {
    color: rgba(0, 0, 0, 0.90) !important;
    font-variant-numeric: lining-nums tabular-nums !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 22px !important;
}

.contact .ginput_container input {
    display: flex !important;
    height: 48px !important;
    padding: 12px 20px;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    align-self: stretch !important;
    border-radius: 8px !important;
    border: 1px solid #F0EDEB !important;
    background: #FFF !important;
}

.contact .ginput_container select {
    display: flex !important;
    height: 48px !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    align-self: stretch !important;
    border-radius: 8px !important;
    border: 1px solid #F0EDEB !important;
}

.contact .ginput_container textarea {
    display: flex !important;
    height: 200px !important;
    padding: 12px 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    align-self: stretch !important;
    border-radius: 8px !important;
    border: 1px solid #F0EDEB !important;
    background: #FFF !important;
}

.contact .gform--footer-content-out {
    color: #6B6B6B;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.contact .gform--footer-content-out a {
    text-decoration-line: underline !important;
    text-decoration-style: solid !important;
    text-decoration-skip-ink: none !important;
    text-decoration-thickness: auto !important;
    text-underline-offset: auto !important;
}

/* .contact .gform_button {
    display: flex !important;
    padding: 12px 16px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    border-radius: 999px !important;
    background: #335F69 !important;
} */

.contact .gform_wrapper ::placeholder {
    color: #AEAEAE;
    font-variant-numeric: lining-nums tabular-nums;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #2c5aa0;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #234a87;
}

/* Footer */
footer {
    background: #335F69;
    color: white;
    padding: 57px 64px 40px 64px;
}

.footer-logo img {
    width: 191px;
    height: 40px;
    margin-bottom: 53px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3 {
    color: #FAF7F6;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.16px;
}

.footer-section p,
.footer-section p a {
    color: #FAF7F6;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.16px;
}

.footer-section p a:hover {
    text-decoration: underline;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info h4 {
    color: #FAF7F6;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    letter-spacing: -0.16px;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a img {
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #FAF7F6;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.16px;
}

.footer-section ul li a:hover {
    color: white;
    border-bottom: 1px solid #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom p {
    color: #FAF7F6;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: -0.14px;
    opacity: 0.7;
}

.footer-bottom p a {
    color: #FAF7F6;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.footer-section ul {
    margin-left: 0;
}

.faq-question-selected {
    color: #89B5BA;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.faq-question.faq-question-selected::after {
    content: '-';
    font-size: 32px;
}

.header-actions {
    display: none;
}

.entry-content {
    background-color: #FAF7F6;
}

.footer-content-desktop {
    display: grid;
}

.footer-content-mobile {
    display: none;
}

.solution-card-wrap h3, .solution-card-wrap p {
    line-height: normal;
}
.solution-card-wrap h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 18px;
}
.solution-card-wrap p {
    font-size: 20px;
    font-weight: 400;
}

.gform-theme--framework .gform_validation_errors .gform_submission_error {
    margin-bottom: 0;
}

/*Our story */

.banner-section {
    position: relative;
}

.banner-overlay{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding-left: 48px;
}

.banner-heading {    
    color: #FAF7F6;    
    font-size: 60.209px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 60.209px */
    letter-spacing: -1.204px;
}

.banner-image-mobile {
    display: none;
}

.page-content {
    max-width: 866px;    
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 160px;
    margin-bottom: 160px;
}

.page-content p {
    color: #000;    
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    padding-bottom: 48px;
    margin-bottom: 0;
}

.page-content h3 {
    color: #335F69;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 32px */
    letter-spacing: -0.64px;
        padding-bottom: 48px;
    margin-bottom: 0;
}

.page-content h3 em {    
    font-weight: 250;        
    font-style: normal;
}



/* Responsive Design */
@media (max-width: 768px) {

    .banner-image-mobile {
        display: block;
        border-radius: 24px 0;
    }

    .banner-image {
        display: none;
    }

    .banner-section {
        padding: 0 16px;
        display: flex;
        justify-content: center;
    }



    .footer-content-desktop {
        display: none;
    }

    .footer-content-mobile {
        display: grid;
    }

    .page-content {
        margin-top: 64px;
        margin-bottom: 64px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .page-content p {
        font-size: 16px;
    }

    .banner-overlay {
        align-items: flex-start;
        justify-content: center;
        padding-left: 0;
        padding-top: 64px;
    }

    .banner-heading {
        font-size: 36px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
                padding: 8px;
        border-radius: 999px;
        background-color: #fff;
    }

    /* .hero-content,
    .section-grid,
    .solutions-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    } */

    .hero-text h1, .section-text h2, h2, .hero-text .heading {
        color: #FAF7F6;        
        font-size: 36px;
        font-style: normal;
        font-weight: 250;
        line-height: 100%;
        letter-spacing: -0.72px;
    }

    .section-text h2, h2 {
        color: #335F69;
    }

    .hero-text h1 strong, .section-text h2 strong, h2 strong, .hero-text .heading strong {
        font-weight: 900;
    }    

    nav {
        padding: 1rem;
    }

    .mobile-menu-content {
        padding: 33px;
    }

    .mobile-menu-section h3 {
        /* font-size: 1rem; */
    }

    .mobile-menu-links a {
        /* font-size: 1.1rem; */
    }

    .container {
        max-width: 100%;
        width: 100%;
    }

    .hero-content {
        flex-direction: column;
        padding: 48px 24px 24px 24px;
        gap: 48px;
        height: auto;
    }

    .hero {
        margin-left: 16px;
        margin-right: 16px;
        margin-top: 24px;
    }

    .hero-bg {
        padding: 0;
    }

    .hero-text,
    .content-wrapper {
        width: 100%;
    }

    .hero-image img,
    .section-image img {
        width: 100%;
        height: 100%;

    }

    .section-grid {
        flex-direction: column;
        padding-left: 0px;
        gap: 40px;
    }

    .section-content {
        gap: 24px;
    }

    .content-section {
        margin-left: 24px;
        margin-right: 24px;
        background: transparent !important;
        padding: 64px 0;
    }

    .solutions-grid {
        margin-top: 40px;
    }

    .solutions {
        margin-left: 24px;
        margin-right: 24px;
    }

    .solutions .content-wrapper {
        width: 100%;
    }

    .solutions-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .solution-card {
        flex-direction: column;
        gap: 24px;
        align-items: flex-end;
        justify-content: flex-end
    }

    .solution-card a {
        align-self: flex-start;
    }

    .faq {
        width: auto;
        margin-left: 24px;
        margin-right: 24px;
    }

    .faq h2, .contact h2 {
        font-size: 32px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: -0.64px;
    }

    .faq-question {
        width: 90%;
    }



    .faq-question::after {
        right: -25px;
        top: 14px;
    }

    .solutions {
        padding: 64px 0;
    }

    .contact {
        /* margin-left: 24px;
        margin-right: 24px; */
        padding: 0px 8px 64px 8px;
        /* margin-bottom: 80px; */
        background: #F3F0EF;
    }

    .contact .container {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 64px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 57px 24px;
    }

    .cta-button {
        display: flex;
        padding: 6px 12px;
        justify-content: center;
        align-items: center;
        gap: 12px;
        border-radius: 360px;
        border: 1px solid #89B5BA;
        background: #89B5BA;
    }

    .solution-card-wrap {
        width: 100%;
        align-self: flex-start;
    }

    .solutions .content-wrapper {
        padding-left: 0px;
        gap: 24px;
    }

    .footer-content.footer-content-mobile {
        margin-bottom: 68px;
    }
    .column-reverse {
        flex-direction: column-reverse;
    }

    #menu-primary-menu-1 li:last-child {
        display: none;
    }

    .heading {
        font-size: 32px;
    }

    .gap-6 {
        margin-bottom: 24px;
    }

    .hero-text p {
        font-size: 16px;
    }

    p {
        font-size: 16px;
    }

    .faq-question {
        font-size: 16px;
        line-height: 24px;
    }

    .faq-answer {
        font-size: 14px;
    }

    
}

@media (min-width: 769px) and (max-width: 1440px) {

    .page-content {
        padding-left: 60px;
        padding-right: 60px;
    }

    .container {
        margin-left: 60px;
        margin-right: 60px;
    }

    .hero-image img,
    .section-image img {
        max-width: 100%;
        height: auto;
    }

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

@media (min-width: 769px) and (max-width: 1023px) {
    .solutions-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 1rem;
    }

    .hero-text h1, .hero-text .heading {
        font-size: 35px;

    }

    .hero-text p {
        font-size: 14px;
    }
    .hero-content {
        height: auto;
        padding: 0;
    }

    .section-text {
        max-width: 324px;
    }

    h2 {
        font-size: 35px;
    }
    p {
        font-size: 14px;
    }
    .content-wrapper {
        max-width: 324px;
    }
    .solutions .content-wrapper {
        padding-left: 0px;
        width: 100%;
        max-width: 100%;
    }
}
