/*=========================================
            BACK TO TOP
=========================================*/

#backToTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:#D4AF37;

    color:#111;

    font-size:22px;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    z-index:9999;

    box-shadow:0 15px 35px rgba(212,175,55,.35);

}

#backToTop.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

#backToTop:hover{

    background:#C79A1E;

    transform:translateY(-6px);

}

@media(max-width:768px){

#backToTop{

    width:50px;

    height:50px;

    font-size:18px;

    right:20px;

    bottom:20px;

}

}