*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: Raleway , sans-serif;
}


h1,h2,h3,h4,h5,span{
  font-family: var(--heading-font);
}

/* Section 1 - part 1 */

.home{
  background-image: url('../imgs/bg_3\(copy\).jpg');
  background-position: left;
  background-size: cover;
  height: 100vh;
  margin-bottom: 30px;
}

.home .container{
  width: 90%;
  margin: 0px auto;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-content:end;
  flex-wrap: wrap;
  height: 72vh;
}

.home .container .nav-bar{
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  position: fixed;
}

.home .container .nav-bar .txt{
  width: 10%;
  margin-right: 40px;
  text-align: center;
  padding-right: 30px;
}

.home .container .nav-bar h3 a{
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding-right: 50px;
  letter-spacing: 2px;
  cursor: pointer;
}

.home .container .nav-bar ul{
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  width: 45%;
  margin-right: 50px;
}

.home .container .nav-bar ul li{
  padding: 0px 10px;
}



.home .container .nav-bar ul li a{
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.5s;
}

.home .container .nav-bar ul li a:hover{
  color: white;
}


/* ****************** */
/* Section 1 - part 2 */

.home .container .home2{
  width: 70%;
  margin: 0px auto;
  text-align: center;
}


.home .container .home2 h1{
  color: white;
  font-size: 75px;
  font-weight: 700;
}

.home .container .home2 p{
  color: #C3C5C5;
  margin: 30px 0px;
  font-size: 20px;
  font-weight: 500;
}

.home .container .home2 button{
  font-weight: 400;
  margin: 10px 0px;
  padding: 13px 40px;
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
}

.home .container .home2 button:hover{
  background-color: white;
  color: black;
  border: 2px solid white;
}



/* ***************************************************** */
/* Section 2 - part 1 */

.about{
  padding: 50px 0px;
}

.about .container{
  width: 80%;
  margin: 10px auto;
  display: flex;
  justify-content: space-between;
  padding: 40px 0px;
}

.about .container .left{
  padding: 20px;
  width: 40%;
  line-height: 1.45;
}

.about .container .left h4{
  color: #D4D4D4;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 8px;
}

.about .container .left h2{
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 10px;
}

.about .container .left p{
  color: #B8B8B8;
  margin-bottom: 10px;
  font-weight: 400;
}

