@import 'variables.css';

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ProximaNova', sans-serif;
    line-height: 1.6;
    color: #000;
}

/* Content Container */
.content-container {
    width: 1242px;
    margin: 0 auto;
    padding: 0 0;
    position: relative;
    z-index: 1;
} 

/* Sections */
.section {
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Sign In Bar */
.sign-in {
    position: relative;
    z-index: 1000;
}

#sign-in {
    padding-top: 0;
    padding-bottom: 36px;
    margin-bottom: 18px;
}

#sign-in::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 51px;
    background-color: var(--sign-in-color);
    z-index: -1;
}

.sign-in .section-content {
    position: relative;
    height: 51px;
    display: flex;
    align-items: center;
}

.sign-in-button {
    color: black;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 6px 35px;
    position: absolute;
    left: 78%;
    transform: translateX(-50%);
}

.sign-in-button img,
.menu-items img,
.mobile-nav img  {
    height: .75em;
}

.mobile-nav img {
    filter: invert(100%);
}
#home.section,
#nav.section {
    padding-top: 0;
    padding-bottom: 0;
}

/* Overview/Features Section */
#overview {
    position: relative;
    background-color: var(--brand-color);
}

#overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: var(--brand-color);
    z-index: -1;
}

#overview h2,
#overview h3,
#overview p {
    color: white;
}

#overview .intro {
    text-align: center;
    margin-left: 130px;
    margin-right: 130px;
    margin-top: 108px;
    margin-bottom: 108px;
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
}

/* Innovation (Research/Use Cases) Section */
#innovation {
    position: relative;
}

#innovation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: white;
    z-index: -1;
}

#innovation h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin-top: 80px;
    font-weight: 600;
    line-height: 38px;
}

/* Portfolio Background Section */
#portfolio {
    position: relative;
    background-color: rgb(242, 240, 241);
}

#portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: rgb(242, 240, 241);
    z-index: -1;
}

#portfolio h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin-top: 80px;
    font-weight: 600;
    line-height: normal;
}

/* Main Navigation */
.main-nav {
    position: fixed;
    transform: rotate(-90deg);
    transform-origin: top left;
    z-index: 1000;
    background: white;
    padding: 15px 0px;
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.nav-content a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    text-transform: uppercase;
    padding: 10px 15px;
    width: max-content;
    font-weight: 600;
}

.nav-separator {
    color: var(--nav-separator-color);
    margin: 0 5px;
    font-size: 12px;
    font-weight: 600;
}

.menu-items a,
.menu-items span {
    display: inline;
    letter-spacing: 0.1em;
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: relative;
    width: 100%;
    height: 60px;
    background: white;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hamburger Menu */
.hamburger-menu {
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-icon,
.close-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    transition: none;
}

.hamburger-icon span:nth-child(1) {
    top: 0;
}

.hamburger-icon span:nth-child(2) {
    top: 11px;
}

.hamburger-icon span:nth-child(3) {
    top: 22px;
}

/* Close Icon Styles */
.close-icon {
    width: 30px;
    height: 30px;
    position: relative;
    background: white;
    padding: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.close-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    top: 50%;
    left: 0;
}

.close-icon span:first-child {
    transform: rotate(45deg);
}

.close-icon span:last-child {
    transform: rotate(-45deg);
}

/* Mobile Navigation Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    padding: 80px 20px 20px 20px;
    z-index: 1000;
    text-align: center;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    font-size: 1.2em;
    text-decoration: none;
    color: #000;
    text-align: center;
}

.mobile-nav .nav-separator {
    transform: none;
    margin: 10px 0;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

/* Mobile styles */

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .main-nav {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav.active {
        display: block;
    }

    .content-container {
        padding-top: 60px;
        width: 100vw;
        padding: 0 20px;
        overflow: hidden;
    }

    /* Active state styles */
    .mobile-nav.active,
    .mobile-header.active {
        background-color: var(--brand-color);
    }

    .mobile-nav.active a {
        color: white;
    }

    .mobile-nav p {
        color: white;
        font-size: 24px;
        font-weight: 600;
    }

    .mobile-header.active .hamburger-icon span {
        background: white;
    }

    .mobile-header.active {
        box-shadow: none;
    }

    .section {
        padding: 40px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }

    .hero-right {
        order: -1;
        margin-right: 0;
        height: auto;
        width: 100%;
        text-align: right;
    }

    .hero-left {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
        height: auto;
        width: 100%;
    }
    
    .hero-right, 
    .hero-left {
        display: block;
    }

    .wordmark {
        margin-top: 0;
    }

    .tagline {
        position: static;
        bottom: auto;
        margin-top: 20px;
    }

    #overview {
        padding-top: 20px;
    }

    #overview .intro {
        font-size: 14px;
        font-size: clamp(14px, 4.375vw, 18px);
        line-height: normal;
        margin: 20px auto;
        width: 82.5vw;
    }

    #sign-in::before {
        height: 80px;
    }

    #sign-in.section {
        height: 80px;
        position: relative;
        padding-bottom: 0;
    }

    #sign-in .section-content {
        width: 100%;
        height: 100%;
        position: relative;
    }

    #sign-in .section-content .sign-in-button {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 86%;
        text-align: center;
        padding: 12px 0;
        font-size: clamp(14px, 4.375vw, 17px);
    }

    .arrow-container {
        display: none;
    }
}

