@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
:root {
    --primarycta: #1C3F5C;
    --secondarycta: #F85992;
    --lightbluebg: #CBFAF5;
    --midblue: #90E5E6;
    --tangblue: #00C4CC;
}

body {
    /* all: revert; */
    font-size: 1em;
    margin: 0px;
    padding: 0px;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
}
li {
    margin-top: 6px;
}
/* p {
    color: var(--primarycta);
    /* text-align: center; */

.hero {
    background-color: var(--lightbluebg);
    padding-top: 5.25rem;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;    
    /* width: 100%; */
    height: 5.25rem;
    background-color: white;
    position: fixed;
    width: 100%;
    top: 0;
    transition: box-shadow 0.3s ease;
    z-index: 99;
}
.scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0, 0.1); /* soft box shadow */
}
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-link-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    width: 172px;
    padding: 0.875rem;
    margin: 2px;
}
.menu-trigger {
    width: 2rem;
    margin: 0;
    padding: 0.875rem;
    margin: 2px;
}

.heading {
    color: var(--primarycta);
    font-family: 'DM Sans', sans-serif;
    font-size: 2em;
    text-align: center;
    padding-top: 3.1825rem;
    padding-bottom: 3rem;
    margin: 0px 20px;
}
.primary-cta {
    background-color: var(--secondarycta);
    border: 0px;
    color: white;
    padding: 0.8125rem;
    border-radius: 0.5rem;
    width: 13.8125rem;
    display: block;
    margin: 0 auto;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
a {
    text-decoration: none;
}
.primary-cta:hover {
    background-color: #ff488a;
    transform: perspective(500px) translateZ(20px);
}
.outline-cta {
    background-color: var(--lightbluebg);
    border: 1px var(--primarycta) solid;
    color: var(--primarycta);
    padding: 0.8125rem;
    border-radius: 0.5rem;
    width: 13.8125rem;
    display: block;
    margin: 0.875rem auto;
    font-size: 1em;
}
.hero-disclaimer {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    margin: 1.3125rem 20px 0px;
    text-align: center;
    color: var(--primarycta);
    padding-bottom: 26px;
}
.featured-section {
    width: 100vw;
    overflow-x: hidden;
    white-space: nowrap;
}
.fs-content {
    animation: scroll 15s linear infinite;
}
.logo-track {
    display: flex;
    position: relative;
    height: 60px;
}

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

.fs-img {
    width: 100%;
    height: auto;
    margin: 20px;
    position: relative;
    filter: grayscale(100%);
}
.video-playback {
    width: 100%;
    display: block;
}
.selling-points {
    background-color: var(--primarycta);
    color: white;
    padding: 0.875rem;
}
.selling-points > h2 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
}
.selling-points > p {
    color: #FFF;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    letter-spacing: 0.1px;
}
.selling-points > li {
    color: #FFF;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    letter-spacing: 0.1px;
}

.proprietary {
    background-color: var(--lightbluebg);
    color: var(--primarycta);
    padding: 0.875rem;
}
.proprietary > h2 {
    font-size: 1.25rem;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
}
.fast-and-free {
    background-color: black;
    color: white;
    padding: 0.875rem;
}
.learn-cta {
    background-color: var(--tangblue);
    border: 0px;
    color: white;
    padding: 0.8125rem;
    border-radius: 0.5rem;
    width: 13.8125rem;
    display: block;
    margin: 0 auto;
    font-size: 1em;
}
/* Footer Starts */
.footer {
    background-color: var(--primarycta);
    color: white;
    padding: 0.875rem;
}
.footer-links >ul {
    padding: 0px;
}
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1.25rem;
}
.footer-links > ul {
    list-style-type: none;
    line-height: 1.5;
}
.footer-logo {
    display: block;
    margin: 0 auto;
}
.copyright {
    text-align: center;
}
/* Mobile Menu Starts */
.mobile-menu-wrap {
    width: 100;
    /* position: relative; */
    top: 0;
}
.menu-close {
    width: 32px;
    height: auto;
    margin: 6px;
}
.logo-close {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.mobile-menu {
    background-color: white;
    /* padding: 0.875rem; */
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width:100vw;
    height: 100vh;
    overflow: hidden;
}
.mobile-menu-links {
    padding: 0;
}
.mobile-menu-links > li {
    font-size: 1.25rem;
    padding-left: 0px;
    color: var(--primarycta);
    margin: 0;
    padding: 0.875rem;
    padding-left: -1.875rem; 
}
.mobile-menu-links > a {
    font-size: 1.25rem;
    list-style-type: none;
    text-decoration: none;
    color: var(--primarycta);
    margin: 0px;
    display: block;
    padding: 0.875rem;
}
.mobile-menu-links > a:hover {
    font-weight: bold;
    color: var(--secondarycta);
    cursor: pointer;
}
.mobile-menu-logo {
    display: block;
    margin: 6px;
    width: 160px;
}
hr {
    color: #efefef;
    background-color: #efefef;
    padding: 0;
    margin: 0;
    border: 1px solid;
}
/* Toggle this CSS on menu trigger */
.show {
    display: block;
}
.hide {
    display: none;
}
#hide {
    display: none;
}


