:root {
  --primary-color: #1e2a3b;
  --primary-blue-color: #0D68A7;
  --primary-rgb-color: 30, 42, 59;
  --info-color: #475569;

  --green-color: #008675;
  --green-rgb-color: 0, 134, 117;

  --grey: #e6f3f1;
  --grey-light: #f6f8fc;
  --grey-dark: #64748B;

  --golden: #e3b618;
  --sky-blue-color: #B3F3FF;
}
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
  background-color: #ffffff;
  color: var(--primary-color);
  min-height: 100vh;
  overflow-x: hidden;
}
::-moz-selection {
  background-color: var(--primary-color);
  color: #ffffff;
}
::selection {
  background-color: var(--primary-color);
  color: #ffffff;
}
:focus {
  outline: none !important;
  box-shadow: none !important;
}
img {
  max-width: 100%;
}
a {
  transition: all 0.6s ease-in-out;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  line-height: 1.5;
}
h1,
.h1 {
  font-size: 4rem; /* 64px */
}
h2,
.h2 {
  font-size: 3.5rem; /* 56px */
}
h3,
.h3 {
  font-size: 3rem; /* 48px */
}
h4,
.h4 {
  font-size: 2.25rem; /* 36px */
}
h5,
.h5 {
  font-size: 1.5rem; /* 24px */
}
h6,
.h6 {
  font-size: 1.125rem; /* 18px */
}
.fs-22 {
  font-size: 1.375rem !important;
}
.fw-black {
  font-weight: 900;
}
.text-green {
  color: var(--green-color);
}
.text-grey-dark {
  color: var(--grey-dark);
}
.text-info {
  color: var(--info-color) !important;
}
.text-body {
  color: var(--primary-color);
}
.bg--primary {
  background-color: var(--primary-color);
}
.bg-green {
  background-color: var(--green-color);
}
.bg-grey {
  background-color: var(--grey);
}
.bg-grey-light {
  background-color: var(--grey-light);
}
.border-green {
  border-color: var(--green-color) !important;
}
.radial-gradient-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, #1E2A3B 0%, #00FFE0 100%);
  opacity: 0.1;
  filter: blur(200px);
  z-index: -1;
}
.section-padding {
  padding: 5rem 0;
}
picture {
  display: block;
}
div#google_translate_element {
  position: fixed;
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 11;
}
main {
  overflow: hidden;
}

.btn {
  padding: 0.8rem 1.25rem;
  color: var(--green-color);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  display: inline-block;
  border: 1px solid transparent;
  transition: all 0.6s ease-in-out;
}
.btn-primary {
  background-color: var(--green-color);
  border-color: var(--green-color);
  color: #ffffff;
}
.btn.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}
.btn:focus-visible,
.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active,
.btn-check:focus + .btn, .btn:focus,
.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  background-color: var(--green-color);
  border-color: var(--green-color);
  color: #ffffff;
  box-shadow: 0 5px 10px 4px rgba(var(--primary-rgb-color), 0.3);
}
.btn-sm {
  font-size: 1rem;
  padding: 0.563rem 1rem;
}
.btn-white {
  background-color: #ffffff;
  color: var(--green-color);
}
.btn-white:hover {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn.btn-outline-primary {
  border-color: var(--green-color);
}
.btn.btn-outline-primary:hover {
  background-color: var(--green-color);
}
.btn.btn-lg {
  font-size: 1.125rem;
  padding: 0.875rem 5rem;
}
.btn .spinner-border {
  --bs-spinner-width: 1.2rem;
  --bs-spinner-height: 1.2rem;
  --bs-spinner-border-width: 0.125rem;
  --bs-spinner-vertical-align: -0.25rem;
  margin-left: 0.313rem;
}
label {
  font-size: 14px;
  font-weight: 500;
  color: var(--info-color);
  margin-bottom: 5px;
}
label a.text-green:hover {
  color: var(--green-color);
  text-decoration: underline !important;
}
label.error {
  margin: 0.3rem 0 0 0.8rem;
}
.required:before {
  content: "*";
  padding-right: 4px;
  color: #e31836;
}
.form-control {
  font-family: "Inter", sans-serif;
  background-color: var(--grey);
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  line-height: 1.2;
  padding: 1.25rem;
}
.form-control::-webkit-input-placeholder {
  color: #94a3b8;
}
.form-control::-moz-placeholder {
  color: #94a3b8;
}
.form-control:-ms-input-placeholder {
  color: #94a3b8;
}
.form-control::-ms-input-placeholder {
  color: #94a3b8;
}
.form-control::placeholder {
  color: #94a3b8;
}
.form-control:focus {
  background-color: var(--grey);
  color: var(--primary-color);
  border-color: var(--green-color);
}
textarea.form-control {
  min-height: 8rem;
  resize: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8L12 16L20 8' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: 1.5rem;
  padding-right: 4rem;
}
.input-group-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.125rem;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
#remaining-char {
  position: absolute;
  top: auto;
  left: auto;
  right: 1rem;
  bottom: 1rem;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

.custom-checkbox label {
  color: var(--green-color);
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  padding-left: 1.6rem;
  margin-bottom: 0;
  cursor: pointer;
}
.custom-checkbox label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid var(--green-color);
  border-radius: 0.25rem;
}
.custom-checkbox label::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 3px;
  width: 0.75rem;
  height: 0.75rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNSAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNjY2NSA1TDUuNjY2NSA5TDEzLjY2NjUgMSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==")
  no-repeat center / contain;
  opacity: 0;
  visibility: hidden;
}
.custom-checkbox input[type="checkbox"] {
  display: none;
}
.custom-checkbox input[type="checkbox"]:checked + label::after {
  opacity: 1;
  visibility: visible;
}
.custom-checkbox input[type="checkbox"]:checked + label::before {
  background-color: var(--green-color);
}

