/*
Theme Name: Intellitect Theme
Author: the Intellitect Web Team
Description: Intellitect branded theme
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 5.6
Version: 1.0
Text Domain: intelltect-wp-theme  
Tags: Intellitect
*/

/* Simple CSS Reset */
html, body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html, body {
    height: 100%;
}

/* Body styles */
body {
    background: #101727;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    position: relative; /* Make the body relative to position the mobile nav absolutely */
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h2, h3, h4, p {
    font-family: 'Inter', sans-serif;
}

h2 {
    text-align: center;
    font-weight: 600;
    font-size: 48px;
    color:#FFFFFF;
    font-weight: 600;
    line-height: normal;
}

h3 {
    color: #4E5672;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

h4,
.central-text {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}

.post-container a:not(.aside-card a),
.consent-text-block a {
    color: #28ABFB;
}

.post-container a:visited:no-button,
.consent-text-block a:visited:no-button {
    color: #6AC7FF;
}

.central-text strong {
    font-weight: 700;
}

.lg-p {
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
}


.container,
.header-container,
.site-content {
    justify-content: center;
}

.container {
    overflow: hidden;
}

/* Header Styles */
.pre-header { 
    display: flex; /* Use flexbox */
    justify-content: space-between; /* Align items horizontally with space between */
    align-items: center; /* Align items vertically in the center */
    width: 100%;
    height: 35px;
    background: linear-gradient(90deg, #1FF6D4 -0.42%, #28ABFB 99.69%);
    color: #FFF;
    font-family: Inter;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.pre-header a {
    margin-left: auto;
    display: inline-block;
    position: relative;
    font-size: 12px;
    text-decoration: none !important;
    color: #fff;
    padding: 10px 32px;
}

.pre-header a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-left: 8px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    width: 0;
    height: 0; 
}

.site-main {
    margin-top: 50px;
}


.site-header {
    display: flex;
    align-items: center;
    justify-content: stretch;
    background-color: #161D2E;
    color: #FFFFFF;
    padding: 0 20px; /* Adjust padding as needed */
    margin: 0;
    font-size: 13px;
    flex: 0 0 94px;
}

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

.site-logo img {
    max-width: 100%; /* Ensure the logo image doesn't exceed its container */
}

.site-title {
    margin: 0;
    font-size: 24px; /* Adjust font size as needed */
}

/* Navigation styles*/
.main-navigation {
    text-align: center;
}

.main-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation li {
    display: inline-block;
}

.main-navigation a {
    display: block;
    padding: 10px 15px; /* Adjust padding as needed */
    color: inherit;
    text-decoration: none;
}

.main-navigation a:hover {
    color: #28ABFB;
}

/* Style the link of the current menu item (child) */
.current-menu-item > a {
    color: #28ABFB !important;
}

/* Style the link of the current menu item's parent */
.current-menu-ancestor > a {
    color: #28ABFB !important;
}

/* Exclude non-current children under the same parent */
.current-menu-ancestor .menu-item > a {
    color: inherit !important;
}

/* Ensure the current child under a parent is highlighted */
.current-menu-ancestor .current-menu-item > a {
    color: #28ABFB !important;
}

/* Button styles */
.wp-block-button.button-primary {
    border-radius: 5px;
    background: #28ABFB;
    display: inline-flex;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    text-decoration-line: none;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
}

.button-block {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 24px;
}

.button-container {
    text-align: center;
}

.button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    padding: 6px 20px;
}


.block-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Contact styles */
.contact-form {
    margin-bottom: 20px;
}

.custom-contact-form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.custom-contact-form p {
    margin-bottom: 10px;
}

#form_message {
    margin-top: 10px;
    font-size: 12px;      
}

p.error {
    color: #FF1741;
}

p.success {
    color: #00FF66
}


.custom-contact-form label {
    display: block;
    font-weight: 500;
}

.custom-contact-form input,
.custom-contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #161D2E;
    color: #FFFFFF;
    font-family: Inter;
    font-size: 16px;
    box-sizing:border-box;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none; /* For Chrome, Safari, and newer Edge */
    -moz-appearance: none;    /* For Firefox */
    appearance: none;         /* Standard */
    margin: 0;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
    color: #FFFFFF;
    opacity: 1;
}

.contact-container .contact-content .wp-block-intellitect-social-button.social-button img {
    margin-top: 24px !important;
}

.contact-container,
.find-distributor-content {
    display: flex;
    justify-content: space-around;
}

.contact-location-container,
.contact-container,
.find-distributor-content {
    max-width: 940px;
    margin: 0 auto;
}

.contact-location-container {
    padding: 40px 15px;
}

.custom-contact-form textarea {
    width: 100%;
    resize: none;
    height: 7.5em;
    line-height: 1.5em;
    overflow: hidden;
}
.contact-content {
    flex: 1;
    margin-right: 20px;
}

.contact-content p {
    margin-bottom: 12px;
}

.contact-content a {
    text-decoration: none;
    color: #28ABFB;
}

.contact-content a:visited {
    color: #6AC7FF;
}

.left-column, .right-column {
    display: flex;
    align-items: center; /* Vertically center content */
}

.custom-checkbox {
    display: flex;
    align-items: center; /* Vertically center SVG and text */
    cursor: pointer;
}

.checkbox-text {
    margin-right: 12px;
}

.checkbox-icon {
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    vertical-align: middle; /* Vertically align SVG */
    margin-right: 8px; /* Space between SVG and text */
}

.hidden {
    display: none;
}

.hidden-checkbox {
    display: none;
}

.contact-form {
    flex: 1;
}

.form-row {
    width: 100%;
    margin-bottom: 10px;
}

.form-row:first-child, .form-footer-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.form-input-outer {
    background:#4E5672;
    padding: 1px;
    border-radius: 5px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
}

.form-input-outer:focus-within {
    background: linear-gradient(270deg, #28ABFB 19.48%, #1FFCD1 94.01%);
}


.contact-map {
    margin-top: 20px;
    text-align: center;
}

.section-title {
    color: #FFFFFF;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    margin: 80px 0;
}

.section-title.uncentered {
    margin: 0 0 12px 0;
}

.section-title-with-text .section-title {
    margin: 0;
}

.section-title-with-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 950px;
    margin: 120px auto;
}

.section-title-with-text.no-bottom-margin {
    margin: 120px auto 20px auto;
}

.section-title-with-text .media-info-button-wrapper {
    align-self: auto;
}

/* Basic styling for the main menu */
.nav-menu {
    position: relative;
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #161D2E; /* Adjust the background color to match the image */
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #ffffff; /* Adjust the text color to match the image */
    text-decoration: none;
    padding: 15px 20px;
    display: block;
}

.nav-menu a:hover {
    color: #28ABFB;
}

