body, html {
font-family: 'Proxima Nova Condensed', sans-serif !important;
}

.scrollbtn {
    position: fixed;
    bottom: 5%;
    right: 3%;
    background-color:#F3C008 ; 
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 0;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease; 
}
.scrollbtn i{
    color:#082248 ;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; 
}

.scrollbtn:hover {
    background-color: #082248;
    /* transform: scale(1.1);  */
}
.scrollbtn:hover i{
    color: #F3C008;
    /* transform: scale(1.1);  */
}
