/* CSS Reset */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

body {
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}
a {     
    color: inherit; 
    text-decoration: none;
}
#root,
#__next {
    isolation: isolate;
}   


/* Scroll Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    25% {
        opacity: .25;
    }
    50% {
        opacity: .3;
    }
    75% {
        opacity: .9;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInBottom {
    from {
        opacity: .5;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInBottomLong {
    from {
        transform: translateY(30px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        transform: translateX(30px);
    }
    to {
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range: cover 0% cover 10%;
    animation-fill-mode: both;
}

.slide-in-bottom {
    animation: slideInBottom linear;
    animation-timeline: view();
    animation-range: cover 10% cover 25%;
    animation-fill-mode: both;
}
.slide-in-bottom-long {
    animation: slideInBottomLong linear;
    animation-timeline: view();  
    animation-range: entry 20%;
    animation-fill-mode: both;
}

.slide-in-left {
    animation: slideInLeft linear;
    animation-timeline: view();
    animation-range: cover 10% cover 25%;
    animation-fill-mode: both;
}
.slide-in-right {
    animation: slideInRight linear;
    animation-timeline: view();
    animation-range: cover 10% cover 25%;
    animation-fill-mode: both;
}

/* GLOBAL CSS VARIABLES AND STYLES */
:root{
    interpolate-size: allow-keywords;
    --bg-dark:#042b4eff;
    --bg-light:#f5f5f5ff;
    --bg-gradient-light:#2592F4ff;
    --accent-primary:#0B5EA8ff;
    --accent-secondary:#b3ada8ff;
    --font-color-dark:#3d3d3dff;
    --font-color-light:#f5f5f5ff;
    --br-default: 40px;
    --br-medium: 20px;
    --br-small: 10px;

}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: var(--bg-light);
    color: var(--font-color-dark);
}
h2{
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: .9;
}
a{
    cursor: pointer;
}
.icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    & p{
        font-weight: 600;

    };
}
.icon {
    display: none;
    font-size: 2rem;
    color: var(--accent-primary);
}
.bold-text {
    font-weight: bold;
}
.content-text {
    padding: .5rem .25rem;
}
.button-link {
    display: inline-block;
    background: var(--accent-primary);
    color: var(--font-color-light);
    max-width: fit-content;
    padding: .75rem 1.25rem;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.2;
    border-radius: var(--br-default);
    border: 2px solid var(--bg-light);
    box-shadow: -2px 2px 10px var(--accent-secondary);
    cursor: pointer;
    transition: all .2s ease;
    & span {
        display: block;
        font-size: 1rem;
        font-weight: 300;
    }
    &:hover, &:focus{
        transition: all .2s ease;
        background-color: var(--bg-light);
        color: var(--font-color-dark);
        outline: 2px solid var(--bg-gradient-light);
    }
}

.phone-link{
    text-decoration: underline;
}

/* END GLOBAL STYLES */

/* SECTION STYLES BASED ON ORDER OF APPEARANCE INDEX HTML PAGE */
/* Theses styles are grouped by section with nesting keeping everything inside the section with the media queries following */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    background: var(--bg-dark);
    font-size: 1.25rem;
    & picture{
        height: 150px;
        display: flex;
        align-items: center;
        & img{
            height: 80%;
        }
    }
}
.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
    padding: 0.5rem;
    & span {
        width: 35px;
        height: 4px;
        background: var(--font-color-light);
        border-radius: 2px;
        transition: all 0.3s ease;
        transition-behavior: allow-discrete;
    }
}
.nav-list {
    transition: transform 0.3s ease, display 0.3s ease;
    transition-behavior: allow-discrete;
    list-style: none;
    display: none;
    position: fixed;
    flex-direction: column;
    background: var(--bg-light);
    border: none;
    border-bottom-left-radius: var(--br-medium);
    inset: auto 0 auto auto;
    width: 60%;
    max-width: 300px;
    transform: translateX(100%); 
    .nav-item{
        display: flex;
        align-items: center;
        a{
            padding: 1.5rem 0 1.5rem 2rem;
            color: var(--font-color-dark);
            text-decoration: none;
            font-weight: 500;
            width: 100%;
            display: block;
            border-top: 2px solid var(--accent-primary);
            &:hover,&:focus{
                background: var(--bg-dark);
                color: var(--font-color-light);
            }
        }
        &:first-child a {
            border-top: none;
            padding-top: 10vh;
        }
    }
    
}

.nav-list[popover]:popover-open {
    display: flex;
    transform: translateX(0);
    box-shadow:-5px 5px 15px var(--bg-dark);
}

