@font-face {
  font-family: paragraph;
  src: url(assets/fonts/Futura\ Bk\ BT\ Book.ttf);
}

@font-face {
  font-family: number;
  src: url(assets/fonts/times.ttf);
}

@font-face {
  font-family: heading;
  src: url(assets/fonts/morthern-morthern-400.ttf);
}

@font-face {
  font-family: heading1;
  src: url(assets/fonts/The\ New\ Elegance.ttf);
}

@font-face {
  font-family: Scrolltext;
  src: url(assets/fonts/Trajan.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: ProductSans;
}

html,
body {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

ul {padding-left: 0rem;}

/*----------------------------------
Scrolling Text
-----------------------------------*/
/* Container styles */
.scrolling-text-container {
  display: flex;
  background-color: #AD2847;
  color: #AF9142;
  border-radius: 4px;
  overflow: hidden;
}

.scrolling-text-inner {
  display: flex;
  white-space: nowrap;
}

.scrolling-text {
  display: flex;
  margin: 15px 0px;
}

.scrolling-text img{
  width:1000px;
  margin-left: 20px;
}

.scrolling-text-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Scrolltext;
  text-transform: uppercase;
  outline: none;
}

.scrolling-text-inner > div {
  animation: var(--direction) var(--marquee-speed) linear infinite;
}

@keyframes scroll-left {
  0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(0%);
  }
}

/*----------------------------------
Navbar
-----------------------------------*/
.desktop-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10vh;
  background-color: #AD2847;
  /* position: fixed; */

}

.nav-desk-logo{
  width: 30%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-cntr-menu{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100%;
  gap: 3vw;
}

.nav-rght-menu{
  width: 30%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-cntr-menu a{
 text-decoration: none;
 color: #CEA94D;
 font-size: 18px;
 font-family: paragraph;
} 

.nav-bg{
  background-image: url(assets/img/Pattern-1.png);
  background-size: 50%;
  background-position: center;
  width: 85%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.menu-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  transition: 0.4s;
  text-align: center;
  background-color: #CEA94D;
  color: #fff;
  font-family: paragraph;
  font-size: 14px;
  padding: 10px 0;
  min-width: 160px;
  cursor: pointer;
}

/* Shining effect */
.menu-btn:after {
  content: "";
  position: absolute;
  top: -50px;
  left: -75px;
  width: 50px;
  height: 200px;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(25deg);
  transition: all 750ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-btn:hover:after {
  left: 200%;
  transition: all 750ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* Hover effect */
.menu-btn:hover {
  background-color: #CEA94D;
}
.menu-btn a{
  text-decoration: none;
  color: #fff;
}

.header-main {
  background-size: 60%;
  background-color: #AD2847;
}

.nav-logo, .nav-menu-btn, .middle-nav-menu{
  justify-content: center;
  text-align: center;
  display: flex;
}


.middle-nav-menu a {
  text-decoration: none;
  color: #CEA94D;
  font-family: paragraph;
  gap: 5vw;
  width: 5vw;
  justify-content: center;
  text-align: center;
}

.menu li {
  list-style: none;
}

.nav-mobile-menu {
  visibility: hidden;
  opacity: 0;
  background: white;
  width: 0px;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  top: 0;
  padding-top: 130px;
  text-align: center;
  font-family: paragraph;
  left: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 999;
  background-color: #AD2847;
}

.active.nav-mobile-menu {
  visibility: visible;
  opacity: 1;
  width: 100vw;
}

.nav-mobile-menu a {
  color: #AF9142;
  font-family: paragraph;
  text-decoration: none;
}

.nav-mobile-menu ul li {
  white-space: nowrap;
  list-style: none;
  cursor: pointer;
  margin-bottom: 30px;
  font-size: 22px;
  color: #E2A64E;
  font-weight: 700;
}

.nav-mobile-menu ul li {
  margin-top: 65px;
}

.nav-mobile-menu ul li:nth-child(1) {
  margin-top: 0;
}

/****************
     BUTTON
****************/
.nav-mobile-button {
  overflow: hidden;
  margin: auto;
  width: 60px;
  height: 70px;
  background: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 45%;
  z-index: 1000;
  margin-top: -5px;
}

#nav-mobile-bar-top {
  top: 30px;
}

#nav-mobile-bar-middle {
  top: 40px;
}

#nav-mobile-bar-bottom {
  top: 50px;
}

.nav-mobile-bar {
 left: 35px;
  width: 30px;
  height: 2.4px;
  background: #000;
  position: absolute;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.active#nav-mobile-bar-middle {
  left: 90px;
}

.active#nav-mobile-bar-top {
  top: 45px;
  transform: rotate(135deg);
  background: black;
}


