body{
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
.text-center{
    text-align: center;
}
.kl-bg-black{
    background-color: #000000;
}
.kl-text-20{
    font-size: 20px;
    line-height: 1.24em;
}
.kl-lp-container{
    max-width: 866px;
    margin: auto;
    padding: 50px;
}
.kl-landing-page{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kl-landing-page__logo{
    max-width: 350px;
    width: 100%;
    object-fit: contain;
}
.kl-landing-page__text{
    margin-top: 105px;
    color: #FFFFFF;
    margin-bottom: 64px;
}
.kl-landing-page__btn{
    color: #000000;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.2em;
    background-color: #FFFFFF;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    margin: auto;
    padding: 16.5px 20px;
    border: 1px solid #FFFFFF;
    transition: all .3s ease;
}
.kl-landing-page__btn svg{
    margin-left: 72px;
}
.kl-landing-page__btn svg path{
    transition: all .3s ease;
}
.kl-landing-page__btn:hover{
    background-color: transparent;
    color: #FFFFFF;
}
.kl-landing-page__btn:hover svg path{
    fill: #FFFFFF;
}
@media (max-width: 575px){
    .kl-lp-container{
        padding: 50px 24px;
    }
    .kl-text-20 {
        font-size: 16px;
    }
    .kl-landing-page__logo{
        max-width: 212px;
    }
    .kl-landing-page__btn svg{
        margin-left: 40px;
    }
    .kl-landing-page__text{
        margin-top: 55px;
        margin-bottom: 40px;
    }
}
