@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;400&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: JuliusRegular, sans-serif;
}

@font-face {
    font-family: JuliusRegular;
    src: url(../../../fonts/JuliusRegular.ttf);
}

@font-face {
    font-family: Acumin;
    src: url(../../../fonts/Acumin.ttf);
}

.back-btn svg {
    height: clamp(1.2rem, 2vw, 2.4rem);
    width: clamp(1.2rem, 2vw, 2.4rem);
}

.back-btn-wrapper {
    padding: 1vw 1.5vw;
}

.btn-container {
    padding: 1vh 4vw;
}

.btn-wrapper {
    margin-inline: 2vw;
    padding: 3vh 3vw;
    display: block;
    text-decoration: none;
    color: black;
    cursor: pointer;
    position: relative;
    background-clip: padding-box;
    border: solid 4px transparent;
    border-radius: .6rem;
    background: white;
    font-weight: 700;
    font-size: clamp(.9rem, 2.4vw, 1.5rem);
    transition: .6s all;
}


.btn-wrapper:hover {
    color: black;
    margin-inline: 0;
}

.btn-wrapper:before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -7px;
    border-radius: .8rem;
    transition: .6s all;
    background: linear-gradient(to right, #1c1c1c, #6c6c6c, #bebebe, #ffffff);
}

.main-img-container {
    padding-bottom: 8vh;
}

.text-wrapper {
    padding: clamp(2rem, 6vh, 3rem) clamp(1.4rem, 6vw, 4rem);
}

.text-wrapper p {
    font-family: Acumin, sans-serif;
    font-size: clamp(.9rem, 3.6vw , 1.1rem);
    line-height: 1.4em;
    font-weight: 200;
}

@media only screen and (min-width: 1280px) {

    .back-btn svg {
        height: 2vw;
        width: 2vw;
    }

    .main-img {
        width: 100%;
    }

    .btn-wrapper {
        padding: 4vh 3vw;
        font-size: 1.5vw;
    }

    .text-wrapper {
        padding: 6vh 5.5vw;
    }


    .text-wrapper p {
        font-size: 1.3vw;
    }

}