@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
body {
  font-family: "Bricolage Grotesque", sans-serif;
  overflow-x: hidden;
}

header.mainHeader {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1040;
}
header.mainHeader nav#mainNav {
  background-color: transparent;
  transition: 0.5s background-color ease;
}
header.mainHeader .container {
  background-color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
  padding-left: 140px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  border-radius: 50px;
  transition: 0.5s margin-top ease;
}
header.mainHeader .container .navButton {
  display: none;
}
header.mainHeader .container .navBrand {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
header.mainHeader .container .navBrand img {
  width: 100px;
  height: 100px;
  transition: 0.5s width ease, 0.5s height ease;
}
header.mainHeader .container .closeMenu {
  display: none;
}
header.mainHeader .container .navList {
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  gap: 40px;
}
header.mainHeader .container .navList li a {
  color: #161212;
  text-decoration: none;
  font-weight: 500;
}
header.mainHeader .cartWrapper {
  position: relative;
}
header.mainHeader .cartWrapper .cart {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  transition: 0.3s ease;
  transition-property: background-color, color, border-radius;
}
header.mainHeader .cartWrapper .cartPopup {
  opacity: 0;
  visibility: none;
  position: absolute;
  background-color: #FFF4B2;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  right: 0;
  top: 100%;
  padding: 10px 10px;
  border-radius: 28px 0 28px 28px;
  width: 300px;
  max-width: 100vw;
  transition: 0.3s ease;
  transition-property: opacity, visibility;
}
header.mainHeader .cartWrapper .cartPopup .cartClose {
  display: none;
}
header.mainHeader .cartWrapper .cartPopup .productList {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
header.mainHeader .cartWrapper .cartPopup .productList li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9dd95;
}
header.mainHeader .cartWrapper .cartPopup .productList li:first-child {
  padding-top: 0;
}
header.mainHeader .cartWrapper .cartPopup .productList li:last-child {
  border-bottom: none;
}
header.mainHeader .cartWrapper .cartPopup .productList li .productImage {
  flex: 0 0 60px;
  width: 60px;
  background-color: #fff;
  border-radius: 18px;
}
header.mainHeader .cartWrapper .cartPopup .productList li .productImage img {
  max-width: 100%;
  height: auto;
}
header.mainHeader .cartWrapper .cartPopup .productList li .text {
  width: 100%;
}
header.mainHeader .cartWrapper .cartPopup .productList li .text h3 {
  font-size: 16px;
  font-weight: 400;
  color: #161212;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
header.mainHeader .cartWrapper .cartPopup .productList li .text .qty {
  display: flex;
  gap: 5px;
}
header.mainHeader .cartWrapper .cartPopup .productList li .text .qty button {
  width: 30px;
  height: 30px;
  background-color: #00B4A2;
  color: #161212;
  padding: 0;
  border: none;
  border-radius: 28px;
  font-size: 16px;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
header.mainHeader .cartWrapper .cartPopup .productList li .text .qty button:hover {
  background-color: #161212;
  color: #fff;
}
header.mainHeader .cartWrapper .cartPopup .productList li .text .qty input {
  border: none;
  width: 50px;
  border-radius: 28px;
  text-align: center;
  -moz-appearance: textfield;
}
header.mainHeader .cartWrapper .cartPopup .productList li .text .qty input::-webkit-outer-spin-button, header.mainHeader .cartWrapper .cartPopup .productList li .text .qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
header.mainHeader .cartWrapper .cartPopup .productList li .text .price {
  font-weight: 900;
  font-size: 16px;
  color: #161212;
}
header.mainHeader .cartWrapper:hover .cart {
  background-color: #FFF4B2;
  color: #161212;
  border-radius: 18px 18px 0 0;
}
header.mainHeader .cartWrapper:hover .cartPopup {
  opacity: 1;
  visibility: visible;
}
header.mainHeader nav#mainNav.scrolled {
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
header.mainHeader nav#mainNav.scrolled .container {
  padding-left: 10px;
  margin-top: 0;
}
header.mainHeader nav#mainNav.scrolled .container .navBrand {
  position: unset;
  transform: translateY(0%);
  margin-right: 50px;
}
header.mainHeader nav#mainNav.scrolled .container .navBrand img {
  width: 70px;
  height: 70px;
}