.country-select-flag img {
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.625rem;
}
.select2-container .select2-selection {
  height: auto;
  background-color: var(--grey);
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 500;
  border-color: transparent;
  border-radius: 0.75rem;
  line-height: 1.2;
  padding: 17.3px 1.25rem;
}
.select2-container .select2-selection .select2-selection__rendered {
  line-height: normal;
  padding-left: 0;
}
.select2-container .select2-selection .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  right: 0.9rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8L12 16L20 8' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.select2-container .select2-selection .select2-selection__arrow b {
  display: none;
}

@media (min-width: 2000px) {
  .container-2xl {
    max-width: 1240px;
    margin: 0 auto;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1240px;
  }
}

/* width */
.custom-scroll::-webkit-scrollbar {
  width: 0.3rem;
}

/* Track */
.custom-scroll::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.custom-scroll::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 10px;
}

/* Handle on hover */
.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.loadder-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1021;
}

main.inner-page {
  padding-top: 8rem;
}
/* Header CSS Start */
.header {
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header .navbar {
  background-color: var(--primary-blue-color);
  padding: 1.5rem 2.5rem;
}
.header.fixed {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  background-color: var(--primary-blue-color);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.08);
  -webkit-animation: slideDown 0.6s ease-out;
  animation: slideDown 0.6s ease-out;
}
.header .header-logo {
  width: 16%;
}
@-webkit-keyframes slideDown {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0);
  }
}

