@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap");
@import url("https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=latin-ext");
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --color-primary: #5ec576;
  --color-secondary: #ffcb03;
  --color-tertiary: #ff585f;
  --color-primary-darker: #4bbb7d;
  --color-secondary-darker: #ffbb00;
  --color-tertiary-darker: #fd424b;
  --color-primary-opacity: #5ec5763a;
  --color-secondary-opacity: #ffcd0331;
  --color-tertiary-opacity: #ff58602d;
  --gradient-primary: linear-gradient(to top left, #39b385, #9be15d);
  --gradient-secondary: linear-gradient(to top left, #ffb003, #ffcb03);
}





* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    -webkit-transition: .2s linear;
    transition: .2s linear;
    text-rendering: optimizeLegibility;
    font-weight: initial;
}
  
html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}
  
html::-webkit-scrollbar {
    width: 1rem;
}
  
html::-webkit-scrollbar-track {
    background: #fff;
  }
  
html::-webkit-scrollbar-thumb {
    background: #10221b;
  }
  
section {
    padding: 5rem 9%;
  }


.btn {
    margin-top: 1rem;
    display: inline-block;
    border: 0.2rem solid #10221b;
   
  
    color: #10221b;
    cursor: pointer;
    background: none;
    font-size: 1.7rem;
    padding: 1rem 3rem;
}
  
.btn:hover {
    background: #10221b;
    color: #fff;
}
  
.heading {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 4rem;
    color: #10221b;
}
  
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 9%;
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
  
.header.active {
    background: #fff;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
  
.header .logo {
    text-decoration: none;
    margin-right: auto;
    font-size: 2.5rem;
    color: #10221b;
    font-weight: bolder;
}
  
.header .logo i {
    color: #219150;
}
  
.header .navbar a {
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1.7rem;
    color: #10221b;
}
  
.header .navbar a:hover {
    color: #219150;
}
  
.header .navbar #nav-close {
    font-size: 5rem;
    cursor: pointer;
    color: #10221b;
    display: none;
}
  
.header .icons a,
.header .icons div {
    font-size: 2.5rem;
    margin-left: 2rem;
    cursor: pointer;
    color: #10221b;
}
  
.header .icons a:hover,
.header .icons div:hover {
    color: #219150;
}
  
.header #menu-btn {
    display: none;
}
  
.search-form {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 10000;
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
}
  
.search-form.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
}
  
.search-form #close-search {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    cursor: pointer;
    color: #fff;
    font-size: 6rem;
}
  
.search-form #close-search:hover {
    color: #219150;
}
  
.search-form form {
    width: 70rem;
    margin: 0 2rem;
    padding-bottom: 2rem;
    border-bottom: 0.2rem solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
  
.search-form form input {
    width: 100%;
    font-size: 2rem;
    color: #fff;
    text-transform: none;
    background: none;
    padding-right: 2rem;
}
  
.search-form form input::-webkit-input-placeholder {
    color: #aaa;
}
  
.search-form form input:-ms-input-placeholder {
    color: #aaa;
}
  
.search-form form input::-ms-input-placeholder {
    color: #aaa;
}
  
.search-form form input::placeholder {
    color: #aaa;
}
  
.search-form form label {
    font-size: 3rem;
    cursor: pointer;
    color: #fff;
}
  
.search-form form label:hover {
    color: #219150;
}
  

/* ----------------------------------------------------------------    header css ends ---------     */



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #eaeaea;
    overflow: hidden;
}

.container{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 950px;
    height: 600px;
    background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
}

.container .slide1 .item{
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide1 .item:nth-child(1),
.slide1 .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}


.slide1 .item:nth-child(3){
    left: 50%;
}
.slide1 .item:nth-child(4){
    left: calc(50% + 220px);
}
.slide1 .item:nth-child(5){
    left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide1 .item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}



.item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}


.slide1 .item:nth-child(2) .content{
    display: block;
}


.content .name{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}



.button{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
  
}

.button button{
  /* position: absolute;
  top: 50%;
  z-index: 10; */

  border: none;
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  color: #333;
  border-radius: 50%;
  height: 5.2rem;
  width: 5.2rem;
  font-size: 3.25rem;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 5px;

    /* width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s; */
}

.button button:hover{
    background: #10221b;
    color: #fff;
}

/* <---------------------------------banner---------------------------------------> */

.banner {
    width: 100%;
    height: 80vh;
  }
  
  
  .banner img {
    height : 100%;
    width: 100%;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
  }
  
  
  /* .banner img {
    height : 100%;
    width: 100%;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    } */

/* <----------------------banner section ends ----------------------------> */