.nav-menu .sub-menu {
    display: none;
    position: absolute;
    background: #161D2E;
    width: 100%;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.nav-menu li:hover > .sub-menu {
    display: block;
}

.nav-menu .sub-menu a {
    padding: 10px 20px;
}

.nav-menu .menu-item-has-children > a::after {
    content: " ▼"; /* Add the dropdown arrow */
    font-size: 12px;
}

.menu-item-has-children ul li {
    border-top: solid 1px #4E5672;
}

/* Styles for menu toggle button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    padding: 10px;
}

*.restricted-width {
    max-width: 950px;
    margin: 0 auto;
}

*.margin-top {
    margin-top: 120px !important;
}

*.margin-bottom {
    margin-bottom: 120px !important;
}

*.no-margin-bottom {
    margin-bottom: 0px !important;
}

*.features-background::before {
    position: absolute;
    content: "";
    bottom: 40px;
    left: -40px;
    right: -40px;
    top: -40px;
    background-image: 
        linear-gradient(0deg, rgba(16, 23, 39, 1), rgba(16, 23, 39, 0)),
        url(/wp-content/themes/intellitect-wp-theme-2.6.0/./assets/images/background-images/features.svg);
    background-repeat: no-repeat;
    background-size:cover;
    width: calc(100% + 80px);
    z-index: -1;
    overflow: visible;
    height: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu.toggled {
        display: flex;
    }
}




figure .wp-block-image.size-large {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

a#header-call-to-action {
    font-size: 16px;
}


/* Hide the menu toggle until needed on smaller screens */
.menu-toggle {
    display: none;
}

.main-menu-class {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu-class li {
    position: relative;
}

.main-menu-class a {
    color: #ffffff; /* Adjust the text color to match the image */
    text-decoration: none;
    padding: 15px 20px;
    display: block;
}

.main-menu-class .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu-class li:hover > .sub-menu {
    display: block;
}

.main-menu-class .sub-menu a {
    padding: 10px 20px;
}

.main-menu-class .menu-item-has-children > a::after {
    content: " ▼"; /* Add the dropdown arrow */
    font-size: 12px;
}

.date-row {
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    text-align: left;
    color: #4E5672;
}

.wp-block-image img {
    border-radius: 24px;
}

.contact-page,
.page-container,
.find-distributor-page {
    padding: 0 40px;
}


.contact-page-container,
.find-distributor-page-container {
    width: 100%;
    position: relative;
    flex: 1;
}
.contact-page-container::after,
.find-distributor-page-container::after {
    position: absolute;
    content: "";
    background-image: url(../images/waves.svg);
    background-repeat: no-repeat;
    background-size:100%;
    top: 240px;
    width: 100%;
    height: 500px;
    z-index: -1;
}
.find-distributor-page-container::after {
    top: 120px;
}
/* Base styles for mobile navigation container */
.mobile-menu-class {
    display: none; /* Initially hide the mobile nav */
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%; /* Full height */
    z-index: 1000; /* Ensure it appears over other content */
    text-align: left; /* Align text to the left */
    overflow-y: hidden; /* Allow scrolling if content exceeds height */
}

/* Consent Modal */
#consent-modal {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1000;
}

.consent-modal-inner {
    background: linear-gradient(#181E2F, #282A39);
    padding: 40px 80px;
    width: 1023px; 
    text-align: center;
    border-radius: 24px;
    border: solid 1px #4E5672;
}

.consent-modal-inner h2 {
    font-size: 24px;
}

.consent-modal-inner h2,
.consent-text-block {
    margin-bottom: 20px;
}

.consent-text-block {
    font-size: 20px;
}

.accept-consent {
    border: none;
}

.decline-consent,
.accept-consent {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    border-radius: 5px;
    text-decoration: none;
    margin-top: auto;
    align-self: center;
    padding: 6px 20px 6px 20px;
    width: 120px;
    text-align: center;
}

.accept-consent {
    background: #28ABFB;
    border: none;
    margin-left: 4px;
}

.decline-consent {
    background: #161D2E;
    border: solid 1px #4E5672;
    margin-right: 4px;
}

.decline-consent:hover {
    cursor: pointer;
}

.consent-buttons-block {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .main-menu-class {
        display: none;
        flex-direction: column;
    }

    /* Base styles for mobile navigation container */
    .mobile-menu-container {
        display: none; /* Initially hide the mobile nav */
        position: absolute;
        top: 85px; /* Adjust to place the menu below the header */
        right: 10px; /* Adjust to place the menu away from the screen edge */
        min-width: 300px; /* Fixed width for the menu */
        z-index: 1000; /* Ensure it appears over other content */
        height: auto;
        min-height: 386px;
        border-radius: 5px; /* Rounded corners */
        text-align: left; /* Align text to the left */
        overflow-x: hidden;
        overflow-y: hidden; /* Allow scrolling for longer menus */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); /* Optional shadow */
    }

    .mobile-menu-container::after {
        content: "";
        display: table;
        clear: both;
    }

    /* Toggle mobile menu display */
    .mobile-menu-container.toggled {
        display: flex;
    }

    /* Mobile menu styling */
    .mobile-menu-class {
        display: flex;
        flex-direction: column; /* Stack menu items vertically */
        padding: 0 0 10px 0; /* Padding inside the menu */
        margin: 0; /* Remove default margin */
        list-style: none; /* Remove bullet points */
    }

    /* Remove gtranslate from mobile menu */
    .mobile-menu-class .primary-menu li.menu-item-gtranslate {
        display: none !important;
    }

    /* Style individual menu items */
    .mobile-menu-class .primary-menu li {
        width: 100%;
        position: relative; /* Ensure sub-menus are positioned relative to parent */
    }
    
    .mobile-menu-class .primary-menu > li {
        margin-bottom: 5px; /* Space between items */
        border-bottom: 1px solid #4E5672;
    }

    .mobile-menu-class .primary-menu > li:last-child {
        border-bottom: none !important; /* Remove divider on final item */
        margin-bottom: 0; /* 'none' is invalid; use 0 */
    }

    /* Style for links */
    .mobile-menu-class .primary-menu li a {
        text-decoration: none; /* Remove underline */
        display: block; /* Make the link cover the full width */
        width: 100%;
        transition: color 0.3s ease; /* Smooth color transition */
    }

    /* Hover and active states */
    .mobile-menu-class .primary-menu li a:hover,
    .mobile-menu-class .primary-menu li a:active,
    .mobile-menu-class .primary-menu li a:focus {
        color: #28ABFB; /* Hover and active color */
    }

    /* Dropdown arrow */
    .mobile-menu-class .primary-menu li.menu-item-has-children > a::after {
        float: right; /* Position arrow to the right */
        padding-right: 30px;
    }

    /* Ensure sub-menu expands inside the mobile menu */
    .mobile-menu-class .primary-menu li ul.sub-menu {
        display: none; /* Hide sub-menu by default */
        position: relative; /* Position sub-menu relative to its parent */
        border-radius: 5px;
        margin-top: 5px;
        width: 100%; /* Ensure the sub-menu fits within the parent container */
        padding-top: 5px;
        padding-bottom: 5px;
    }

    /* Show sub-menu when parent is clicked */
    .mobile-menu-class .primary-menu li.open > ul.sub-menu {
        display: block;
    }

    /* Style for the sub-menu items */
    .mobile-menu-class .sub-menu li {
        border: none;
        margin-bottom: 5px; /* Space between sub-menu items */
    }

    /* Toggle class for opening sub-menu */
    .mobile-menu-class .primary-menu li.open > a::after {
        content: '▲'; /* Change dropdown arrow to point up when open */
        color: #FFF; /* Ensure the arrow color matches the text color */
    }

    #header-call-to-action {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: #fff;
        padding: 10px;
        border: none;
        cursor: pointer;
        font-size: 18px;
    }

    .site-header {
        height: 45px;
    }
}

.carousel-logo {
    margin: 0 60px;
    opacity: 0.2;
}