.navbar-nav .nav-item:not(:last-child) {
  margin-right: 1.875rem;
}
.nav-item .nav-link {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0;
  display: inline-block;
}
.nav-item .nav-link:hover,
.nav-item .nav-link.active {
  color: var(--sky-blue-color);
}
.nav-link.dropdown-toggle::after {
  border: none;
  width: 1.5rem;
  height: 1.5rem;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.43057 8.51192C4.70014 8.19743 5.17361 8.161 5.48811 8.43057L12 14.0122L18.5119 8.43057C18.8264 8.16101 19.2999 8.19743 19.5695 8.51192C19.839 8.82642 19.8026 9.29989 19.4881 9.56946L12.4881 15.5695C12.2072 15.8102 11.7928 15.8102 11.5119 15.5695L4.51192 9.56946C4.19743 9.29989 4.161 8.82641 4.43057 8.51192Z' fill='%2364748B'/%3E%3C/svg%3E")
    no-repeat center / contain;
  vertical-align: middle;
  margin-left: 0.5rem;
}
.navbar-nav .dropdown-menu {
  top: calc(100% + 0.625rem);
  padding: 1rem  1.2rem;
  border: none;
  box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.16);
  border-radius: 0.5rem;
  width: 230px;
  left: auto;
  right: -0.4rem;
}
.navbar-nav .dropdown-menu:before {
  content: "";
  position: absolute;
  top: -0.563rem;
  right: 1rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.563rem 1.125rem 0.563rem;
  border-color: transparent transparent #ffffff transparent;
}
.dropdown-menu li:not(:last-child) {
  margin-bottom: 1rem;
}
.dropdown-menu .dropdown-item {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: normal;
}
.dropdown-menu .dropdown-item:hover {
  color: var(--green-color);
}
@media (max-width: 991.2px) {
  /* Header CSS Start */
  .header .header-logo {
    width: 30%;
  }
  .navbar-toggler {
    border: none;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7H26ZM4 15H26ZM4 23H26Z' fill='%23ffffff'/%3E%3Cpath d='M4 7H26M4 15H26M4 23H26' stroke='%23ffffff' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    width: 2.5rem;
    height: 2.5rem;
  }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='23' width='24' height='2' rx='1' transform='rotate(-45 6 23)' fill='white'/%3E%3Crect x='7' y='6' width='24' height='2' rx='1' transform='rotate(45 7 6)' fill='white'/%3E%3C/svg%3E%0A");
  }
  .header .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 1rem;
    width: 250px;
    height: auto;
    background-color: #ffffff;
    box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.16);
    padding: 1.4rem;
    border-radius: 1.2rem;
  }
  .navbar-nav .nav-item:not(:last-child) {
    margin: 0 0 1rem;
  }
  .nav-item .nav-link {
    font-size: 1.1rem;
    color: var(--primary-blue-color);
  }
  .nav-link.dropdown-toggle::after {
    width: 1.2rem;
    height: 1.2rem;
  }
  .navbar-nav .dropdown-menu {
    padding: 1rem;
    box-shadow: none;
    background-color: var(--grey);
    margin-top: 0.5rem;
    width: 100%;
  }
  .navbar-nav .dropdown-menu:before {
    display: none;
  }
  .dropdown-menu li:not(:last-child) {
    margin-bottom: 0.8rem;
  }
  .dropdown-menu .dropdown-item {
    font-size: 1rem;
  }
  /* Header CSS End */
}
@media (max-width: 767.2px) {
  .header {
    top: 1rem;
  }
  .header .navbar {
    padding: 0.938rem 1.5rem;
  }
  .navbar-toggler-icon {
    width: 1.7rem;
    height: 1.7rem;
  }
}
/* Header CSS End */

/* Hero Block CSS Start */
.circle-shape {
  position: absolute;
  width: 625px;
  height: 625px;
  z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, #008674 0%, #00FFE0 100%);
  opacity: 0.5;
  filter: blur(200px);
  /* -webkit-animation: pulse 5s infinite ease-in-out, move 10s infinite alternate ease-in-out;
  animation: pulse 5s infinite ease-in-out, move 10s infinite alternate ease-in-out; */
}
.circle-shape.left {
  bottom: 0;
  left: -20%;
}
.circle-shape.right {
  top: 0;
  right: -20%;
}
.hero-section .gift-shape {
  position: absolute;
  z-index: -1;
}
.gift-shape {
  -webkit-animation: mooving 6s 6s linear infinite alternate;
  animation: mooving 6s 6s linear infinite alternate;
}
.hero-section .gift-shape.small {
  top: 20%;
  left: 18%;
}
.hero-section .gift-shape.large {
  bottom: 2%;
  right: 6%;
}

@-webkit-keyframes pulse {
  0%, 100% {
      opacity: 0.8;
      -webkit-transform: scale(1);
              transform: scale(1);
  }
  50% {
      opacity: 1;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
  }
}

@keyframes pulse {
  0%, 100% {
      opacity: 0.8;
      -webkit-transform: scale(1);
      transform: scale(1);
  }
  50% {
      opacity: 1;
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
  }
}

