@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff2e7;
  overflow-x: hidden;
}

iframe {
  height: 100%;
  width: 100%;
}

@font-face {
  font-family: "Handmade Crooked";
  src: url("../fonts/HandmadeCrookedRegular.woff2") format("woff2"), url("../fonts/HandmadeCrookedRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
header {
  padding: 0.6% 3%;
  display: flex;
  justify-content: end;
  transition: 0.5s;
  background: #201104;
  position: relative;
  z-index: 3;
}
header .logo {
  width: 9%;
  position: absolute;
  top: 0;
  left: 4%;
  background-color: #f48120;
  padding: 1.5% 1%;
  z-index: 1;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.5);
}
header .logo img {
  width: 100%;
}
header .right-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 63%;
}
header .right-head .menus {
  width: -moz-fit-content;
  width: fit-content;
}
header .right-head .menus ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15%;
}
header .right-head .menus ul li {
  list-style: none;
}
header .right-head .menus ul li a {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  font-size: 25px;
  transition: 0.5s;
  font-weight: 350;
}
header .right-head .menus ul li a:hover {
  color: #f48120;
}
header .right-head .button {
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  font-size: 25px;
}
header .right-head .button button {
  background: transparent;
  border: none;
  color: #ffffff;
  border: 1px solid #f48120;
  padding: 6px 25px;
  text-transform: uppercase;
  transition: 0.6s linear;
  border-radius: 5px;
}
header .right-head .button button:hover {
  background-color: #f48120;
  color: #ffffff;
}

#mob-order-button {
  display: none;
}

.hamberger {
  position: absolute;
  right: 4%;
  top: 9px;
  bottom: 9px;
  display: none;
  cursor: pointer;
}

.hamberger .fa-bars {
  font-size: 25px;
  color: #f48120;
}

.hamberger .fa-xmark {
  font-size: 25px;
  color: #f48120;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.modal {
  position: fixed;
  top: 10%;
}