#hero {
  background-color: #FFF4B2;
  color: #00B4A2;
  position: relative;
  overflow: hidden;
}
#hero .fluff {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
#hero .row {
  min-height: 100svh;
  padding-top: 90px;
  padding-bottom: 10.05vw;
  align-items: center;
}
#hero .row h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  margin-bottom: 25px;
}
#hero .row p {
  font-size: 24px;
  margin-bottom: 35px;
}
#hero .row .bannerImg {
  position: relative;
}
#hero .row .bannerImg .img-fluid {
  z-index: 1;
  position: relative;
  width: 100%;
}
#hero .row .bannerImg .text {
  position: absolute;
  width: 75%;
  height: 75%;
  right: 0;
  top: 0;
  z-index: 0;
}
#hero .downIcon {
  font-size: 36px;
  text-align: center;
  text-decoration: none;
  color: #00B4A2;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
#hero .downIcon:hover {
  color: #FFD210;
}

.mainBtn {
  display: inline-block;
  padding: 20px 30px;
  border-radius: 30px;
  text-decoration: none;
  line-height: 1;
  border: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.mainBtn.icon {
  padding-left: 20px;
}
.mainBtn.sm {
  padding: 10px 20px;
}
.mainBtn.yellow-solid {
  background-color: #FFD210;
  color: #161212;
}
.mainBtn.yellow-solid:hover {
  background-color: #161212;
  color: #FFD210;
}
.mainBtn.yellow-outline {
  background-color: transparent;
  border: 1px solid #FFD210;
  color: #FFD210;
}
.mainBtn.yellow-outline:hover {
  background-color: #FFD210;
  color: #161212;
}
.mainBtn.teal-solid {
  background-color: #00B4A2;
  color: #FFF4B2;
}
.mainBtn.teal-solid:hover {
  background-color: #FFF4B2;
  color: #00B4A2;
}
.mainBtn.teal-outline {
  background-color: transparent;
  border: 1px solid #00B4A2;
  color: #00B4A2;
}
.mainBtn.teal-outline:hover {
  background-color: #00B4A2;
  color: #FFF4B2;
}
.mainBtn.beige-solid {
  background-color: #FFF4B2;
  color: #00B4A2;
}
.mainBtn.beige-solid:hover {
  background-color: #FFD210;
  color: #00B4A2;
}
.mainBtn.beige-outline {
  background-color: transparent;
  border: 1px solid #FFF4B2;
  color: #FFF4B2;
}
.mainBtn.beige-outline:hover {
  background-color: #FFF4B2;
  color: #00B4A2;
}
.mainBtn.white {
  background-color: #fff;
  color: #161212;
}
.mainBtn.white:hover {
  background-color: #161212;
  color: #fff;
}
.mainBtn.black {
  background-color: #161212;
  color: #fff;
}
.mainBtn.black:hover {
  background-color: #fff;
  color: #161212;
}

.pt100 {
  padding-top: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

@keyframes round_anim {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#quote {
  background-color: #00B4A2;
  overflow: hidden;
  position: relative;
}
#quote h2 {
  font-size: 54px;
  font-family: "Playfair Display", serif;
  position: relative;
  z-index: 2;
  color: #fff;
}
#quote .col-lg-6 {
  position: relative;
}
#quote .col-lg-6 img {
  position: absolute;
}
#quote .col-lg-6 img.caramel-1 {
  position: absolute;
  right: -55px;
  top: -75px;
  transform-origin: right top;
}
#quote .col-lg-6 img.caramel-2 {
  position: absolute;
  bottom: -80px;
  left: -100px;
  transform-origin: left bottom;
}
#quote .chocolate-graphic {
  position: absolute;
  right: -30px;
  bottom: 0;
  z-index: 1;
}
#quote .ice-cream-graphic {
  position: absolute;
  left: -30px;
  top: 0;
  z-index: 1;
}

.fluff-image {
  width: 100%;
  height: auto;
  position: relative;
  top: -1px;
  transform: rotate(180deg);
}

