/* Global Rules */
*
{
    box-sizing: border-box;
}
/* Global Rules */
body {
  /* height: 4000px; */
}

/* navbar */

/*Start Nav*/
nav{
  width: 100%;
  height: 70px;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  transition: 0.5s ease-in-out;
  /* background-color: rgba(0, 0, 0, 0.1); */
  /* background-color: #0C0C0C; */
  /* border-bottom: 1px solid rgba(173, 120, 53, 0.2); */
}
nav .logo img{
  margin: 10px 0;
  width: 100px;
  height: 50px;
}
nav ul{
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Lato;
  font-size: 2px;
  text-transform: capitalize;
  color: #aaa;
}
nav ul li {
  display: inline-block;
  margin: 20px 0;
  cursor: pointer;
  font-size: 18px;
  padding: 0 10px;
  text-shadow: 3px 3px 5px #0C0C0C;
}
nav ul li:hover{
  color: #ad7835;
  text-decoration: underline #ad7835;
  transition: 0.3s ease-in-out ; 
}
.on{
  color: #ad7835;
  text-decoration: underline #ad7835;
  transition: 0.3s ease-in-out ; 
}


/*media Query For Nav */
@media(max-width:991px){
  nav .menu-icon{
    display: inline-block;
    margin-right: 16px;
  }
  nav .logo{
    margin-left: 16px;
  }
  nav ul{
    visibility: hidden;
    height: auto;
    width: 100%;
  }
  nav ul li{
    display: block;
    height: 0;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    background-color: rgba(0, 0, 0, 1);
    border-bottom: 1px solid rgba(173, 120, 53, 0.2);
    overflow: hidden;
    transition: 0.5s ease-in-out;
  }
  nav ul.o li{
    display: block;
    text-align: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 8px;
    background-color: rgba(0, 0, 0, 1);
    border-bottom: 1px solid rgba(173, 120, 53, 0.2);
    transition: 0.5s ease-in-out;
  }
  nav ul li:hover{
    background-color: #0C0C0C;
  }
  nav ul.o{
    visibility: visible;
  }
  nav .container {
    padding: 0 ;
    width: 100%;
  }
  nav.o{
    background-color: #0C0C0C;
  border-bottom: 1px solid rgba(173, 120, 53, 0.2);
  transition: 0.5s ease-in-out;
  }
}

/**/
.navbar-fixed-top{
  background-color: #0C0C0C;
  border-bottom: 1px solid rgba(173, 120, 53, 0.2);
  transition: 0.5s ease-in-out;
}
/*End Nav*/



/* Animate Nav Icon */
.menu-icon 
{
display: none;
  width: 30px;
  height: 20px;
  padding: 5px;
  margin:20px 5px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}
.menu-icon span
{
  display: block;
  margin: 0;
  padding: 0;
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: #ad7835;
  border-radius: 9px;
  left: 0;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}
.menu-icon:hover span 
{
  background-color: #aaa;
}
.menu-icon:hover span:nth-child(2) 
{
  background-color: #ad7835;
}  
.menu-icon span:nth-child(1) 
{
  top: 0px;
} 
.menu-icon span:nth-child(2) 
{
  top: 10px;
  background-color: #aaa;
} 
.menu-icon span:nth-child(3) 
{
  top: 20px;
}
.menu-icon.open span:nth-child(1) 
{
  top:18px;
  width: 0%;
  left: 50%;
}  
.menu-icon.open span:nth-child(2) 
{
  transform: rotate(-45deg);
  background: #aaa;
}  
.menu-icon.open span:nth-child(3) 
{
  transform: rotate(45deg);
}

/* end navbar*/


/* Start Header */
header{
  position: relative;
  width: 100%;
  height: 650px;
  background: url('../images/9abc3867847844a3af3ab1aae2369c1b-1200x675.jpg') top center no-repeat;
  background-size: cover;
}
header .head{
  /* border: 1px solid #ad7835; */
  padding-top: 130px;
  color: #aaa;
  height: 100%;
  width: 100%;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(173, 120, 53,0.7);

  /* display: table-cell; */
  /* vertical-align: middle; */
}
/* header .head h2{
  font-size: 25px;
  color: #b3a992;
  text-shadow: 2px 2px 3px #353535;
} */
header .head img{
  width: 350px;
  height: 150px;

}

header .head span{
  width: 60px;
  height: 2px;
  background-color: #ad7835;
  display: block;
  margin: 0 auto;
  box-shadow: 2px 2px 3px #353535;
  
  border-radius: 30px;
}