.hero {
  padding: 0 3rem;
  padding-top: 30%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.hero__title {
  flex: 1;

  max-width: 115rem;
  display: grid;
  grid-template-columns: 3fr 2fr;
  row-gap: 3rem;
  align-content: center;
  justify-content: center;

  align-items: start;
  justify-items: start;
}
h1 {
  font-size: 5.5rem;
  line-height: 1.35;
}

h4 {
  font-size: 2.4rem;
  font-weight: 500;
}
.hero__img {
  width: 150%;
  height: 90%;
  grid-column: 2 / 3;
  grid-row: 1 / span 4;
  transform: translateY(-6rem);

 
 
}
.highlight {
  position: relative;
}

.highlight::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.7;
  transform: scale(1.07, 1.05) skewX(-15deg);
  background-image: var(--gradient-primary);
}


      .details{
        padding: 10px 50px ;
        padding-top: 10%;
      }

      .details h1 {
        font-size: 48px;
        font-weight: 800;
        line-height: 100px;
        color: var(--black);
        }
        
        
      .details p{
        font-size: 18px;
        font-weight: 300;
        line-height: 28px;
        color: var(--gray-1); 
        padding-top: 20px;
        }









        :root {
          --color-primary: #5ec576;
          --color-secondary: #ffcb03;
          --color-tertiary: #ff585f;
          --color-primary-darker: #4bbb7d;
          --color-secondary-darker: #ffbb00;
          --color-tertiary-darker: #fd424b;
          --color-primary-opacity: #5ec5763a;
          --color-secondary-opacity: #ffcd0331;
          --color-tertiary-opacity: #ff58602d;
          --gradient-primary: linear-gradient(to top left, #39b385, #9be15d);
          --gradient-secondary: linear-gradient(to top left, #ffb003, #ffcb03);
        }
        
        * {
          margin: 0;
          padding: 0;
          box-sizing: inherit;
        }
        
        html {
          font-size: 62.5%;
          box-sizing: border-box;
        }
        
        body {
          font-family: 'Poppins', sans-serif;
          font-weight: 300;
          color: #444;
          line-height: 1.9;
          background-color: #f3f3f3;
        }
        
        /* GENERAL ELEMENTS */
        .section {
          padding: 15rem 3rem;
          border-top: 1px solid #ddd;
        
          transition: transform 1s, opacity 1s;
        }
        
        .section--hidden {
          opacity: 0;
          transform: translateY(8rem);
        }
        
        .section__title {
          max-width: 80rem;
          margin: 0 auto 8rem auto;
        }
        
        .section__description {
          font-size: 1.8rem;
          font-weight: 600;
          text-transform: uppercase;
          color: var(--color-primary);
          margin-bottom: 1rem;
        }
        
        .section__header {
          font-size: 4rem;
          line-height: 1.3;
          font-weight: 500;
        }
        
        .btn {
          display: inline-block;
          background-color: var(--color-primary);
          font-size: 1.6rem;
          font-family: inherit;
          font-weight: 500;
          border: none;
          padding: 1.25rem 4.5rem;
          border-radius: 10rem;
          cursor: pointer;
          transition: all 0.3s;
        }
        
        .btn:hover {
          background-color: var(--color-primary-darker);
        }
        
        .btn--text {
          display: inline-block;
          background: none;
          font-size: 1.7rem;
          font-family: inherit;
          font-weight: 500;
          color: var(--color-primary);
          border: none;
          border-bottom: 1px solid currentColor;
          padding-bottom: 2px;
          cursor: pointer;
          transition: all 0.3s;
        }
        
        p {
          color: #666;
        }
        
        /* This is BAD for accessibility! Don't do in the real world! */
        button:focus {
          outline: none;
        }
        
        img {
          transition: filter 0.5s;
        }
        
        .lazy-img {
          filter: blur(20px);
        }
        
        /* NAVIGATION */
        .nav {
          display: flex;
          justify-content: space-between;
          align-items: center;
          height: 9rem;
          width: 100%;
          padding: 0 6rem;
          z-index: 100;
        }
        
        /* nav and stickly class at the same time */
        .nav.sticky {
          position: fixed;
          background-color: rgba(255, 255, 255, 0.95);
        }
        
        .nav__logo {
          height: 4.5rem;
          transition: all 0.3s;
        }
        
        .nav__links {
          display: flex;
          align-items: center;
          list-style: none;
        }
        
        .nav__item {
          margin-left: 4rem;
        }
        
        .nav__link:link,
        .nav__link:visited {
          font-size: 1.7rem;
          font-weight: 400;
          color: inherit;
          text-decoration: none;
          display: block;
          transition: all 0.3s;
        }
        
        .nav__link--btn:link,
        .nav__link--btn:visited {
          padding: 0.8rem 2.5rem;
          border-radius: 3rem;
          background-color: var(--color-primary);
          color: #222;
        }
        
        .nav__link--btn:hover,
        .nav__link--btn:active {
          color: inherit;
          background-color: var(--color-primary-darker);
          color: #333;
        }
        
        
        

        
        
        /* FEATURES */
        .features {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 4rem;
          margin: 0 12rem;
        }
        
        .features__img {
          width: 100%;
        }
        
        .features__feature {
          align-self: center;
          justify-self: center;
          width: 70%;
          font-size: 1.5rem;
        }
        
        .features__icon {
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: var(--color-primary-opacity);
          height: 5.5rem;
          width: 5.5rem;
          border-radius: 50%;
          margin-bottom: 2rem;
        }
        
        .features__icon svg {
          height: 2.5rem;
          width: 2.5rem;
          fill: var(--color-primary);
        }
        
        .features__header {
          font-size: 2rem;
          margin-bottom: 1rem;
        }
        
        /* OPERATIONS */
        .operations {
          max-width: 100rem;
          margin: 12rem auto 0 auto;
        
          background-color: #fff;
        }
        
        .operations__tab-container {
          display: flex;
          justify-content: center;
        }
        
        .operations__tab {
          margin-right: 2.5rem;
          transform: translateY(-50%);
        }
        
        .operations__tab span {
          margin-right: 1rem;
          font-weight: 600;
          display: inline-block;
        }
        
        .operations__tab--1 {
          background-color: var(--color-secondary);
        }
        
        .operations__tab--1:hover {
          background-color: var(--color-secondary-darker);
        }
        
        .operations__tab--3 {
          background-color: var(--color-tertiary);
          margin: 0;
        }
        
        .operations__tab--3:hover {
          background-color: var(--color-tertiary-darker);
        }
        
        .operations__tab--active {
          transform: translateY(-66%);
        }
        
        .operations__content {
          display: none;
        
          /* JUST PRESENTATIONAL */
          font-size: 1.7rem;
          padding: 2.5rem 7rem 6.5rem 7rem;
        }
        
        .operations__content--active {
          display: grid;
          grid-template-columns: 7rem 1fr;
          column-gap: 3rem;
          row-gap: 0.5rem;
        }
        
        .operations__header {
          font-size: 2.25rem;
          font-weight: 500;
          align-self: center;
        }
        
        .operations__icon {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 7rem;
          width: 7rem;
          border-radius: 50%;
        }
        
        .operations__icon svg {
          height: 2.75rem;
          width: 2.75rem;
        }
        
        .operations__content p {
          grid-column: 2;
        }
        
        .operations__icon--1 {
          background-color: var(--color-secondary-opacity);
        }
        .operations__icon--2 {
          background-color: var(--color-primary-opacity);
        }
        .operations__icon--3 {
          background-color: var(--color-tertiary-opacity);
        }
        .operations__icon--1 svg {
          fill: var(--color-secondary-darker);
        }
        .operations__icon--2 svg {
          fill: var(--color-primary);
        }
        .operations__icon--3 svg {
          fill: var(--color-tertiary);
        }
        
        /* SLIDER */
        .slider {
          max-width: 100rem;
          height: 50rem;
          margin: 0 auto;
          position: relative;
        
          /* IN THE END */
          overflow: hidden;
        }
        
        .slide {
          position: absolute;
          top: 0;
          width: 100%;
          height: 50rem;
        
          display: flex;
          align-items: center;
          justify-content: center;
        
          /* THIS creates the animation! */
          transition: transform 1s;
        }
        
        .slide > img {
          /* Only for images that have different size than slide */
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        
        .slider__btn {
          position: absolute;
          top: 50%;
          z-index: 10;
        
          border: none;
          background: rgba(255, 255, 255, 0.7);
          font-family: inherit;
          color: #333;
          border-radius: 50%;
          height: 5.5rem;
          width: 5.5rem;
          font-size: 3.25rem;
          cursor: pointer;
        }
        
        .slider__btn--left {
          left: 6%;
          transform: translate(-50%, -50%);
        }
        
        .slider__btn--right {
          right: 6%;
          transform: translate(50%, -50%);
        }
        
        .dots {
          position: absolute;
          bottom: 5%;
          left: 50%;
          transform: translateX(-50%);
          display: flex;
        }
        
        .dots__dot {
          border: none;
          background-color: #b9b9b9;
          opacity: 0.7;
          height: 1rem;
          width: 1rem;
          border-radius: 50%;
          margin-right: 1.75rem;
          cursor: pointer;
          transition: all 0.5s;
        
          /* Only necessary when overlying images */
          /* box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.7); */
        }
        
        .dots__dot:last-child {
          margin: 0;
        }
        
        .dots__dot--active {
          /* background-color: #fff; */
          background-color: #888;
          opacity: 1;
        }
        
        /* TESTIMONIALS */
        .testimonial {
          width: 65%;
          position: relative;
        }
        
        .testimonial::before {
          content: '\201C';
          position: absolute;
          top: -5.7rem;
          left: -6.8rem;
          line-height: 1;
          font-size: 20rem;
          font-family: inherit;
          color: var(--color-primary);
          z-index: -1;
        }
        
        .testimonial__header {
          font-size: 2.25rem;
          font-weight: 500;
          margin-bottom: 1.5rem;
        }
        
        .testimonial__text {
          font-size: 1.7rem;
          margin-bottom: 3.5rem;
          color: #666;
        }
        
        .testimonial__author {
          margin-left: 3rem;
          font-style: normal;
        
          display: grid;
          grid-template-columns: 6.5rem 1fr;
          column-gap: 2rem;
        }
        
        .testimonial__photo {
          grid-row: 1 / span 2;
          width: 6.5rem;
          border-radius: 50%;
        }
        
        .testimonial__name {
          font-size: 1.7rem;
          font-weight: 500;
          align-self: end;
          margin: 0;
        }
        
        .testimonial__location {
          font-size: 1.5rem;
        }
        
        .section__title--testimonials {
          margin-bottom: 4rem;
        }






































.newsletter {
  background: #eee;
}

.newsletter .content {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
}

.newsletter .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: #10221b;
}

.newsletter .content form {
  margin-top: 2rem;
  background: #fff;
  border-radius: 5rem;
  border: 0.2rem solid #10221b;
  padding: .7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsletter .content form .email {
  width: 100%;
  background: none;
  text-transform: none;
  font-size: 1.6rem;
  color: #10221b;
  padding: 0 1.3rem;
}

.newsletter .content form .btn {
  margin-top: 0;
  border-radius: 5rem;
  background: #10221b;
  color: #fff;
}

.newsletter .content form .btn:hover {
  background: none;
  color: #10221b;
}

.clients .silde {
  text-align: center;
}

.clients .silde img {
  height: 12rem;
}



























































  
















      /* <---------------------------map location-----------------------------------------> */

      .map h1{
        font-size: 35px;
      }


      .google-map {
        padding-bottom: 50%;
        position: relative;
      }
      
      .google-map iframe {
        height: 70%;
        width: 100%;
        left: 0;
        top: 0;
        position: absolute;
      }










     









  














      










      /* <------------------------------------footer section starts----------------------------------> */




      .footer {
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../assets/Images/image38.jpg) no-repeat;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/Images/image38.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
    
    .footer .box-container {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
          grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
      gap: 1.5rem;
      
    }
    
    .footer .box-container .box h3 {
      font-size: 2rem;
      padding: 1.5rem 0;
      color: #fff;
      
    }
    
    .footer .box-container .box a {
      display: block;
      font-size: 1.4rem;
      color: #fff;
      padding: 1rem 0;
      text-decoration: none;
    }
    
    .footer .box-container .box a i {
      color: #219150;
      padding-right: .5rem;
    }
    
    .footer .box-container .box a:hover {
      color: #219150;
    }
    
    .footer .box-container .box a:hover i {
      padding-right: 2rem;
    }
    
    .footer .credit {
      text-align: center;
      margin-top: 2.5rem;
      padding: 1rem;
      padding-top: 2.5rem;
      font-size: 2rem;
      color: #fff;
    }
    
    .footer .credit span {
      color: #219150;
    }




    /* ------------------scroller to top css------------------------------------ */


.to-top {
  background: rgb(22, 21, 25);
  position: fixed;
  bottom: 16px;
  right:32px;
  width:50px;
  height:50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:32px;
  /* color:#1f1f1f; */
  color: #fff;
  text-decoration: none;
  opacity:0;
  pointer-events: none;
  transition: all .4s;
  cursor: pointer;
}

.to-top.active {
  bottom:32px;
  pointer-events: auto;
  opacity:1;
}
   




.video-section{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}






.dropdown {
  display: inline-block;
  position: relative;
}

.button1{
  border:none;
  border-radius:5px;
  padding:15px 20px;
  font-size:18px;
  cursor:pointer;
  background-color: inherit;

}

.button1:hover{
  background-color: inherit;
}

.dropdown-options {
  display: none;
  position: absolute;
  overflow: auto;
  background-color:#D7EDDB;
  border-radius:5px;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
}

.dropdown:hover .dropdown-options {
  display: block;
}

.dropdown-options a {
  display: block;
  color: #000000;
  padding: 5px;
  text-decoration: none;
  padding:20px 20px;
}

.dropdown-options a:hover {
  color: whitesmoke;
  background-color: inherit;
  border-radius:5px;
}











/* resturants */

.page-wrapper {
  min-height: 100%;
}
.history-list {

  padding: 10px 32px;
}


.history-list a {
  text-decoration: none;
}


.restaurants-link {
  color: #6e0101;
  font-size: 2.25rem;
  font-weight: 500;
  text-align: justify;
}