@-webkit-keyframes move {
  0% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0);
  }
  100% {
      -webkit-transform: translate(-5px, 5);
      transform: translate(-5px, 5);
  }
}

@keyframes move {
  0% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0);
  }
  100% {
      -webkit-transform: translate(-60px, 25px);
      transform: translate(-60px, 25px);
  }
}

.hero-section {
  padding-top: 13rem;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #008674 0%, #FFFFFF 100%);
  opacity: 0.16;
  z-index: -1;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: url('../images/shape/roof-top-pattern.svg') no-repeat center / cover;
  z-index: -1;
}
.hero-title span {
  border-bottom: 3px solid var(--green-color);
}
.tick-list li {
  position: relative;
  padding-left: 2rem;
}
.tick-list li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url('../images/icons/check-green.svg') no-repeat center / contain;
}
/* Hero Block CSS End */

/* About Block CSS Start */
#our-story .gift-shape {
  position: absolute;
  top: auto;
  bottom: -6.875rem;
  left: -8.125rem;
  right: auto;
  transform: rotate(10deg);
  z-index: -1;
}
/* About Block CSS End */

/* Promotional Banner Block CSS Start */
#discount-block .gift-shape.small {
  position: absolute;
  top: 1.25rem;
  right: 3.125rem;
  opacity: 0.1;
}

#slider-range-min {
  border: none;
  background-color: rgba(0, 0, 0, 0.4);
  height: 1.875rem;
  border-radius: 1.875rem;
}
#slider-range-min.ui-slider .ui-slider-range {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.875rem 0 0 1.875rem;
}
#slider-range-min.ui-slider .ui-slider-handle {
  background-color: #ffffff;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}
/* Promotional Banner Block End */