/* Animation Classes */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Hero Section */
.hero {
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: start;
    margin-bottom: 0px;
    margin-top: 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 0;
    padding-top: 0;
    height: 663px;
    position: relative;
    margin-left: 130px;
}

.wordmark {
    width: 238px;
    height: auto;
    margin-top: 78px;
}

.tagline {
    font-size: 38px;
    font-family: 'BatterseaSans', sans-serif;
    line-height: 1;
    width: 558px;
    margin: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
    position: absolute;
    bottom: 40px;
}

.logo {
    width: 779px;
    height: 663px;
    object-fit: contain;
    margin-right: -200px;
}

@media screen and (max-width: 768px) {
    .wordmark {
        margin-top: 0;
        width: 37.94vw;
        min-width: 121px;
        height: auto;
    }

    .tagline {
        position: static;
        bottom: auto;
        margin-top: 10px;
        width: 82.5vw;
        min-width: 254px;
        max-width: 83%;
        font-size: 15px;
        font-size: clamp(15px, 4.6875vw, 38px);
    }

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

    .hero-right {
        order: -1;
        margin-right: 0;
        height: auto;
    }

    .hero-left {
        margin-left: 0;
        height: auto;
    }
    
    .hero-right, 
    .hero-left {
        display: block;
    }
    
    .logo {
        min-width: 258px;
        width: 80.625vw;
        height: auto;
        margin-right: -20px;
    }
}

.arrow-container {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
}

.arrow {
    max-width: 40px;
    height: auto;
    color: var(--arrow-color);
}

.subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) and (max-width: 1226px) {
    .hero-right {
        overflow: hidden;
    }
}

/* Footer */
#contact {
    min-height: auto;
    padding: 0;
    margin: 0;
    position: relative;
    background-color: black;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: black;
    z-index: -1;
}

@media screen and (min-width: 769px) and (max-width: 1242px) {
    #contact::before {
        width: 1242px
    }
}

.footer-content {
    padding: 80px 0 20px;
    color: white;
}

.footer-content h2 {
    font-size: 38px;
    margin-bottom: 37px;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
}

.footer-content h3 {
    font-size: 18px;
    line-height: normal;
}

.footer-grid {
    display: grid;
    grid-template-columns: 59% 25%;
    gap: 60px;
    margin-bottom: 40px;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;    
}

.email-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.email-section a {
    color: white;
    text-decoration: underline;
    font-size: 18px;
    font-weight: bold;
}