@starting-style {
    .nav-list[popover]:popover-open {
        transform: translateX(100%);
    }
}
@media (min-width: 769px) {
    .icon{
        display: block;
    }
    .menu-toggle {
        display: none;
    }
    header{
        position:sticky;
        top:0;
        isolation: isolate;
        z-index: 100;
        .navbar picture{
            height: 180px;
        }
    }
    .nav-list {
        display: flex;
        width: auto;
        max-width: none;
        padding: 0;
        margin-right: 5vw;
        background: transparent;
        flex-direction: row;
        align-items: center;
        transform: none;
        font-size: 1.5rem;
        .nav-item {
            margin: 0 1rem;
            &:first-child a{
                padding-top: .5rem;
            }
            & a{
                margin: 0;
                padding: .5rem;
                color: var(--font-color-light);
                border: none;
                :focus,&:hover{
                    border-bottom: 2px solid var(--accent-primary);
                    
                }   
            }
        }
    }
}
.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color:var(--font-color-light);
    padding: 4rem 2rem;
    background-color: var(--bg-dark);
    background-image: url(./resources/topo-near-loop.svg),radial-gradient( circle at left in oklch, #fff, transparent 30vh);
    background-size: 120% 100%;
    background-blend-mode: overlay;
    background-position: 0 0, 0 0;
    background-repeat: no-repeat;
    border-radius: 0 0 var(--br-default) var(--br-default);
    & h1{
        font-size: 3rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    & p{
        font-size: 1.25rem;
        font-weight: 500;
        max-width: 600px;
        padding-block: 2rem;
    }
    & img{
        object-fit: cover;
        border-radius: 20px;
        margin-top: 2rem;
    }
}
    @media (min-width: 769px) {
        .hero{
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            background-size: 120% 100%;
            background-position:0 0, 0 0;
            padding: 6rem 4rem;
            h1{
                font-size: 4rem;;
            }
            picture{
                background-size: contain;
                max-width: 600px;
                flex: 0 0 50%;
                align-self: center;
                img{
                    border-radius: var(--br-small);
                    width: 100%;
                    height:100%;
                }
            }
    }
        .flex-wrapper{
            flex: 0 0 50%;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            text-align: left;
            .button-link{
                align-self: center;
                text-align: center;
            }
        }
}

.about-us-summary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: auto;

    & picture {
        width: 100%;
        position: relative;
        display: block;
        &::after {
            content: "";
            position: absolute;
            width: 30%;
            height: 100%;
            background-image: radial-gradient(circle,rgb(from var(--accent-primary) r g b / .7) 10px, transparent 2px);
            background-size: 16% 10%;
            zoom:.2;
            background-repeat: repeat;
            top: -20%;
            left: -5%;
            z-index: 1;
        }
    }
    & img {
        height: auto;
        object-fit: cover;
        width: 100%;
        margin: 0 0rem 0 1rem;
        border-radius: var(--br-small);
        position: relative;
        z-index: 2;
    }
    & h2 {
        color:var(--accent-primary);
    }
    .icon-wrapper p{
        font-weight: 500;
    }
}
@media (min-width: 769px) {
    .about-us-summary {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        .icon-wrapper p{
            color: var(--bg-dark);
            font-weight: 600;           
        }
        h2{
            font-size: 2.5rem;
        }
        & picture {
            flex: 0 0 50%;
            display: flex;
            align-items: center;
        }
        & img {
            width: 100%;
            height: auto;
        }
    }
}