/* Services Block Start */
.service-slider .swiper-pagination-bullet {
  background: #fff;
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 1rem !important;
}
#our-services .gift-shape {
  position: absolute;
  top: auto;
  bottom: 3rem;
  left: auto;
  right: -2rem;
  opacity: 0.1;
  z-index: -1;
}
@-webkit-keyframes mooving {
  100% {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
}
@keyframes mooving {
  100% {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
}
.services-banner::before {
  content: "";
  position: absolute;
  top: -10%;
  right: 1rem;
  width: 90%;
  height: 120%;
  border-radius: 1rem;
  background: url('../images/services/service-bg.svg') no-repeat center / cover;
  z-index: -1;
}
/* Services Block End */

/* Offer Block Start */
#our-products .gift-shape {
  position: absolute;
  z-index: -1;
}
#our-products .gift-shape.small {
  top: 0;
  left: -4rem;
}
#our-products .gift-shape.large {
  top: 30%;
  right: -3rem;
}
.blob-shape {
  position: absolute;
  width: 800px;
  height: 625px;
  background: radial-gradient(50% 50% at 50% 50%, #1E2A3B 0%, #00FFE0 100%);
  opacity: 0.3;
  filter: blur(200px);
  /* -webkit-animation: pulse 5s infinite ease-in-out, move 10s infinite alternate ease-in-out;
  animation: pulse 5s infinite ease-in-out, move 10s infinite alternate ease-in-out; */
  z-index: -1;
}
.blob-shape.left {
  top: auto;
  bottom: 0;
  left: -15%;
}
.blob-shape.right {
  top: -15%;
  bottom: auto;
  right: -15%;
}

.offer {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.75rem;
  height: 3.75rem;
  background-color: var(--golden);
  border-radius: 1rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
}
.offer.end {
  left: auto;
  right: 0;
  border-radius: 0 1rem 0 1rem;
}
.offer.small {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.7rem;
  line-height: normal;
  border-radius: 0 0.5rem 0 0.5rem;
}
.shadow-bottom:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 2.5rem;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.5;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
.offer-card-left {
  padding: 4.063rem 5rem 6.25rem;
}
.offer-card-left::after {
  bottom: 2.188rem;
}
.card-description p a {
  font-weight: 600;
  color: #ffffff;
}

.offer-card-left picture {
  transform: rotate(0deg);
  transition: all 0.6s ease-in-out;
  position: relative;
  overflow: hidden;
  padding-top: 61%;
}
.offer-card-left picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offer-card-left:hover picture,
.offer-card-left.visible picture {
  transform: rotate(-5deg);
  transition: all 0.6s ease-in-out;
}

.gift-card-image {
  padding: 4.688rem 1.25rem 1.25rem;
}
.gift-card-box {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.gift-card-box .h5 {
  font-size: 1.375rem;
}
.gift-card-box:hover .h5,
.gift-card-box:hover .sub-info,
.gift-card-box.visible .h5,
.gift-card-box.visible .sub-info {
  color: #ffffff;
}
.gift-card-box .sub-info {
  opacity: 0.8;
  line-height: 1.29;
  max-height: calc(1.29* 3* 1.125rem);
  height: calc(1.29* 3* 1.125rem);
  overflow: hidden;
}
.gift-card-box .sub-info,
.gift-card-box .link-btn {
  display: none;
}
.gift-card-box:hover .sub-info,
.gift-card-box:hover .link-btn,
.gift-card-box.visible .sub-info,
.gift-card-box.visible .link-btn {
  display: block;
}
.gift-card-info {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gift-card-box:hover .gift-card-info,
.gift-card-box.visible .gift-card-info {
  background-color: var(--green-color);
  color: #ffffff;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.6s ease-in-out;
}
.gift-card-info .gift-card-btns {
  min-width: 45%;
}
.gift-card-box:hover .gift-card-btns,
.gift-card-box.visible .gift-card-btns {
  width: 100%;
  margin-top: 1.75rem;
}
.gift-card-box .gift-card-image,
.gift-card-box .gift-card-image picture {
  transition: all 0.6s ease-in-out;
}
.gift-card-box .gift-card-image picture {
  position: relative;
  overflow: hidden;
  padding-top: 61%;
}
.gift-card-box .gift-card-image picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gift-card-box:hover .gift-card-info p,
.gift-card-box.visible .gift-card-info p {
  color: #ffffff !important;
  opacity: 0.6;
}
.gift-card-box:hover .btn,
.gift-card-box.visible .btn {
  background-color: #ffffff;
  color: var(--green-color);
}
.gift-card-box:hover .gift-card-image,
.gift-card-box.visible .gift-card-image {
  height: 10.68rem;
  display: block;
  padding: 1.25rem 1.25rem 2.5rem;
  transition: all 0.6s ease-in-out;
}
.gift-card-box:hover .gift-card-image picture,
.gift-card-box.visible .gift-card-image picture {
  padding-top: 32%;
  transform: rotate(-5deg);
  margin: auto;
  transition: all 0.6s ease-in-out;
}
.gift-card-box:hover .gift-card-image::after,
.gift-card-box.visible .gift-card-image::after {
  width: 10.625rem;
  height: 0.75rem;
}
/* Offer Block End */

/* What We Offer Block Start */
#our-offer .offer-icon {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(0, 0, 0, 0.102)
}
#our-offer .gift-shape {
  position: absolute;
  z-index: 1;
}
#our-offer .gift-shape.left {
  top: 12rem;
  left: -4.5rem;
  transform: rotate(65deg);
  opacity: 0.2;
}
#our-offer .gift-shape.right {
  right: -1rem;
  bottom: -2rem;
  width: 126px;
  opacity: 0.1;
}
/* What We Offer Block End */

/* CTA Block CSS Start */
#cta .gift-shape {
  position: absolute;
  top: -4rem;
  left: -8rem;
  right: auto;
  bottom: auto;
  z-index: -1;
}
.cta-cards {
  position: relative;
  padding-top: 33%;
}
.cta-cards img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.6s ease-in-out;
}
.cta-cards:hover img {
  transition: all 0.6s ease-in-out;
}
.cta-cards img:nth-child(1) {
  transform: rotate(-15deg);
  top: -6rem;
  left: -4rem;
}
.cta-cards img:nth-child(2) {
  top: -3.4rem;
  left: -1rem;
}
.cta-cards img:nth-child(3) {
  transform: rotate(17.33deg);
  top: 1rem;
  left: 1rem;
}
.cta-cards:hover img:nth-child(1) {
  transform: rotate(0deg);
}
.cta-cards:hover img:nth-child(2) {
  transform: rotate(15deg);
}
.cta-cards:hover img:nth-child(3) {
  transform: rotate(32deg);
}
.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../images/shape/cta-bg.svg') no-repeat center / cover;
}
/* CTA Block CSS End */

