@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

img{
  max-width: 100%;
  height: auto;
}

.header {
  background: #1C0D06;
  color: white;
  padding: 0px 0px;
  min-height: 100px;
}

.container{
  max-width: 1240px;
  margin: 0px auto;
  padding: 0 24px;
}

.headerIn{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headerIn .logo{
  max-width: 278px;
  margin: 0 10px 0 0;
}

.langSelect {
    display: inline-block;
    border: 1px solid #5a5a5a;
    border-radius: 5px;
    padding: 6px 17px;
}

.langSelect .lang-dropdown {
background-color: transparent;
    border: none;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    appearance: none;
    outline: none;
    padding-left: 23px;
    padding-right: 15px;
    cursor: pointer;
    background-image: url(assets/language.svg), url(assets/arrow-down.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left 0px center, right 0px center;
    background-size: 20px 20px, 10px 8px;
}

.langSelect select::-ms-expand {
    display: none; 
}

.langSelect:hover,
.langSelect:focus-within {
    border-color: #888;
}

.langSelect select option {
    background-color: #1a0d09;
    color: #fff;
}

.firstbanner{
  position: relative;
  background: url(assets/bgRent.png) center center/cover no-repeat;
}

.firstbanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5) ;
}

.overlay {
  position: relative;
  color: white;
  text-align: left;
  padding: 0;
}

.firstbannerCont{
  margin: 0 0 0px 0;
  display: flex;
  align-items: flex-end;
  padding: 80px 0px;
  min-height: 610px;
}

.overlay h2 {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.25;
}

.mb-0{
  margin-bottom: 0px !important;
}

.overlay h1 {
  font-size: 40px;
  color: #f4ee3d;
  margin-top: 10px;
  line-height: 1.4;
} 

.second-banner{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 70px 0px;
}

.sbContWrap {
  display: flex;
  align-items: center;
}

.sbContWrap .img{
  flex: 0 0 518px;
  margin: 0 60px 0 0;
}


.second-banner .content {
  flex: auto;
}

.second-banner .content h6{
  font-size: 20px;
  margin: 0 0 4px 0;
  color: black;
  font-weight: 400;
}

.second-banner .content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.second-banner .content p {
    font-size: 18px;
    line-height: 1.5;
    color: #3B3B3B;
}

.second-banner .content p:last-child {
  margin: 0px;
}

footer {
  background-color: #f5f5f5;
  text-align: center;
  padding: 30px 0px;
}
footer a {
  font-size: 20px;
}


@media (max-width: 991px) {
  .firstbannerCont { min-height: 520px; }
  .overlay h1 { font-size: 70px;}
  .overlay h2 { font-size: 30px; }
  .sbContWrap .img {
    flex: 0 0 380px;
  }
  .second-banner .content h1 { font-size: 28px; }
  .second-banner .content p  { font-size: 17px; }
}

@media (max-width: 768px) {
  .firstbannerCont { min-height: 460px; padding: 56px 0; align-items: center; }
  .overlay h1 { font-size: 55px; }
  .overlay h2 { font-size: 24px; }
    .langSelect select option {
        font-size: 10px;
        margin: 0px;
        max-width: 20px
        }

   .sbContWrap {
    display: block;
   }
  .sbContWrap .img {
    margin: 0 0 22px 0;
  }
  .second-banner .content h1 { font-size: 26px; }
  .second-banner .content p  { font-size: 15px; }
}

@media (max-width: 560px) {
  .header { min-height: 60px; }
  .headerIn .logo { max-width: 190px; }
  .langSelect { padding: 6px 10px; }
  .langSelect select option {
        font-size: 10px;
        margin: 0px;
        max-width: 20px
        }

  .firstbannerCont { min-height: 400px;}
  .overlay h1 { font-size: 28px; }
  .overlay h2 { font-size: 40px; margin-bottom: 10px; }

  .second-banner { padding: 36px 0; }
  .second-banner .content h1 { font-size: 22px; }

  footer { padding: 20px 0; }
  footer a { font-size: 17px; }
}

@media (max-width: 380px) {
  .langSelect .lang-dropdown {padding-right: 20px;}
  .langSelect { padding: 4px 7px; }
  .langSelect .lang-icon { display: none; } 

  .container{padding: 0px 12px ;}

  .firstbannerCont { min-height: 300px; align-items: end;}
  /* .overlay h1 { font-size: 30px; } */
}