.modal-content {
  padding: 1%;
  position: relative;
  background-color: #fff2e7;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  height: 78vh;
  overflow: hidden;
}
.modal-content .final-box {
  position: absolute;
  left: -100%;
  top: 0;
  background-color: #f48120;
  width: 40%;
  padding: 2% 2%;
  transition: 0.5s;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
}
.modal-content .final-box h2 {
  margin-bottom: 5%;
  color: #fff;
  letter-spacing: 1px;
}
.modal-content .final-box h3 {
  color: #fff;
  letter-spacing: 1px;
}
.modal-content .left-content {
  width: 50%;
  height: 100%;
}
.modal-content .left-content img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.modal-content .right-content {
  width: 56%;
  padding: 0.8%;
  height: 76vh;
  overflow-y: scroll;
  scrollbar-width: none;
}
.modal-content .right-content .modal-header {
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.modal-content .right-content .modal-header h1 {
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  width: 100%;
  color: #545252;
}
.modal-content .right-content .modal-header h1 span {
  font-size: 60px;
  color: #f48120;
  font-family: "Poppins", sans-serif;
  font-family: "Handmade Crooked";
}
.modal-content .right-content .modal-header p {
  font-size: 25px;
  color: #545252;
  text-align: center;
  margin-bottom: 0;
}
.modal-content .right-content .modal-header .btn-close {
  position: absolute;
  right: 0%;
  top: 0%;
  font-size: 22px;
  background-color: #f07912;
  color: #ffffff;
  border-radius: 50%;
  z-index: 1;
  padding: 20px;
}
.modal-content .right-content .modal-body .form .ip-boxes {
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  justify-content: space-between;
  row-gap: 0.5em;
}
.modal-content .right-content .modal-body .form .ip-boxes input {
  width: 100%;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  padding: 2% 2%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #6d6969;
}
.modal-content .right-content .modal-body .form .ip-boxes input:focus {
  outline: 0;
}
.modal-content .right-content .modal-body .form .msg-box {
  margin-top: 0.5em;
}
.modal-content .right-content .modal-body .form .msg-box textarea {
  width: 100%;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  padding: 2% 2%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #6d6969;
}
.modal-content .right-content .modal-body .form .msg-box textarea:focus {
  outline: 0;
}

.additional-boxes {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1em;
}
.additional-boxes .custome-select {
  width: 100%;
}
.additional-boxes .custome-select select {
  width: 100%;
  padding: 2% 2%;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #000;
  background-color: #ffcda4;
}
.additional-boxes .custome-select select option {
  font-size: 22px;
  font-family: "Roboto", sans-serif;
}
.additional-boxes .custome-select select:focus {
  outline: 0;
}
.additional-boxes .custom-QTY {
  width: 100%;
}
.additional-boxes .custom-QTY input {
  width: 100%;
  padding: 2% 2%;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  border: none;
  background: transparent;
  border-bottom: 1px solid #000;
}
.additional-boxes .custom-QTY input:focus {
  outline: 0;
}
.additional-boxes button {
  font-size: 22px;
  width: 35%;
  padding: 1%;
  border: none;
  border: 1px solid #000;
  background: transparent;
  border-radius: 5px;
}
.additional-boxes button:hover {
  background-color: #f48120;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.modal-footer .submit {
  border: 1px solid #6d6969;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  padding: 1% 7%;
  transition: 0.5s;
  background: transparent;
  text-transform: capitalize;
  border-radius: 4px;
}
.modal-footer .submit:hover {
  background-color: #f48120;
  color: #e4dcdc;
  border: none;
}
.modal-footer .close {
  border: 1px solid #6d6969;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  padding: 1% 7%;
  transition: 0.5s;
  background: transparent;
  text-transform: capitalize;
  border-radius: 4px;
}
.modal-footer .close:hover {
  background-color: #f48120;
  color: #e4dcdc;
  border: none;
}

.banner-container {
  position: relative;
}
.banner-container .owl-nav .owl-prev {
  font-size: 40px;
  color: #ffffff;
  position: absolute;
  left: 2%;
  top: 50%;
  height: 70px;
  width: 70px;
  background-color: #f48120;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-container .owl-nav .owl-next {
  font-size: 40px;
  color: #ffffff;
  position: absolute;
  right: 2%;
  top: 50%;
  height: 70px;
  width: 70px;
  background-color: #f48120;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-container .banner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.banner-container .banner .banner_left {
  width: 67%;
  background-color: #f3b17b;
}
.banner-container .banner .banner_left img {
  width: 100%;
  opacity: 0.8;
}
.banner-container .banner .banner_left .banner-info {
  position: absolute;
  top: 35%;
  left: 10%;
  margin-left: 8%;
}
.banner-container .banner .banner_left .banner-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 33px;
  color: #545252;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  font-weight: 400;
}
.banner-container .banner .banner_left .banner-info h3 div {
  width: 31%;
}
.banner-container .banner .banner_left .banner-info h3 div img {
  width: 100%;
}
.banner-container .banner .banner_left .banner-info h2 {
  font-size: 129px;
  font-family: "Handmade Crooked";
  color: #f48120;
}
.banner-container .banner .banner_right {
  position: absolute;
  right: 0;
  height: 100%;
  width: 33%;
  background-color: #d6d4d2;
}
.banner-container .banner .banner_right img {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.banner-container .banner .sweets-container {
  width: 40%;
  position: absolute;
  right: 10%;
  bottom: 0;
}
.banner-container .banner .sweets-container img {
  width: 100%;
}
.banner-container .banner .single-elach {
  width: 8%;
  position: absolute;
  left: -2.5%;
  top: 2%;
}
.banner-container .banner .single-elach img {
  width: 100%;
}
.banner-container .banner .half-nut {
  position: absolute;
  right: 7%;
  top: 4%;
  width: 5%;
}
.banner-container .banner .half-nut img {
  width: 100%;
}
.banner-container .banner .full-nut {
  position: absolute;
  right: 2%;
  top: 13%;
  width: 5%;
}
.banner-container .banner .full-nut img {
  width: 100%;
}
.banner-container .banner .thali1 {
  width: 30%;
  position: absolute;
  right: 15%;
  bottom: 1%;
}
.banner-container .banner .thali1 img {
  width: 100%;
}
.banner-container .banner .thali2 {
  width: 16%;
  position: absolute;
  right: 8%;
  top: 2%;
}
.banner-container .banner .thali2 img {
  width: 100%;
}
.banner-container .banner .thali3 {
  width: 12%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.banner-container .banner .thali3 img {
  width: 100%;
}
.banner-container .banner .cake-pot {
  width: 38%;
  position: absolute;
  right: 15%;
  bottom: 3%;
}
.banner-container .banner .cake-pot img {
  width: 100%;
}
.banner-container .banner .sweet-cake {
  width: 9%;
  position: absolute;
  left: 40%;
  bottom: 3%;
}
.banner-container .banner .sweet-cake img {
  width: 100%;
}
.banner-container .banner .woman {
  position: absolute;
  width: 58%;
  right: 2%;
  bottom: 0;
}
.banner-container .banner .big-logo {
  width: 18%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.banner-container .banner .big-logo img {
  width: 100%;
}

#banner_left_2 {
  background-color: #e69e82;
}

#banner_right_2 {
  background-color: #c4bdbd;
}

#banner_left_3 {
  background-color: #c4bdbd;
}