/* Containers */
.post-container, .news-page-container, .block-container, .post-container {
    margin-right: auto;
    margin-left: auto;
    max-width: 950px;
}

/* Media query breakpoints based on Bootstrap's defaults */
@media (min-width: 576px) {
    .block-container {
        max-width: 540px;
    }
}

@media (max-width: 670px) {
    *.margin-top {
        margin-top: 80px;
    }

    .section-title-with-text.no-bottom-margin {
        margin: 80px auto 20px auto;
    }

    .contact-container,
    .find-distributor-content {
        flex-direction: column;
    }

    .contact-container .contact-content,
    .find-distributor-content .contact-content {
        margin-bottom: 40px;
        margin-right: unset;
    }

    .form-row:first-child, .form-footer-row {
        flex-direction: column;
        align-items: center;
    }

    .consent-buttons-block {
        display: flex;
        flex-direction: column;
    }

    .decline-consent,
    .accept-consent {
        margin: 0;
    }

    .decline-consent {
        margin-bottom: 4px;
    }
}

@media screen and (max-width: 1100px) {
    .consent-modal-inner {
        width: 100%;
        max-height: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 40px;
    }
}

@media (min-width: 768px) {
    .block-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .block-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .block-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .block-container {
        max-width: 1320px;
    }
}

@media (max-width: 900px) {
    p.central-text, p.news-card-description {
        font-size: 14px;
    }
}.news-page-container {
    padding: 0 130px;
    margin-bottom: 120px;
}

/* Post categories */
.post-category {
    border-radius: 12px;
    padding: 4px 8px;
    margin: 20px 0;
    font-size: 10px;
    color: #FFFFFF;
}

.category-label-environment {
    border: 1px solid #00FF66;
    background-color: rgba(0, 255, 102, 0.25);
}

.category-label-environment:hover {
    background-color: rgba(0, 255, 102, 1);
}

.category-label-product {
    border: 1px solid #1FFCD1;
    background: rgba(31, 252, 209, 0.25);
}

.category-label-product:hover {
    background: rgba(31, 252, 209, 1);
}

.category-label-company {
    border: 1px solid #3CA6F2;
    background: rgba(60, 166, 242, 0.25);
}

.category-label-company:hover {
    background: rgba(60, 166, 242, 1);
}

.category-label-case-study {
    border: 1px solid #FEB701;
    background: rgba(254, 183, 1, 0.25);
}

.category-label-case-study:hover {
    background: rgba(254, 183, 1, 1);
}

.category-label-innovation {
    border: 1px solid #AD5BFF;
    background: rgba(173, 91, 255, 0.25);
}

.category-label-innovation:hover {
    background: rgba(173, 91, 255, 1);
}

.category-label-environment,
.category-label-product,
.category-label-company,
.category-label-case-study,
.category-label-innovation {
    transition: background 0.2s ease-in;
}

.post-title {
    font-family: Inter;
    font-size: 40px;
    font-weight: 600;
    text-align: left;
}

.post-category {
    margin-left: 20px;
}

/* Ensure figures and images inside post content span full width */
.post-container figure, .post-container img {
    width: 100% !important; /* Force full width */
    max-width: 100% !important; /* Prevent exceeding container width */
    padding: 0 !important; /* Remove default padding */
    display: block; /* Ensure block-level display */
}

.post-container figure, .post-container img:not(.aside-card-image):not(.sharing-socials img) {
    margin: 32px 0 !important; /* Remove default margins */
    border-radius: 24px;
}

/* Optional: Ensure images inside figures also span full width */
.post-container figure img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
}

/* Optional: Center figcaptions if used */
.post-container figure figcaption {
    text-align: center;
    margin-top: 5px;
    color: #666;
}

.post-container h1 {
    font-family: Inter;
    font-size: 40px;
    font-weight: 600;
    text-align: left;
    color: #FFFFFF;
}

.post-container h2 {
    font-family: Inter;
    font-size: 36px;
    font-weight: 600;
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.contact-location-container {
    margin-bottom: 120px;
}

/* News and posts styles  ****/
.news-card {
    display: flex;
    position: relative;
    width: 100%;
    border-radius: 8px;
    background: #161D2E;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    cursor: pointer;
}

.news-card::before {
    position: absolute;
    content: "";
    background: linear-gradient(135deg, #4E5672, #4E5672);
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    border-radius: 9px;
    transition: background 0.2s ease-in;
}

.news-card:hover::before {
    background: linear-gradient(135deg, #28ABFB 0%, #1FFCD1 100%);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: contain;
    object-position: top;
}

.news-card-content {
    position: relative;
    padding: 0 0 0 20px;
}

.news-card-content .news-card-title {
    font-size: 16px;
    font-weight: 600;
    text-align: left;    
}

.news-card-categories {
    display: flex;
}

.news-card-category a {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
}

.news-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.5em;
    margin-top: 10px;
    color: #FFFFFF;
}

.news-card-read-more {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 183px;
    flex-shrink: 0;    
    background-color: #28ABFB;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    background: #28ABFB;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.news-card-description {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit description to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.first-news-card .news-card-description {
    -webkit-line-clamp: 7; /* Limit description to 7 lines */
}


.hero-news-card-block .news-card-description {
    position: relative;
    max-height: 120px;
    overflow: hidden;
}

.hero-news-card-block .news-card-description::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 50%;
    height: 1.4em;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #161D2E 50%);
}

.news-card-category {
    height: 12px;
    color: #FFF;
    font-family: Inter;
    font-size: 10px;
    font-weight: 600;
    border-radius: 12px;
    margin-left: 12px;
    padding: 4px 8px 6px 8px;
    overflow: hidden;
    white-space: nowrap;
}

.news-card.small{
    max-width: 1200px;
    max-height: 420px;
}

.news-card.small .news-card-date {
    color: #4E5672;
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
}

.news-card-container.small {
    align-items: center;
}

.news-card.small .news-card-content .news-card-title {
    color: #FFF;
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    display: flex;
}

.news-card-row {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap; /* Allow items to wrap to the next line if necessary */
    justify-content: space-between; /* Space out the cards evenly */
    margin-bottom: 20px;
    gap: 20px;
}

.news-card.row-card {
    display: flex;
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
    box-sizing: border-box; /* Include padding and border in the width */
}

.news-card.row-card.news-card-image {
    width: 50%;   
}

.news-card.row-card .news-card-date {
    color: #4E5672;
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
}

.news-card.row-card .news-card-title {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
}

.news-card.row-card .news-card-description {
    color: #FFF;
    font-family: Inter;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 36px;
}

.news-card.row-card .news-card-read-more {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    width: 113px;
}

.news-card.row-card .news-card-image {
    max-width: 50%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    flex: 0 0 300px;
}

.news-card.row-card .news-card-pre-header {
    flex: 0 0 20px;
}


.hero-news-card-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 28px auto 80px auto;
}

.news-card-read-more:hover {
    background-color: #1E90FF;
}

.news-card.first-news-card {
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box; /* Include padding and border in the width */
}

.first-news-card .news-card-content {
    width: 100%;
}

.first-news-card p.news-card-title {
    font-size: 32px;
    font-weight: 600;
}

.first-news-card p.news-card-description {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 32px;
}

.first-news-card .news-card-date {
    font-size: 24px;
    font-weight: 600;
    text-align: left;
    color: #4E5672;
}

.news-page-header p.news-page-title, .contact-content p.news-page-title {
    font-family: Inter;
    font-size: 48px;
    font-weight: 600;
    text-align: left;
}