.how-it-works {
    padding: 0 2rem 2rem;
    border-radius: var(--br-default);
    box-shadow:0 50px 0 var(--bg-dark);

    & h2{
        color: var(--text-color-dark);
    }
    .subtext{
        font-weight: 500;
        padding: 1rem 0;
    }
    ul{
        border-top: 2px solid rgb(from var(--accent-primary) r g b / .5);
        padding: 2rem 0;
        list-style: none;
        position: relative;
        &::before {
                box-sizing: content-box;
                content: "";
                position: absolute;
                width: calc(100% + 4rem);
                height: 100%;
                overflow: hidden;
                top:0;
                left:-2rem;
                background-image: url(./resources/topo-diagonal-recurve.svg);
                background-size: 150% 100%;
                background-position: -15vw 0;
                filter: opacity(0.3);
                z-index: -1;
            }
        li{
            margin: 0 auto;
        }
        p{
            padding-left: 1rem;
        }
    }
    .card{
        color: var(--font-color-light);
        background-image: radial-gradient(circle at 110% -10% , #fff, oklch(from var(--bg-gradient-light) 55% c h) 30%);
        border-radius: var(--br-medium);
        padding: 2rem 1rem;
        gap: 1rem;
        margin: 0 auto 1rem auto;
        box-shadow: -5px 5px 5px var(--accent-secondary);
        h3{
            font-size:1.5rem;
            font-weight: 900;
            +p{
                font-weight: bolder;
                padding:1rem 0;
                font-size:1.2rem;
            }
        }
        p{
            font-weight: 600;
            font-size: 1.1rem;
        }
    }
}
@media (min-width: 769px) {
    .how-it-works {
        margin: auto;
        padding-bottom: 4rem;
        h2{
            max-width: 1200px;
            margin: 0 auto;
            font-size: 3rem;
            color: var(--bg-dark);
        }
        .subtext{
            font-size: 1.25rem;
            max-width: 1200px;
            margin: 0 auto 0 auto;
        }
        ul{
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding-bottom: 2rem;
            li{
                max-width: 1000px;
                .icon-wrapper {
                    .icon{
                        font-size: 3rem;
                    }
                    p{
                        font-weight: 500;
                        font-size: 1.75rem;
                    }

                }
            }
            &::before {
                background-size: 150% 140%;
                width: 140dvw;
                left: -30vw;
            }
        }
        .flex-wrapper{
            display: flex;
            flex-direction: row;
            margin: 2rem auto;
            max-width: 1200px;
            gap: 2rem;
            justify-content: center;
            .card{
                flex: 0 1 400px;
                padding: 2rem;
                h3{
                    font-size: 2rem;
                }
                p{
                    font-size: 1.25rem;
                }
            }
        }
    }
}
.clients-voices{
    background:linear-gradient(var(--bg-dark) 200px,var(--bg-gradient-light));
    color:var(--font-color-light);
    padding: 4rem 2rem;
    box-shadow: 0 80px 0 var(--bg-gradient-light);
    .title-area{
        margin-bottom:2rem;
    }
    & h2{
        font-size: 2.5rem;
    }
    .testimonial{
        padding: 1rem 0;
        border-top: 2px solid var(--bg-light);
        
        &:last-child{
            border-bottom: 2px solid var(--bg-light);
        }
        & h3{
            font-size: 1.5rem;
            font-weight: 700;
        }
        & p{
            font-weight: 500;
            padding: 1rem 0;
        }
}
}
@media (min-width: 769px) {
    .clients-voices{
        display: flex;
        flex-direction: column;
        align-items: center;
        .title-area{
            max-width: 1200px;
            text-align: center;
            h2{
                font-size: 3rem;
            }
        }
        .testimonial{
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: flex-start;
            gap: 2rem;
            padding: 4rem 0;

            & h3{
                font-size: 1.75rem;
                flex: 1 1 50%;
                text-align: center;
            }
            & p{
                padding:  0;
                font-size: 1.25rem;
                flex: 1 1 50%;
            }
        }
    
}
}
.faqs{
    padding:4rem 2rem;
    border-radius: var(--br-default);
    background:var(--bg-light);
    .title-area{
        margin-bottom:2rem;
    }
    h2{
        font-size: 2rem;
        line-height: 1.3;
    }
    .details-container details{
        border: 1px solid var(--bg-gradient-light);
        border-radius: var(--br-small);
        margin-bottom: 1rem;
        padding: 1rem;
        &::details-content{
            block-size: 0%;
            transition: block-size 0.3s ease, content-visibility 0.3s ease;
            transition-behavior: allow-discrete;
            overflow: hidden;
        }
         & summary{
                position: relative;
                cursor: pointer;
                list-style: none;
                list-style-position: outside;
                padding: 0 2rem 0 0 ;
                font-weight: bold;
                transition:all .3s ease;
                transition-behavior: allow-discrete;
            }
        
        summary::before {
                content: "▸";
                position: absolute;
                font-size:2rem;
                right:.5rem;
                top: -.75rem;
                transition: transform 0.2s ease;
                rotate: -90deg;
            }
        

        & p{
            padding-top: .5rem;
            font-weight: 500;
        }

    }
    details[open] {
        background: var(--accent-primary);
        color: var(--font-color-light);
        box-shadow: -5px 5px 10px var(--accent-secondary);
        }
    details[open] summary::before {
        transform: rotate(180deg);
    }
    details[open]::details-content {
        block-size: auto;
    }
}
@media (min-width: 769px) {
    .faqs{
        display: flex;
        justify-content: center;
        gap: 2rem;
        padding-top: 6rem;
        .title-area{
            max-width: 600px;
            h2{
                font-size: 3rem;
            }
        }
        details{
            max-width: 600px;
        }
    }
}
.contact-us{
    padding: 2rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    & h2{
        font-size: 1rem;
    }
    & p{
        font-weight: 500;
        max-width: 600px;
        margin: .5rem auto 0 auto;
        text-align: center;
    }
}
.lower-cta{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
    &::before{
        content: "";
        position: absolute;
        height: 100%;
        inset: 0 0 0 -10vw;
        background-image: url(./resources/topo-s-curve.svg);
            background-size: cover;
            background-position: center;
            z-index:-1;
            filter:opacity(.3);
    }
  
    & h2{
        font-size: 2rem;
        margin-bottom: 1rem;
        color:var(--accent-primary);
        line-height:1.25;
        + p{
            margin-bottom: 1rem;
        }
    }

}
@media (min-width: 769px) {
    .lower-cta:before{
      background-position: 0 -5vh;
    }
}
.footer-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-dark);
    color: var(--font-color-light);
    padding: 4rem 0;
    margin: 0 2rem 2rem;
    border-radius: var(--br-medium);
    .footer-links{
        display: flex;
        flex-direction: column;
        align-items: left;
        padding: 4rem 2rem 0;
        gap: .5rem;
        & a{
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
            padding: .25rem 0;
        }
    }
}
.copyright{
    margin:0 auto 2rem;
    text-align: center;
}
@media (min-width: 769px) {
        .footer-container{   
            padding: 8rem 0;
            .flex-wrapper{
                display: flex;
                flex-direction: row;
                align-items: flex-start;
                justify-content: space-around;
                max-width: 1200px;
                gap: 10vw;
                .footer-links{
                    padding: 0;
                }
            }
        }         
}

