:root {
    --main-color:#FCDF5F;
}
body{
    background-color:#141414;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.gold{
    color: var(--main-color);
}
header{
    background-image: url(../images/bg.jpeg);
    background-size:cover;
    height: 100vh;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width:992px) {
    header{
        height: 80vh;
    }
}
@media (max-width:825px) {
    header{
        height: 60vh;
    }
}
@media (max-width:625px) {
    header{
        height: 50vh;
    }
}
.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.205);
    display: block;
}
#brand{
    width: 60px;
}
#nav-icon{
    color: var(--main-color);
}
nav{
    background-color: #0D0D0D;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
    margin-left: 10px;
}
nav ul li a:hover{
    color: var(--main-color);
}
a.active{
    border-bottom: dashed;
    color: var(--main-color);
}
#btn{
    background-color: var(--main-color);
    border-radius: 10px;
}
#btn:hover{
    opacity: 0.8;
}
.search{
    background-color: #0D0D0D;
    color: #fff;
    position: absolute;
    bottom: -60px;
    left: 50%;
    width: 70%;
    transform: translateX(-50%);
    border-radius: 10px;
}
@media (max-width:992px) {
    .search{
        width: 40%;
    }
}
.search .search-icon{
    background-color: var(--main-color);
    border-radius: 0 10px 10px 0;
}
.search .search-icon{
    color: #0D0D0D;
    font-size: 45px;
}
.small-search{
    display: none;
}
.small-search .d-flex{
    background-color: #1A1A1A;
    color: var(--main-color);
    border-radius: 20px;
}
.rent{
    background-color: #1A1A1A;
    color: var(--main-color);
    cursor: pointer;
    border-radius:0 20px 20px  0;
}
.buy{
    background-color: var(--main-color);
    color: #0D0D0D;
    font-weight: bold;
    cursor: pointer;
    border-radius: 20px 0 0 20px;
}
@media (max-width:992px) {
    .search {
        display: none;
    }
    .small-search{
        display: block;
    }
}
.card .card-info{
    background-color: #0D0D0D;
    border-radius: 40px;
    box-shadow: 0px 4px 1px 0px rgba(255, 255, 255, 0.70);
}
.card .card-info i{
    font-size: 22px;
}
.load-more,.load-less{
    background-color: var(--main-color);
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
}
.footer{
    background-color: #0D0D0D;
}
.footer .icons i{
    color: #fff;
    font-size: 35px;
    margin: 18px;
    cursor: pointer;
}
.footer .enter-email input{
    background-color: #1A1A1A;
    border: none;
    outline: none;
    color: var(--main-color);
  }
  .footer .enter-email input::placeholder{
    color: var(--main-color);
  }
.footer .enter-email{
    background-color: #1A1A1A;
    color: var(--main-color);
    border-radius: 5px 0 0 5px;
}
.footer .subscripe{
    background-color: var(--main-color);
    color: #0D0D0D;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}
.select{
    background-color: #0D0D0D;
    color: #fff;
    border: none;
    outline: none;
}
.select-small{
    background-color: #1A1A1A;
    color: #fff;
    border: none;
    outline: none;
    -webkit-appearance: none;
}