.mainHead {
  padding-bottom: 30px;
  margin-bottom: 35px;
  position: relative;
}
.mainHead::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 20px;
  background-image: url(../img/line-yellow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
}
.mainHead h2 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
  color: #00B4A2;
}
.mainHead h2 span {
  position: relative;
  display: inline-block;
}
.mainHead h2 span svg {
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.mainHead h2 span svg path {
  fill: none;
  stroke: #161212;
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 428;
  stroke-dashoffset: 428;
}
.mainHead.alt::after {
  background-image: url(../img/line-teal.svg);
}
.mainHead.alt h2 {
  color: #FFD210;
}
.mainHead.center {
  text-align: center;
}
.mainHead.center::after {
  left: 50%;
  transform: translateX(-50%);
}
.mainHead.right {
  text-align: right;
}
.mainHead.right::after {
  left: auto;
  right: 0;
}
.mainHead.dark h2 {
  color: #161212;
}

.price::before {
  content: "₹";
}

.iceCreamCard {
  padding: 20px;
  background-color: #FFF4B2;
  border-radius: 45px;
  position: relative;
}
.iceCreamCard .infoBtn {
  width: 56px;
  height: 56px;
  background-color: #fff;
  color: #161212;
  border: none;
  border-radius: 28px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
.iceCreamCard .infoBtn:hover {
  background-color: #161212;
  color: #fff;
}
.iceCreamCard .productImage {
  position: relative;
  padding-top: 100%;
  width: 100%;
}
.iceCreamCard .productImage .bgImg {
  position: absolute;
  width: calc(100% + 40px);
  height: auto;
  z-index: 0;
  left: 50%;
  top: -20px;
  transition: 0.3s transform ease-in;
  transform: translateX(-50%) scale(0.8);
}
.iceCreamCard .productImage .productImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.iceCreamCard h3 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #00B4A2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.iceCreamCard .price {
  font-size: 36px;
  font-weight: 800;
  color: #00B4A2;
  margin-bottom: 0;
  line-height: 1;
}
.iceCreamCard .qty {
  display: flex;
  gap: 5px;
}
.iceCreamCard .qty button {
  width: 40px;
  height: 40px;
  background-color: #FFD210;
  color: #161212;
  padding: 0;
  border: none;
  border-radius: 28px;
  font-size: 20px;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
.iceCreamCard .qty button:hover {
  background-color: #161212;
  color: #fff;
}
.iceCreamCard .qty input {
  border: none;
  width: 50px;
  border-radius: 28px;
  text-align: center;
  -moz-appearance: textfield;
}
.iceCreamCard .qty input::-webkit-outer-spin-button, .iceCreamCard .qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.iceCreamCard .mainBtn:hover {
  background-color: #FFD210;
  color: #161212;
}
.iceCreamCard:hover .productImage .bgImg {
  transform: translateX(-50%) scale(1);
}

.descWrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  left: 0;
  top: 0;
  z-index: 1500;
  display: grid;
  place-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity ease;
}
.descWrapper.active {
  opacity: 1;
  pointer-events: all;
}
.descWrapper.active .descriptionCard {
  transform: scale(1);
}
.descWrapper button {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: none;
  background-color: #ffd4d4;
  color: #ac0101;
  display: grid;
  place-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
.descWrapper button:hover {
  background-color: #ac0101;
  color: #fff;
}
.descWrapper .descriptionCard {
  background-color: #fff;
  width: 500px;
  max-width: calc(100vw - 20px);
  padding: 30px;
  border-radius: 30px;
  position: relative;
  transform: scale(0.5);
  transition: 0.3s transform ease;
}
.descWrapper .descriptionCard h3 {
  font-weight: 700;
}
.descWrapper .descriptionCard p {
  margin-bottom: 0;
}

.productCard {
  padding: 20px 40px;
  display: grid;
  border-radius: 45px;
  position: relative;
  margin-bottom: 54px;
  transition: 0.3s background-color ease;
  z-index: 1;
}
.productCard > .row {
  position: relative;
  z-index: 2;
}
.productCard h3 {
  font-size: 46px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin-bottom: 25px;
}
.productCard .qty {
  display: flex;
  gap: 5px;
}
.productCard .qty button {
  width: 56px;
  height: 56px;
  background-color: #FFD210;
  color: #161212;
  padding: 0;
  border: none;
  border-radius: 28px;
  font-size: 20px;
}
.productCard .qty input {
  border: none;
  width: 75px;
  border-radius: 28px;
  text-align: center;
  -moz-appearance: textfield;
}
.productCard .qty input::-webkit-outer-spin-button, .productCard .qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.productCard .productImage {
  position: relative;
  padding-top: 100%;
  width: 100%;
}
.productCard .productImage .bgImg {
  position: absolute;
  width: 120%;
  height: auto;
  z-index: 0;
  left: 50%;
  top: -20px;
  transition: 1s transform ease-in;
  transform: translateX(-50%) scale(0.8);
}
.productCard .productImage .productImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.productCard .price {
  font-size: 64px;
  font-weight: 800;
}
.productCard .volumeSelector {
  position: absolute;
  left: 0;
  overflow: hidden;
  top: 100%;
  padding-left: 45px;
  padding-right: 45px;
  display: flex;
  z-index: -1;
}
.productCard .volumeSelector button {
  border: none;
  padding: 0;
  height: 49px;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s transform ease;
}
.productCard .volumeSelector button span {
  padding: 10px 30px;
  display: grid;
  place-content: center;
  height: 49px;
}
.productCard .volumeSelector button.vol250 {
  color: #00B4A2;
  display: flex;
  z-index: 1;
}
.productCard .volumeSelector button.vol250 span {
  background-color: #FFF4B2;
}
.productCard .volumeSelector button.vol250::before {
  content: "";
  display: block;
  background-image: url(../img/beige-round-left-1.svg);
  width: 80px;
  height: 49px;
  transform: translateX(1px);
}
.productCard .volumeSelector button.vol250::after {
  content: "";
  display: block;
  background-image: url(../img/beige-round-left.svg);
  width: 80px;
  height: 49px;
  transform: translateX(-1px);
}
.productCard .volumeSelector button.vol500 {
  color: #FFF4B2;
  display: flex;
  margin-left: -80px;
}
.productCard .volumeSelector button.vol500 span {
  background-color: #00B4A2;
}
.productCard .volumeSelector button.vol500::before {
  content: "";
  display: block;
  background-image: url(../img/teal-round-right.svg);
  width: 80px;
  height: 49px;
  transform: translateX(1px);
}
.productCard .volumeSelector button.vol500::after {
  content: "";
  display: block;
  background-image: url(../img/teal-round-left.svg);
  width: 80px;
  height: 49px;
  transform: translateX(-1px);
}
.productCard.ml250 {
  background-color: #FFF4B2;
  color: #00B4A2;
}
.productCard.ml250 .price .p500 {
  display: none;
}
.productCard.ml250 .volumeSelector .vol250 {
  transform: translateY(0px);
}
.productCard.ml250 .volumeSelector .vol500 {
  transform: translateY(-10px);
}
.productCard.ml250 .volumeSelector .vol500:hover {
  transform: translateY(-5px);
}
.productCard.ml250 .mainBtn {
  background-color: #00B4A2;
  color: #FFF4B2;
}
.productCard.ml250 .mainBtn:hover {
  background-color: #FFD210;
  color: #161212;
}
.productCard.ml500 {
  background-color: #00B4A2;
  color: #FFF4B2;
}
.productCard.ml500 .price .p250 {
  display: none;
}
.productCard.ml500 .volumeSelector .vol500 {
  transform: translateY(0px);
  z-index: 2;
}
.productCard.ml500 .volumeSelector .vol250 {
  transform: translateY(-10px);
}
.productCard.ml500 .volumeSelector .vol250:hover {
  transform: translateY(-5px);
}
.productCard.ml500 .mainBtn {
  background-color: #FFF4B2;
  color: #00B4A2;
}
.productCard.ml500 .mainBtn:hover {
  background-color: #FFD210;
  color: #161212;
}
.productCard:hover .productImage .bgImg {
  transform: translateX(-50%) scale(1);
}

.productList {
  flex-wrap: nowrap;
}

#signature-collection {
  overflow: hidden;
  display: grid;
  min-height: calc(100svh - 90px);
  align-items: center;
}

#handcrafted {
  background-color: #00B4A2;
  overflow: hidden;
  display: grid;
  align-items: center;
}
#handcrafted .wrapper {
  position: relative;
  padding: 150px;
  width: 2380px;
  text-align: center;
  background-color: #00B4A2;
}
#handcrafted .wrapper h2 {
  font-size: 128px;
  font-weight: 700;
  color: #fff;
  font-family: "Playfair Display", serif;
  position: relative;
  margin-bottom: 0;
  z-index: 2;
}
#handcrafted .wrapper h2 span {
  color: #FFD210;
  position: relative;
}
#handcrafted .wrapper h2 span svg {
  position: absolute;
  width: calc(100% + 20px);
  height: auto;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
