*{
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
    -webkit-font-smoothing:antialiased;
}

body.grad-option-1{
    --color-1:#ec6348;
    --color-2:#e772e7;
    --color-3:#2dcce8;
}
body.grad-option-2{
    --color-1:#e948ec;
    --color-2:#72c8e7;
    --color-3:#2de8c3;
}
body.grad-option-3{
    --color-1:#48ecd1;
    --color-2:#72c8e7;
    --color-3:#2d4fe8; 
}
body.grad-option-4{
    --color-1:#a848ec;
    --color-2:#e192b7;
    --color-3:#e82d91; 
}
body.grad-option-5{
    --color-1:#ecb848;
    --color-2:#e1a292;
    --color-3:#e82d2d; 
}

body{
    background-color: #fff;
    color: #1d1d1f;
    overflow-x: hidden;
    --gradient:linear-gradient(to right,var(--color-1),var(--color-2),var(--color-3));
}
.gradient-wrapper{
    width: 100vw;
    height: 400px;
    background-image: var(--gradient);
    /* background-image: linear-gradient(to right,#ec48b6,#9b72e7,#2dcce8); */
    filter: blur(110px);
    /* -webkit-filter: blur(110px); */
    top: -100px;
    position: absolute;
    left: 0;
    z-index: -1;
}
.hero-section{
    width: 100vw;
    height: 100svh;
    min-height: 400px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@keyframes showElem{
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
.hero-section-title{
    font-size: 36px;
    text-align: center;
     animation: showElem .3s .3s 1 both;
     max-width: 550px;
}
.hero-section-subhead{
    font-size: 19px;
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
    animation: showElem .3s .5s 1 both;
}
.hero-section-logo{
    height: 100px;
    margin-bottom: 80px;
    filter:  brightness(0%);
}
.cta-hero-section{
    display: flex;
    justify-content: space-between;
    margin-top: 120px;
    animation: showElem .3s .7s 1 both;
}
.cta-a{
    text-decoration: none;
}
.cta-btn{
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #1d1d1f;
    color: #1d1d1f;
    border-radius: 25px;
    background-color: transparent;
    font-size: 16px;
    padding: 12px 24px;
    margin: 0 10px;
    cursor: pointer;
    font-weight: 500;
    transition: .3s;
}
.cta-btn:hover{
    background-color: #1d1d1f;
    color: #f5f5f7;
}
.cta-a:first-child .cta-btn{
    background-color: #1d1d1f;
    color: #f5f5f7;
}
.cta-a:last-child .cta-btn{
    background-color: #fff;
    border:0;
    position: relative;
}
.cta-a:last-child .cta-btn:hover{
    background-color: rgba(0,0,0,.5);
}
.cta-a:last-child .cta-btn::after{

    background-image: var(--gradient);
    position: absolute;
    left: -2px;
    top: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 25px;
    z-index: -1;
    display: block;
    content: '';
}
.learn-more-section{
    width: 100vw;
    height: 100svh;
    overflow-y: scroll;
    overflow-x: hidden;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
    z-index: 10;
}
.learn-more-section.show{
    pointer-events: unset;
    opacity: 1;
}

.learn-more-section .gradient-wrapper{
    rotate: 45deg;
}
.learn-more-section-wrapper{
    padding: 60px 30px;
    max-width: 600px;
    margin: 0 auto;

}
.learn-more-headline{
    font-size: 32px;
    line-height: 1.3;
    /* font-weight: 600; */
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: transform .3s .3s, opacity .3s .3s;
}
.learn-more-p{
    font-size: 21px;
    line-height: 1.35;
    opacity: 0;
    transform: translateY(50px);
    transition: transform .3s .5s, opacity .3s .5s;
    
}
.learn-more-grid-section{
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2,1fr);
    grid-gap: 15px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(50px);
    transition: transform .3s .7s, opacity .3s .7s;
}
.learn-more-grid-item{
    background-color: #f5f5f7;
  
    border-radius: 12px;
    padding: 20px;
    height: 150px;
}
.grid-item-3{
    grid-column: 1/3;
}
.learn-more-grid-icon span{
    font-size:50px;
}
.learn-more-grid-headline{
    font-size: 19px;
    line-height: 1.3;
    margin-top: 10px;
}
.grid-item-3 .learn-more-grid-item-wrapper{
    display: flex;
    align-items: center;
    height: 100%;
}
.grid-item-3 .learn-more-grid-headline{
    margin-top: 0;
    margin-left: 30px;
}

/* .grid-item-1 .learn-more-grid-icon{
    color: var(--color-1);
}
.grid-item-2 .learn-more-grid-icon{
    color: var(--color-2);
}
.grid-item-3 .learn-more-grid-icon{
    color: var(--color-3);
} */
/* .grid-item-1 .colored{
    color: var(--color-1);
}
.grid-item-2 .colored{
    color: var(--color-2);
}
.grid-item-3 .colored{
    color: var(--color-3);
} */
.close-icon{
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(255,255,255,.25);
    border: 1px solid rgba(0,0,0,.1);
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 11;
}


.learn-more-section.show .learn-more-headline,
.learn-more-section.show .learn-more-p,
.learn-more-section.show .learn-more-grid-section{
    opacity: 1;
    transform: translateY(0);
}
@media(min-width:770px){
    .hero-section-logo{
        height: 120px;
    }
    .hero-section-title{
        max-width: 700px;
        font-size: 48px;
    }
    .hero-section-subhead{
        font-size: 21px;
    }
    .cta-btn{
        font-size: 18px;
    }
    .learn-more-section{
        padding-top: 50px;
    }
    .learn-more-section-wrapper{
        max-width: 800px;
    }
    .learn-more-headline{
        font-size: 42px;
        margin-bottom: 40px;
    }
    .learn-more-p{
        font-size: 23px;
        line-height: 1.5;
    }
    .learn-more-grid-item{
        height: 200px;
    }
    .learn-more-grid-item-wrapper{
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .grid-item-3 .learn-more-grid-item-wrapper{
        flex-direction: row;
    }
    .learn-more-grid-icon span{
        font-size:70px;
    }
    .learn-more-grid-headline{
        font-size: 24px;
    }
}