/* STYLES FOR CONTACT US PAGE */
.process-list{
    padding: 4rem 3rem; 
    position: relative;
    .title-area{
        margin: 2rem auto;
        border-bottom: 1px solid var(--accent-primary);
        h2{
            font-size: 2rem;
            line-height: 1.25;
            span{
                color: var(--accent-primary)
            }
        }
    }
    .flex-wrapper{
        &::before {
                content: "";
                position: absolute;
                height: 100%;
                width: 150vw;
                inset: 0 0 0 -40vw;
                background-image: url(./resources/topo-s-curve.svg);
                background-size: cover;
                background-position: 0 5vh;
                z-index: -1;
                filter: opacity(.2);
            }
            .icon-wrapper{
                p{
                    font-size: 1.25rem;
                }
            }
        }
}

/* Contact Form Styles */
.contact-form {
    padding: 4rem 0;
    border-radius: var(--br-default);
    box-shadow: 0 4rem var(--bg-dark);
    background: radial-gradient(farthest-corner circle at right in oklch, rgb(from var(--bg-gradient-light) r g b / .3) , var(--bg-light) 400px);
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    background: hsl(from var(--bg-light) h s 100%);
    padding: 2rem;
    border-radius: var(--br-small);
}

.contact-form label {
    font-weight: bold;
}

.contact-form input {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--accent-secondary);
    border-radius: var(--br-small);
    font-size: 1rem;
    max-width: 100%;
}

.contact-form input[type="checkbox"] {
    margin-right: 0.5rem;
}
.checkbox-wrapper {
    padding: 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    input{
        margin-top: .25rem;
        align-self: flex-start;
    }
}

.contact-form button {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-primary);
    color: var(--font-color-light);
    border: none;
    border-radius: var(--br-medium);
    font-size: 1rem;
    cursor: pointer;
    margin: 1rem auto;
    justify-self: center;
    align-self: center;
}

.link-group {
    display: flex;
    margin-top: 1rem auto;
    align-self: center;
    a{
        padding:.5rem 1rem;
        width: 200px;
    }
    :first-child{
        text-align: right;
        border-right: 1px solid var(--accent-secondary);
    }
}
.commitment{
    text-align: center;
    padding: 2rem;
    h2{
        line-height: 1.25;
    }

}