/* How It Work Block CSS Start */
#our-program .gift-shape {
  position: absolute;
  top: auto;
  left: auto;
  right: -3rem;
  bottom: 3rem;
  opacity: 0.5;
}
.swiper-button-next, .swiper-button-prev {
  background-color: #ffffff;
  color: var(--green-color);
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--green-color);
  margin-top: 2rem;
}
.how-it-works-slider p {
  height: 44px;
  overflow: hidden;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 0.8rem;
}
/* @media (min-width: 540px) {
  .how-it-works-slider {
    --container: 510px;
    padding-left: calc((100% - var(--container) ) / 2);
  }
}
@media (min-width: 768px) {
  .how-it-works-slider {
    --container: 690px;
    padding-left: calc((100% - var(--container) ) / 2);
  }
}
@media (min-width: 992px) {
  .how-it-works-slider {
    --container: 930px;
    padding-left: calc((100% - var(--container) ) / 2);
  }
}
@media (min-width: 1200px) {
  .how-it-works-slider {
    --container: 1110px;
    padding-left: calc((100% - var(--container) ) / 2);
  }
}
@media (min-width: 1400px) {
  .how-it-works-slider {
    --container: 1210px;
    padding-left: calc((100% - var(--container) ) / 2);
  }
} */
/* How It Work Block CSS End */

/* Brands Block CSS Start */
.inner-page section .gift-shape {
  position: absolute;
  z-index: -1;
}
.inner-page section .gift-shape.small {
  top: 4rem;
  left: -4rem;
}
.inner-page section .gift-shape.small.two {
  left: auto;
  right: 12rem;
  top: auto;
  bottom: 3rem;
}
.inner-page section .gift-shape.large {
  top: 50%;
  right: -4rem;
}
.inner-page section .gift-shape.large.one {
  top: 12rem;
  right: 2rem;
}
.inner-page section .gift-shape.large.two {
  left: -4rem;
  right: auto;
}
.inner-page section .blob-shape.left {
  top: auto;
  bottom: 0;
}
.brands-search .form-control {
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
  background-color: #ffffff;
  border-color: rgba(var(--primary-rgb-color), 0.1);
}

.brand-item {
  cursor: pointer;
  height: 100%;
  text-align: center;
  padding: 5px;
}
.brand-item picture {
  padding-top: 62%;
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 0.2rem;
  font-size: 10px;
}
.brand-item picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: auto;
  transform: scale(1);
  transition: all 0.6s ease-in-out;
}
.brand-item:hover picture img {
  transform: scale(1.1);
  transition: all 0.6s ease-in-out;
}
/* Brands Block CSS End */

/* Authentication Block Start */
.authentication-box {
  padding: 2.25rem;
}
.authentication-box .custom-checkbox label {
  font-size: 1.125rem;
}
.authentication-box .custom-checkbox label::before {
  top: 4px;
}

.otp-input-wrapper {
  margin: 0 -0.5rem;
}
.otp-input-wrapper .otp-input {
  width: 5rem;
  height: 4rem;
  padding: 1rem;
  text-align: center;
  border: none;
  background-color: var(--grey);
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 1rem;
  margin: 0 0.5rem;
}
/* Authentication Block End */

/* Back to Top CSS Start */
#progressContainer {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: conic-gradient(#fff 0%, #fff 0%, transparent 0%, transparent 100%);
  border-radius: 50%;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
#back-to-top {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--green-color);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Back to Top CSS End */

/* Footer CSS Start */
.footer {
  position: -webkit-sticky;
  position: sticky;
  top: 100%;
}
.footer .nav a:hover {
  text-decoration: underline !important;
}
/* Footer CSS Start */