.active#nav-mobile-bar-bottom {
  top: 45px;
  transform: rotate(-135deg);
  background: black;
}

/*Hover effects*/
.nav-mobile-button:hover #nav-mobile-bar-top:not(.active) {
  left: 20px;
}

.nav-mobile-button:hover #nav-mobile-bar-middle:not(.active) {
  left: 10px;
}

.nav-mobile-button:hover #nav-mobile-bar-bottom:not(.active) {
  left: 20px;
}

/*Hover effects active*/
.nav-mobile-button:hover .active#nav-mobile-bar-top {
  top: 50px;
  left: 10px;
}

.nav-mobile-button:hover .active#nav-mobile-bar-bottom {
  top: 40px;
  left: 10px;
}

.nav-btn {
  background-color: #E2A64E;
  width: 150px;
  border: 1px solid #E2A64E;
  font-family: paragraph;
  padding: 8px 0px 8px 0px;
  position: absolute;
  margin-top: 12px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

.nav-btn:hover {
  background-color: #CEA94D;
  border: 1px solid #CEA94D;
}

.nav-btn-1, .nav-btn-3 , .explore-btn{
  background-color: #AD2847;
  width: 140px;
  border: 1px solid #AD2847;
  padding: 10px 0px 10px 0px;
  margin-top: 12px;
  font-size: 16px;
  color: #fff;
  font-family: number;
  transition: cubic-bezier(0.19, 1, 0.22, 1).7s;
}

.nav-btn-3{
  width: 200px;
}


.nav-btn-2 {
  background-color: #CEA94D;
  width: 160px;
  border: 1px solid #CEA94D;
  font-family: paragraph;
  padding: 8px 0px 8px 0px;
  position: absolute;
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
  transition: cubic-bezier(0.19, 1, 0.22, 1).7s;
  font-weight: 500;
}

.nav-btn-2:hover{
  background-color: #AD2847;
  border: 1px solid #CEA94D;
  color: #CEA94D;
}

.nav-btn-1:hover , .nav-btn-3:hover {
  background-color: #CEA94D;
  border: 1px solid #CEA94D;
}

.header-img img{
  border-top: 5px solid #E2A64E;
} 

/*----------------------------------
Navbar-end
-----------------------------------*/
.about h2 {
  margin-bottom: 20px;
  font-weight: 400;
  font-family: Paragraph;
}

.about p {
  text-align: justify;
  font-family: paragraph;
  font-weight: 500;
}

.about-content {
  margin-top: 60px;
}

.about {
  margin: 40px 0px;
}

.banner-section {
  width: 100%;
  height: 50vh;
  background-color: #000;
}


/*---------------------------
Explore
----------------------------*/
.explore h2 {
  text-align: center;
  font-family:Paragraph;
  margin-bottom: 40px;
}

.explore img {
  margin-bottom: 20px;
}

/*---------------------------
Overlay
----------------------------*/
.overlay-image {
  background-image: url(assets/img/Group\ 53.png);
  background-size: cover;
  height: 500px;
  width: 100%;
  margin: 0px 0px 40px 0px;
}

.overlay-image h2 {
  font-family: Paragraph;
  font-size: 45px;
  color: #EDE7C3;
  padding-top: 210px;
  text-align: center;
  word-spacing: 2px;
}

/*---------------------------------
Instagram
---------------------------------*/
.insta{
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  /* gap: 1vh; */
  height: 65vh;
  width: 100%;
}

.insta h2 {
  font-family: Paragraph;
  font-size: 40px;
}

.insta h3 {
  font-family: paragraph;
  font-size: 20px;
  font-weight: 600;
}

.insta-btn{
  background-color: #AD2847;
  width: 170px;
  border: 1px solid #AD2847;
  padding: 10px 0px 10px 0px;
  font-size: 16px;
  color: #fff;
  margin-top: 30px;
  font-family: number;
  transition: cubic-bezier(0.19, 1, 0.22, 1).7s;
}

/*---------------------------------
Instagram Hover 
---------------------------------*/
.d-flex{
  display: flex;
  justify-content: center;
  align-items: center;
}

.d-flex-c{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.main-insta-div{
  justify-content: space-between;
  width: 100%;
  height: 50vh;
  gap: 2vw;

}

.instagram{
  width:20vw;
  height:20vw;
  position: relative;
}

.insta-icon > *{
  transform: translateY(25px);
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 2s;
}

.insta-icon:hover > *{
  transform: translateY(0px);
}

.instagram img{
  width: 350px; 
  display: block;
  margin: auto;
}

.insta-icon{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: 0.6s;
}

.insta-icon img{
  width: 50px;
}

.insta-icon:hover{
  opacity: 1;
}



/*---------------------------
AArambh
----------------------------*/
.aarambh {
  background-image: url(assets/img/pattern.png);
  background-size: cover;
  padding: 80px 0px 80px 0px;
}

.aarambh p {
  color: #AF9142;
  font-family: paragraph;
  font-weight: 600;
  margin-top: 10px;
}

.right-box {
  background-color: #AD2847;
  padding: 60px 40px 40px 40px;
}

.right-box img {
  width: 40%;
}

/*-------------------------------
Footer
------------------------------*/
.footer-left li {
  list-style: none;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-left a {
  text-decoration: none;
  font-family: paragraph;
  font-weight: 500;
  color: #d3a34a;
  font-size: 18px;
}

.footer-left {
  margin-top: 85px;
}

.footer img {
  margin-top: -20px;
  width: 150px;
}

.footer-main{
  background-image: url(assets/img/Pattern-1.png);
  background-size: 80%;
  background-position: center;
}

.footer {
  gap: 5vh;
  background-color: #AD2847;
}

.newsletter {
  margin-left: 22px;
}


.all-right h2 {
  font-family: paragraph;
  font-size: 16px;
  text-align: center;
  padding: 40px 0px 20px 0px;
  color: #fff;
}

.footer-right {
  margin-top: 100px;
}

.footer-center img {
  width: 250px;
  margin-top: 110px;
  margin-left: -100px;
}

.newsletter h2 {
  font-family: paragraph;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: end;
  color: #d3a34a;
}

input[type=text] {
  font-family: paragraph;
  width: 270px;
  margin-right: -6px;
  border: 1px solid #fff;
  margin-bottom: 20px;
  font-size: 12px;
  height: 36.1px;
  padding-left: 10px;
}

.newsletter button {
  font-family: paragraph;
  height: 38px;
  border: 1px solid #871f37;
  background-color: #831f37;
  width: 35px;
  padding: 0px px 3px 0px;

}

.footer-right-img {
  margin-left: 20px;
  padding-bottom: 20px;
}

.icon img {
  width: 25px;
  margin-top: -30px;
}


.newsletter img {
  width: 22px;
  margin-top: 0px;
}

.separtor {
  width: 100%;
  height: 2vh;
  background-color: #d3a34a;
}

.footer-main {
  padding: 0px 30px 0px 30px;
}

/*-----------------------------------
About Us
------------------------------------*/
.overlay-image-about {
  background-image: url(assets/img/Group\ 53.png);
  background-size: cover;
  height: 500px;
  width: 100%;
  margin: 0px 0px 150px 0px;
}

.overlay-image-about h2 {
  font-family: Paragraph;
  font-size: 55px;
  color: #EDE7C3;
  padding-top: 180px;
  text-align: center;
  word-spacing: 2px;
}

.overlay-about-image img {
  width: 450px;
  margin-top: -60px;
}

.about h3 {
  font-family: paragraph;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 500;
}

.about span {  font-family: paragraph;}

.aboutus {margin: 50px 0px 50px 0px;}

.about-img {  margin: 30px 0px 30px 0px;}

.aboutus p { font-family: paragraph;}

.aboutus img {
  width: 100%;
  height: 450px;
}

/*---------------------------------
Sweets
---------------------------------*/
.page-heading {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-heading h1 {
  font-size: 32px;
  font-family: Paragraph;
  font-weight: 600;
}

/* .owl-carousel{margin-bottom: -30px} */
.owl-carousel img{
  border-radius: 15px;
}


.hamper {
  display: flex;
  justify-content: center;
  text-align: center;;
  flex-direction: column;
}

.hamper h1 {
  font-size: 32px;
  font-family: Paragraph;
  font-weight: 600;
  margin-top: 30px;
}

/*---------------------------------
Contact us
---------------------------------*/
.contact-us h2 {
  font-family: paragraph;
}

.contact-us p {
  font-family: paragraph;
  font-size: 18px;
}

.contact-right h2 {
  font-size: 25px;
}

.contact-right p {
  font-size: 18px;
  margin-top: 7px;
}

.contact-us span {
  font-family: paragraph;
  color: #212529;
}

.contact-main {
  margin-bottom: 50px;
}

.contact-icon {
  gap: 2vh;
  margin-top: 15px;
}

.contact-icon img {
  width: 35px;
}


.contact-lft input[type=text] {
  margin-left: 0px;
  width: 80%;
  padding: 5px;
  border: 2px solid #d4a546;
  font-family: paragraph;
  margin-bottom: 0px;
  font-size: 15px;
}

.contact-lft input[type=email] {
  margin-left: 0px;
  width: 80%;
  padding: 5px;
  border: 2px solid #d4a546;
  font-family: paragraph;
}


.contact-lft input[type=number] {
  margin-left: 0px;
  width: 80%;
  padding: 5px;
  border: 2px solid #d4a546;
  font-family: paragraph;
}


.contact-lft input[type=submit] {
  margin-left: 0px;
  padding: 5px;
  width: 30%;
  background-color: #d4a546;
  color: #fff;
  border: 2px solid #d4a546;
  font-family: paragraph;
}

#message {
  margin-left: 0px;
  width: 80%;
  padding: 5px;
  border: 2px solid #d4a546;
  font-family: paragraph;
}

.contact-lft h2 {
  font-family: paragraph;
  margin-bottom: 20px;
}

/*---------------------------------
Responsive
---------------------------------*/

@media (max-width:320px) {
  .contact-lft input[type=submit] {
    width: 40%;
  }
}

@media screen and (min-device-width: 1000px) and (max-device-width: 2560px) {
  .mobile-main {
    display: none;
  }
  .header-img-mobile  {
      display: none;
  }
}

@media screen and (min-device-width: 599px) and (max-device-width: 2560px) {
  .header-img-mobile {
    display: none;
  }
}

@media(max-width:1000px) {
  .desktop-nav {
    display: none !important;
  }
}

@media (max-width:599px) {

  .header-img {
    display: none;
  }
  .header-img-mobile img{
    width: 100%;
  }

}

@media(max-width:599px) {
  .img-left img {
    width: 50%;
  }

  .insta {
    display: none;
  }
}

@media(max-width:1000px) {
  .nav-btn {
    left: 75%;
    margin-top: -50px;
  }
}

@media (max-width:599px) {
  .right-box {
    padding-left: 30px;
  }

  .right-box img {
    width: 100%;
  }
}

@media (max-width:1200px) {
  input[type=text] {
    width: 211px;
  }

}

@media screen and (min-device-width: 1400px) and (max-device-width: 2560px) {
  input[type=text] {
    width: 220px;
    margin-left: 111px;
  }

  .left-section img {
    margin-top: 25px;
  }
}


/*---------------------------------
Mobile view Responsive
---------------------------------*/
@media (max-width:599px) {
  .footer-center img {
    width: 149px;
    margin-top: 50px;
    margin-left: 0px;
    margin-bottom: 25px;
    position: absolute;
    top: -6%;
    left: 30%;
  }

  .footer-right-img {
    margin-left: 10px;
  }

  .footer-center {
    display: flex;
    justify-content: center;
  }

  .newsletter button {
    font-family: paragraph;
    padding: 0px 10px 0px 10px;
    border: 1px solid #871f37;
    background-color: #831f37;
    margin-bottom: 20px;
  }

  .footer-main {
    position: relative;
    text-align: center;
    justify-content: center;
  }

  .footer-left li {
    margin-left: -25px;
    margin-left: 1px;
  }

  .footer-left a {
    margin-left: 10px;
    font-size: 10px;
    margin-top: -5px;

  }

  .newsletter h2 {
    text-align: center;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .footer-right {
    margin-top: 0px;
    text-align: center;
  }

  .icon {
    text-align: center;
    margin-top: -8px;
  }

  .icon img {
    width: 19px;
  }

  .all-right h2 {
    font-size: 11px;;
  font-family: paragraph;
  }

  input[type=text] {
    padding: 0px 10px 0px 10px;
    width: 199px;
    margin-left: 0px;
  }

  .footer-left {
    text-align: center;
    margin-left: 0;
    gap: 1vh;
    display: flex;
    margin-top: 121px;
    justify-content: center;
  }
}

.newsletter img {
  width: 15px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.left-section img {
  margin-top: 65px;
}


@media (max-width:1200px) {
  .aboutus p {
    font-family: paragraph;
    font-size: 14px;
  }

}

@media (max-width:1000px) {
  .aboutus p {
    font-family: paragraph;
    font-size: 13px;
  }
}

/*---------------------------------
Mobile view Responsive
---------------------------------*/
@media (max-width:599px) {
  .about h3 {
    font-family: paragraph;
    font-size: 16px;
    margin-top: 20px;
  }

  .overlay-about-image img {
    width: 350px;
    margin-top: -60px;
  }
}

@media (max-width:320px) {
  .overlay-image-about h2 {
    font-family: heading;
    font-size: 41px;
  }

  .overlay-about-image img {
    width: 212px;
    margin-top: 50px;
  }

  .overlay-image-about {
    margin: 0px 0px 70px 0px;
  }

}


@media (max-width:599px) {
  .menu-btn {
    display: none;
  }
  .scrolling-text-container {
        margin-top: 50px;
        margin-bottom: 0px;
        border-radius: 0;
    }
     #about-page img{
    width: 75% !important;
    margin-top: 25px;
    z-index:99999;
  } 
}

/*---------------------------------
About page
---------------------------------*/
#about-page img{
  width: 20%;
   z-index:99999;
}

#about-top-img{
  border-top: 10px solid #E2A64E;
}

/*---------------------------------
Icon box 
---------------------------------*/
.icon-box {
  text-align: center;
  flex: 1 1 200px;
  margin: 20px 0px;
}

.icon-box img {
  width: 80px; 
  height: auto;
  margin-bottom: 10px;
}

.icon-box p {
  font-size: 1em;
  color: #5c0f26; 
  margin: 0;
}


/*---------------------------------
Mobile view responsive 
---------------------------------*/
@media (max-width: 600px) {
      .navbar{
   margin-top: 10px;
   margin-bottom: 10px;
  }
  .nav-mobile-button {
    left: 72%;
    margin-left: 30px;
    margin-top: 0px;
  }

  .nav-btn {
    display: none;
  }

  
     .overlay-image{
    background-position: center;
    background-size: cover;
  }
  
     .about{
    margin: 60px 0px 100px 0px;
  }
   .about-content {
    margin-top: 30px;
}

  .icon-box {
    margin: 0;
  }
    .about{
    margin: 50px 0px 40px 0px;
  }
    .about-content {
    margin-top: 30px;
}

  .container-icon {
      flex-direction: column;
      height: 20vh;
      margin: 20px 0px;
  }
    .icon-box p{
    font-size: 14px;
  }

  .icon-box img{
    width: 55px;
  }

  .icon-box {
    margin: 0;
  }
  .icon-box:nth-child(3){
   display: none;
  }
  .about h2 { 
  text-align: center;
}
.about-content p{
      padding: 0px 10px;
}  
.about-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .navbar {
    position: relative;
  }
  
  .menu-btn{
    position: absolute;
    right: 5%;
    top: 25%;
  }
}

.container-icon {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.main-icon{
  width: 80%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.aaramb-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  transition: 0.4s;
  text-align: center;
  background-color: #CEA94D;
  color: #fff;
  font-family: paragraph;
  font-size: 14px;
  padding: 10px 0;
  margin: 20px;
  min-width: 160px;
  cursor: pointer;
}

/* Shining effect */
.aaramb-btn:after {
  content: "";
  position: absolute;
  top: -50px;
  left: -75px;
  width: 50px;
  height: 200px;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(25deg);
  transition: all 750ms cubic-bezier(0.19, 1, 0.22, 1);
}

.aaramb-btn:hover:after {
  left: 200%;
  transition: all 750ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* Hover effect */
.aaramb-btn:hover {
  background-color: #CEA94D;
}
.aaramb-btn a{
  text-decoration: none;
  color: #fff;
}


/*---------------------------------
Tab view Responsive
---------------------------------*/
@media screen and (min-device-width: 699px) and (max-device-width:1000px) {
    .nav-mobile-menu ul li {
    margin-top: 120px;
    font-size: 30px;
  }

  .nav-mobile-menu ul li:nth-child(1) {
    margin-top: 50px;
  }
  
   .navbar { position: relative; }
  
  .menu-btn{
    position: relative;
    position: absolute;
    right: 5%;
    top: 25%;
  }
  
  .about-content{
    margin-top: 0px;
  }
  .about-content h2{
    font-size: 14px;
    margin-bottom: 10px;
  }
  .about-content p{
    font-size: 11px;
  }
  .about-image{
    width: 360px;
  }

  #about-btn, .explore-btn{
    width: 80px;
    height: 30px;
    font-size: 12px;
    margin: 0;
    padding: 0;
  }
  
  #about-page img{
    margin-top: 25px;
    width: 40%;
   z-index:99999;
  }

  .explore{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .explore-sec-1 , .explore-sec-2 , .explore-sec-3{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .explore-sec-1 img , .explore-sec-2 img , .explore-sec-3 img{
    width: 200px;
  }
  .container-icon{
    height: 12vh;
  }
  .icon-box img{
    width: 40px;
  }
  .icon-box p {
    font-size: 12px;
}
  .overlay-image{
    background-position: center;
    background-size: cover;
  }
  .insta h3{
  margin-bottom: 25px;
  margin-top: -5px;
  }

  .insta-btm-div{
    margin-top: 40px;
  }
  .aarambh{
    position: relative;
    height: 30%;
  }
  .aarambh-empty-div{
    display: none;
  }
  .right-box{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 25%;
    top: 20%;
    flex-direction: column;
  }
  .right-box {
    padding:40px 40px 30px 40px;
}
.button-explore{
  margin: 0;
}
.footer-center {
  display: none;
}

}

.main-resturant img{
  background-position: center;
    background-size: cover;
}

@media screen and (min-width: 980px) and (max-width:1024px) {
  .nav-mobile-menu ul li {
    margin-top: 120px;
    font-size: 30px;
  }

  .nav-mobile-menu ul li:nth-child(1) {
    margin-top: 50px;
  }

  .navbar {
    position: relative;
  }

  .menu-btn {
    position: relative;
    position: absolute;
    right: 5%;
    top: 25%;
  }
  .header-img-mobile{
    display: none;
  }
    .about{
    width: 100%;
  }

  .about-content {
    margin-top: 0px;
  }

  .about-content h2 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .about-content p {
    font-size: 11px;
  }

  .about-image {
    width: 360px;
  }
  #about-btn,
  .explore-btn {
    width: 80px;
    height: 30px;
    font-size: 12px;
    margin: 0;
    padding: 0;
  }

  .overlay-image {
    background-position: center;
    background-size: cover;
  }

  .insta h3 {
    margin-bottom: 25px;
    margin-top: -5px;
  }

  .insta-btm-div {
    margin-top: 40px;
  }

  .menu-btn{
    min-width:135px;
    font-size: 12px;
  }

  .insta-btn{
    width: 140px;
    font-size: 12px;
  }

  .aarambh {
    position: relative;
    height: 12vh;
  }

  .aarambh-empty-div {
    display: none;
  }

  .right-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 25%;
    top: 20%;
    flex-direction: column;
  }

  .right-box {
    padding: 20px 20px 10px 20px;
  }
  .aaramb-btn{
    min-width: 130px;
    font-size: 12px;
    padding: 8px 0;
  }

  .button-explore {
    margin: 0;
  }

  .footer-center {
    display: none;
  }
  
   #about-page img{
   margin-top: 25px;
    width: 40%;
    z-index:99999;
  }
}