#handcrafted .wrapper h2 span svg path {
  fill: none;
  stroke: #FFF4B2;
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 242;
  stroke-dashoffset: 242;
}
#handcrafted .wrapper .bg-text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  font-size: 500px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #3ABDB0;
  z-index: 0;
  line-height: 0;
  left: 0;
  top: 0;
}
#handcrafted .wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
#handcrafted .wrapper img.fg {
  z-index: 3;
}
#handcrafted .wrapper img.bg {
  z-index: 1;
}

#testimonials {
  background-color: #FFF4B2;
  background-image: url(../img/pattern.png);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}
#testimonials::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #FFF4B2, transparent);
  top: 0;
  left: 0;
  z-index: -1;
}
#testimonials .tesimonialCard .quote {
  padding: 30px;
  background-color: #fff;
  border-radius: 30px 30px 30px 0;
}
#testimonials .tesimonialCard .author {
  background-color: #fff;
  padding-left: 30px;
  padding-bottom: 25px;
  border-bottom-left-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  color: #00B4A2;
  font-weight: 800;
  position: relative;
}
#testimonials .tesimonialCard .author::after {
  content: "";
  width: 80px;
  height: 49px;
  background-image: url(../img/white-round-left.svg);
  position: absolute;
  left: 100%;
  top: 0;
}