.about .container .left button{
  margin-top: 20px;
  padding: 15px 40px;
  font-size: 16px;
  color: #B8B8B8;
  background-color: transparent;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.about .container .left button:hover{
  background-color: rgb(253, 164, 3);
  color: white;
  border: 2px solid rgb(253, 164, 3);
}

/* ****************************** */
/* Section 2 - part 2 */

.about .container .right{
  width: 50%;
}

.about .container .right img{
  width: 90%;
}




/* ************************************************************ */
/* Section 3 - part 1 */
.offer{
  background-color: #F8F9FA;
  margin: 30px 0px;
}
.offer .container{
  width: 80%;
  margin: 10px auto;
  text-align: center;
  padding: 70px 0px
}

.offer .container .top{
  padding: 70px 0px 30px;
  width: 60%;
  margin-bottom: 20px;
  margin: 20px auto;
}

.offer .container .top h4{
  color: #D4D4D4;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.offer .container .top h2{
  font-size: 56px;
  font-weight: 300;
  margin: 10px 0px;
}

.offer .container .top p{
  color: #B8B8B8;
  font-size: 20px;
  font-weight: 300;
  width: 80%;
  margin: 0px auto;
}

/* **************************** */
/* Section 3 - part 2 */
.offer .container .cards{
  display: flex;
  padding: 20px;
  width: 90%;
  margin: 10px auto;
}

.offer .container .cards .card{
  width: calc(97% / 3);
  margin: 0px auto;
  background-color: white;
}

.offer .container .cards .card .image img{
  width: 100%;
  margin-bottom: 10px;
}

.offer .container .cards .card .txt{
  padding: 35px;
}

.offer .container .cards .card .txt span{
  color: #FDA403;
  font-size: 20px;
  font-weight: 700;
}

.offer .container .cards .card .txt h5{
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0px;
}

.offer .container .cards .card .txt p{
  color:#B8B8B8;
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0px;
}

.offer .container .cards .card .txt button{
  margin: 15px 0px;
  padding: 11px 20px;
  background-color: #FDA403;
  border: none;
  font-size: 12px;
  font-weight: 400;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
} 

.offer .container .cards .card .txt button:hover{
  background-color:#CB8402;
}


/* Three Dots */

.offer .container .dots{
  width: 70px;
  height: 20px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer .container .dots .dot{
  width: 10px;
  height: 10px;
  background-color: #D4D4D4;
  border-radius: 50%;
  margin: 0px 7px;
  cursor: pointer;
  transition: all 0.3s;
}

.offer .container .dots .dot1{
  background-color: #FDA403;
}


/* ******************************************************** */
/* Section 4 - part 1 */

.menu{
  padding: 10px 0px;
}

.menu .container{
  width: 90%;
  margin: 10px auto;
  padding: 50px;
}

.menu .container .top{
  width: 50%;
  margin: 30px auto;
  line-height: 1.45;
  text-align: center;
}

.menu .container .top h2{
  font-size: 56px;
  font-weight: 300;
  margin: 10px 0px;
}

.menu .container .top p{
  color: #B8B8B8;
  font-size: 20px;
  font-weight: 300;
}

/* ****************************** */
/* Section 4 - part 2 */

.menu .container .bottom{
  margin: 30px 0px;
  padding: 30px;
}

.menu .container .bottom .choices{
  width: 40%;
  margin: 30px auto;
}

.menu .container .bottom .choices button{
  padding: 10px 16px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2.8px;
  border: 2px solid #D6D6D6;
  background-color: transparent;
  color: #D6D6D6;
  margin: 0px 5px;
  cursor: pointer;
}

.menu .container .bottom .choices .active{
  margin-left: 50px;
  color: black;
  border: 2px solid black;
}


.menu .container .bottom .menu-details{
  width: 95%;
  margin: 10px auto;
  display: flex;
}

.menu .container .bottom .menu-details .right .meal,
.menu .container .bottom .menu-details .left .meal{
  display: flex;
  margin: 30px 0px;
}

.menu .container .bottom .menu-details .right .meal .image img,
.menu .container .bottom .menu-details .left .meal .image img{
  width: 100px;
  border-radius: 50%;
  margin: 0px 0px 30px 30px;
}

.menu .container .bottom .menu-details .right .meal .txt,
.menu .container .bottom .menu-details .left .meal .txt{
  margin: 0px 0px 30px 30px;
}

.menu .container .bottom .menu-details .right .meal .txt h5,
.menu .container .bottom .menu-details .left .meal .txt h5{
  font-size: 20px;
  font-weight: 700;
}

.menu .container .bottom .menu-details .right .meal .txt p,
.menu .container .bottom .menu-details .left .meal .txt p{
  color: #B8B8B8;
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0px;
}


.menu .container .bottom .menu-details .right .meal .txt span,
.menu .container .bottom .menu-details .left .meal .txt span{
  color: #FDA403;
  font-size: 24px;
  font-weight: 500;
}


/* ******************************************************** */
/* Section 5 - part 1 */

.news{
  background-color: #F8F9FA;
  padding-bottom: 50px;
}

.news .container{
  width: 80%;
  margin: 10px auto;
  padding: 30px 0px;
}

.news .container .head{
  text-align: center;
  width: 50%;
  margin: 30px auto;
  padding: 30px 0px;
}

.news .container .head h2{
  font-size: 56px;
  font-weight: 300;
}

.news .container .head p{
  color: #B8B8B8;
  font-size: 20px;
  font-weight: 300;
}

.news .container .cards{
  width: 90%;
  margin: 30px auto;
  display: flex;
  text-align: center;
}

.news .container .cards .card{
  width: calc(97% / 3);
  margin: 0px 10px;
  background-color: white;
}

.news .container .cards .card img{
  width: 100%;
}


.news .container .cards .card .txt h5{
  font-size: 24px;
  font-weight: 700;
  width: 75%;
  margin: 15px auto;
  padding: 25px 0px 0px;
}

.news .container .cards .card .txt p{
  font-size: 16px;
  font-weight: 400;
  color: #B8B8B8;
  padding-bottom:20px ;
  width: 72%;
  margin: 0px auto;
}

.news .container .cards .card .txt button{
  background-color: #FDA403;
  color: white;
  font-size: 12px;
  font-weight: 400;
  padding: 10px 20px;
  border: none;
  margin-bottom: 30px;
  cursor: pointer;
  transition: all 0.5s;
}

.news .container .cards .card .txt button:hover{
  background-color: #CB8402;
}


/******************************************************** */
/* Section 6 - part 1 */
.gallery{
  padding: 50px;
  margin-bottom: 30px;
}

.gallery .container{
  width: 85%;
  margin: 10px auto;
}

.gallery .container .head{
  text-align: center;
  padding: 50px 0px;

}

.gallery .container .head h2{
  font-size: 56px;
  font-weight: 300;
}

.gallery .container .head p{
  color: #B8B8B8;
  font-size: 20px;
  font-weight: 300;
  width: 55%;
  margin: 0px auto;
  padding: 10px 0px;
}


/* *********************************** */
/* Section 6 - part 2 */

.gallery .container .images{
  width: 95%;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}

.gallery .container .images .photo{
  width: calc(95% / 3);
  margin: 2.5px 5px;
  overflow: hidden;
}

.gallery .container .images .photo img{
  width: 100%;
  transition: transform 0.5s;
}

.gallery .container .images .photo img:hover{
  transform: scale(1.1);
}

/* ***************************************************************** */
/* Section 7 - part 1 */

.contact{
  background-color: #F8F9FA;
  padding: 50px;
  margin-bottom: 30px;
}

.contact .container{
  width: 90%;
  margin: 10px auto;
}

.contact .container .top{
  text-align: center;
  padding: 50px 0px;
}

.contact .container .top h2{
  font-size: 56px;
  font-weight: 300;
}

.contact .container .top p{
  color: #B8B8B8;
  font-size: 20px;
  font-weight: 300;
  width: 55%;
  margin: 0px auto;
  padding: 10px 0px;
}


/* *********************************** */
/* Section 7 - part 2 */

.contact .container .bottom{
  width: 90%;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
}

.contact .container .bottom .left{
  width: 60%;
  margin: 0px 10px;
}

.contact .container .bottom .left form{
  width: 90%;
  margin: 0px auto;
  padding: 20px 0px;
  display: flex;
  flex-wrap: wrap;
}

.contact .container .bottom .left form input{
  width: 100%;
  margin-bottom: 20px;
  height: 55px;
  border: none;
  padding: 15px;
  background-color: #E6E6E6;
  font-size: 18px;
  font-weight: 400;
}

.contact .container .bottom .left form textarea{
  width: 100%;
  margin-bottom: 20px;
  border: none;
  padding: 15px;
  background-color: #E6E6E6;
  font-size: 18px;
  font-weight: 400;
}

.contact .container .bottom .left form button{
  background-color: #FDA403;
  color: white;
  font-size: 16px;
  font-weight: 400;
  padding: 15px 40px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.contact .container .bottom .left form button:hover{
  background-color: #CB8402;
}


.contact .container .bottom .right{
  width: 35%;
  padding: 20px 20px;
}

.contact .container .bottom .right .address .txt p,
.contact .container .bottom .right .address .txt h4,
.contact .container .bottom .right .address .txt h5{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;

}
.contact .container .bottom .right .address .txt h4,
.contact .container .bottom .right .address .txt h5{
  font-family: var(--paragraph-font);
}

.contact .container .bottom .right .address .txt h4{
  margin-top: 20px ;
}

.contact .container .bottom .right .address .txt h5{
  margin-bottom: 20px;
}

.contact .container .bottom .right .address .txt a{
  text-decoration: none;
  color: #FDA403;
}

.contact .container .bottom .right .address .photo{
  margin-bottom: 20px;
}

.contact .container .bottom .right .address .photo img{
  width: 100%;
}


/* **************************************************************** */
/* Section 8 - part 1 */

.last{
  padding: 112px 0px;
  background-color: #222222;
}

.last .container{
  width: 80%;
  margin: 0px auto;
  padding: 0px 0px 0px 50px;
}

.last .container .top{
  display: flex;
  justify-content: space-between;
  padding: 30px 50px;
}

.last .container .top .left{  
  width: 40%;
  padding-right: 50px;
}

.last .container .top .left h2,
.last .container .top .middle1 h2,
.last .container .top .right h2{
  color: rgba(255, 255, 255 , 0.6);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.last .container .top .left p{
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255 , 0.3);
  line-height: 1.5;
  width: 95%;
}

.last .container .top .right ul{
  list-style: none;
}

.last .container .top .right ul li{
  margin-bottom: 20px;
}

.last .container .top .right ul li a{
  text-decoration: none;
  color: rgba(255, 255, 255 , 0.3);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.5s;
}

.last .container .top .right ul li a:hover{
  color: #FDA403;
}


/* ************************************* */
/* Section 8 - part 2 */

.last .container .down{
  text-align: center;
  width: 90%;
  margin: 0px auto;
}

.last .container .down .icons{
  display: flex;
  justify-content: space-between;
  width: 20%;
  margin: 20px auto;
  
}

.last .container .down .icons .icon{
  background-color: #2D2D2D;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  padding-top: 18px;
  cursor: pointer;

}

.last .container .down .icons .icon i{
    font-size: 25px;
    font-weight: 400;
    color: rgba(255, 255, 255 , 0.3);
    transition: color 0.3s;
}

.last .container .down .icons .icon:hover i{
  color: white;
}

.last .container .down .txt{
  margin-top: 30px;
}

.last .container .down .txt p{
  font-size: 16px;
  color: rgba(255, 255, 255 , 0.3);
  font-weight: 400;
}




