.btn-primary{
    background-color: #FE594D;
    border: 1px solid #FE594D;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus{
    background-color: #fe3526;
    border: 1px solid #fe3526;
}

.btn-success{
    background-color: #12B76A;
    border: 1px solid #12B76A;
}

.btn-success:hover, .btn-success:active, .btn-success:focus{
    background-color: #10a560;
    border: 1px solid #10a560;
}

.hero-area{
    background-image: url('../img/hero-banner.png');
    background-size: cover;
}
.mb-6{
    margin-bottom: 56px;
}
.py-7{
    padding-top: 72px;
    padding-bottom: 72px;
}
*{
    font-family: 'Inter', sans-serif;
}

.adjust-position{
    position: absolute;
}

.show-mobile-banner{
    display: none;
}

@media only screen and (min-width: 1920px) {
    .hide-in-xl{
        display: none;
    }
    .adjust-position{
        position: relative;
    }
}

@media only screen and (max-width: 1919px){
    .hide-xl-down{
        display: none;
    }
}

@media only screen and (max-width:991px){
    .hide-in-xl{
        display: none;
    }
    .adjust-position{
        position: relative;
    }
    .show-mobile-banner{
        display: block;
    }
}


.custom-stick-navigation{
    position: fixed;
    top: -72px;
    width: 100%;
    z-index: 99;
}

.custom-stick-navigation-show{
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99;
}

html{
    height:100%;
}

body{
    height: 100%;
}

.btn{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}