#madness {
  color: #00B4A2;
}
#madness .col-lg-6 {
  text-align: right;
  padding-top: 125px;
  padding-bottom: 125px;
}
#madness .imgSection {
  display: grid;
  position: relative;
}
#madness .imgSection img {
  position: absolute;
}
#madness .imgSection .icecream {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
#madness .imgSection .riged-round {
  width: 60%;
  height: auto;
  left: 0;
  top: 0;
}
#madness .imgSection .text {
  width: 45%;
  height: auto;
  right: 0;
  top: 90px;
  transform-origin: center center;
  animation: round_anim 30s linear infinite;
}

#contact {
  background-color: #A9DCDB;
}
#contact .contactCard {
  padding: 30px;
  border-radius: 30px;
  line-height: 1;
  transform-origin: top left;
}
#contact .contactCard h6 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
#contact .contactCard p {
  margin-bottom: 15px;
}
#contact .contactCard a {
  display: inline-block;
}
#contact .contactCard.yellow {
  background-color: #FFF4B2;
}
#contact .contactCard.cyan {
  background-color: #86D0CB;
}
#contact .contactCard.black {
  background-color: #161212;
  color: #fff;
}
#contact .contactCard.white {
  background-color: #fff;
  color: #161212;
}
#contact .form-control {
  border: none;
}