header .head h6{
 color: #91856a;
 color: #938565;
 font-size: 60px;
 text-shadow: 2px 2px 5px #353535;
 margin: 15px auto;
}

header .head h3,header .head h1{
  color: #ad7835;
  font-size: 20px;
  text-shadow: 2px 2px 5px #353535;
}
header .head h3{
  margin-bottom: 30px;
}
header a {
  background: none;
  border: 1px solid #ad7835;
  color: #938565;
  font-weight: bolder;
  width: 170px;
  margin: 30px 5px;
  padding: 9px 25px ;
  transition: 0.5s ease-in-out;
}

header a:hover{
  border: 1px solid #938565;
  border-radius: 15px;
  color: #ad7835;
  text-decoration: none;
  transition: 0.5s ease-in-out;
}
header .head i{
  position: relative;
  display: inline-block;
  margin: 20px auto;
  text-shadow: 5px 5px 5px #353535;
  transition: 0.5s ease-in-out;
}
header .head i:hover{
  color: #ad7835;
  cursor: pointer;
  text-shadow: 2px 2px 2px #353535;
  transition: 0.5s ease-in-out;

}
@media(max-width:767px){
  
  header .head{
    padding-top: 105px;
  }
  header .head h6{

    font-size: 35px;

   }
   header .head img{
    width: 250px;
    height: 100px;
  }

   header .headimg{
    display: none;
  }
  header{
    position: relative;
    height: 550px;

  }
  header a {
    padding: 9px 5px !important;
  }
  
}

/* End Header */

/* offers */
a{
  color: inherit;
}
a:hover{
  color: inherit;
}
/* Start Offers */
.offers
{
  width: 100%;
  background-color: #0c0c0c;
  position: relative;
  padding: 140px 0 100px;
  
}
.offers .best-offer{
  width: 90%;
  margin: 0 auto;
  position: relative;
  height: 350px;
  background-color: #1d1d1d;
  /* border: 1px solid #ad7835; */
}