#banner_right_3 {
  background-color: #e4dcdc;
}

#banner_left_4 {
  background-color: #f1c198;
}

#banner_right_4 {
  background-color: #e6e6e6;
}

/*this is for middle large text animation*/
.owl-carousel .owl-item.active .banner-info h2 {
  opacity: 0;
  animation: text 1s ease;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

@keyframes text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*banner-1 image's sweet thali animation*/
.owl-carousel .owl-item.active .banner .sweets-container {
  right: -20%;
  opacity: 0;
  transform: rotate(0deg);
  animation: banner-img 1.3s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes banner-img {
  0% {
    opacity: 0;
    right: -20%;
  }
  100% {
    opacity: 1;
    right: 10%;
  }
}
.owl-carousel .owl-item.active .banner .woman {
  bottom: -100%;
  animation: women 1.35s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes women {
  0% {
    position: absolute;
    bottom: -100%;
    right: 20%;
  }
  50% {
    position: absolute;
    bottom: 0%;
    right: 20%;
  }
  100% {
    position: absolute;
    bottom: 0%;
    right: 2%;
  }
}
.owl-carousel .owl-item.active .banner .cake-pot {
  bottom: -100%;
  animation: bigCake 1.5s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes bigCake {
  0% {
    opacity: 0;
    right: 0%;
    bottom: -100%;
  }
  50% {
    opacity: 1;
    right: 0%;
    bottom: 3%;
  }
  100% {
    opacity: 1;
    right: 15%;
    bottom: 3%;
  }
}
.owl-carousel .owl-item.active .banner .sweet-cake {
  opacity: 0;
  left: 0;
  animation: laddu 2.5s ease;
  animation-fill-mode: forwards;
}

@keyframes laddu {
  0% {
    opacity: 0;
    left: 0;
    transform: rotate(0);
  }
  100% {
    opacity: 1;
    left: 40%;
    transform: rotate(360deg);
  }
}
.owl-carousel .owl-item.active .banner .thali1 {
  bottom: -100%;
  transform: scale(0);
  animation: thali_1 1.5s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes thali_1 {
  0% {
    bottom: -100%;
    transform: rotate(0deg);
  }
  100% {
    bottom: 3%;
    transform: rotate(360deg);
  }
}
.owl-carousel .owl-item.active .banner .thali2 {
  right: -100%;
  animation: thali_2 2s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes thali_2 {
  0% {
    right: -100%;
    transform: rotate(0deg);
  }
  100% {
    right: 8%;
    transform: rotate(360deg);
  }
}
.owl-carousel .owl-item.active .banner .thali3 {
  bottom: -100%;
  right: -100%;
  animation: thali_3 1.5s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes thali_3 {
  0% {
    transform: scale(0);
    bottom: -100%;
    right: -100%;
  }
  100% {
    transform: scale(1);
    bottom: 0;
    right: 0;
  }
}
/*____common css animation for texts for all banners_____*/
.owl-carousel .owl-item.active .banner .top-text {
  margin-left: -30%;
  opacity: 0;
  animation: top_text 1s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes top_text {
  0% {
    margin-left: -30%;
    opacity: 0;
  }
  100% {
    margin-left: 0%;
    opacity: 1;
  }
}
.owl-carousel .owl-item.active .banner .bottom-text {
  margin-right: -50%;
  opacity: 0;
  animation: bottom_text 1.5s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes bottom_text {
  0% {
    margin-right: -50%;
    opacity: 0;
  }
  100% {
    margin-right: 0%;
    opacity: 1;
  }
}
.owl-carousel .owl-item.active .banner .half-nut,
.owl-carousel .owl-item.active .banner .full-nut {
  transform: scale(0);
  animation: nut 1.5s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes nut {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.owl-carousel .owl-item.active .banner .big-logo {
  transform: scale(0);
  animation: zoomIn 1.5s ease;
  animation-fill-mode: forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/*Whats app fixed logo*/
.float-wp {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s;
}
.float-wp:hover {
  color: #FFF;
  transform: scale(1.2);
}
.float-wp .my-float {
  font-size: 45px;
}

.second_part {
  background-color: #ffe2c9;
}
.second_part h1 {
  font-size: 28px;
  color: #545252;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 5% 0 2% 0;
  font-weight: 400;
  margin: 0;
  line-height: 0.8;
}
.second_part h1 span {
  font-size: 70px;
  color: #f48120;
  font-family: "Handmade Crooked";
}
.second_part p {
  font-size: 25px;
  color: #545252;
  text-align: center;
  font-family: "Roboto", sans-serif;
  padding: 0 27% 1% 27%;
}
.second_part .tajmahal {
  width: 100%;
}
.second_part .tajmahal img {
  width: 100%;
}

.third_part {
  padding: 5% 0;
}
.third_part h1 {
  font-size: 70px;
  color: #545252;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 0% 0 3% 0;
  font-weight: 400;
}
.third_part h1 span {
  color: #f48120;
  font-family: "Handmade Crooked";
}
.third_part .sweets-slider {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 0 7%;
}
.third_part .sweets-slider .sweet {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.third_part .sweets-slider .sweet img {
  width: 100%;
  height: auto;
}
.third_part .sweets-slider .sweet h4 {
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 5%;
}
.third_part .sweets-slider .sweet p {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}

.all-members-joining {
  position: relative;
  overflow: hidden;
}
.all-members-joining .text-image-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 86%;
}
.all-members-joining .text-image-container .img-left {
  width: 24%;
  margin-top: -10%;
}
.all-members-joining .text-image-container .img-left img {
  width: 100%;
}
.all-members-joining .text-image-container .mid-text {
  width: 45%;
  margin-bottom: 4%;
}
.all-members-joining .text-image-container .mid-text h1 {
  font-size: 28px;
  color: #545252;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 0% 0 3% 0;
  font-weight: 400;
  position: relative;
}
.all-members-joining .text-image-container .mid-text h1 span {
  font-size: 70px;
  color: #f48120;
  font-family: "Handmade Crooked";
}
.all-members-joining .text-image-container .mid-text h1 .underline {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  width: 80%;
  height: 12px;
  background-color: #fed3b0;
}
.all-members-joining .text-image-container .mid-text p {
  margin-top: 2%;
  font-size: 25px;
  color: #545252;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
.all-members-joining .text-image-container .img-right {
  width: 24%;
  margin-top: 10%;
}
.all-members-joining .text-image-container .img-right img {
  width: 100%;
}
.all-members-joining .laddo {
  position: absolute;
  bottom: 0;
  left: 26%;
  width: 8%;
}
.all-members-joining .laddo img {
  width: 100%;
}
.all-members-joining .h-sweet {
  position: absolute;
  top: 0;
  right: 0;
  width: 7%;
}
.all-members-joining .h-sweet img {
  width: 100%;
}
.all-members-joining .left-line {
  position: absolute;
  left: 0%;
  bottom: 14%;
}
.all-members-joining .right-line {
  position: absolute;
  right: 5.5%;
  bottom: 0;
}
.all-members-joining .bg-1, .all-members-joining .bg-2, .all-members-joining .bg-3 {
  width: 10%;
}
.all-members-joining .bg-1 img, .all-members-joining .bg-2 img, .all-members-joining .bg-3 img {
  width: 100%;
}
.all-members-joining .bg-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;
  z-index: -1;
}
.all-members-joining .bg-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  z-index: -1;
}
.all-members-joining .bg-3 {
  width: 30%;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.7;
  z-index: -1;
}

.fourth_part .left-side {
  display: flex;
  justify-content: start;
  align-items: end;
  background-color: #e7e9ea;
  position: relative;
  z-index: 2;
}
.fourth_part .left-side .img {
  width: 12%;
}
.fourth_part .left-side .img img {
  width: 100%;
}
.fourth_part .left-side .desc {
  width: 42%;
  padding: 6% 1.5%;
}
.fourth_part .left-side .desc h1 {
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 2.6%;
  color: #545252;
}
.fourth_part .left-side .desc h1 span {
  font-size: 70px;
  font-family: "Handmade Crooked";
  color: #f48120;
}
.fourth_part .left-side .desc p {
  font-size: 25px;
  font-family: "Roboto", sans-serif;
}
.fourth_part .left-side .right-side {
  width: 46%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: -3%;
  z-index: 1;
}
.fourth_part .left-side .right-side img {
  width: 100%;
  height: 100%;
}
.fourth_part .left-side .white-strap {
  position: absolute;
  right: 31%;
  width: 17%;
  height: 100%;
  z-index: 2;
}
.fourth_part .left-side .white-strap img {
  width: 100%;
  height: 100%;
}

.fifth_part {
  position: relative;
}
.fifth_part .top-side {
  padding: 5% 0;
  background-color: #fa9440;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  padding-right: 23%;
  position: relative;
  z-index: 1;
}
.fifth_part .top-side .head {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fifth_part .top-side .head h1 {
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  color: #545252;
  font-weight: 400;
  margin-bottom: 3%;
  text-align: center;
}
.fifth_part .top-side .head h1 span {
  font-size: 70px;
  font-family: "Handmade Crooked";
  color: #ffffff;
}
.fifth_part .top-side .head p {
  font-size: 25px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-align: center;
}
.fifth_part .bottom-side {
  width: 100%;
  background-color: #f07912;
}
.fifth_part .bottom-side img {
  width: 100%;
  opacity: 0.76;
  margin-bottom: -2px;
}
.fifth_part .cakes {
  width: 53%;
  position: absolute;
  left: 5%;
  bottom: -20%;
  z-index: 1;
  height: 610px;
  width: 610px;
}
.fifth_part .cakes img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 15px solid #fff2e7;
}
.fifth_part .another {
  width: 12%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.fifth_part .another img {
  width: 100%;
}
.fifth_part .chocolate {
  width: 17%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.fifth_part .chocolate img {
  width: 100%;
}

.sixth_part {
  padding: 5% 0;
}
.sixth_part h1 {
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  color: #545252;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2%;
}
.sixth_part h1 span {
  font-size: 70px;
  font-family: "Handmade Crooked";
  color: #f48120;
}
.sixth_part .img-container {
  display: grid;
  grid-template-columns: 27% 27% 27%;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
.sixth_part .img-container div {
  width: 100%;
  cursor: pointer;
  transition: 0.6s;
}
.sixth_part .img-container div img {
  width: 100%;
  border-top-left-radius: 76px;
  border-bottom-right-radius: 76px;
}
.sixth_part .img-container div p {
  text-align: center;
  font-size: 25px;
  font-family: "Poppins", sans-serif;
  margin-top: 2.5%;
  color: #545252;
}
.sixth_part .img-container div:hover {
  opacity: 0.8;
}
.sixth_part .img-container div:hover p {
  color: #f48120;
}
.sixth_part .button {
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 3%;
  transition: 0.5s;
}
.sixth_part .button a {
  font-size: 25px;
  font-family: "Poppins", sans-serif;
  color: #545252;
}
.sixth_part .button i {
  transform: rotate(-45deg);
  font-size: 25px;
  color: #545252;
}
.sixth_part .button:hover a, .sixth_part .button:hover i {
  color: #f07912;
}

.location {
  display: flex;
  overflow: hidden;
}
.location .location_details {
  width: 34%;
  background-color: #f1d7c2;
  padding: 9% 7%;
}
.location .location_details h1 {
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  color: #545252;
  font-weight: 400;
  margin-bottom: 7%;
}
.location .location_details h1 span {
  font-size: 70px;
  font-family: "Handmade Crooked";
  color: #f48120;
}
.location .location_details p {
  font-size: 25px;
  color: #545252;
  font-family: "Roboto", sans-serif;
  margin-bottom: 8%;
}
.location .location_details p i {
  color: #f48120;
}
.location .map {
  width: 66%;
}

footer {
  background: #323232;
  padding: 2% 8%;
}
footer .line1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .line1 ul {
  margin: 0;
  padding: 0;
}
footer .line1 ul li {
  list-style: none;
  display: inline;
}
footer .line1 ul li a {
  text-decoration: none;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  transition: 0.6s;
}
footer .line1 ul li a:hover {
  color: #f48120;
}
footer .line1 .menus {
  width: 26%;
  display: flex;
  justify-content: space-between;
}
footer .line1 .menus li a {
  padding-right: 2%;
}
footer .line1 .icons {
  width: 14%;
  display: flex;
  justify-content: center;
  gap: 5%;
}
footer .line1 .icons li {
  display: inline-block;
}
footer .line1 .icons li a {
  height: 50px;
  width: 50px;
  background-color: #f48120;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.6s;
}
footer .line1 .icons li a:hover {
  background-color: transparent;
  border: 1px solid #f48120;
  transform: rotate(360deg);
}
footer .line2 {
  margin-top: 3%;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.sweets-slider {
  position: relative;
}

.owl-prev {
  position: absolute;
  left: 1.5%;
  top: 40%;
  font-size: 30px;
  width: -moz-fit-content;
  width: fit-content;
}

.owl-next {
  position: absolute;
  right: 1.5%;
  top: 40%;
  font-size: 30px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: end;
}

.owl-next img, .owl-prev img {
  width: 60%;
}

@media (max-width: 750px) {
  .owl-next img, .owl-prev img {
    width: 40%;
  }
}
.fixHeader {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
  background: #201104;
  box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.3);
}
.fixHeader .logo {
  width: 7.5%;
}

.listStyle {
  color: #000;
  font-size: 20px;
  background-color: #f48120;
  padding: 2%;
  margin: 1%;
  text-transform: capitalize;
}

@media (max-width: 1600px) {
  header .right-head .menus ul li a {
    font-size: 18px;
  }
  header .right-head .button {
    font-size: 16px;
  }
  .modal-content .right-content .modal-header h1 {
    font-size: 17px;
  }
  .modal-content .right-content .modal-header h1 span {
    font-size: 35px;
  }
  .modal-content .right-content .modal-header p {
    font-size: 17px;
  }
  .modal-content .right-content .modal-body .form .ip-boxes input {
    width: 100%;
    font-size: 16px;
  }
  .modal-content .right-content .modal-body .form .msg-box textarea {
    font-size: 16px;
  }
  .modal-content .right-content .modal-footer .submit {
    font-size: 17px;
  }
  .modal-content .right-content .modal-footer .close {
    font-size: 17px;
  }
  .modal-content .right-content .modal-header .btn-close {
    font-size: 16px;
  }
  .additional-boxes .custom-QTY input {
    font-size: 17px;
  }
  .additional-boxes .custome-select select {
    font-size: 16px;
  }
  .additional-boxes button {
    font-size: 17px;
  }
  .banner-container .banner .banner_left .banner-info h3 {
    font-size: 22px;
  }
  .banner-container .banner .banner_left .banner-info h2 {
    font-size: 85px;
  }
  .owl-next i, .owl-prev i {
    font-size: 20px;
  }
  .banner-container .owl-nav .owl-next, .banner-container .owl-nav .owl-prev {
    height: 40px;
    width: 40px;
  }
  .second_part h1 {
    font-size: 18px;
    margin-bottom: 0;
  }
  .second_part h1 span {
    font-size: 45px;
  }
  .second_part p {
    font-size: 17px;
  }
  .third_part h1 {
    font-size: 45px;
  }
  .third_part .sweets-slider .sweet h4 {
    font-size: 20px;
  }
  .third_part .sweets-slider .sweet p {
    font-size: 17px;
    line-height: 1.2;
  }
  .all-members-joining .text-image-container .mid-text h1 {
    font-size: 18px;
  }
  .all-members-joining .text-image-container .mid-text h1 span {
    font-size: 45px;
  }
  .all-members-joining .text-image-container .mid-text p {
    margin-top: 2%;
    font-size: 16px;
  }
  .fourth_part .left-side .desc h1 {
    font-size: 18px;
  }
  .fourth_part .left-side .desc h1 span {
    font-size: 45px;
  }
  .fourth_part .left-side .desc p {
    font-size: 17px;
  }
  .fifth_part .top-side .head h1 {
    font-size: 18px;
  }
  .fifth_part .top-side .head h1 span {
    font-size: 45px;
  }
  .fifth_part .top-side .head p {
    font-size: 17px;
  }
  .fifth_part .cakes {
    height: 450px;
    width: 450px;
  }
  .fifth_part .cakes img {
    border: 8px solid #fff2e7;
  }
  .sixth_part h1 {
    font-size: 18px;
  }
  .sixth_part h1 span {
    font-size: 45px;
  }
  .sixth_part .button a, .sixth_part .button i {
    font-size: 19px;
  }
  .location .location_details h1 {
    font-size: 18px;
  }
  .location .location_details h1 span {
    font-size: 45px;
  }
  .location .location_details p {
    font-size: 16px;
  }
  .float-wp {
    position: fixed;
    width: 60px;
    height: 60px;
  }
  .float-wp .my-float {
    font-size: 27px;
  }
  footer .line1 ul li a {
    text-decoration: none;
    font-size: 16px;
  }
  footer .line1 .icons li a i {
    font-size: 15px;
  }
  footer .line1 .icons li a {
    height: 35px;
    width: 35px;
  }
  footer .line2 {
    margin-top: 3%;
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .modal-dialog {
    max-width: 58%;
  }
}
@media (max-width: 1100px) {
  .banner-container .banner .banner_left .banner-info h3 {
    font-size: 17px;
  }
  .banner-container .banner .banner_left .banner-info h3 {
    justify-content: start;
  }
  .banner-container .banner .banner_left .banner-info h2 {
    font-size: 45px;
  }
  header .logo {
    margin-right: 0;
    width: 13%;
  }
  .modal-dialog {
    max-width: 73%;
  }
  .second_part h1 {
    font-size: 17px;
  }
  .second_part h1 span {
    font-size: 35px;
  }
  .third_part h1 {
    font-size: 17px;
  }
  .third_part h1 span {
    font-size: 35px;
  }
  .third_part .sweets-slider .sweet p {
    font-size: 15px;
  }
  .fourth_part .left-side .desc h1 {
    font-size: 17px;
  }
  .fourth_part .left-side .desc h1 span {
    font-size: 35px;
  }
  .fourth_part .left-side .desc p {
    font-size: 15px;
    margin-bottom: 0;
  }
  .fifth_part .cakes {
    height: 300px;
    width: 300px;
  }
  .fifth_part .top-side .head h1 {
    font-size: 17px;
  }
  .fifth_part .top-side .head h1 span {
    font-size: 35px;
  }
  .fifth_part .top-side .head p {
    font-size: 15px;
  }
  .location .location_details {
    width: 46%;
  }
  .sixth_part .img-container {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    padding: 0 5%;
    align-items: center;
    justify-content: space-between;
  }
  .sixth_part .img-container div {
    width: 100%;
  }
  footer .line1 .icons {
    width: 23%;
  }
  footer .line1 .menus {
    width: 45%;
  }
  footer .line2 {
    display: grid;
    grid-template-columns: 48% 48%;
    align-items: start;
    justify-content: space-between;
  }
  .third_part .sweets-slider .sweet img {
    width: 100%;
    height: 40vh;
  }
}
@media (max-width: 1000px) {
  header {
    height: 45px;
  }
  header .right-head .button {
    display: none;
  }
  header .right-head .menus {
    position: absolute;
    top: 0;
    width: 100%;
    background: #201104;
    left: 0;
    height: 0;
    overflow: hidden;
    transition: 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .right-head .menus ul {
    flex-direction: column;
    gap: 0.5em;
  }
  .hamberger {
    display: block;
  }
}
@media (max-width: 750px) {
  .all-members-joining .left-line {
    display: none;
  }
  .all-members-joining .right-line {
    display: none;
  }
  .all-members-joining .text-image-container {
    display: block;
    width: 90%;
  }
  .all-members-joining .text-image-container .img-left {
    width: 90%;
    margin: 50px auto 0 auto;
  }
  .all-members-joining .text-image-container .mid-text {
    width: 100%;
    margin: 0 auto;
  }
  .all-members-joining .text-image-container .img-right {
    width: 90%;
    margin: 0 auto;
  }
  header {
    padding: 0.4% 5%;
    display: flex;
    justify-content: end;
  }
  header .right-head .button {
    font-size: 13px;
    display: none;
  }
  header .button button {
    padding: 3px 8px;
  }
  header .logo {
    width: 20%;
    margin-right: 0;
  }
  .sixth_part .img-container div p {
    font-size: 16px;
  }
  .sixth_part .img-container div img {
    width: 100%;
    border-top-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }
  .listStyle {
    font-size: 17px;
  }
  .modal-content .right-content .modal-header h1 {
    font-size: 16px;
  }
  .modal-content .right-content .modal-header h1 span {
    font-size: 35px;
  }
  .modal-header {
    padding: 0.5rem 0.5rem;
  }
  .modal-body {
    padding: 0.5rem;
  }
  .modal-content {
    flex-direction: column;
    height: 80vh;
    overflow-y: scroll;
  }
  .modal-content .right-content {
    width: 100%;
  }
  .modal-content .left-content {
    width: 100%;
  }
  .modal-content .right-content .modal-header .btn-close {
    right: 14px;
    top: 12px;
    font-size: 15px;
    padding: 12px;
  }
  .modal-content .left-content img {
    width: 100%;
    height: 34vh;
  }
  .modal-dialog {
    max-width: 93%;
    margin: 0.5rem auto;
  }
  .float-wp {
    position: fixed;
    width: 43px;
    height: 43px;
  }
  .float-wp .my-float {
    font-size: 22px;
  }
  .banner-container .banner .banner_left .banner-info h3 {
    font-size: 17px;
  }
  .banner-container .banner .banner_left .banner-info h2 {
    font-size: 30px;
    margin: 0;
  }
  .banner-container .banner .banner_left .banner-info h3 {
    justify-content: start;
    margin: 0;
  }
  .banner-container .banner .banner_left .banner-info h3 div {
    width: 12%;
  }
  .owl-next i, .owl-prev i {
    font-size: 14px;
  }
  .banner-container .owl-nav .owl-next, .banner-container .owl-nav .owl-prev {
    height: 26px;
    width: 26px;
  }
  .second_part h1 {
    font-size: 17px;
    padding: 8% 0 2% 0;
  }
  .second_part h1 span {
    font-size: 35px;
  }
  .second_part p {
    font-size: 15px;
    padding: 2% 10% 1% 10%;
  }
  .all-members-joining .text-image-container .mid-text h1 {
    font-size: 17px;
  }
  .all-members-joining .text-image-container .mid-text h1 span {
    font-size: 35px;
  }
  .all-members-joining .laddo {
    left: 0;
    width: 12%;
  }
  .third_part {
    padding: 8% 0;
    padding-bottom: 0;
  }
  .third_part h1 {
    font-size: 30px;
  }
  .third_part .sweets-slider {
    padding: 0 13%;
  }
  .third_part .sweets-slider .sweet img {
    width: 100%;
    height: auto;
  }
  .fourth_part .left-side .desc {
    width: 100%;
  }
  .fourth_part .left-side .right-side {
    width: 100%;
    position: static;
  }
  .fourth_part .left-side {
    flex-direction: column;
  }
  .fourth_part .left-side .img {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .fourth_part .left-side .white-strap {
    display: none;
  }
  .fourth_part .left-side .desc h1 {
    font-size: 17px;
    text-align: center;
  }
  .fourth_part .left-side .desc h1 span {
    font-size: 35px;
    text-align: center;
  }
  .fourth_part .left-side .desc {
    padding: 6% 5.5%;
  }
  .fourth_part .left-side .img {
    width: 17%;
  }
  .sixth_part h1 {
    margin: 5% 0;
  }
  .fifth_part .cakes {
    height: 160px;
    width: 160px;
  }
  .fifth_part .top-side {
    padding: 5% 4%;
    padding-right: 0;
  }
  .fifth_part .top-side {
    padding: 6% 4% 15% 4%;
    line-height: 1.3;
  }
  .fifth_part .top-side .head {
    width: 100%;
  }
  .fifth_part .top-side .head h1 {
    font-size: 17px;
  }
  .fifth_part .top-side .head h1 span {
    font-size: 35px;
  }
  .fifth_part .top-side .head p {
    font-size: 15px;
  }
  .sixth_part {
    padding: 12% 0;
  }
  .sixth_part h1 {
    font-size: 17px;
  }
  .sixth_part h1 {
    font-size: 17px;
  }
  .sixth_part h1 span {
    font-size: 35px;
  }
  .sixth_part .img-container {
    display: grid;
    padding: 0 5%;
    grid-template-columns: 47% 47%;
    gap: 1em;
  }
  .sixth_part .img-container div {
    width: 100%;
  }
  .location {
    display: flex;
    flex-direction: column;
  }
  .location .location_details {
    width: 100%;
  }
  .location .location_details p {
    margin-bottom: 3%;
    font-size: 15px;
  }
  .location .location_details h1 {
    font-size: 17px;
    margin-bottom: 4%;
  }
  .location .location_details h1 span {
    font-size: 35px;
  }
  .location .map {
    width: 100%;
  }
  footer {
    padding: 8% 8%;
  }
  footer .line1 {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    margin-bottom: 8%;
  }
  footer .line1 .menus {
    width: 100%;
  }
  footer .line1 .icons {
    width: 44%;
  }
  footer .line2 {
    font-size: 13px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer .line2 p {
    text-align: center;
    margin-bottom: 3%;
  }
  .fixHeader .logo {
    width: 18%;
  }
  .banner-container .banner {
    height: 30vh;
  }
  .banner-container .banner .banner_left {
    height: 100%;
  }
  .banner-container .banner .banner_left img {
    height: 100%;
  }
  .mob-svg {
    display: block;
  }
  .desk-svg {
    display: none;
  }
  #mob-order-button {
    display: block;
  }
}
@media (min-width: 751px) {
  .mob-svg {
    display: none;
  }
  .desk-svg {
    display: block;
  }
}
/*________________SVG ANIMATION_____________*/
.rail {
  opacity: 0;
  visibility: hidden;
  animation: railAnim 16s linear 0.4s infinite;
}

@keyframes railAnim {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  10% {
    opacity: 1;
    visibility: visible;
  }
  20% {
    opacity: 1;
    visibility: visible;
  }
  40% {
    opacity: 1;
    visibility: visible;
  }
  60% {
    opacity: 1;
    visibility: visible;
  }
  80% {
    opacity: 1;
    visibility: visible;
  }
  90% {
    opacity: 1;
    visibility: visible;
  }
  95% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.smoke1 {
  animation: smoke1 3s ease infinite;
  opacity: 0;
  animation-delay: 0.2s;
}

@keyframes smoke1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.smoke2 {
  animation: smoke2 3s ease infinite;
  opacity: 0;
  animation-delay: 0.8s;
}

@keyframes smoke2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.smoke3 {
  animation: smoke3 3s ease infinite;
  opacity: 0;
  animation-delay: 1.4s;
}

@keyframes smoke3 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.smoke4 {
  animation: smoke4 3s ease infinite;
  opacity: 0;
  animation-delay: 2s;
}

@keyframes smoke4 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#common {
  display: none;
}/*# sourceMappingURL=style.css.map */