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

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat/Montserrat-VariableFont.ttf);
}
body {
  font-family: "Montserrat";
  font-weight: 400;
  background-image: url(../images/body-pg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#modal {
  position: fixed;
  z-index: 111;
  width: 100%;
  top: 0;
  transition: top 0.2s ease-out, opacity 0.1s ease-out;
  transform: translateZ(0);
  background: #f2f4ff !important;
}
#modal #closeModal {
  display: flex;
  justify-content: flex-start;
  margin: 1rem 1rem 0 0;
}
#modal #close {
  padding: 0.75rem;
  cursor: pointer;
  line-height: 0;
}
#modal .icon {
  width: 1.5rem;
  height: 1.5rem;
}
#modal #modalView,
#modal #copyView,
#modal #qrView,
#modal #keyInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#modal #copyView p,
#modal #keyInfo p {
  margin: 1rem 2em 2rem;
  text-align: center;
}
#modal #copyURL,
#modal #dlKey {
  display: inline-flex;
  align-items: center;
  border-radius: 5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  outline: none;
  cursor: pointer;
}
#modal #copyURL span,
#modal #dlKey span {
  margin-left: 0.5rem;
}
#modal #qrView h2,
#modal #qrView p {
  margin: 0 2rem 0.5rem;
  color: #002699;
  text-align: center;
}
#modal #qr {
  margin: 1rem 2rem 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 0.5rem;
}

#logo {
  padding: 40px 0 10px;
}

#profile-section {
  background: linear-gradient(240.64deg, #b40530 0%, #033072 100%);
  padding: 75px 0 40px;
  margin-top: 90px;
  position: relative;
}
#profile-section .image-wrapper {
  position: absolute;
  width: 100%;
  top: -70px;
}
#profile-section .name-wrapper {
  text-align: center;
}
#profile-section .name-wrapper h1 {
  text-transform: uppercase;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
#profile-section .name-wrapper p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
  color: #c9c9c9;
  text-transform: capitalize;
}
#profile-section .save-contact-btn {
  text-align: center;
  margin-top: 18px;
  display: inline-block;
  background: #fff;
  padding: 8px 28px;
  border-radius: 50px;
}
#profile-section .save-contact-btn a {
  text-decoration: none;
  background: -webkit-linear-gradient(#b40530, #033072);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 18px;
}
#profile-section .save-contact-btn a .download-icon {
  animation-name: downloadiconanimate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}
@keyframes downloadiconanimate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
#profile-section #qr-share-btn-section {
  border-radius: 50px 0px 0 50px;
  position: absolute;
  bottom: 42px;
  right: 0px;
  z-index: 99;
  transition: 0.3s ease-in-out;
}
#profile-section #qr-share-btn-section .arrow-icon {
  background: #fff;
  padding: 10px 12px;
  border-radius: 50px 0px 0 50px;
  transition: 0.3s ease-in-out;
}
#profile-section #qr-share-btn-section .arrow-icon img {
  transition: 0.5s ease-in-out;
  animation-name: slidearrow;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  transform: translateX(0);
}
@keyframes slidearrow {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0);
  }
}
#profile-section #qr-share-btn-section .btn-wrapper {
  display: none !important;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px 0px 0 12px;
  transition: 0.7s ease-in-out;
  gap: 12px;
  margin-right: -32px;
  background: #fff;
}
#profile-section #qr-share-btn-section .btn-wrapper .link-wrapper {
  padding: 6px;
  border-radius: 8px;
  background: #002699;
  border: none;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#profile-section #qr-share-btn-section .btn-wrapper .link-wrapper img {
  width: 24px;
  height: auto;
}
#profile-section #qr-share-btn-section.show {
  top: 142px;
  right: 0px;
}
#profile-section #qr-share-btn-section.show .arrow-icon {
  display: block;
  background: #fff;
  border-radius: 50px 0 0 50px;
}
#profile-section #qr-share-btn-section.show .arrow-icon img {
  animation-name: showslidearrow;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  transform: rotateY(180deg);
}
@keyframes showslidearrow {
  0% {
    transform: translateX(0px) rotateY(180deg);
  }
  50% {
    transform: translateX(8px) rotateY(180deg);
  }
  100% {
    transform: translateX(0) rotateY(180deg);
  }
}
#profile-section #qr-share-btn-section.show .btn-wrapper {
  display: flex !important;
  margin-right: 0;
}

#products-section {
  padding: 20px 0 40px;
}
#products-section .section-title h2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}
#products-section .products-slider .slick-next {
  display: none !important;
}
#products-section .products-slider .slick-prev {
  display: none !important;
}
#products-section .products-slider .slick-dots li {
  width: 18px;
  height: 2px;
}
#products-section .products-slider .slick-dots li button {
  background: #a4a6a9;
  width: 20px;
  height: 2px;
  border-radius: 12px;
}
#products-section .products-slider .slick-dots li button::before {
  content: none;
}
#products-section .products-slider .slick-dots li.slick-active button {
  background: #033072;
}
#products-section .products-slider .image {
  margin: 0 8px;
  overflow: hidden;
}
#products-section .products-slider .image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
#products-section .products-slider .image h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: center;
  color: #000000;
  text-transform: capitalize;
  margin-top: 8px;
}

#address-section .address-wrapper a {
  text-decoration: none !important;
}
#address-section .address-wrapper a .icon {
  text-align: center;
}
#address-section .address-wrapper a .icon img {
  width: 32px;
  height: auto;
}
#address-section .address-wrapper a p {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  color: #7e7e7e;
  margin: 4px 0 0;
}

#rights-section {
  padding: 18px 0;
}
#rights-section p {
  text-align: center;
  margin-bottom: 0;
  color: #000;
  line-height: normal;
  font-size: 16px;
}
#rights-section a {
  text-align: center;
  color: #002699;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  background: -webkit-linear-gradient(#b00732, #073072);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}/*# sourceMappingURL=style.css.map */