@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);
}

.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: 6vh 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);
    margin-bottom: clamp(1.6rem, 5vh, 3rem);
    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);
}

.btn-6::before , .btn-7::before {
    background: linear-gradient(to right, #1c1c1c, #494949, #fafafa, #ffffff);

}

@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;
        margin-bottom: 8vh;
    }

}