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

/* width */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff6f7;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #de3451;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a7283d;
}

html,
body {
  background-color: #fff6f7;
  scroll-behavior: smooth;
}

.boxWidth {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

button,
input,
textarea,
select {
  outline: none;
}

select {
  text-indent: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cg clip-path='url(%23clip0_204_2)'%3E%3Cpath d='M9.2625 10.7373L15 16.4623L20.7375 10.7373L22.5 12.4998L15 19.9998L7.5 12.4998L9.2625 10.7373Z' fill='%23884C3A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_204_2'%3E%3Crect width='30' height='30' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 25px;
}

#mobileBottomTabs {
  display: none;
}
@media screen and (max-width: 768px) {
  #mobileBottomTabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0px;
    border-top: 1px solid #f8cfd6;
    width: 100%;
    z-index: 10;
    -webkit-backdrop-filter: blur(5px) saturate(180%);
            backdrop-filter: blur(5px) saturate(180%);
    background-color: rgba(255, 246, 247, 0.6705882353);
  }
  #mobileBottomTabs .tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    flex: 1;
    outline: none;
  }
  #mobileBottomTabs .tab img {
    width: 28px;
  }
  #mobileBottomTabs .tab span {
    font-family: "recoleta_altmedium", Arial, sans-serif;
    margin: 0px;
    text-align: center;
    color: #ababab;
    font-size: 0.8rem;
    text-wrap: nowrap;
    text-overflow: ellipsis;
  }
  #mobileBottomTabs .tab:hover {
    background: rgb(255, 225, 225);
  }
  #mobileBottomTabs .tab:active {
    transform: scale(0.98);
  }
  #mobileBottomTabs .active span {
    color: #de3451;
  }
}

footer {
  background: #fff0f3;
  padding: 30px 15px;
}
@media screen and (max-width: 475px) {
  footer {
    padding: 30px 15px 70px 15px;
  }
}
footer .footerSection .left .logo a img {
  width: 150px;
}
footer .footerSection .left .shortDescription p {
  font-family: "recoleta_altregular", Arial, sans-serif;
  color: #884c3a;
  margin: 0px;
  font-size: 1.1rem;
}
footer .footerSection .left .socialIcons a {
  background-color: #fff6f7;
  border-radius: 50px;
  border: 1px solid #de3451;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}
footer .footerSection .left .socialIcons a:hover {
  border-radius: 10px;
}
footer .footerSection .left .socialIcons a:active {
  transform: scale(0.92);
}
footer .footerSection .right {
  justify-content: end;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  footer .footerSection .right {
    justify-content: start;
    padding-top: 40px;
    gap: 30px;
  }
}
footer .footerSection .right h5 {
  font-family: "recoleta_altmedium", Arial, sans-serif;
  color: #884c3a;
}
footer .footerSection .right a {
  text-decoration: none;
  font-family: "recoleta_altregular", Arial, sans-serif;
  color: #303030;
  text-transform: capitalize;
  font-size: 1.05rem;
  color: #884c3a;
}
footer .footerSection .right a:hover {
  text-decoration: underline;
}
footer .footerSection .right a:active {
  transform: scale(0.98);
}
footer .securePaymentIcons p {
  font-family: "recoleta_altregular", Arial, sans-serif;
  font-size: 1.15rem;
  color: #884c3a;
}
footer .copyright {
  border-top: 1px dashed rgba(227, 32, 69, 0.3);
}
footer .copyright p {
  font-family: "recoleta_altregular", Arial, sans-serif;
  font-size: 1rem;
  color: #884c3a;
}
footer .copyright p a {
  color: #de3451;
  text-decoration: none;
}
footer .copyright p a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=footer.css.map */