.news-page-header p.news-page-intro {
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
}

.news-page-header {
    padding: 20px;
}

.news-card-pre-header, .date-row {
    display: flex;
    align-items: center;
}

.news-card-pre-header, .date-row:not(.post-container .date-row) {
    justify-content: space-between;
}

.news-article-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.news-sections {
    flex: 1;
}

.news-article-aside {
    flex: 0 0 320px;
}

.news-section-text,
.news-section {
    margin-bottom: 32px;
}

.news-section-list li {
    margin-bottom: 12px;
}

.news-article-aside {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.aside-card {
    width: 320px;
    border: solid 1px #4E5672;
    border-radius: 24px;
    background: linear-gradient(#181e2f, #282a39);
    padding: 37px;
    margin: 40px 0;
}

.aside-card h3 {
    font-size: 20px;
    font-weight: 550;
    color: #fff;
}

.aside-card-image {
    margin-bottom: 20px;
}

.aside-card-title {
    margin-bottom: 12px;
}

.aside-card-description {
    text-align: center;
}

.aside-card-button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0 0 0;
}

.sharing-socials {
    height: 28px;
    display: flex;
}

.sharing-text {
    font-weight: 550;
}

.sharing-socials .social-button {
    margin: 8px 4px 0 0;
}

@media (max-width: 1100px) {
    .news-page-container, .post-container {
        padding: 0 40px;
    }

    .news-card.row-card {
        flex-direction: column;
        height: auto;
    }

    .news-card-content {
        width: 100%;
    }
    
    .news-card.row-card .news-card-content {
        padding: 20px 0 0 0;
    }

    .news-card.row-card .news-card-pre-header {
        display: flex;
        justify-content: space-between;
    }
    
    .news-card-category:not(.news-card-category:last-child) {
        margin-right: 20px;
    }

    .news-card.row-card .news-card-image {
        max-width: unset;
        flex: unset;
    }

}

@media (max-width: 900px) {
    .news-card.small {
        flex-direction: column;
        max-height: unset;
    }

    .news-card.small .news-card-content {
        padding-left: unset;
    }

    .first-news-card p.news-card-description {
        font-size: 14px;
        -webkit-line-clamp: 4; /* Limit description to 4 lines */
    }

    .news-article-content {
        flex-direction: column;
    }

    .news-article-aside {
        align-items: center;
    }

    h1.post-title {
        font-size: 20px;
    }

    h2.news-section-title {
        font-size: 18px;
    }
}

@media (max-width: 670px) {
    .news-card.first-news-card {
        flex-direction: column;
        height: unset;
    }
    .news-card-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-card.row-card {
        width: 100%;
        flex: unset;
        max-width: 100%;
    }
    
    .first-news-card p.news-card-title {
        font-size: 16px;
    }

    .first-news-card p.news-card-description,
    .first-news-card .news-card-date,
    .news-card-date,
    .post-date {
        font-size: 12px;
    }

    .news-card-read-more {
        width: 113px;
        padding: 6px 20px;
        font-size: 14px;
    }

    .news-page-header .news-page-intro p:not(.white-gradient-title p) {
        font-size: 14px;
    }

    .first-news-card .news-card-content {
        padding: 20px 0 0 0;
    }

    .aside-card {
        width: calc(100% - 80px);
    }
}.section-title-text {
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.main-content h2.wp-block-heading {
    color: #FFFFFF !important;
    font-family: Inter;
    font-size: 36px;
    font-weight: 600;
    margin: 16px 0;
    -webkit-text-fill-color: #FFFFFF
}

.page-title p {
    color: #FFF;
    font-family: Inter;
    font-size: 48px;
    font-weight: 600;
    text-align: left;
}

.large-paragraph {
    margin-top: 20px;
}

.large-paragraph p {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
} 

.section-title.uncentered p {
    text-align: left;
}

.white-gradient-title,
.gradient-white-title{
    display: flex;
    height: 50px;
    margin: 12px 0;
}

/* Centered variant for specific instances */
.white-gradient-title.centered {
    justify-content: center;
    text-align: center;
    width: 100%;
}

.gradient-white-title {
    justify-content: center;   
}

.white-gradient-title span,
.gradient-white-title span {
    font-size: 44px;
    font-weight: 600;
}

.white-gradient-title-white-text {
    color: #fff;
    margin-right: 8px;
}

.gradient-white-title .white-gradient-title-white-text {
    margin-left: 12px;
}

.white-gradient-title-gradient-text {
    background: linear-gradient(90deg, #28ABFB 19.48%, #1FFCD1 94.01%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-white-title .white-gradient-title-gradient-text {
    background: linear-gradient(270deg, #28ABFB 19.48%, #1FFCD1 94.01%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.white-gradient-title-white-text,
.white-gradient-title-gradient-text {
    line-height: 40px;
}

.section-header-with-background {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px;
    background:linear-gradient(to left, rgba(16, 23, 39, 1), rgba(16, 23, 39, 0));
}

.section-header-with-background::before {
    position: absolute;
    content: "";
    inset: 0 -40px 0 -40px;
    background-image: 
        linear-gradient(to left, rgba(16, 23, 39, 1), rgba(16, 23, 39, 0)),
        url(/wp-content/themes/intellitect-wp-theme-2.6.0/assets/css/../images/background-images/features.svg);
    background-repeat: no-repeat;
    background-size:auto;
    z-index: -1;
}

.quote-card-text,
.media-info-card-content p:not(.section-title-text) {
    font-size: 18px;
}

@media (max-width: 1440px) {
    .gradient-white-title span,
    .white-gradient-title span{
        font-size: 36px;
    }
}

@media (max-width: 1110px) {
    .gradient-white-title span,
    .white-gradient-title span:not(.media-info-card-content .white-gradient-title span) {
        font-size: 28px;
    }
}

@media (max-width: 900px) {
    .white-gradient-title span,
    .learn-more-card .card-content .card-title,
    .section-title p:not(.section-title-text) {
        font-size: 20px;
    }

    .gradient-white-title span {
        font-size: 28px;
    }

    .gradient-white-title span.white-gradient-title-white-text {
        margin-left: 6px;
    }

    .gradient-white-title span,
    .white-gradient-title span {
        line-height: 32px;
    }

    .system-example-card .white-gradient-title {
        justify-content: center;
    }

    * .gradient-white-title,
    * .white-gradient-title,
    .image-gallery-container .white-gradient-title {
        height: auto;
    }

    h3,
    .media-info-card-content p:not(.section-title-text),
    .quote-card-text,
    p.testimonial-text {
        font-size: 14px;
    }

    p.testimonial-text {
        line-height: unset;
        padding: 0 30px;
    }

    .gradient-white-title.long-title {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 670px) {
    .white-gradient-title {
        justify-content: center;
    }

    .media-info-card .media-info-card-content h3,
    .media-info-card .media-info-card-content p:not(span.white-gradient-title-gradient-text) {
        text-align: center;
    }

    span.white-gradient-title-gradient-text {
        text-align: center;
    }

    .section-title-with-text p.section-title {
        text-align: center;
    }

    .white-only .white-gradient-title-white-text {
        margin-right: unset;
    }
}.testimonials-list-outer {
    width: 100vw;
    position: relative;
    overflow: hidden;
    background: #101727;
}

.testimonials-list {
    position: relative;
    width: 100%;
    height: 420px;
    scroll-behavior: smooth;
    padding: 32px 0;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    will-change: transform;
    background: #101727;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transition:
        transform 0.3s linear,
        opacity 0s linear 0.3s,
        font-size 0.3s ease-in 0.3s;
    transform: translate(-50%,-50%);
    max-width: 60%;
    min-width: 400px;
    opacity: 0;
    z-index: 1;
    background: none;
    pointer-events: none;
}

.testimonial-item.current,
.testimonial-item-order-0 {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    z-index: 3;
}

.testimonial-item-order-1 {
    opacity: 0.7;
    transform: translate(calc(-50% + 55vw), -50%) scale(0.95);
    pointer-events: auto;
    z-index: 2;
}
.testimonial-item-order--1 {
    opacity: 0.7;
    transform: translate(calc(-50% - 55vw), -50%) scale(0.95);
    pointer-events: auto;
    z-index: 2;
}
.testimonial-item-order-2 {
    opacity: 0;
    transform: translate(calc(-50% + 110vw), -50%) scale(0.9);
    z-index: 1;
}
.testimonial-item-order--2 {
    opacity: 0;
    transform: translate(calc(-50% - 110vw), -50%) scale(0.9);
    z-index: 1;
}

.testimonial-item img {
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 24px;
    display: block;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 30px;
}

.testimonial-text {
    text-align: center;
    margin-bottom: 16px;
    font-size: 18px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    z-index: 3;
}

.testimonials-carousel-frontend {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-item.carousel-prev,
.testimonial-item.carousel-next {
    opacity: 0.8;
    transform: scale(0.98);
    z-index: 1;
}
.testimonial-item.carousel-dummy {
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.carousel-arrows {
    position: absolute;
    inset: 0 -20px 0 -20px;
    display: none;
    align-items: center;
    justify-content: space-between;
}

.carousel-arrow {
    position: relative;
    height: 40px;
    background: none;
    padding: 0;
    margin: 0;
    border: none;
    cursor: pointer;
}

/* Arrow head using ::before */
.carousel-arrow::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    border-radius: 2px;
    padding: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

/* Left arrow */
.carousel-arrow-left::before {
    transform: translate(-50%, -50%) rotate(135deg);
}

/* Right arrow */
.carousel-arrow-right::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 670px) {
    .testimonial-item-order-0 {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translate(-50%, -50%) scale(1) !important;
        z-index: 3 !important;
        transition:
            opacity 0.3s cubic-bezier(.77,0,.18,1),
            transform 0.3s cubic-bezier(.77,0,.18,1);
    }
    .testimonial-item-order-1 {
        opacity: 1 !important;
        pointer-events: none !important;
        transform: translate(calc(-50% + 100vw), -50%) scale(1) !important;
        z-index: 2 !important;
        transition:
            opacity 0.3s cubic-bezier(.77,0,.18,1),
            transform 0.3s cubic-bezier(.77,0,.18,1);
    }
    .testimonial-item-order--1 {
        opacity: 1 !important;
        pointer-events: none !important;
        transform: translate(calc(-50% - 100vw), -50%) scale(1) !important;
        z-index: 2 !important;
        transition:
            opacity 0.3s cubic-bezier(.77,0,.18,1),
            transform 0.3s cubic-bezier(.77,0,.18,1);
    }
    .testimonial-item-order-2,
    .testimonial-item-order--2 {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: none !important;
    }
    .carousel-arrows {
        display: flex;
    }
}.learn-more-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 400px;
    border-radius: 24px;
    border: 1px solid #4E5672;
    background: #101727;
    overflow: hidden;
}

.learn-more-description {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding:  0 20px 20px 20px;
    text-align: center;
}

.learn-more-description ul {
    text-align: left;
}

.learn-more-description .centered {
    text-align: center;
}

.learn-more-description ul {
    padding: 12px;
    margin-left: 12px;
    list-style-type: disc;
}

.learn-more-description ul li {
    padding-bottom: 12px;
}

.learn-more-description li ul {
    list-style-type: circle;
}

.learn-more-card .card-image img {
    width: 100%;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.card-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    margin: 14px 0 10px 0;
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #FFFFFF;
}

.card-text {
    margin-bottom: 20px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.card-button,
.accept-consent {
    background: #28ABFB;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    margin-top: auto;
    align-self: center;
    padding: 6px 20px 6px 20px;
    gap: 10px;
    opacity: 0px;
}

.card-button:not(.form-footer-row .card-button):not(.aside-card .card-button) {
    margin-bottom: 20px;
}

.card-button:hover,
.accept-consent:hover {
    cursor: pointer;
}

.svg-card {
    border: 1px solid;
    width: 345px;
    height: 360px;
    border-radius: 24px;
    opacity: 0px;
    border-image-source: linear-gradient(138.59deg, #28ABFB 1.04%, #1FFCD1 97.28%);
    background: linear-gradient(180deg, #181E2F 0%, #282A39 100%);
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.media-card {
    display: flex;
}

.media-card-content {
    color: #FFF;
    font-family: Inter;
    font-size: 48px;
    font-weight: 600;
}

.quote-card-title {
    color: #FFF;
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
}

.quote-card-name {
    margin-bottom: 12px;
}

.quote-card-name strong {
    font-weight: 700;
}

.media-card-pretitle {
    color: #4E5672;
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    margin: 80px auto;
    max-width: 950px;
}

.media-card-example-blocks-container,
.media-card-boxes {
    display: flex;
}

.media-card-boxes {
    flex-wrap: wrap;
}

.media-info-card {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px auto;
    height: 275px;
    padding: 48px 0;
}

.header-card.right .media-info-card {
    flex-direction: row-reverse;
}

.header-card.right .media-info-card .media-info-card-content {
    align-items: center;
}

.header-card.right .media-info-card .media-info-card-content .media-info-button-wrapper {
    align-self: center;
}

.media-info-card.left-image {
    flex-direction: row-reverse;
}

.media-info-card.no-top-margin {
    margin: 0px auto 160px auto;
}

.media-info-card.restricted-width {
    max-width: 950px;
}

.media-info-card-content {
    flex: 2;
    padding: 20px 20px 20px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.system-example-card .media-info-card-content p {
    margin-bottom: 20px;
}

.system-example-card .media-info-card-content,
.media-info-card.left-image .media-info-card-content {
    padding: 20px 0 20px 0;
}

.media-card-title {
    color: #FFFFFF;
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 24px;
}

.media-card .media-card-title {
    padding-bottom: 6px;
}

.media-card-text {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
}

.header-card .media-info-card {
    justify-content: space-between;
    width: unset;
    height: unset;
    max-width: 1300px;
    margin: 0 auto;
}

.media-info-card .media-info-card-content,
.media-info-card .media-info-card-content h3 {
    text-align: left;
}

.media-info-button-wrapper {
    margin-top: 26px;
    align-self: flex-start;
}

.media-info-card.left-image .media-info-card-image {
    padding-right: 24px;
}

.media-card .media-info-card-image {
    padding-top: 24px;
    padding-right: 24px;
}

.header-card.sticky-image .media-info-card .media-info-card-image {
    flex: 0 0 562px;
}
.header-card.sticky-image .media-info-card .media-info-card-image img{
    position: absolute;
    left: -40px;
}


.header-card .media-info-card-image:not(.header-card.sticky-image .media-info-card .media-info-card-image),
.system-example-card .media-info-card-image,
.left .media-info-card-image {
    margin-right: 40px;
}
.header-card .media-info-card-image {
    height: 420px;
}
.system-example-card .media-info-card-image {
    height: 320px;
}
.media-card .media-info-card-image {
    height: 160px;
}

.media-info-card-image img {
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

*.large-image .media-info-card-image img {
    height: 150%;
    max-height: 150%;
    transform: translateY(-12.25%);
}

.header-card.sticky-image .media-info-card-image img {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.quote-card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 950px;
    margin: 80px auto;
    height: 340px;
}

.quote-card-content {
    flex: 2;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    margin-left: 60px;
}

.quote-card-image img {
    max-height: 340px;
    object-fit: cover;
    border-radius: 12px;
}

.quote-card-content h2.quote-card-title {
    color: #FFFFFF;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
}

.quote-card-text {
    margin-bottom: 16px;
}

.hero-media-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 80%;
    height: 450px;
}

.hero-media-card .media-info-card-content {
    flex: 5;
    padding: 20px 20px 20px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-media-card .media-info-card-image {
    height: 100%;
}

.hero-media-card .media-info-card-content h2,
.hero-media-card .media-info-card-content h3,
.hero-media-card .media-info-card-content a {
    text-align: left;
}

.hero-media-card .media-info-card-content p,
.hero-media-card .media-info-card-content a {
    font-size: 20px;
}

.quote-card-content-right-quote,
.quote-card-content-left-quote {
    position: absolute;
    content: "";
}

.quote-card-content-right-quote {
    right: 0;
    bottom: 70px;
}

.quote-card-content-left-quote {
    top: 40px;
    left: -46px;
}

.header-card {
    position: relative;
    height: 600px;
}

.waves-block {
    position: relative;
    height: 400px;
}

.header-card.waves::after,
.waves-block::after {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 400px;  
    left: -40px;
    background-image: url(../images/waves.svg);
    background-repeat: no-repeat;
    background-size:100%;
    z-index: -1;
}

.header-card.waves::after {
    bottom: -260px;
}

.header-card.waves {
    margin-bottom: 300px;
}

.waves-block::after {
    bottom: -20px;
}

.bullet-point-container p {
    margin-bottom: 8px;
    text-align: left;
}
.bullet-point-container ul {
    margin-left: 28px;
    text-align: left;
    font-size: 18px;
}

@media (max-width: 1400px) {
    .header-card.waves {
        margin-bottom: 200px;
    }
}

@media (max-width: 1100px) {
    .header-card.waves::after {
        display: none;
    }

    .header-card .media-info-card,
    .header-card.right .media-info-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: unset;
    }

    .large-image .media-info-card-image img {
        height: 100%;
        max-height: 100%;
        transform: unset;
    }

    .header-card {
        margin-bottom: 160px;
    }

    .header-card .media-info-card .media-info-card-content {
        text-align: center;
        padding-right: 0;
    }

    .header-card .media-info-card .media-info-card-content h3,
    .header-card .media-info-card .media-info-card-content .white-gradient-title {
        text-align: center;
        justify-content: center;
    }

    .header-card .media-info-card-image,
    .header-card .media-info-card-image:not(.header-card.sticky-image .media-info-card .media-info-card-image) {
        margin-right: unset;
        padding-right: unset;
    }

    .header-card.sticky-image {
        height: unset;
    }

    .header-card.sticky-image .media-info-card .media-info-card-image {
        flex: unset;
    }

    .media-info-button-wrapper:not(.media-info-card.system-example-card .media-info-button-wrapper) {
        margin: 20px auto 20px auto;
    }

    .media-card-boxes {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .media-info-card .media-info-card-content .white-gradient-title span {
        font-size: 32px;
        line-height: unset;
    }

    .media-card,
    .media-info-card.system-example-card {
        flex-direction: column-reverse;
    }

    .media-info-card.system-example-card {
        height: unset;
    }

    .media-card  .media-info-card-content .media-card-title {
        font-size: 20px;
        text-align: center;
    }

    .media-card .media-info-card-content {
        padding: 20px 0 20px 0;
    }

    .learn-more-description,
    .bullet-point-container ul {
        font-size: 14px;
    }

    .media-card  .media-info-card-content .media-card-text,
    .central-text,
    .media-card-text {
        font-size: 14px;
        text-align: center;
    }

    .media-info-card-image:not(.header-card .media-info-card-image):not(.media-info-card.left-image .media-info-card-image) {
        padding-right: unset;
        padding-top: unset;
    }

    .waves-block {
        height: 140px;
    }

    .header-card.waves {
        margin-bottom: unset;
    }
    
    .header-card {
        margin-bottom: 80px;
        height: unset;
    }

    .header-card::after,
    .waves-block::after {
        height: 140px;
    }

    .header-card .media-info-card .media-info-card-content .white-gradient-title span {
        font-size: 28px;
        line-height: 28px;
    }

    .header-card .media-info-card-image:not(.header-card.sticky-image .media-info-card .media-info-card-image) {
        height: unset;
        margin-right: unset;
    }

    .system-example-card .media-info-card-image {
        margin-right: unset;
        width: 100%;
    }

    .system-example-card .media-info-card-image img {
        width: 100%;
    }

    .media-info-button-wrapper {
        margin: 20px auto 20px auto;
    }

    .learn-more-card {
        flex: 0 0 100%;
    }

    .media-card-example-blocks-container {
        justify-content: center;
    }

    .media-info-card-image img {
        width: 100%;
    }

    .quote-card-content-right-quote,
    .quote-card-content-left-quote {
        display: none;
    }

    .quote-card-content {
        margin-left: 20px;
        padding-right: unset;
    }
}

@media (max-width: 670px) {
    .media-info-card,
    .media-info-card.left-image {
        flex-direction:column-reverse;
        flex-wrap: nowrap;
        height: unset;
    }

    .media-info-card.system-example-card {
        margin: unset;
        padding: unset;
    }

    .quote-card {
        flex-direction:column;
        flex-wrap: nowrap;
        height: unset;
    }

    .media-info-card-image,
    .quote-card-image {
        padding-right: unset;
        width: 100%;
    }

    .quote-card-image img {
        width: 100%;
    }

    .media-info-card-content:not(.system-example-card .media-info-card-content):not(.media-info-card.left-image .media-info-card-content):not(.header-card .media-info-card-content),
    .media-card  .media-info-card-content {
        padding: 20px 0 20px 0;
    }

    .media-info-card .media-info-card-content h3 {
        text-align: center;
    }

    .quote-card-content {
        margin: 0 60px 0 60px;
        text-align: center;
    }

    .quote-card-content-right-quote {
        right: -46px;
    }

    .media-info-button-wrapper {
        margin: 20px auto 20px auto;
    }

    .header-card {
        margin-bottom: unset;
    }

    .header-card.sticky-image .media-info-card .media-info-card-image img {
        left: -40px;
        width: calc(100% + 80px);
        border-radius: 0px;
    }
}

@media (max-width: 500px) {
    .header-card .media-info-card-image {
        height: 340px;
    }
}/* Footer Styling */
.footer {
    display: flex;
    justify-content: space-between;
    background-color: #161D2E;
    padding: 20px;
    color: #FFFFFF;
    height: 224px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    margin: 10px;
}

.footer-column.site-info {
    display: none;
}

.footer-column.column-large {
    flex: 2;
}

.footer-left {
    padding-right: 50px;
    margin-bottom: 12px;
}

.footer-column p {
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-site-info p,
.footer-column.site-info p {
    color: #4E5672;
    font-weight: 400;
    font-size: 12px;
}

.footer-column:last-child {
    align-items: flex-end;
}

.footer-social {
    cursor: pointer;
    text-align: end;
}

.footer-systems-status {
    display: flex;
    position: absolute;
    content: "";
    bottom: 20px;
    left: 50px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

.footer-systems-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00FF66;
    margin: 4px 6px 4px 0;
}

@media (max-width: 670px) {
    .footer {
        flex-direction: column;
        height: unset;
        text-align: center;
    }

    .footer-column:last-child {
        align-items: center;
    }

    .footer-left {
        padding: 0;
    }

    .footer-column:first-child .footer-site-info {
        display: none;
    }

    .footer-column.site-info {
        display: block;
    }

    .footer-social {
        text-align: center;
    }
}

@media (max-width: 1100px) {
    .footer-systems-status {
        left: 50%;
        transform: translateX(-50%);
    }
}.final-call-to-action {
    position: relative;
    width: 100%;
    font-family: 'Inter', sans-serif;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 32px;
}

.final-call-to-action::before {
    position: absolute;
    content: "";
    inset: 0 -40px 0 -40px;
    background: linear-gradient(139deg, #1FF5D4 4.33%, #28ABFB 94.59%);
    z-index: -1;
}

.call-to-action-text {
    margin-top: 32px;
}



.final-call-to-action .call-to-action-text p {
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    color: #FFFFFF !important; /* Add !important to override other styles */
    margin: 0; /* Ensure there's no default margin */
}

.final-call-to-action-button {
    margin-top: 20px;
}

.final-call-to-action .button {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    background: transparent;
    color: #FFFFFF; /* Set text color to white */
    padding: 10px 20px; /* Add padding for better button appearance */
    text-decoration: none; /* Remove underline from the link */
    cursor: pointer;
}

@media (max-width: 1100px) {
    .final-call-to-action .call-to-action-text p {
        font-size: 20px;
    }
}.info-box {
    width: 184px;
    height: 184px;
}


.info-box {
    gap: 0px;
    border-radius: 24px;
    background: linear-gradient(180deg, #181E2F 0%, #282A39 100%);
    border: 1px solid;
    border-color: #4E5672;
    padding: 10px;
    color: #4E5672;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s, border-color 0.3s;
}

.attribute-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #28ABFB 0%, #1FFCD1 100%);
    gap: 0px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: color 0.3s, background 0.3s;
}

.media-card-boxes .attribute-box {
    background: linear-gradient(135deg, #4E5672 0%, #4E5672 100%);
    color: #4E5672;
    cursor: pointer;
    margin-right: 8px;
    margin-bottom: 8px;
}

.attribute-box.small {
    flex: 0 0 66px;
    height: 66px;
    margin-right: 12px;
    color: #fff;
    border-radius: 12px;
    overflow: visible;
}

.attribute-box.big {
    min-width: 324px;
    width: 324px;
    height: 360px;
    border-radius: 24px;
}

.attribute-box.medium {
    width: 150px;
    height: 150px;
    border-radius: 24px;
    padding: 1px;
}

.media-card-boxes .attribute-box.medium {
    width: 118px;
    height: 118px;
}

.attribute-box:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #28ABFB 0%, #1FFCD1 100%);
}
.attribute-box-inner {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, #181E2F 0%, #282A39 100%);
    width: calc(100% - 2px);
    height: calc(100% - 2px);
}

.attribute-box.small .attribute-box-inner {
    flex: 0 0 32px;
    height: 32px;
    border-radius: 12px;
    padding: 16px;
}

.attribute-box.medium .attribute-box-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 138px;
    border-radius: 24px;
    padding: 6px;
}

.media-card-boxes .attribute-box.medium .attribute-box-inner {
    height: 106px;
}

.attribute-box.small .attribute-box-inner img {
    width: 100%;
}


.attribute-box.big .attribute-box-inner {
    border-radius: 24px;
}

.attribute-box:hover .attribute-box-inner,
.attribute-box-inner:hover {
    color: #ffffff;
}

.attribute-box.small .attribute-box-title {
    position: absolute;
    opacity: 0;
    white-space: none;
    text-wrap: nowrap;
    top: -10px;
    left: 50%;
    background: #161D2E;
    font-size: 10px;
    transform: translate(0, -50%);
    z-index: 2;
    transition: opacity 0.2s ease-in;
}

.attribute-box.small:hover .attribute-box-title {
    opacity: 1;
}

.attribute-box-container {
    display: flex;
    gap: 20px; 
    justify-content: center; 
    align-items: center; 
    margin: 0 auto; 
    margin-top: 80px;
    margin-bottom: 80px;
}

.attribute-box-container.restricted-width {
    max-width: 950px;
}

.attribute-box-container.no-top-margin,
*.no-top-margin:not(.media-info-card.no-top-margin) {
    margin-top: 0px;
}

.attribute-box-container.wrapped {
    flex-wrap: wrap; 
}

.attribute-box-title {
    text-align: center;
    font-size: 20px;
    margin-top: 12px;
    font-weight: 600;
}

.attribute-box-main:not(.attribute-box.small *) {
    display: flex;
    justify-content: center;
    height: 50px;
    width: 50px;
    margin-bottom: 12px;
}

.attribute-box-main:has(.attribute-box-title) {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.media-card-boxes .attribute-box-main {
    height: 50px;
    width: 50px;
}

.attribute-box.small .attribute-box-main,
.attribute-box.small .attribute-box-main img {
    height: 100%;
}


.attribute-box.big {
    border-radius: 24px;
}

.attribute-box.big .attribute-box-main {
    margin-top: 24px;
    width: 100%;
    height: 45%;
}

.info-box:hover {
    color: #FFFFFF;
}

.info-box-main {
    font-family: Oxanium;
    font-size: 96px;
    font-weight: 600;
    line-height: 120px;
    text-align: center;
}

.info-box-sub, .attribute-box-sub {
    font-family: Inter;
    font-size: 18px;
    text-align: center;
}

.info-box-sub {
    font-weight: 600;
}

.attribute-box-sub {
    font-weight: 500;
}

.attribute-box-content:not(.attribute-box.medium *) {
    margin-bottom: 24px;
    padding: 10px 20px;
}

.attribute-box.medium .attribute-box-sub {
    font-size: 14px;
}


.info-box-container {
    display: flex;
    gap: 20px; 
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: center; 
    margin: 0 auto; 
    margin: 20px;
}

.feature-long-box-container {
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.info-long-box  {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    width: 100%;
    gap: 20px;
    border-radius: 25px;
    background: linear-gradient(135deg, #28ABFB 0%, #1FFCD1 100%);
    max-width: 1024px;
    color: #fff;
    margin: 8px 0;
}

.info-long-box.starred::after {
    position: absolute;
    content: url(/wp-content/themes/intellitect-wp-theme-2.6.0/assets/css/../svgs/starred.svg);
    width: 28px;
    height: 28px;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
}

.info-long-box:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #28ABFB 0%, #1FFCD1 100%);
}

.info-long-box-inner {
    border-radius: 25px;
    width: calc(100% - 2px);
    min-height: 108px;
    display: flex;
    background: #101727;
}

.info-long-box-main {
    flex: 0 0 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    margin-right: 12px;
}

.info-long-box-main img {
    width: 50px;
    height: 50px;
}

.info-long-box-main,
.example-block-inner {
    background: linear-gradient(#161D2E, #2D2F3E);
}

.info-long-box-content {
    padding: 20px 20px 20px 0;
    max-height: 48px;
    overflow: hidden;
    position: relative;
}

.info-long-box-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 1.4em;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #101727 50%);
}

.info-long-box-title {
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
}

.info-long-box-sub {
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
}

.feature-box-svg {
    width: 100px; /* Fixed width equal to SVG height */
}

.feature-box-text {
    flex-grow: 1;
    color:#FFFFFF;
}

.feature-box-svg {
    width: 100px; /* Fixed width equal to SVG height */
}

.feature-box-text {
    flex-grow: 1;
    color:#FFFFFF;
}

.feature-box-title {
    font-size: 1.5em;
    color: #FFFFFF;
    margin: 0;
}

.feature-box-description {
    margin: 0;
    color: #FFFFFF;
}

.counter-box-container {
    margin: 0 auto;
}
.counter-box-container.restricted-width {
    max-width: 950px;
}

.counter-box-container-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.counter-box-container-bottom {
    display: flex;
    justify-content: center;
    font-size: 18px;
}

.counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: 600;
}

.counter-box-text {
    position: absolute;
    content: '';
    top: -20px;
    font-size: 18px;
    text-transform: uppercase;
    text-wrap: nowrap;
}

.counter-box-number {
    font-size: 68px;
    font-family: Oxanium;
}

@media (max-width: 1100px) {
    .attribute-box-container:not(.attribute-box-container.wrapped) {
        flex-direction: column;
    }

    .attribute-box.big {
        min-width: 400px;
        width: 400px;
    }

    .attribute-box-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .attribute-box-inner:not(.attribute-box.attribute-box.medium .attribute-box-inner) {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .attribute-box-sub,
    .info-long-box-sub,
    .counter-box-container-bottom {
        font-size: 14px;
    }
}

@media (max-width: 670px) {
    .attribute-box.big {
        min-width: unset;
        width: unset;
    }

    .counter-box-container-top {
        flex-direction: column;
        gap: 40px;
    }

    .info-long-box {
        height: 226px;
    }

    .info-long-box.starred::after {
        top: -69px;
        left: 50%;
        transform: translateX(-50%);
    }

    .info-long-box-inner {
        height: 224px;
    }

    .info-long-box-main {
        position: absolute;
        content: "";
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        flex: unset;
        width: 110px;
        height: 110px;
    }

    .feature-long-box-container {
        gap: 60px;
        margin-top: 60px;
    }

    .info-long-box-content {
        padding: 20px;
        margin-top: 55px;
        text-align: center;
        max-height: 116px;
    }

    .info-long-box-title {
        text-align: center;
    }

    .info-long-box-title {
        margin-bottom: 6px;
    }

    .info-long-box-content::after {
        right: 20px;
    }
}/* affiliate-carousel.css */
.affiliate-carousel {
    width: 100%;
    position: relative;
    margin-top: 80px;
    margin-bottom: 80px;
    height: 50px;
}

.carousel-track {
    position: absolute;
    content: "";
    left: -40px;
    right: -40px;
    display: flex;
    width: calc(200%);
    animation: scroll 36s linear infinite;
}

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



.affiliate-carousel .carousel-track img {
    flex-shrink: 0;
    width: auto;
    height: 64px;
    margin-right: 20px;
}

@media screen and (max-width: 670px) {
    .affiliate-carousel .carousel-track img {
        height: 50px;
    }
}
.hero-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
    text-align: center;
    background: #101727;
}

.hero-heading,
.hero-button {
    margin: 10px 0;
    max-width: 810px;
}

.hero-block .hero-heading {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-block .hero-text {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 24px;
}

.hero-button-url {
    display: block;
    margin-top: 10px;
}

.hero-text {
    max-width: 950px;
    text-align: center;
}

.hero-svg-block {
    width: 100%;
}

.values-block-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto 80px auto;
    overflow: hidden;
}

.values-content {
    flex: 0 0 320px;
    padding: 20px;
}

.values-image {
    width: auto;
}

.values-image img {
    height: 240px;
}

.values-content-title {
    color: #FFF;
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.values-content-text {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .values-block-container {
        flex-direction: column;
    }

    .values-content {
        flex: unset;
    }

}

@media (max-width: 900px) {
    .values-content-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 6px;
    }
    
    .values-content-text {
        font-size: 14px;
        text-align: center;
    }

    .values-image img {
        max-width: 100%;
        height: auto;
        display: inline-block;
    }
}.examples-block-container {
    display: flex;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 80px 0;
}

.examples-block {
    background-color: #101727;
    padding: 20px;
    color: #fff;
    max-width: 1240px;
}

.examples-flex {
    height: 500px;
    display: flex;
    align-items: center;
}

.example-titles {
    text-align: center;
    margin-bottom: 20px;
}

.examples-content-container {
    display: flex;
    justify-content: space-between;
}

.examples-image, .examples-content {
    flex: 1;
    max-width: 50%;
}

.examples-image img {
    width: 100%;
    height: auto;
}

.examples-content {
    padding: 0 20px;
}

.example-content-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.example-content-text {
    margin-bottom: 10px;
}

.example-content-icons {
    margin-bottom: 10px;
}

.example-content-icons img {
    cursor: pointer;
}

.example-content-link-button {
    display: inline-block;
    background-color: #007cba;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.examples-pre-title {
    color: #4E5672;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
}

.examples-title {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
}

.example-content-title {
    color: #FFF;
    font-family: Inter;
    font-size: 48px;
    font-weight: 600;
}

.example-content-text {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
}

.small-icon-container {
    padding: 6px;
}
.centered-image-block-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    border-radius: 12px;
}

.centered-image-block {
    max-width: 100%;
    text-align: center;
}

.centered-image {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.image-gallery-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.image-gallery-container .white-gradient-title {
    justify-content: center;
}

.image-gallery-images {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 20px auto 40px auto;
    flex-wrap: nowrap;
}

.image-gallery-images .gallery-image{
    flex: 1;
    min-width: 50px;
    max-width: calc(25% - 8px);
    border-radius: 5px;
}

.image-gallery-images .gallery-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 5px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .image-gallery-container .central-text {
        font-size: 14px;
    }
}/* Transparent Image Section full-bleed layout */
.transparent-image-section.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

.transparent-image-section .transparent-image-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Overlay removed; hide any legacy overlays in existing content */
.transparent-image-section .white-gradient-overlay { display: none !important; }

.transparent-image-section .transparent-image-section-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* Optional: remove inner container padding if theme applies it */
.transparent-image-section.alignfull .transparent-image-section-inner {
  max-width: none;
}

/* When this block is the first element in the page content,
   remove the global .site-main top margin (50px) only on pages
   where this block starts the content. Uses :has() for ancestor selection. */
.site-main:has(.page-container > .transparent-image-section:first-child),
.site-main:has(.container > .page-container > .transparent-image-section:first-child) {
  margin-top: 0;
}

.transparent-image-section-cta {
  margin-top: 20px;
}

.transparent-image-section-inner h1,
.transparent-image-section-inner h2,
.transparent-image-section-inner h3 {
  margin-bottom: 10px;
}