.modal-open {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
}
.desktop-menu {
    display: none;
}
.footer-links a {
    text-decoration: none;
    color: #fff;
}

/* Mobile Ends */

/* Tablet Design Begins */
@media screen and (min-width: 650px) {
    .desktop-menu {
        display: none;
    }
    .heading {
        text-align: left;
    }
    .hero-buttons {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 0px;
    }
    .sell {
        margin: 0.875rem;
    }
    .buy {
        margin: 0.875rem
    }
    .hero-disclaimer {
        text-align: left;
    }
    .selling-points {
        padding: 2.625rem;
    }
    .learn-cta {
        margin-top: 2.625rem;
    }
    .proprietary {
        padding: 2.625rem;
    }
    .proprietary > button {
        margin-top: 2.625rem;
        margin-left: auto;
        margin-right: auto;
    }
    .fast-and-free {
        padding: 2.625rem;
    }
    .fast-and-free > button {
        margin-top: 2.625rem;
        margin-left: auto;
        margin-right: auto;
    }
}
/* Desktop Version Begins */
@media screen and (min-width: 800px) {
    .menu-trigger {
        display: none;
    }
    /* .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100vw;
        background-color: lightblue;
    } */
    .hero {
        height: 26.25rem;
        
    }
    .desktop-menu {
        margin: 0;
        padding: 0.875rem;
        margin: 2px;
        display: flex;
        gap: 30px;
        align-items: center;
    }
    .desktop-menu > li {
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 20px; /* 125% */
    letter-spacing: 0.1px;
    }
    .desktop-menu > a {
        text-decoration: none;
        color: var(--primarycta);
        list-style-type: none;
        font-size: 1.2rem;
        font-weight: normal;
    }
    .desktop-menu > a:hover {
        font-weight: bold;
        color: var(--secondarycta);
    }
    .desktop-menu > li {
        list-style-type: none;
        padding-left: 0px;
    }
    .desktop-menu > li {
        color: var(--primarycta);
        font-size: 1.2rem;
    }
    .desktop-menu > li:hover {
        font-weight: bold;
        color: var(--secondarycta)
    }


    .heading {
        padding-bottom: 28px;
        padding-top: 80px;
        font-size: 48px;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-disclaimer {
        text-align: center;
    }
    .selling-points {
        /* padding: 5.25rem; */
        padding-top: 2.625rem;
        width: 50%;
    }
    .selling-points ul > li {
        margin-top: 8px;
    }
    .video-playback {
        width: 42%;
        height: 42%;
        padding: 1.75rem;
        background-color: var(--primarycta);
    }
    .desktop-video-playback {
        display: flex;
        align-items: center;
        background-color: var(--primarycta);
    }
    .more-info {
        display: flex;
    }
    .proprietary {
        width: 50%;
    }
    .fast-and-free {
        width: 50%;
    }
    .footer-links-wrap {
        display: flex;
        justify-content: start;
        padding-top: 5.25rem;
        padding-bottom: 5.25rem;
        padding-left: 2.625rem;
        gap: 100px;
    }
    .terms > li, .engagement-links > li, .info-links > li {
        margin-bottom: 14px;
    }
    .social-links {
        margin-top: 2.625rem;
        gap: 20px;
    }

}