﻿
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap');

main {
    font-family: 'Poppins', sans-serif !important;
}

.custom-btn {
    display: inline-block;
    width: 22vw;
    height: 50px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .custom-btn::before,
    .custom-btn::after {
        content: '';
        position: absolute;
        top: 0;
        width: 0;
        height: 100%;
        transform: skew(15deg);
        transition: all 0.5s;
        overflow: hidden;
        z-index: -1;
    }

    .custom-btn::before {
        left: -10px;
        background: #ff9100;
    }

    .custom-btn::after {
        right: -10px;
        background: #ff9100;
    }

    .custom-btn:hover {
        color: white !important;
    }

        .custom-btn:hover::before,
        .custom-btn:hover::after {
            width: 60%;
        }

.btntext {
    border: none;
    background-color: rgba(158, 111, 2, 0.5);
    text-transform: uppercase;
    font-weight: 900;
    color: black !important;
    font-size: 1.5vw;
}

body {
    background-color: white;
}


@media(max-width: 576px) {

    .btntext {
        font-size: 2.5vw;
    }

    .custom-btn:hover::after {
        width: 70%;
    }

}