.email-icon {
    width: 23px;
    height: auto;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

.contact-info p {
    margin: 0;
    line-height: normal;
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.address-block h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    font-family: 'ProximaNova', sans-serif;
}

.address-block p {
    font-size: 18px;
    margin: 0;
    line-height: normal;
}

.footer-divider {
    border: none;
    border-top: 1px solid white;
    margin: 40px 0;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: 59% 25%;
    gap: 60px;
    justify-content: space-between;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 167px;
    height: auto;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: underline;
    font-size: 12px;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-links .divider {
    color: white;
    font-size: 10px;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.software-by span {
    font-size: 14px;
    font-weight: 600;
}

.company-logo {
    height: 30px;
    width: auto;
}

.copyright {
    font-size: 12px;
    margin: 0;
    text-align: left;
    line-height: normal;
}

/* Mobile footer links */
.mobile-footer-links {
    display: none;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 20px;
}

.mobile-footer-links a {
    color: white;
    text-decoration: underline;
    font-size: 12px;
}

.mobile-footer-links .divider {
    color: white;
    font-size: 10px;
}

/* Responsive styles for footer */
@media screen and (max-width: 768px) {
    .footer-grid,
    .footer-bottom-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .email-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom-right {
        align-items: flex-start;
    }

    .copyright {
        text-align: left;
    }

    .footer-links {
        display: none;
    }

    .mobile-footer-links {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer-content h2 {
        font-size: 17px;
        font-size: clamp(17px, 5.3125vw, 38px);
        margin-bottom: 15px;
    }
    .email-section a {
        font-size: 13px;
        font-size: clamp(13px, 4.0625vw, 18px);
    }

    .contact-info h3 {
        font-size: 13px;
        font-size: clamp(13px, 4.0625vw, 18px);
    }

    .contact-info p {
        font-size: 13px;
        font-size: clamp(13px, 4.0625vw, 18px);
    }

    .address-block h3 {
        font-size: 10px;
        font-size: clamp(10px, 3.125vw, 18px);
    }

    .address-block p {
        font-size: 10px;
        font-size: clamp(10px, 3.125vw, 18px);
    }

    .footer-right {
        gap: 15px;
    }

    .footer-logo {
        min-width: 95px;
        width: 29.6875vw;
    }

    .software-by span {
        font-size: 11px;
        font-size: clamp(11px, 3.4375vw, 24px);
    }

    .software-by span::after {
        content: '\A0\A0\A0\A0';
    }

    .company-logo {
        min-width: 80px;
        width: 25vw;
        height: auto;
        vertical-align: middle;
    }

    .copyright {
        font-size: 11px;
        font-size: clamp(11px, 3.4375vw, 12px);
    }

    .mobile-footer-links a {
        font-size: 11px;
        font-size: clamp(11px, 3.4375vw, 12px);
        text-align: center;
        vertical-align: middle;
    }

    .mobile-footer-links .divider {
        font-size: 12px;
        vertical-align: middle;
    }
}

.features-grid {
    margin-top: 60px;
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.feature-row.reverse {
    grid-template-columns: 1fr 2fr;
}

.feature-row.reverse .feature-text {
    order: 1;
}

.feature-row.reverse .feature-image {
    order: 2;
}

.feature-image {
    width: 100%;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text {
    padding: 20px 0 20px 20px;
}

.feature-row.reverse .feature-text {
    padding: 20px 20px 20px 0;
}

.feature-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
}

.feature-text p {
    font-size: 20px;
    line-height: 1.4;
}

/* Slide-in animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible,
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.benefit-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 160px;
    margin-bottom: 60px;
    padding: 0;
}

.benefit-block:first-child {
    padding-left: 0;
}

.benefit-block:last-child {
    padding-right: 0;
}

.benefit-block {
    text-align: left;
    transition: none;
    width: 100%;
}

.benefit-block:hover {
    transform: none;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 20px 0;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-block h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
    font-family: 'ProximaNova', sans-serif;
    font-weight: bold;
}

.benefit-block p {
    font-size: 18px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 768px) {
    .benefit-blocks {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 80px;
        margin-bottom: 40px;
    }

    .benefit-block {
        width: 100%;
    }

    .benefit-block h2 {
        font-size: 13px;
        font-size: clamp(13px, 4.0625vw, 18px);
    }

    .benefit-block p {
        font-size: 13px;
        font-size: clamp(13px, 4.0625vw, 18px);
    }

    .benefit-icon {
        width: 33px;
        width: clamp(33px, 10.625vw, 60px);
        height: 33px;
        height: clamp(33px, 10.625vw, 60px);
    }
}

.innovation-grid {
    display: grid;
    grid-template-columns: minmax(0, 70%) minmax(0, 30%);
    /* grid-template-columns: 1fr 1fr; */
    gap: 40px;
    /* gap: 30px; */
    align-items: center;
    position: relative;
    /* margin-top: 40px;
    margin-bottom: 115px; */
}

.innovation-image {
    width: 100%;
    grid-column: 1;
    margin-left: -90px;
}

.innovation-image img {
    width: 858px;
    /* width: 100%; */
    height: auto;
    display: block;
}

.innovation-text-blocks {
    display: flex;
    /* display: grid; */
    flex-direction: column;
    grid-column: 2;
    min-width: 0;
    /* grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%; */
}

.innovation-text-blocks .text-block p {
    margin-bottom: 29px;
    margin-top: 0;
}

.innovation-dot-pattern {
    width: 200px;
    position: absolute;
    right: -290px;
    top: -18px;
    bottom: -18px;
    display: flex;
    gap: 2px;
    z-index: -1;
}

.innovation-dot-pattern img {
    width: 50%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.section-content {
    position: relative;
    overflow: visible;
}

.text-block {
    padding: 10px 0;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.innovation-text-blocks .text-block h3 {
    font-size: 18px;
    margin-bottom: 18px;
    text-transform: uppercase;
    color: var(--innovation-h3-color);
    font-family: 'ProximaNova', sans-serif !important;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 1.26px;
}

.text-block p {
    font-size: 18px;
    line-height: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

@media screen and (max-width: 768px) {
    #innovation {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #innovation h2 {
        font-size: 17px;
        font-size: clamp(17px, 5.3125vw, 38px);
        margin-top: 20px;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .innovation-image {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .innovation-image img {
        width: 100%;
        margin: 0 auto;
    }

    .innovation-text-blocks {
        margin-top: 0px;
        width: 100%;
        grid-column: 1;
    }

    .innovation-dot-pattern {
        display: none;
    }

    .innovation-text-blocks .text-block h3 {
        font-size: 13px;
        font-size: clamp(13px, 4.0625vw, 18px);
    }

    .innovation-text-blocks .text-block p {
        font-size: 13px;
        font-size: clamp(13px, 4.0625vw, 18px);
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1242px) {
    body {
        overflow-x: auto;
    }

    .innovation-dot-pattern {
        display: none;
    }

    #sign-in::before,
    #overview::before,
    #portfolio::before {
        width: 1242px;
    }
}

@media screen and (max-width: 1242px) {
    .innovation-dot-pattern {
        display: none;
    }
}

.portfolio-list {
    margin-top: 40px;
    margin-bottom: 115px;
}

.portfolio {
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 30px;
    padding: 30px 0;
    max-width: 100%;
}

.portfolio-thumbnail {
    width: 100%;
}

.portfolio-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid black;
}

.portfolio-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 85%;
    word-wrap: break-word;
}

.portfolio-content h3 {
    font-size: 18px;
    margin: 0;
    color: var(--portfolio-h3-color);
    font-family: 'ProximaNova', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: 1.26px;
}

.portfolio-content p {
    font-size: 18px;
    line-height: normal;
    margin: 0;
    word-wrap: break-word;
}

.portfolio-link {
    color: black;
    font-weight: bold;
    margin-top: 10px;
    text-decoration: underline;
    font-size: 18px;
    line-height: normal;
}

.portfolio-link:hover {
    text-decoration: underline;
}

.link-separator {
    color: var(--link-separator-color);
    margin: 0 4px;
    font-weight: bold;
}

hr {
    border: none;
    border-top: 1px solid black;
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Responsive styles for portfolio */
@media screen and (max-width: 768px) {
    .portfolio {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .portfolio-thumbnail {
        display: none;
    }

    .portfolio-content {
        max-width: 100%;
    }

    #portfolio h2 {
        font-size: 17px;
        font-size: clamp(17px, 5.3125vw, 38px);
        margin-top: 20px;
    }

    .portfolio-content h3 {
        font-size: 13px;
        font-size: clamp(13px, 4.0625vw, 18px);
    }

    .portfolio-content p {
        font-size: 13px;
        font-size: clamp(13px, 4.0625vw, 18px);
    }

    .portfolio-link {
        font-size: 13px;
        font-size: clamp(13px, 4.0625vw, 18px);
        margin-top: 0;
    }

    .portfolio-list {
        margin-bottom: 10px;
    }
}

.feature-row p + p,
.text-block p + p {
    margin-top: 29px;
}

.feature-row h2 {
    font-size: 30px;
    text-transform: uppercase;
}

@media screen and (min-width: 1242px) {
    body {
        overflow-x: hidden;
    }
}

@media screen and (max-width: 768px) {
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-row .feature-image,
    .feature-row.reverse .feature-image {
        order: 1;
        width: 100%;
    }

    .feature-row .feature-text,
    .feature-row.reverse .feature-text {
        order: 2;
        padding: 0;
        width: 100%;
    }

    .feature-text h2 {
        font-size: 17px;
        font-size: clamp(17px, 5.3125vw, 38px);
    }

    .feature-text p {
        font-size: 13px;
        font-size: clamp(13px, 4.0625vw, 18px);
    }
}

.description-block {
    margin: 40px 0;
}
.description-row-main {
    text-align: center;
    margin-bottom: 48px;
}
.description-main {
    font-size: 30px;
    font-weight: 600;
    margin: 0 auto;
    line-height: 1.2;
    width: 792px;
}
.description-row-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}
.description-col {
    font-size: 21px;
    text-align: left;
    line-height: 1.4;
    width: 419px;
}
@media screen and (max-width: 768px) {
    .description-row-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .description-main, 
    .description-col {
        font-size: 14px;
        font-size: clamp(14px,4.375vw,30px);
        width: 78.75vw;
    }
    .description-col {
        margin: 0 auto;
    }
}

#description {
    position: relative;
    background-color: var(--brand-color);
}

#description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: var(--brand-color);
    z-index: -1;
}

#description,
#description .description-main,
#description .description-col {
    color: white;
}

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

    #description::before {
        width: 1242px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1226px) {
    .content-container {
        overflow: hidden;
    }
}