*, *::before, *::after{
    box-sizing: border-box;
}
:root{
    font-size: 15px;
}
@media (min-width: 992px) {
    :root{
        font-size: 16px;
    }
}
@media (min-width: 1200px) {
    :root{
        font-size: 17px;
    }
}
@media (min-width: 1400px) {
    :root{
        font-size: 18px;
    }
}

html{
    height: 100%;
    scroll-behavior: smooth;
}
body{
    box-sizing: border-box;
    width: 100%; min-height: 100%;
    margin: 0;
    padding: 2rem;
    font-family: roc-grotesk, sans-serif;
    font-weight: 300;
    color: #1D1D1B;
}
main{
    width: 100%;
    min-width: 220px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
body>footer{
    font-size: .75rem;
    text-align: center;
}
.bg{
    overflow: hidden;
    background-color: #00CF83;
    position: fixed;
    inset: 0;
    z-index: -1;
}
.bg>video{
    width: calc(100% + 8rem);
    height: calc(100% + 8rem);
    margin: -4rem;
    object-fit: cover;
    filter: blur(2rem);
}
.logo{
    width: 30rem;
    max-width: 60vw;
    display: inline-block;
    margin-top: 3rem;
}
.container{
    width: 100%;
    padding: 3rem 0;
    background-color: #efefef;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: .15em;
}
.container-slide{
    min-height: calc(100vh - 10rem);
}
.container>*{
    flex-shrink: 0;
}
.container-content{
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0;
    gap: 0;
    min-height: unset;
}
.text-column{
    padding: 4rem 2rem;
    width: 18rem;
    flex-grow: 1;
    max-width: 100%;
    ooutline: green 1px solid;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
.text-column>*{
    margin: 1em 0;
}
.text-column>ul{
    margin-top: -1em;
    padding-left: 2em;
}
.image-column{
    width: min(100%, 100vh);
    ooutline: red 1px solid;
    position: relative;
}
.image{
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    position: sticky;
    top: 0;
    ooutline: blue 1px solid;
}


h1, h2, h3{
    font-family: roc-grotesk, sans-serif;
}
h1{
    font-weight: 500;
    text-align: center;
    font-size: 1.5rem;
}
h2{
    font-size: 4rem;
}
h3{
    font-size: 2rem;
}
p{
    line-height: 1.5em;
}
a{
    display: inline-block;
    color: #1D1D1B;
    background-color: transparent;
    padding: .2rem .4rem .1rem;
    margin-left: -.4rem;
    transition: background-color .2s ease-in-out;
}
li::marker{
    color: #00CF83;
}
a:hover{
    background-color: #fff;
}
a.btn{
    position: relative;
    display: inline-block;
    padding: .65em 1.5em .5em;
    margin: .25em .4em;
    background-color: #fff;
    border: transparent 2px solid;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10em;
    margin-top: .5em;
    transition: all .2s ease-in-out;
}
a.btn.btn-left{
    margin-left: 0;
}
a.btn.btn-shadow{
    box-shadow: .1em .1em 0px #1D1D1B, .2em .2em 0px #1D1D1B, .3em .3em 0px #1D1D1B, .4em .4em 0px #1D1D1B, .5em .5em 0px #1D1D1B;
}
a.btn.btn-outline{
    background-color: transparent !important;
    border-color: #1D1D1B;
}
a.btn.btn-primary{
    background-color: #00CF83;
    border-color: #00CF83;
}
a.btn:hover{
    background-color: #fc426a;
    border-color: #fc426a;
}
a.btn.btn-shadow:hover{
    translate: .4em .4em;
    box-shadow: 0em 0em 0px #1D1D1B, 0em 0em 0px #1D1D1B, 0em 0em 0px #1D1D1B, 0em 0em 0px #1D1D1B, .1em .1em 0px #1D1D1B;
}
a.btn::after{
    position: absolute;
    content:'';
    inset: -1em;
}
a.btn.btn-shadow:hover::after{
    translate: -.4em -.4em;
}
a.btn:active{
    background-color: #ffffff;
}
a.btn.btn-shadow:active{
    translate: .5em .5em;
    box-shadow: 0em 0em 0px #1D1D1B, 0em 0em 0px #1D1D1B, 0em 0em 0px #1D1D1B, 0em 0em 0px #1D1D1B, .02em .02em 0px #1D1D1B;
}
a.btn:active::after{
    translate: -.5em -.5em;
}