@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat-Regular/Montserrat-Regular.eot");
  src: url("../fonts/Montserrat-Regular/Montserrat-Regular.eot") format("embedded-opentype"),
    url("../fonts/Montserrat-Regular/Montserrat-Regular.woff") format("woff"),
    url("../fonts/Montserrat-Regular/Montserrat-Regular.ttf") format("truetype"),
    url("../fonts/Montserrat-Regular/Montserrat-Regular.svg#PFDinTextProMedium") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat-Bold/Montserrat-Bold.eot");
  src: url("../fonts/Montserrat-Bold/Montserrat-Bold.eot") format("embedded-opentype"),
    url("../fonts/Montserrat-Bold/Montserrat-Bold.woff") format("woff"),
    url("../fonts/Montserrat-Bold/Montserrat-Bold.ttf") format("truetype"),
    url("../fonts/Montserrat-Bold/Montserrat-Bold.svg#PFDinTextProMedium") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Montserrat-Regular", sans-serif;
  margin: 0;
}

/**************header***************/
.header {
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}


.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #EFB00F;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #EFB00F;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked~.menu {
  max-height: 240px;
  margin-bottom: 25px;
}

.header .menu-btn:checked~.menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
  .header li {
    float: left;
  }

  .header li a {
    padding: 42px 0;
  }

  .header .menu {
    clear: none;
    margin: 0 auto;
    max-height: none;
  }

  .header .menu-icon {
    display: none;
  }
}
/***************animate.css*****************/






.animate {
  animation-duration: 0.75s;
  animation-delay: 0.5s;
  animation-name: animate-fade;
  animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
  animation-fill-mode: backwards;
}

/* Fade In */
.fade {
  animation-name: animate-fade;
  animation-timing-function: ease;
}

@keyframes animate-fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/* Slide In */
.slide { animation-name: animate-slide; }

