body{
    font-family: Oswald !important;
}
.bttn{
    background-color: #B99272 !important;
    color: white !important;
}
p{
    font-family: gilroy;
}
.menu-div:hover{
    opacity: 1 !important;
}
.photo:hover{
    scale: 1.4;
    
}
img{
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 2s;
}

h5:hover{
    color: #B99272 !important;
    cursor: pointer !important;
}
a:hover{
    color: #B99272 !important;
    cursor: pointer !important;
}



.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #b99272;
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    z-index: 99999;
    /* position: absolute; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: #fff; */
  }

  .loader-big {
    width: 100%;
    height: 100%;
    /* position: relative; */
    position: absolute;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2a2a2a;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  #btn {
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 99;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgb(12, 12, 12);
    color: white;
    border: none;
  }
