:root {
    --main-color:#FCDF5F;
}
body{
    background-color: #0D0D0D;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
header{
    background-image: url(../images/bg.jpeg);
    background-size:cover;
    height: 100vh;
    width: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
}
@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);
}
.search .search-icon{
    color: #0D0D0D;
    font-size: 45px;
    border-radius: 0 10px 10px 0;
}
.small-search{
    display: none;
}
.small-search .div{
    background-color: #1A1A1A;
    color: var(--main-color);
    border-radius: 5px;
}
.rent{
    background-color: #1A1A1A;
    color: var(--main-color);
    cursor: pointer;
    border-radius:0 20px 20px  0;
}
.buy{
    background-color: #1A1A1A;
    color: var(--main-color);
    font-weight: bold;
    cursor: pointer;
    border-radius: 20px 0 0 20px;
}
.bi-filter{
    cursor: pointer;
}
.about-header-1{
    display: none;
}
@media (max-width:992px) {
    .search {
        display: none;
    }
    .small-search{
        display: block;
    }
    .about-header-1{
        display: block;
    }
    .about-header-2{
        display: none;
    }
}
.country{
    position: absolute;
    top: 3%;
    left: 10%;
}
.second-country{
    position: absolute;
    top: 54%;
    left: 10%;
}
.georgia{
    position: absolute;
    top: 62%;
    left: 10%;
}
.country a,.second-country a,.georgia a{
    font-size: 45px;
    text-decoration: underline;
    font-weight: bold;
    font-family: Montserrat;
}
.Montserrat{
    font-weight: bold;
    font-family: Montserrat;
    font-size: 45px;
}
@media (max-width:500px) {
    .Montserrat{
        font-size: 35px;
    } 
}
.gallery-2{
    display: none;
}
@media (max-width:1150px) {
    .gallery-1{
        display: none;
    }
    .gallery-2{
        display: flex;
    }
}
@media (max-width:992px) {
    .country a,.second-country a{
        font-size: 35px;
    }
}
.about{
    background-color: #141414;
}
.about .about-description{
    font-size: 20px;
    line-height: 2;
    letter-spacing: 1.5px;
}
.contact{
    background-image: url(../images/cream-minimalist-real-estate-flyer-1@2x.png);
    width: 100%;
    height: 100vh;
    background-size: cover;
    position: relative;
    /* background-position: center; */
}
.contact .contact-info{
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center  ;
}
@media (max-width:992px) {
    .contact .contact-info{
        width: 70%;
    }
}
.companies .product {
    position: relative;
    overflow: hidden;

  }
  .companies .product-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  
  .companies .product-container::-webkit-scrollbar {
    display: none;
  }
  
  .companies .product-card {
    flex: 0 0 auto;
    width: 255px;
    height: 125px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    margin-right: 87px;
}

.companies .product-image {
    border-radius: 10px;
    position: relative;
    width: 230px;
    height: 125px;
    overflow: hidden;
  }

  .companies .product-card img{
    transition: all 0.2s;
    width: 100%;
    height: 100%;
  }
  .companies .product-card:hover img{
    scale: 1.1;
}
/*  */
.employer .product {
    position: relative;
    overflow: hidden;

  }
  .employer .product-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  
  .employer .product-container::-webkit-scrollbar {
    display: none;
  }
  
  .employer .product-card {
    flex: 0 0 auto;
    width: 175px;
    height: 285px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    margin-right: 87px;
}

.employer .product-image {
    border-radius: 50%;
    position: relative;
    width: 175px;
    height: 175px;
    overflow: hidden;
  }
  .employer .product-card img{
    transition: all 0.2s;
    width: 100%;
    height: 100%;
  }
  .employer .product-card:hover img{
    scale: 1.1;
}
.footer .icons i{
    color: #fff;
    font-size: 35px;
    margin: 18px;
    cursor: pointer;
}
.footer .enter-email{
    background-color: #1A1A1A;
    color: var(--main-color);
    border-radius: 5px 0 0 5px;
}
.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 input{
  background-color: #1A1A1A;
  border: none;
  outline: none;
  color: var(--main-color);
}
.footer .enter-email input::placeholder{
  color: var(--main-color);
}
.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;
}
.small-search-btn{
    background-color: var(--main-color);
    font-weight: bold;
}
.buy.active,.rent.active{
    background-color: var(--main-color);
    color: #0D0D0D;
    font-weight: bold;
}