@media (min-width: 768px) {
    .process-list{
        margin: 0 auto;
        max-width: 1200px;
        .title-area{
            margin: 0;
            max-width: 600px;
            justify-self: left;
            align-self: left;
        }
        .flex-wrapper{
            max-width: 1200px;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            margin: 4rem 0;
            gap: 1rem;
            &::before{
                background-position: 0 0;
            }
            .icon-wrapper{
                flex:1 1 45%;
                .icon{
                    font-size: 3rem;
                }
                p{
                    font-size: 1.75rem;
                    font-weight: 500;
                }
            }
        }

    }
    .contact-form{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 4rem 2rem;
    }
    .contact-form form,
    .commitment {
        flex: 1 1 50%;
        max-width: 600px;
    }

    .commitment{
        text-align: left;
        margin: 0;
    }
}
/* OUR PROCESS PAGE STYLES */
.process-hero .flex-wrapper{
        p{
            padding-block: 0;
            padding-bottom: 2rem;
        }
}
.process{
    padding: 4rem 2rem; 
    .infographic{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 4rem auto;
        padding: 2rem 1.5rem;
        border-radius: var(--br-default);
        font-weight: 600;
        font-size: 1.25rem;
        position: relative;
        box-shadow: -2px 2px 5px var(--accent-secondary);
        & img{
            object-fit: contain;
            height: auto;
            z-index: 2;
        }
        & .flex-wrapper{
            h2{
                font-size: 2.5rem;
            }
        }
    }
    .connect{
        background-image: radial-gradient(farthest-corner circle at right in oklch, rgb(from var(--bg-gradient-light) r g b / .3), var(--bg-light) 250px);
    }
    .strategy{
        background-image: radial-gradient(farthest-corner circle at top right in oklch, rgb(from var(--bg-gradient-light) r g b / .3), var(--bg-light) 200px);
                &::before {
                        content: "";
                        position: absolute;
                        height: 100%;
                        inset: 0;
                        background-image: url(./resources/topo-near-loop.svg);
                        background-size: cover;
                        z-index: 1;
                        filter: opacity(.2);
                    }
    }
    .authorize{
            background-image: radial-gradient(farthest-corner circle at bottom left in oklch, rgb(from var(--bg-gradient-light) r g b / .3), var(--bg-light) 150px);
                &::before {
                    content: "";
                    position: absolute;
                    height: 100%;
                    inset: 0;
                    background-image: url(./resources/topo-diagonal-recurve.svg);
                    background-size: cover;
                    z-index: 1;
                    filter: opacity(.3);
                }
    }
    .documents{
        background-image: radial-gradient(farthest-corner circle at top left in oklch, rgb(from var(--bg-gradient-light) r g b / .3), var(--bg-light) 150px);
        &::before {            
            content: "";
            position: absolute;
            height: 100%;
            inset: 0;
            background-image: url(./resources/topo-s-curve.svg);
            background-size: cover;
            background-position: 0 -200px;
            z-index: 1;
            filter: opacity(.3);
        }
    }
    .tracking{
        background-image: radial-gradient(farthest-corner circle at top right in oklch, rgb(from var(--bg-gradient-light) r g b / .3), var(--bg-light) 150px);
        &::before {            
            content: "";
            position: absolute;
            height: 100%;
            inset: 0;
            background-image: url(./resources/topo-near-loop.svg);
            background-size: cover;
            z-index: 1;
            filter: opacity(.2);
        }
    }
    .payment{
        background-image: radial-gradient(farthest-corner circle at top left in oklch, rgb(from var(--bg-gradient-light) r g b / .3), var(--bg-light) 150px);
        &::before {            
            content: "";
            position: absolute;
            height: 100%;
            inset: 0;
            background-image: url(./resources/topo-diagonal-recurve.svg);
            background-size: cover;
            z-index: 1;
            filter: opacity(.3);
        }
    }
}
@media (min-width: 769px) {
    .process{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4rem;
        .infographic{
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin: 0;
            width:100%;
            max-width: 1200px;
            & .flex-wrapper{
                flex:0 1 50%;
                h2{
                    font-size: 3rem;
                }
                p{
                    line-height: 1.5;
                    font-weight: 500;
                    font-size: 1.5rem;
                }
            }
            img {
                flex: 0 1 50%;
                max-width: 600px;
                height: auto;
                min-width: 0;
            }
        }
    }
    .infographic.strategy,
    .infographic.documents,
    .infographic.payment{
        .flex-wrapper{
            order:1;
        }
        img{
            order:2;
        }
    }
}

/* TERMS AND CONDITIONS PAGE STYLES */
.terms .flex-wrapper{
    justify-content: center;
    align-items: center;
    text-align: center;
    h1{
        width: 80dvw;
        max-width: 1200px;
    }
    p{
        max-width: 1200px;
        
    }

}
.terms-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    gap:.5rem;
    padding: 4rem 2rem;
    max-width: 1000px;
    h3{
        margin-top: 1.5rem;
    }
}

/* PRIVACY POLICY PAGE STYLES */
.privacy .flex-wrapper{
        justify-content: center;
        align-items: center;
        text-align: center;
        h1 {
            width: 80dvw;
            max-width: 1200px;
        }
        p {
            max-width: 1200px;
        }
}
.privacy-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        gap: .5rem;
        padding: 4rem 2rem;
        max-width: 1000px;
        h3 {
            margin-top: 1.5rem;
        }
}