@keyframes animate-slide {
  0% {
    opacity: 0;
    transform: translate(0, 40px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* Slide Left */
.slide-left { animation-name: animate-slide-left; }

@keyframes animate-slide-left {
  0% {
    opacity: 0;
    transform: translate(-40px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* Slide Right */
.slide-right { animation-name: animate-slide-right; }

@keyframes animate-slide-right {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* Slide Logo */
.slide-logo { animation-name: slide-logo; }

@keyframes slide-logo {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* Animation Delays */
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.6s;
}
.delay-3 {
  animation-delay: 0.9s;
}
.delay-4 {
  animation-delay: 1.2s;
}
.delay-5 {
  animation-delay: 1.5s;
}
.delay-6 {
  animation-delay: 1.8s;
}
.delay-7 {
  animation-delay: 2.1s;
}
.delay-8 {
  animation-delay: 2.4s;
}
.delay-9 {
  animation-delay: 2.7s;
}
.delay-10 {
  animation-delay: 3s;
}
.delay-11 {
  animation-delay: 3.3s;
}
/*************animate.css end*******************/
.header-inner {
  height: 60px;
  background: #172925;
}

.inner-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 55px;
  height: 100%;
}

.inner-banner a {
  color: #fff;
  font-family: "Montserrat-Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
}

.logo {
  display: flex;
  margin: 30px auto;
  align-items: center;
  justify-content: center;
  width: 300px;
}
.logo img{
  width: 100%;
}
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 45px 80px 90px;
  margin: 0;
  list-style-type: none;
}

.navbar li a {
  font-family: 'Montserrat-Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 39px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #EFB00F;
}

/**************header end***************/

/*******************home page*******************/


.home-banner img {
  border-bottom: 19px solid #EFB00F;
  width: 100%;
  object-fit: cover;
}

.home-description-section {
  padding: 20px 71px 74px;
}

.description {
  font-style: normal;
  font-size: 22px;
  font-weight: 300;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #000000;
  padding: 15px 70px 0;
  margin: 0;
  line-height: 39px;
}

.home-middle-banner {
  
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
}

.home-middle-banner div {
  width: 49%;
}

.home-middle-banner div img {
  width: 100%;
}

/***********spaces page***********/
.section-banner {
  background-color: #172925;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-banner h2 {
  font-family: "Montserrat-Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 78px;
  /* identical to box height */
  display: flex;
  align-items: center;
  color: #EFB00F;
}

/***************/
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-heading h2 {
  font-family: 'Montserrat-Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 78px;
  display: flex;
  align-items: center;
  color: #EFB00F;
  margin-bottom: 20px;
}

/***********/
.section-inner-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

.section-inner-heading h3 {
  margin: 20px 0;
  width: 400px;
  font-family: "Montserrat-Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 60px;
  text-align: center;
  color: #172925;
}

.section-inner-heading::before {
  content: "";
  width: 227px;
  height: 7px;
  background: #172925;
}

/****************************services***********************/
.services-list {
  padding: 0;
}

.services-list li {
  display: flex;
  align-items: center;
  padding: 0 100px;
  height: 80px;
}

.services-list li:nth-child(even) {
  background: rgba(48, 56, 80, 0.1);
}

.services-icon {
  width:50px;
}
.services-icon img {
  width:100%;
}
.services-list li span {
  margin-left: 55px;
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  line-height: 39px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #000000;
}

.liner {
  width: 100%;
  background: #172925;
  height: 10px;
}

/******************about us *****************/
.about-us-container {
  position: relative;
}

.about-us-decoration {
  position: absolute;
  right: 0;
  top: -177px;
  z-index: -1;
}

.about-us-box {
  width: 90%;
  background: #EFB00F;
  padding: 140px 0;
  margin: 177px 0 190px;
}

.about-us-heaing {
  height: 113px;
  left: 0px;
  top: 1152px;
  background: #EFB00F;
}

footer {
  height:160px;
  margin-top: 45px;
  background-color: #000000;
}

.about-us-heading {
  height: 113px;
  background: #EFB00F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:100px 0 50px;
}

.about-us-heading h3 {
  font-family: 'Montserrat-Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 78px;
  /* identical to box height */
  color: #172925;
}

.about-us-desctiption p {
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  line-height: 150.9%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  padding: 30px 0 0;
}

/*********spaces-container***************/
.spaces-gray-bg {
  background: rgba(48, 56, 80, 0.1);
  padding: 70px 0;
}

.spaces-decoration-banner.spaces-gray-bg {
  display: flex;
  align-items: flex-end;
  justify-content: end;
  position: relative;
  padding-right: 30px;
}

.spaces-decoration-banner.spaces-gray-bg div {
  padding-right: 13px;
  ;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  position: relative;
  padding-right: 30px;
  width: 100%;
}

.spaces-decoration-banner.spaces-gray-bg div img {
  margin-right: 13px;
  ;
}

.spaces-decoration-banner.spaces-gray-bg div::after {
  content: "";
  position: absolute;
  background-color: #EFB00F;
  height: 475px;
  width: 400px;
  z-index: -1;
  bottom: -13px;
}

.spaces-heading {
  border-top: 21px solid #EFB00F;
  padding-top: 60px;
}

.spaces-heading::before {
  display: none;
}

.spaces-decoration-banner {
  display: flex;
  position: relative;
  margin: 89px 0;
}

.spaces-decoration-banner div {
  padding-left: 13px;
  ;
  display: flex;
  position: relative;
  padding-right: 30px;
  width: 100%;
}

.spaces-decoration-banner div img {
  margin-left: 13px;
  ;
}

.spaces-decoration-banner div::after {
  content: "";
  position: absolute;
  background-color: #EFB00F;
  height: 475px;
  width: 400px;
  z-index: -1;
  bottom: -13px;
}





.spaces-img-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.spaces-img-banner {
  display: flex;
  width: 100%;
  justify-content: center;
}

/***************map-container*************/
.responsive-map {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border-bottom: 20px solid #EFB00F;
  margin-bottom: 120px;
}

.responsive-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/*************************/
.contact-us-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 651px;
  margin: 0 auto 120px;
}

.contact-us-heading::after {
  content: '';
  width: 200px;
  height: 137px;
  right: 63px;
  top: 66px;
  background: #EFB00F;
  position: absolute;
  z-index: -1;
}

.contact-us-heading h3 {
  font-family: 'Montserrat-Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 78px;
  /* identical to box height */
  color: #172925;
}

.contact-us-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 25px;
}


/********restaurant-page-container********************/


.restaurant-page-container,
.restaurant-page-second-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 71px;
}

.restaurant-page-container .rh-left-container::after {
  content: "";
  position: absolute;
  width: 309px;
  height: 244px;
  left: 0px;
  bottom: 100px;
  background: #EFB00F;
  z-index: -1;
}

.restaurant-page-container .rh-right-container::after {
  content: "";
  position: absolute;
  width: 309px;
  height: 613px;
  right: 0px;
  bottom: -26px;
  background: #EFB00F;
  z-index: -1;
}

.restaurant-page-container .rh-left-container {
  width: 50%;
}

.restaurant-page-container .rh-left-container p {
  padding: 30px 0 30px 20px;
  text-align: left;
}

.restaurant-page-container .rh-right-container {
  width: 440px;
}
.rh-right-container>div{
  width: 410px;
  height: 615px;
}
.rh-right-container>div img{
  width: 100%;
}
.restaurant-page-second-container .rh-left-container::after {
  content: "";
  position: absolute;
  width: 630px;
  height: 422px;
  left: 0;
  bottom: -26px;
  background: #EFB00F;
  z-index: -1;
}

.restaurant-page-second-container .rh-right-container::after {
  content: "";
  position: absolute;
  width: 309px;
  height: 200px;
  right: 0px;
  bottom: -81px;
  background: #EFB00F;
  z-index: -1;
}

.restaurant-page-second-container .rh-right-container p {
  text-align: right;
  padding: 0;
}

.restaurant-page-second-container .rh-left-container {
  width: 65%;
  padding-left: 26px;
}

.restaurant-page-second-container .rh-left-container p {
  padding: 30px 0 30px 20px;
  text-align: left;
}

.restaurant-page-second-container .rh-right-container {
  width: calc(50% - 60px);
  position: relative;
  padding-right: 30px;
}


/*********************responsive css*****************/
@media screen and (min-width: 1200px) {
  .main-container {
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1200px) {
  .restaurant-page-second-container .rh-left-container {
    padding-left: 26px;
  }

  .restaurant-page-second-container .rh-left-container::after {
    width: 527px;
    height: 356px;
  }

  .navbar {
    padding: 0 30px !important;
  }

  .navbar li a {
    font-size: 26px;
  }

  .navbar {
    padding: 45px 30px 90px;
  }

  .inner-banner {
    padding: 0 30px;
  }

  .description {
    padding: 30px 15px 0;
  }

  .home-description-section {
    padding: 40px 15px 74px;
  }

  .section-inner-heading {
    margin-top: 40px;
  }

}

@media screen and (max-width:960px) {
  .restaurant-page-container .rh-right-container {
    width: auto;
  }

  .restaurant-page-container {
    flex-direction: column-reverse;
  }

  .restaurant-page-second-container {
    flex-direction: column;
  }

  .restaurant-page-second-container img {
    width: 100%;
  }

  .restaurant-page-container .rh-left-container p,
  .restaurant-page-second-container .rh-right-container p {
    padding: 30px 0 0 0;
    text-align: center;
  }

  .restaurant-page-second-container .rh-left-container::after,
  .restaurant-page-second-container .rh-right-container::after,
  .restaurant-page-container .rh-right-container::after {
    display: none;
  }

  .restaurant-page-container .rh-left-container::after {
    bottom: -44px;
    right: 100px;
    left: auto;
  }

  .restaurant-page-second-container .rh-right-container {
    width: auto;
    padding: 0 20px;
  }

  .restaurant-page-second-container .rh-left-container {
    width: auto;
    padding: 0;
  }

  .section-banner {
    padding: 40px;
  }

  .section-banner h2 {
    font-size: 34px;
    margin: 0;
  }

  .navbar li a {
    font-size: 22px;
  }

  .inner-banner a {
    font-size: 16px;
  }

  .section-heading h2 {
    font-size: 36px;
    margin: 0;
  }

  .services-list li {
    padding: 0 30px;
    height: 80px;
  }
  li span {
    margin-left: 20px;
    font-size: 26px;
  }
}

@media screen and (max-width:767px) {
  .about-us-heading {
    margin-top: 90px;
  }

  .about-us-heading h3 {
    font-size: 26px;
  }



  .description {
    font-size: 18px;
  }

  .section-banner {
    padding: 20px;
  }

  .section-banner h2 {
    font-size: 26px;
    margin: 0;
  }

  .spaces-img-container img,
  .spaces-img-banner img,
  .spaces-decoration-banner img {
    width: 87%;
    margin: 0 auto !important;
    display: flex;
  }

  .spaces-decoration-banner.spaces-gray-bg {
    padding: 0;
  }

  .spaces-decoration-banner.spaces-gray-bg div,
  .spaces-decoration-banner div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
  }

  .spaces-decoration-banner.spaces-gray-bg div::after,
  .spaces-decoration-banner div::after {
    display: none;
  }

  .spaces-img-container,
  .spaces-img-banner {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .navbar {
    display: block;
  }

  .navbar li a {
    font-size: 16px;
  }

  .navbar {
    padding: 0 15px 30px;
  }

  .services-list li span {
    margin-left: 20px;
    font-size: 16px;
  }

  .services-list li .services-icon {
    width: 50px;

  }

  .services-list li .services-icon img {
    width: 100%;

  }

  .section-inner-heading h3 {
    margin: 0;
    width: auto;
    font-size: 26px;
  }

  .contact-us-heading {
    width: auto;
  }
  .contact-us-heading::after {
    width: 180px;
    height: 148px;
    right: 124px;
    top: 75px;
}
  .contact-us-heading h3 {
    font-size: 36px;
  }
}

@media screen and (max-width:580px) {
  .logo img {
    width: 64%;
  }
  
  .inner-banner { 
    padding:0 10px; 
  }

  .navbar li a {
    font-size: 14px;
    font-weight: bold;
  }
  
  .spaces-decoration-banner {
    margin:30px 0;
  }
}


@media screen and (min-width:767px) {
  .hy_menu1 {
    display: flex;
    justify-content: center;
    padding: 42px 0 21px 0;
  }
  .hy_menu2{
    display: flex;
    justify-content: center;
    padding: 21px 0 42px 0;
  }
}

@media screen and (max-width:767px) {
  .hy_menu2{
    width: auto;
  }
}

.dropbtn {
  background-color: rgb(245, 225, 167);
  color: black;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  width: 100px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.dropbtn > img{
  width: 20px;
  margin-left: 14px;
}
.dropdown {
  position: absolute; 
  top:68px; 
  right:30px;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;

  width: 100px;
  background-color: rgb(245, 225, 167);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.dropdown:hover .dropdown-content {
  display: block;
  border-radius: 0 0 10px 10px;
  
}

.dropdown:hover .dropbtn {
  background-color: rgb(245, 225, 167);
  border-radius: 10px 10px 0 0;
}

@media screen and (max-width:767px) {
  .dropbtn > img{
    width: 16px;
    margin-left: 10px;
  }
  .dropbtn {
    width: 80px !important;
    padding: 10px 14px;
  }
  .dropdown-content {
    width: 80px !important;
    
  }
  .dropdown-content a{
    padding: 10px 14px;
  }
}

.home-orange-line {
  height: 113px;
  background: #EFB00F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -58px;
}


@media screen and (max-width:960px) {
  .home-middle-banner{
    display: block;
  }
  .home-middle-banner div {
    width: calc(100% - 40px);
    padding: 20px !important;
  }
  .home-orange-line{
    margin-top: 0px !important;
  }
}

@media screen and (max-width:666px) {
  .about-us-box{
    width: 100% !important;
  }
}