*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    display: flex;
    justify-content: center;
    padding: 0 4rem;
    gap: 2rem;
    margin-bottom: 1rem;
    
}
.left{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    gap: 1rem;
}
.more-imgs{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    cursor: pointer;
}
.more-imgs img{
    width: 6rem;
}
.main-img{
    height: 35rem;
    object-fit: cover;
    width: 100%;
    cursor: pointer;
}
.right{
    width: 55%;
    display: flex;
    flex-direction: column;
}
.location{
    display: flex;
    margin: 1rem 0;
    gap: 0.5rem;
    /* justify-content: center; */
    align-items: center;
}
.contact{
    display: flex;
    /* justify-content: center; */
    gap: 0.5rem;
    margin: 1rem 0;
    align-items: center;
}
.contact img{
    height: 3rem;
}
#map{
    width: 100%;
    height: 20rem;
}
  
.copyrighText{
    padding: 8px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;    
    background: #fff;    
  }
  .copyrighText p{
    color: #111;
    font-weight: 600;
    font-size: 14px;
  }/* Responsive breakpoints */











/* navbar */
#header{
  position: sticky;
  background-color: black;
  margin-bottom: 3rem;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  transition: 0.6s;
}
#header.sticky{
  padding: 5px 100px;
  background: #000;
  border-bottom: 1px solid (0,0,0,.1);
}
#header .logo{
  position: relative;
  transition: 0.6s;
}
#header ul {

  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header ul li{
  position: relative;
  list-style: none;
}
#header ul li a{
  position: relative;
  margin: 0 15px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: 500;
  transition: 0.6s;
}
#header li a:hover{
  color: rgb(240, 190, 63);
}
#header.sticky .logo,
#header.sticky ul li a{
  color: #fff;
}




@media screen and (max-width: 680px) {
  .container{
      flex-wrap: wrap;
      padding: 2rem;
  }
  .right{
      width: 100%;
  }
  .left {
    width: 100%;
  }
  #header{
    margin-bottom: 0rem;
  }
}


















@media (max-width: 1280px){
  .toggle{
      position: relative;
      display: block;
      width: 30px;
      height: 30px;        
      cursor: pointer;
  }
  .toggle:before{
      content: '';
      position: absolute;
      top: 4px;       
      width: 100%;
      height: 2px; 
      background: #000;
      z-index: 1;
      box-shadow: 0 10px 0 #000;  
      transition: 0.5s;      
  }
  .toggle:after{
      content: '';
      position: absolute;   
      bottom: 4px;    
      width: 100%;
      height: 2px; 
      background: #000;
      z-index: 1;       
      transition: 0.5s;      
  }
  #header,
  header.sticky{
      padding: 5px 50px;
      background:#000;
  }
  #header ul li a{
     color: #fff;
  }
  #header.active ul li a{    
     display: inline-block;    
     margin: 10px 0;
     font-size: 20px;        
  }}
@media (max-width: 991px){
  .toggle{
      position: relative;
      display: block;
      width: 30px;
      height: 30px;        
      cursor: pointer;
  }
  .toggle:before{
      content: '';
      position: absolute;
      top: 4px;       
      width: 100%;
      height: 2px; 
      background: #fff;
      z-index: 1;
      box-shadow: 0 10px 0 #fff;  
      transition: 0.5s;      
  }
  .toggle:after{
      content: '';
      position: absolute;   
      bottom: 4px;    
      width: 100%;
      height: 2px; 
      background: #fff;
      z-index: 1;       
      transition: 0.5s;      
  }
  #header,
  header.sticky{
      padding: 5px 50px;
      background:#000;       
  }
  #header ul li a{
     color: #fff;
  }
  #header ul{
      position: absolute;
      width: 100%;      
      top: 100px;
      left: 0;
      overflow: auto;        
      text-align: center;       
      background: #000; 
      visibility: hidden;
      opacity: 0;      
  }
  #header.active ul{       
      visibility:visible;
      opacity: 1;
      display: block;
      padding: 20px 0;
  }
  #header.active ul li a{    
     display: inline-block;    
     margin: 10px 0;
     font-size: 20px;        
  }   
}





