@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@800&display=swap');
body,html,main,header,footer{
    padding:0;
    margin:0;
    font-family: Inter;
    font-weight: normal;
}
.bg-dark{
    background:#493867;
}
h1{
    font-family: Inter;
    font-weight: 800;
    color: #fff;
    font-size: 4vw;
    line-height: 5vw;
}
h2{
    font-family: Inter;
    font-weight: 400;
    color: #fff;
    font-size: 1.3vw;
    line-height: 2vw;
    padding-bottom: 3rem;
}
.bg-blur{
    background-image: url("assets/bgblur.png");
    background-size: 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
}
.flex{
    display: flex;
}
.flex-col{
    flex-direction: column;
}
.flex-row{
    flex-direction: row;
}
.min-h-full{
    min-height: 100%;
}
.min-h-screen{
    min-height: 100vh;
}
.w-full{
    width: 100%;
}
.relative{
    position: relative;
}
.top-0{
    top: 0;
}
.block{
    display: block;
}
.justify-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.text-center{
    text-align: center;
}
header{
    height: 3rem;
    padding-top:6rem;
}

.logo{
    padding-left: 6rem;
    width: 15rem;
}
.cta {
    max-width: 100%;
    padding-left: 6rem;
    
}
.cta img{
    max-width: 70%;
    padding-left: 5rem;
}

.cta p{
    color: white;
    font-family: Inter;
    font-size: 1rem;
    font-weight: normal;
    padding-bottom: 1.5rem;
}
.btn{
    background: #55A39F;
    color: #39304A;
    font-weight: 600;
    font-family: Inter;
    text-decoration: none;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 0.8rem;
}
@media (max-width: 1024px) {
    .cta,.logo{
        padding-left:2rem;
    }
    h1{
        font-size: 3rem;
        line-height: 3.5rem;
    }
    h2{
        font-size: 1.3rem;
        line-height: 1.8rem;
    }
    .cta{
        max-width: 90vw;
    }
    .cta img{
        display: none;
    }
    .logo{
        width: 10rem;
    }
    header{
        height: 1rem;
    }
    footer{
        position: relative;
        margin-top: 12rem;
    }
}