/* Responsive CSS Start */
@media (max-width: 1400px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1199.2px) {
  h1,
  .h1 {
    font-size: 3rem;
  }
  h2,
  .h2 {
    font-size: 2.6rem;
  }
  h3,
  .h3 {
    font-size: 2.3rem;
  }
  h4,
  .h4 {
    font-size: 1.6rem;
  }
  h5,
  .h5 {
    font-size: 1.2rem;
  }

  img {
    width: auto;
    height: auto;
  }
  .section-padding {
    padding: 3rem 0;
  }

  .select2-container .select2-selection {
    padding: 14px 1.25rem;
  }
  /* Hero Block CSS Start */
  .hero-section {
    padding-top: 12rem;
  }
  .circle-shape {
    width: 325px;
    height: 325px;
  }
  .circle-shape.left { left: 2rem; }
  .circle-shape.right { right: 1rem; }
  .hero-section .gift-shape.small {
    top: 25%;
    left: 15%;
    width: 100px;
    height: auto;
  }
  .hero-section .gift-shape.large {
    bottom: 10%;
    right: 10%;
    width: 140px;
  }
  /* Hero Block CSS End */

  /* About Block CSS Start */
  #our-story .gift-shape {
    width: 100px;
    bottom: -50px;
    left: 1.5rem;
  }
  /* About Block CSS End */

  /* Services Block Start */
  #our-services .gift-shape {
    width: 140px;
    height: auto;
    right: 3rem;
    bottom: -3rem;
  }
  /* Services Block End */

  /* Offer Block Start */
  .blob-shape {
    width: 470px;
    height: 295px;
  }
  .blob-shape.left { left: 3rem; }
  .blob-shape.right {
    top: -5%;
    right: 2rem;
  }

  #our-products .gift-shape.small {
    width: 100px;
    height: auto;
    left: 3rem;
  }
  #our-products .gift-shape.large {
    width: 140px;
    height: auto;
    right: 3rem;
    top: 70%;
  }
  /* Offer Block End */

  /* CTA Block CSS Start */
  #cta .gift-shape {
    width: 140px;
    height: auto;
    left: 3rem;
    top: -2rem;
  }
  /* CTA Block CSS End */

  /* How It Work Block CSS Start */
  #our-program .gift-shape {
    width: 140px;
    height: auto;
    right: 3rem;
  }
  /* How It Work Block CSS End */

  /* Brands Block CSS Start */
  .inner-page section .gift-shape.small {
    top: 4rem;
    left: 1rem;
    width: 100px;
    height: auto;
  }
  .inner-page section .gift-shape.large {
    right: 2rem;
    width: 150px;
  }
  /* Brands Block CSS End */
}
@media (max-width: 991.2px) {
  .btn.btn-lg {
    padding: 0.875rem 2.5rem;
  }

  .inner-page section .gift-shape.large.one {
    top: auto;
    bottom: 0;
  }
  .inner-page section .gift-shape.small.two {
    left: 1rem;
    bottom: 0;
  }
  .inner-page section .gift-shape.large.two {
    left: auto;
    right: 2rem;
    top: 0;
  }
  /* Multi-Brand Card Block CSS Start */
  .multi-brands-content,
  .multi-brands-slider .owl-dots {
    padding: 1.5rem;
  }
  /* Multi-Brand Card Block CSS End */

  /* Offer Block End */
  .offer-card-left {
    padding: 2rem 4rem 4rem;
  }
  .shadow-bottom:after {
    bottom: 1rem;
  }
  /* Offer Block End */

  /* Services Block Start */
  #our-services .gift-shape {
    width: 90px;
    bottom: 0;
    right: 2rem;
  }
  .service-slider .swiper-pagination {
    bottom: 0;
  }
  .service-slider .swiper-pagination-bullet {
    margin: 0 0 0 1.5rem !important;
  }
  /* Services Block End */

  /* CTA Block CSS Start */
  .cta-box {
    overflow: hidden;
  }
  .cta-box::before {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
  }
  .cta-cards {
    margin: 12rem 0 2rem;
  }
  /* CTA Block CSS End */
}
@media (max-width: 767.2px) {
  .form-control,
  .input-inline-btn .form-control {
    font-size: 1rem;
  }
  .col-md-10.mb-5 {
    margin-bottom: 1rem !important;
  }
  .select2-container .select2-selection {
    padding: 12px 1rem;
    font-size: 1rem;
  }

  main.inner-page {
    padding-top: 6rem;
  }

  #progressContainer {
    width: 42px;
    height: 42px;
    bottom: 1rem;
    right: 1rem;
  }
  #back-to-top {
    width: 39px;
    height: 39px;
  }
  #back-to-top img {
    width: 16px;
    height: 16px;
  }

  @-webkit-keyframes mooving {
    100% {
      -webkit-transform: rotate(30deg);
      transform: rotate(30deg);
    }
  }
  @keyframes mooving {
    100% {
      -webkit-transform: rotate(30deg);
      transform: rotate(30deg);
    }
  }

  @-webkit-keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.3);
                transform: scale(1.3);
    }
  }
  
  @keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
  }
  
  @-webkit-keyframes move {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(-30px, 15px);
        transform: translate(-30px, 15px);
    }
  }
  
  @keyframes move {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(-30px, 15px);
        transform: translate(-30px, 15px);
    }
  }

  /* Hero Block CSS Start */
  .circle-shape {
    display: none;
  }
  .hero-section {
    padding-top: 9rem;
  }
  .hero-section .gift-shape.small {
    top: 18%;
    left: 5%;
    width: 70px;
  }
  .hero-section .gift-shape.large {
    bottom: 0;
    width: 60px;
    opacity: 0.5;
    right: 7%;
  }
  /* Hero Block CSS End */

  /* About Block CSS Start */
  #our-story .gift-shape {
    left: 2rem;
    width: 60px;
    bottom: -30px;
  }
  /* About Block CSS End */

  /* Promotional Banner Block CSS Start */
  #discount-block .gift-shape.small {
    width: 70px;
    right: 1rem;
    top: 0;
  }
  #discount-block h2 {
    font-size: 2.2rem;
  }
  /* Promotional Banner Block CSS End */

  /* Offer Block End */
  .blob-shape {
    width: 170px;
    height: 295px;
  }
  #our-products .gift-shape.small {
    width: 60px;
    top: 0;
    left: 1rem;
  }
  .card-description.text-limit {
    overflow: hidden;
    line-height: 1.4;
    height: calc(1.6* 2* 1.125rem);
  }

  .blob-shape { display: none; }
  /* Offer Block End */

  /* Services Block Start */
  #our-services .gift-shape {
    width: 60px;
    bottom: 1rem;
    right: 1rem;
  }
  /* Services Block End */

  /* What We Offer Block Start */
  #our-offer .gift-shape.left {
    width: 80px;
    top: 0;
    left: 2rem;
  }
  #our-offer .gift-shape.right {
    right: 1rem;
    bottom: 1rem;
    width: 70px;
  }
  /* What We Offer Block End */

  /* CTA Block CSS Start */
  #cta .gift-shape {
    width: 90px;
    top: -1rem;
  }
  .cta-cards {
    margin: 10rem 0 2rem;
  }
  .cta-cards img:nth-child(1) { left: -2rem; }
  .cta-cards img:nth-child(2) { left: 1rem; }
  .cta-cards img:nth-child(3) { left: 3rem; top: 0; }
  /* CTA Block CSS End */

  /* How It Work Block CSS Start */
  /* .how-it-works-slider {
    padding-left: 0.75rem;
    max-width: 540px;
  } */
  #our-program .gift-shape {
    width: 80px;
  }
  /* How It Work Block CSS End */

  /* Brands Block CSS Start */
  .inner-page section .gift-shape.small {
    top: 0;
    width: 60px;
  }
  .inner-page section .gift-shape.large {
    width: 80px;
  }
  /* Brands Block CSS End */

  /* Authentication Block Start */
  .authentication-box {
    padding: 1.25rem;
  }
  .otp-input-wrapper {
    margin: 0 -0.3rem;
  }
  .otp-input-wrapper .otp-input {
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    margin: 0 0.3rem;
  }
  /* Authentication Block End */
}
/* Responsive CSS End */