footer {
  background-color: #00B4A2;
  color: #fff;
}
footer .footerLogo {
  display: inline-block;
}
footer .footerLogo img {
  height: 100px;
  width: auto;
  margin-bottom: 25px;
}
footer h4 {
  color: #FFD210;
  font-weight: 700;
  font-size: 32px;
  margin-top: 30px;
  margin-bottom: 57px;
}
footer .link {
  display: inline-block;
  position: relative;
  color: #fff;
  text-decoration: none;
}
footer .link::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  right: 0;
  left: auto;
  bottom: 0;
  background-color: #fff;
  transition: 0.3s width ease;
}
footer .link:hover {
  color: #fff;
}
footer .link:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
footer .footerList {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
footer .copy {
  padding: 10px;
  border-top: 1px solid #75CBC7;
}

.scrollmargintop {
  scroll-margin-top: 90px;
}

.yellowCard {
  padding: 30px;
  background-color: #FFF4B2;
  border-radius: 30px;
}
.yellowCard h4 {
  font-weight: 700;
  color: #00B4A2;
  font-family: "Playfair Display", serif;
}

.productTable td, .productTable th {
  padding: 5px;
}
.productTable thead tr {
  border-bottom: 1px solid #d8cb83;
}
.productTable tbody tr {
  border-bottom: 1px solid #d8cb83;
}
.productTable tfoot tr {
  border-top: 2px solid #d8cb83;
  font-size: 18px;
}

#mobileNumberPopup {
  position: fixed;
  z-index: 2000;
}
#mobileNumberPopup .mobileWrapper {
  pointer-events: none;
  opacity: 0;
  z-index: 1149;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  display: grid;
  place-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  transition: 0.5s ease;
  transition-property: opacity, z-index;
}
#mobileNumberPopup .mobileWrapper .mobilePopup {
  z-index: 2;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  width: calc(100vw - 20px);
  max-width: 400px;
  padding: 20px;
  border-radius: 30px;
}
#mobileNumberPopup .mobileWrapper .closeMobileWrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: grid;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  padding: 10px;
  font-size: 20px;
  color: #c93f3f;
  cursor: pointer;
}
#mobileNumberPopup .mobileWrapper.active {
  opacity: 1;
  z-index: 1000;
  pointer-events: all;
}

