a:link {
  text-decoration: none;
  color: #151515;
}
a:hover {
  color: #151515;
}
.mg-banner-scroll-down:hover {
  cursor: pointer;
  animation-name: bounce;
  -moz-animation-name: bounce;
}
.mg-blog-form:focus {
  background-color: transparent;
}
.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
  scrollbar-width: thin;
}
.mg-header-outer {
  background-color: #ffc0cd;
  align-items: center;
  display: flex;
  line-height: 14px;
}
.mg-header-i-font {
  font-family: "Inter-large";
  font-weight: 700;
  font-size: 13px;
}
.mg-nav-btn {
  font-family: Inter-italic;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid black;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  display: inline-block;
  height: 30px;
}
.mg-nav-right-link {
  font-size: 14px;
  font-family: Inter-italic;
  font-style: italic;
  color: #151515;
  border: 1px solid;
  border-radius: 25px;
  padding: 2px 15px;
  font-weight: 700;
  text-transform: capitalize;
}
.mg-nav-right-link:hover {
  background-color: #ffc0cd;
  border: 1px solid #ffc0cd;
  color: #fff;
}
.mg-lg-form-btn:hover {
  background-color: #f3afbd;
}
.mg-nav-right-section {
  justify-content: end;
}
.mg-card-outer {
  width: max-content;
}
.mg-nav-right-text-icn img {
  width: 14px;
}
.mg-nav-right-shop-link {
  font-size: 13px;
  margin-top: 2px;
}
.mg-header-fire-icn img {
  width: 13px;
  margin-right: 5px;
}
.mg-header-fire-icn {
  color: #151515;
  font-size: 12px;
  font-family: "Inter-medium";
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.mg-nav-shop-link {
  color: #151515;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
.banner {
  background-image: url("./images/gifts.jpg");
  position: relative;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  background-position: center;
  z-index: 1;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.logo-section {
  position: relative;
  z-index: 10;
}

.logo-section img {
  width: 200px;
  padding-top: 50px;
}
.content-section {
  position: relative;
  z-index: 10;
}

.contact-section {
  position: relative;
  z-index: 10;
  padding-bottom: 50px;
}

.contact-section h6 {
  font-weight: 300;
  margin-bottom: 10px;
  color: #bf962a;
}

.contact-section p {
  font-weight: bold;
  margin-bottom: 2px;
}
.mg-banner-scroll-down {
  position: absolute;
  right: 20px;
  bottom: 120px;
}
.mg-scroll-text {
  writing-mode: tb;
  transform: rotate(-180deg);
  font-size: 12px;
  font-family: inter-small;
}
.mg-scroll-text img {
  transform: rotate(-180deg);
  margin-right: 6px;
  margin-bottom: 10px;
  width: 12px;
}
.mg-nav-outer {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.mg-banner-span {
  font-family: Inter-large;
  font-size: 40px;
  font-weight: 500;
}
.mg-card-outer:hover {
  background-color: #f5eee6;
}
.mg-banner-text-2 {
  font-family: Inter-small;
  font-weight: 500;
  font-size: 40px;
  line-height: 42px;
  color: white;
}
.mg-banner-text-4 {
  font-size: 14px;
  font-family: Inter-small;
  font-weight: 500;
}
.mg-banner-text-3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding-top: 15px;
}
.mg-banner-btn {
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  background-color: #bf962a;
  font-family: "Inter-large";
  color: #151515;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin: 10px 0;
  border: none;
}

.mg-submit-btn {
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  background-color: #ffc0cd;
  font-family: "Inter-large";
  color: #151515;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin: 10px 0;
  border: none;
}

.mg-shop-now-btn img {
  width: 14px;
  vertical-align: inherit;
}
.mg-banner-star-icon img {
  width: 15px;
  margin-left: 2px;
}
.mg-card-outer {
  border-radius: 20px;
}
.mg-category-btn {
  display: inline-block;
  font-family: Inter-italic;
  font-weight: 600;
  font-size: 16px;
}
.mg-toggle-icn {
  text-align: right;
}
.mg-toggle-icn a {
  display: inline-block;
}
.mg-shop-link {
  color: #151515;
  font-weight: 600;
  font-family: Inter-italic;
  margin-top: 2px;
}
.hover-underline {
  text-decoration: none;
}
.hover-underline:hover {
  text-decoration: underline;
}
a {
  color: #151515;
  display: inline-block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

.delay-3 {
  animation-delay: 0.9s;
}
.delay-4 {
  animation-delay: 1.2s;
}

@media (max-width: 768px) {
  .logo-section img {
    width: 180px;
    padding-block: 30px;
  }

  .contact-section {
    padding-top: 30px;
  }

  .contact-section h6 {
    padding-top: 20px;
  }
}
