@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap');

/* Start flex.css file */
@import url("./flex.css");
/* End flex.css file */

/* Start import color.css file */
@import url("./color.css");
/* End import color.css file */

/* Start import mar_pad.css file */
@import url("./mar_pad.css");
/* End import mar_pad.css file */

/* Start import navbar.css file */
@import url("./navbar.css");
/* End import navbar.css file */

/* Start import home.css file */
@import url("./home.css");
/* End import home.css file */

/* Start import about.css file */
@import url("./about.css");
/* End import about.css file */

/* Start import contact.css file */
@import url("./contact.css");
/* End import contact.css file */

/* Start import footer.css file */
@import url("./footer.css");
/* End import footer.css file */

/* Start import dubay.css file */
@import url("./dubay.css");
/* End import dubay.css file */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  overflow-x: hidden;
}
ul{
  list-style: none;
}
a{
  text-decoration: none;
}
.container{
  width: 1140px;
  margin: 0 auto;
}
.title{
  font-size: 28px;
  font-weight: 600;
  color: var(--title-color);
}
.subtitle{
  font-size: 16px;
  font-weight: normal;
  color: var(--text-color);
}
.logo-color{
  color: var(--logo-color);
}
.city-name{
  font-size: 80px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 10px;
  white-space: nowrap;
}




/* Start media query */
@media only screen and (min-width: 1200px){
  .container{
    width: 1140px;
  }
}
@media only screen and (max-width: 1200px){
  .container{
    width: 96%;
  }
  .city-name{
    font-size: 70px;
  }
}
@media only screen and (max-width: 991px){
  .container{
    width: 97%;
  }
  .title{
    font-size: 24px;
  }
  .city-name{
    font-size: 60px;
  }

  /* Start navbar */
  .header{
    transition: 0.4s;
  }
  .navbar{
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }
  .nav-menu{
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }
  .navbar .menu-list{
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
  }
  .navbar .menu-item{
    margin: 0;
    margin-top: 20px;
  }
  .toggle-btn{
    display: flex;
  }
  .header.active{
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .header.active .navbar .menu-list{
    display: flex;
  }
  .drop-lang{
    position: absolute;
    top: 30px;
    right: 20px;
  }
  /* End navbar */

  /* Start home section */
  .home-title{
    font-size: 65px;
    font-weight: 700;
  }
  .home-subtitle{
    font-size: 40px;
  }
  /* End home section */

    /* Start company about section */
  .about-box-text{
    width: calc(100% - 420px);
  }
  .about-box-img{
    width: 380px;
    height: 380px;
  }

  /* End company about section */


}
@media only screen and (max-width: 768px){
  .container{
    width: 98%;
  }
  .title{
    font-size: 20px;
  }
  .subtitle{
    font-size: 15px;
  }
  .city-name{
    font-size: 45px;
  }

  /* Start home section */
  .home-title{
    font-size: 55px;
    font-weight: 700;
  }
  .home-subtitle{
    font-size: 30px;
  }
  /* End home section */

  /* Start email section */
  .email-section .container{
    flex-direction: column;
  }
  .email-box,
  .email-images{
    width: 95%;
  }
  .email-images{
    margin-top: 20px;
  }
  .email-box .title{
    font-size: 34px;
  }
  /* End email section */
  
  /* Start company about section */
  .company-about .about-box{
    flex-direction: column;
  }
  .about-box-text{
    width: 95%;
  }
  .about-box-img{
    margin-top: 20px;
    width: 95%;
    height: auto;
  }
  .about-box-img img{
    min-width: 280px;
    max-width: 350px;
  }
  /* End company about section */
}
@media only screen and (max-width: 567px){
  .city-name{
    font-size: 20px;
  }
  /* Start home section */
  .home-title{
    font-size: 35px;
    font-weight: 600;
  }
  .home-subtitle{
    font-size: 20px;
    margin-bottom: 20px;
  }
  /* End home section */

  /* Start hotel section */
  .hotel-section .container{
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .hotel-text{
    min-height: 180px;
    background-size: 150px;
  }
  /* End hotel section */
  
  /* Start email section */
  .email-box .title{
    font-size: 26px;
  }
  .email-images img{
    width: 290px;
  }
  /* End email section */

  /* Start contact section */
  .contact-link{
    font-size: 12px;
  }
  /* End contact section */
}
/* End media query */