@media (max-width: 1199px) {
  #hero .row h1 {
    font-size: 60px;
  }
  #hero .row p {
    font-size: 20px;
  }
  #quote h2 {
    font-size: 42px;
  }
  #contact .contactCard {
    padding: 15px;
  }
  #contact .contactCard h6 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  header.mainHeader .container .navButton {
    display: grid;
    place-content: center;
    height: 37px;
    width: 37px;
    border: none;
    border-radius: 19px;
    background-color: #161212;
    color: #fff;
    order: 3;
    margin-left: 10px;
    transition: 0.3s ease;
    transition-property: background-color, color;
  }
  header.mainHeader .container .navButton:hover {
    background-color: #00B4A2;
    color: #FFD210;
  }
  header.mainHeader .container .navCollapse {
    pointer-events: none;
    opacity: 0;
    z-index: -9;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    display: grid;
    place-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    transition: 0.5s ease;
    transition-property: opacity, z-index;
  }
  header.mainHeader .container .navCollapse .navList {
    z-index: 2;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    width: calc(100vw - 20px);
    max-width: 400px;
    padding: 40px 20px;
    border-radius: 30px;
  }
  header.mainHeader .container .navCollapse .navList li {
    text-align: center;
    font-size: 24px;
  }
  header.mainHeader .container .navCollapse .closeMenu {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: grid;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    background-color: transparent;
    padding: 10px;
    font-size: 20px;
    color: #c93f3f;
  }
  header.mainHeader .container .navCollapse.active {
    opacity: 1;
    z-index: 1000;
    pointer-events: all;
  }
  #hero .row {
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
  }
  #hero .row .col-lg-6:first-child {
    order: 2;
  }
  #hero .row .bannerImg {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  #hero .row h1 {
    font-size: 50px;
  }
  #hero .row p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  #quote .chocolate-graphic {
    max-width: 150px;
  }
  #quote .ice-cream-graphic {
    max-width: 120px;
  }
  #madness .col-lg-6 {
    order: 2;
    padding-top: 0;
    padding-bottom: 0;
  }
  #madness .imgSection {
    display: unset;
    margin-bottom: -250px;
  }
  #madness .imgSection .icecream {
    height: auto;
    position: relative;
    max-width: 200px;
  }
  #madness .imgSection .riged-round {
    width: 216px;
    left: -20px;
  }
  #madness .imgSection .text {
    width: 180px;
    right: auto;
    left: 50px;
  }
  footer h4 {
    margin-bottom: 10px;
  }
  footer .footerList {
    gap: 15px;
  }
  footer .footerLogo img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  #handcrafted .wrapper {
    padding: 80px;
    width: 1645px;
  }
  #handcrafted .wrapper h2 {
    font-size: 96px;
  }
  #handcrafted .wrapper .bg-text {
    font-size: 350px;
  }
  #quote .col-lg-6 img.caramel-2 {
    width: 150px;
    bottom: -50px;
    left: -40px;
  }
  #quote .col-lg-6 img.caramel-1 {
    width: 120px;
    right: -25px;
    top: -45px;
  }
  #madness {
    text-align: center;
  }
  #madness .imgSection {
    margin-bottom: -60px;
  }
  #madness .imgSection .riged-round {
    left: calc(50% - 180px);
  }
  #madness .imgSection .text {
    left: calc(50% - 35px);
  }
  #madness .col-lg-6 {
    text-align: center;
  }
  #madness .mainHead.right {
    text-align: center;
  }
  #madness .mainHead.right::after {
    right: 50%;
    transform: translateX(50%);
  }
  .mainHead h2 {
    font-size: 42px;
  }
  .mainHead::after {
    width: 150px;
    height: 15px;
  }
}
@media (max-width: 576px) {
  header.mainHeader .container {
    padding-left: 10px;
    margin-top: 14px;
    margin-left: 10px;
    margin-right: 10px;
    max-width: calc(100% - 20px);
  }
  header.mainHeader .container .navBrand img {
    width: 70px;
    height: 70px;
  }
  header.mainHeader .cartWrapper:hover .cartPopup {
    opacity: 0;
    visibility: hidden;
  }
  header.mainHeader .cartWrapper:hover .cart {
    background-color: #FFD210;
    color: #161212;
    border-radius: 18px;
  }
  header.mainHeader .cartWrapper .cartPopup {
    pointer-events: none;
    visibility: visible;
    right: auto;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    border-radius: 0;
    align-content: center;
    padding-top: 37px;
    background-color: rgba(255, 244, 178, 0.7);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    transition: 0.5s ease;
    transition-property: opacity, z-index;
  }
  header.mainHeader .cartWrapper .cartPopup .cartClose {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: 0;
    display: grid;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    background-color: transparent;
    padding: 10px;
    font-size: 20px;
    color: #c93f3f;
  }
  header.mainHeader .cartWrapper .cartPopup.active {
    opacity: 1 !important;
    z-index: 10;
    visibility: visible !important;
    pointer-events: all;
  }
  .pt100 {
    padding-top: 60px;
  }
  .pb100 {
    padding-bottom: 60px;
  }
  #quote h2 {
    width: calc(100% - 120px);
    margin: 0 auto;
    font-size: 32px;
    text-align: center;
  }
  #madness .mainHead h2 br {
    display: none;
  }
  #madness .imgSection {
    margin-bottom: -40px;
  }
  #madness .imgSection .icecream {
    max-width: 160px;
  }
  #madness .imgSection .text {
    width: 140px;
  }
  #madness .imgSection .riged-round {
    width: 146px;
    left: calc(50% - 110px);
  }
  #madness p {
    text-align: justify;
  }
  #handcrafted .wrapper {
    padding: 80px;
    width: 1180px;
  }
  #handcrafted .wrapper h2 {
    font-size: 66px;
  }
  #handcrafted .wrapper .bg-text {
    font-size: 250px;
  }
  .mainHead {
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .mainHead h2 {
    font-size: 32px;
  }
  .mainHead::after {
    width: 100px;
    height: 10px;
  }
  .iceCreamCard {
    padding: 10px;
    border-radius: 30px;
  }
  .iceCreamCard .infoBtn {
    width: 40px;
    height: 40px;
    right: 10px;
    top: 10px;
  }
  .iceCreamCard h3 {
    font-size: 16px;
    margin-bottom: 10px !important;
  }
  .iceCreamCard .price {
    font-size: 20px;
  }
  .iceCreamCard .d-flex.flex-wrap.gap-3.justify-content-between.mb-3 {
    gap: 10px !important;
  }
  .iceCreamCard .qty {
    width: 100%;
  }
  .iceCreamCard .qty input {
    width: calc(100% - 68px);
    flex: 0 0 calc(100% - 68px);
  }
  .iceCreamCard .qty button {
    width: 29px;
    height: 29px;
  }
  .iceCreamCard .mainBtn {
    padding: 12px 15px;
  }
}/*# sourceMappingURL=main.css.map */