.offers .img-offer{
  width: 45%;
  position: relative;
  height: 120%;
  margin-right: 50px;
  margin-top: -3.7%;
  text-align: center;
  border: 2px solid #ad7835;

  /* height: 120%; */
}
.offers .img-offer img{
  height: 100%;
  width: 100%;
}
.offers .img-offer .overlay{
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.offers .img-offer .overlayy{
  opacity: 0.7;
  transition: 0.5s ease-in-out;
}

.offers .best-offer .title{
  padding: 20px 22px;
  /* direction: rtl; */
  /* border: 1px solid #ad7835; */
  width: 48%;
  height: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.offers .best-offer .title h3{
  direction: rtl !important;
}
.offers .best-offer .title p{
  padding-top: 20px;
  color: #aaa;
  font-size: 14px;
  height: 70%;
  overflow: hidden;
  text-align: justify;
  direction: rtl;
  /* border: 1px solid #ad7835; */

}
.offers .best-offer .title a{
  background:none;
  border: 1px solid #ad7835;
  color: #14d841;
  font-size: 16px;
  padding: 10px 20px;
  /* position: absolute; */
  /* bottom: 20px; */
  margin-bottom: 16px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  width: 150px;
  text-align: center;
}
.offers .best-offer .title a:hover{
  background:none;
  border: 1px solid #14d841;
  border-radius: 15px;
  color: #ad7835;  
  font-size: 16px;
  padding: 10px 20px;
  /* position: absolute; */
  /* bottom: 20px; */
  margin-bottom: 16px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  width: 150px;
  text-align: center;
}
.offers .best-offer .title .btn-call:hover{
  background:none;
  border: 1px solid #aaa;
  border-radius: 15px;
  color: #aaa;
  font-size: 16px;
  padding: 10px 20px;
  transition: 0.3s ease-in-out;
}

/* @media(min-width:768px)and (max-width:991px) {
  .offers .img-offer{
    width: 48% !important;
    margin-top: -35px;
    margin-right: 20px;
  }
} */
@media(max-width:991px) {
  .offers .best-offer{
    height: auto !important;
  }
  
  .offers .img-offer{
    width: 80% !important;
    text-align: center;
    margin-top: -60px  ;
    height: 40%;
    margin-right: 10%;
    float: none;
  }
  .offers .best-offer .title{
    padding: 20px 22px;
    /* border: 1px solid #ad7835; */
    width: 100%;
    height: 70% !important;
  }
  .offers .best-offer .title p{
    overflow: hidden;
    height: 70%;
  }
  .offers .best-offer .title a{
    width:48%;
  }
}

.best-offer .title .price{
  border: 1px solid #ad7835 !important;
  color: #ad7835 !important;   
}
/* ****************** */


/* Start Staff */
.staff {
  background-color: #0C0C0C;
  /* height: 4000px; */
  text-align: center;
  padding: 50px 0;
}
.staff .cards{
  margin: 30px 0;
}
.staff-card{
  width: 42%;
  margin: 20px 2%;
  /* border: 1px solid #ad7835; */
  height: 200px;
  text-align: left;
  position: relative;
}

.shap{
  width: 100%;
  height: 80%;
  /* border: 1px solid #ad7835; */
  position: relative;
}

.shap .back{
  width: 97%;
  background-color: #353535;
  height: 97%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  border-radius: 3px;
  opacity: 0.5;
}
.shap .backup{
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0.6;
  top: 0%;
  left: 0%;
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;

}
.shap .front{
  width: 99%;
  height: 99%;
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 3;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border-radius: 3px;
  overflow: hidden;
}
.shap .frontback{
  z-index: 1;
  top: 0%;
  left: 0%;
  transition: 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  
}
.staff-card .shap .front img{
  width: 100%;
  height: 100%;
}

.staff-name{
  padding-top:50px;
  color: #ad7835;
  position: absolute;
  bottom: 0;
  width: 100%;
  cursor: pointer;
}
.staff-name p{
  margin: 0;
}
.staff-name .line{
  display: block;
  width: 30%;
  margin-top: 3px;
  transition: 0.5s ease-in-out;

  background-color: #ad7835;
  height: 2px; 
}

.staff-name .linee{
  display: block;
  width: 70%;
  transition: 0.5s ease-in-out;
  margin-top: 3px;
  background-color: #ad7835;
  height: 2px; 
}

.staff .astaff  a{
  background:none;
  display: inline-block;
  border: 1px solid #ad7835;
  color: #ad7835;
  font-size: 16px;
  padding: 10px 20px;
  margin: 0px 0;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  width: 150px;
  text-align: center;
}
.staff .astaff  a:hover{
  background:none;
  border: 1px solid #aaa;
  border-radius: 15px;
  color: #aaa;
  font-size: 16px;
  padding: 10px 20px;
  transition: 0.3s ease-in-out;
}

@media(min-width:991px){
  .staff .staff-card{
    width: 21%;
  }
}

@media(max-width:767px){
  .staff .staff-card{
    width: 90%;
  }
  .arsocial{
    margin: 35% 0 !important;
  }
  .staff .cards{
    height: 480px;
    overflow: hidden;
  }
  
}



/* End Staff */


/* vip Cars */

a{
  color: inherit;
}
a:hover{
  color: inherit;
}
/* Start Rooms */
.rooms
{
  width: 100%;
  background-color: #0c0c0c;
  position: relative;
  padding: 40px 0 100px;
  text-align: center;
  /* border: 1px solid #ad7835; */
}
.rooms  a{
  background:none;
  border: 1px solid #ad7835;
  color: #ad7835;
  font-size: 16px;
  padding: 10px 20px;
  margin: 0px 0;
  display: inline-block;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  width: 150px;
  text-align: center;
}
.rooms  a:hover{
  background:none;
  border: 1px solid #aaa;
  border-radius: 15px;
  color: #aaa;
  font-size: 16px;
  padding: 10px 20px;
  transition: 0.3s ease-in-out;
}

.rooms .vip-imgs{
  padding: 50px 0;
  /* border: 1px solid #ad7835; */
}

.rooms .vip-img{
  width: 50%;
  /* border: 1px solid #7e766c; */
  padding: 0.5%;
  /* border-radius: 10px; */
  overflow: hidden;
  /* margin: 0.5%; */
  height: 150px;
  cursor: pointer;
  position: relative;
}
.rooms .vip-img img{
  width: 100%;
  height: 100%;
}
.rooms .vip-img .overlay{
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.rooms .vip-img .overlay:hover{
  opacity: 0.7;
  transition: 0.5s ease-in-out;
}






@media(min-width:991px){
  .rooms .vip-img{
    width: 25% !important;
  }
}

@media(max-width:767px){
  .rooms .vip-imgs{
    width: 100% !important;
    height: 550px !important;
    overflow: hidden;
    /* border: 1px solid #ad7835; */
  }
  .rooms .vip-img{
    width: 100% !important;
    margin: 10px auto;
  }
  .rooms .vip-img img {
    width: 100%;
  }
  .rooms  a{
    margin: 50px 0;
  }
}

/* ****************** */
.myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 10px; /* Location of the box */
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: 10% auto 0 ;
  display: block;
  max-height: 60%;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
.caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
    margin: 30% auto 0 ;
  }
  .caption {
    margin: 40px auto 0;
  }
}



/**********************************************/
















/* Start Contact */

.contact 
{
  width: 100%;
  background-color: #0c0c0c;
  position: relative;
  padding: 140px 0 60px;
  color: #ad7835;
  /* border: 1px solid #ad7835; */
}
.contact .best-offer{
  width: 90%;
  margin: 0 auto;
  height: 350px;
  background-color: #1d1d1d;  
}

.contact .img-map{
  width: 45%;
  position: relative;
  height: 120%;
  margin-left: 50px;
  margin-top: -3.7%;
  border: 2px solid #ad7835;
  overflow: hidden;
  /* height: 120%; */
}
.contact .img-map img{
  height: 100%;
  width: 100%;
}
.contact .img-map .overlay{
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.contact .img-map .overlayy{
  opacity: 0.7;
  transition: 0.5s ease-in-out;
}

.contact .best-offer .title{
  padding: 20px 22px;
  width: 48%;
  height: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.contact .best-offer .title p{
  padding-top: 20px;
  color: #aaa;
  font-size: 14px;
  height: 70%;
  overflow: hidden;
  text-align: justify;
}
.contact .best-offer .title a{
  background:none;
  border: 1px solid #ad7835;
  color: #ad7835;
  font-size: 16px;
  padding: 10px 20px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.contact .best-offer .title .btn-call:hover{
  background:none;
  border: 1px solid #aaa;
  border-radius: 15px;
  color: #aaa;
  font-size: 16px;
  padding: 10px 20px;
  
  transition: 0.3s ease-in-out;
}
iframe{
  width: 100%;
  height: 100%;
}
/* @media(min-width:768px)and (max-width:991px) {
  .contact .img-offer{
    width: 48% !important;
    margin-top: -35px;
    margin-left: 20px;
  }
} */
@media(max-width:991px) {
  .contact .best-offer{
    height: auto !important;
  }
  .contact .best-offer{
    text-align: center;
  }
  .contact .img-map{
    width: 80% !important;  
    text-align: center;
    margin-top: -60px  ;
    height: 40%;
    margin-left: 10%;
    float: none;
  }
  .contact .best-offer .title{
    padding: 20px 22px;
    /* border: 1px solid #ad7835; */
    width: 100%;
    height:70% !important;
  }
  .contact .best-offer .title p{
    overflow: hidden;
    height: 70% !important;
    /* border: 1px solid #ad7835; */
  }
  
}

.best-offer .title .price{
  border: 1px solid #ad7835 !important;
  color: #ad7835 !important;   
}
/* ****************** */


/* Social media */
.socialmedia {
  border: 1pxx solid #ad7835;
  /* height: 200px; */
  z-index: 10;
  /* margin-top: -24px; */
}
.socialmedia i{
  width: 40px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #ad7835;
  padding: 10px;
  margin-right: 8px;
  transition: 0.5s ease-in-out;
}

.socialmedia  i:hover{
  border-radius: 50%;
  transition: 0.5s ease-in-out;
}

.socialmedia a:hover:nth-child(1){
  border: 1px solid #4267B2;
  color: #4267B2;
}
.socialmedia a:hover:nth-child(2){
  border: 1px solid #DA2D79;
  color: #DA2D79;
}
.socialmedia a:hover:nth-child(3){
  border: 1px solid #009688;
  color:#009688;
}

@media(max-width:767px){
  .socialmedia{
    text-align: center;
  }
}
/* ********************************** */


/* Start footer */
.footer{
  width: 100%;
  background-color: #0c0c0c;
  position: relative;
  color: #ad7835;
  height: 80px !important;
  text-align: center;
}
.footer p{
  padding-top: 20px;
  height: 100%;
}

/* *********************************** */



/* start fonts */
@font-face 
{
    font-family: fontName;
    src: url('../webfonts/fontName.ttf');
}
/* End fonts */

/* start my frame work */
.main-color {
  color: #f7600e;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.text-center {
  text-align: center;
}
.upper {
  text-transform: uppercase;
}
.pointer {
  cursor: pointer;
}
.table {
  display: table;
  height: 100%;
}
.table-row {
  display: table-row;
  height: 100%;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}

/* Titles */
.title{
  text-align: center;
  display: inline-block;  
  padding-top:50px;
  margin: 0 auto;
  color: #ad7835;
  position: relative;
}
.title .line{
  display: block;
  width: 50px;
  margin-top: 10px;
  color: #ad7835;
  background-color: #ad7835;
  height: 3px; 
} 
/* End my framework */
