:root {
  --body-color: #333333;
  --dark-base: #2D3648;

  --primary-blue-color: #0D68A7;
  --purple-color: #AC3CD6;
  --light-purple-color: #D669FF;
  --light-cyan-color: #D9F9FF;
  --sky-blue-color: #B3F3FF;
  --light-blue-color: #79F4F3;
  --blue-green-color: #88DADB;
  --teal-blue-color: #0092A3;
  --teal-color: #0092A3;
  --green-color: #00AA5A;
  --guppie-green-color: #03EC7F;
  --orange-color: #F38C20;
}
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
}
body {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
  background-color: #ffffff;
  color: var(--body-color);
}

img {
  max-width: 100%;
}
picture {
  display: block;
}

.bg-primary {
  background-color: var(--body-color);
}
.bg-green {
  background-color: var(--green-color);
}
.bg-guppie-green {
  background-color: var(--guppie-green-color);
}
.bg-primary-blue {
  background-color: var(--primary-blue-color);
}
.bg-orange {
  background-color: var(--orange-color);
}
.bg-teal {
  background-color: var(--teal-color);
}
.bg-teal-blue {
  background-color: var(--teal-blue-color);
}
.bg-purple {
  background-color: var(--purple-color);
}
.bg-cyan-blend-multiply {
  background:  linear-gradient(var(--light-cyan-color), var(--light-cyan-color)), linear-gradient(var(--light-cyan-color), var(--light-cyan-color));
  background-blend-mode: multiply;
}
.bg-gradient {
  --bs-gradient: radial-gradient(50% 50% at 50% 50%, #F5FDFF 24.52%, #D9F9FF 100%);
}
.text-primary {
  color: var(--body-color);
}
.text-primary-blue {
  color: var(--primary-blue-color);
}
.text-purple {
  color: var(--purple-color);
}
.text-light-purple {
  color: var(--light-purple-color);
}
.text-sky-blue {
  color: var(--sky-blue-color);
}
.text-light-blue {
  color: var(--light-blue-color);
}
.text-guppie-green {
  color: var(--guppie-green-color);
}
.text-orange {
  color: var(--orange-color);
}
.text-green {
  color: var(--green-color);
}
.text-teal-blue {
  color: var(--teal-blue-color);
}
.overlay-left {
  position: relative;
  z-index: 1;
}
.overlay-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(30.57% 85.06% at 76.07% 47.96%, rgba(12, 87, 138, 0.35) 28.37%, #011849 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  mix-blend-mode: multiply;
  opacity: 0.9;
  z-index: -1;
}

h1, .h1 {
  font-size: 4.75rem;
}
h2, .h2 {
  font-size: 4.25rem;
}
.title {
  font-size: 3.5rem;
}
h3, .h3 {
  font-size: 2.25rem;
}
h4, .h4 {
  font-size: 1.875rem;
}
h5, .h5 {
  font-size: 1.75rem;
}
h6, .h6 {
  font-size: 1.625rem;
}
.fs-24 {
  font-size: 1.5rem;
}
.fs-22 {
  font-size: 22px;
}
.fs-20 {
  font-size: 1.25rem;
}
.fs-18 {
  font-size: 18px;
}
.fs-16 {
  font-size: 16px;
}
.text-3line {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

  line-height: 1.2;
  min-height: 130px;
}
.-rotate-90 {
  transform: rotate(-90deg);
}
.ls-sm {
  letter-spacing: 0.7px;
}

.section-spacing {
  padding: 6.25rem 0;
  scroll-margin-top: 95px;
}
#our-products .container > div {
  scroll-margin-top: 100px;
}
.box-icon-top {
  margin-top: -2rem;
}
.pt-4_5 {
  padding-top: 2rem !important;
}
.rounded-circle {
  position: relative;
  z-index: 1;
}
.rounded-circle:before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.563rem;
  height: 3.563rem;
  border-radius: 50%;
  background-color: #E8A8FF;
  z-index: -1;
}
.rounded-circle.mid-blue-green::before {
  background-color: var(--blue-green-color);
}
.rounded-circle.light-green::before {
  background-color: var(--guppie-green-color);
}
.rounded-circle.beer::before {
  background-color: var(--beer-color);
}
.badge {
  background: linear-gradient(to bottom right, #D9F9FF, #BFF2FF);
  border-radius: 40px;
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  padding: 16px 36px;
}
.flipgive-box {
  width: 265px;
  height: 265px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #D9F9FF, #BFF2FF);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 3rem;
}
.horizontal-separator {
  width: 2px;
  height: 100%;
  background-color: #02BCD2;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1260px;
  }
}

.section-separator {
  background-color: #ffffff;
  border-top: 2px solid var(--primary-blue-color);
  padding-top: 0.938rem;
  margin-top: 0.938rem;
}

.btn {
  font-family: "League Spartan", sans-serif;
  background-color: var(--sky-blue-color);
  font-size: 22px;
  font-weight: 500;
  color: var(--body-color);
  padding: 16px 45px 12px;
  line-height: 1.2;
  border-radius: 3.125rem;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.btn:hover, btn:focus, .btn:active {
  background-color: var(--primary-blue-color);
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

/* Header CSS */
.navbar-toggler {
  border: none;
  padding: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar-toggler img {
  width: 70px;
  height: 70px;
}
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  background-color: var(--primary-blue-color);
  z-index: 10;
}
.header .navbar-nav {
  align-items: center;
}
.navbar {
  position: static;
}
.navbar .nav-item {
  padding: 25px 0;
}
.navbar .nav-item .nav-link {
  font-family: "League Spartan", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .btn {
  padding: 9px 33px 7px;
}
.navbar .nav-item:not(:last-child) {
  margin-right: 1.875rem;
}
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
  color: var(--sky-blue-color);
  transition: all 0.3s ease-in-out;
}
.header .navbar-nav .btn:hover {
  background-color: #ffffff;
  color: var(--primary-blue-color);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: radial-gradient(50% 50% at 50% 50%, #F5FDFF 24.52%, #D9F9FF 100%);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus .mega-menu {
  opacity: 1;
  visibility: visible;
}
/* Header CSS */

/* Hero Block CSS */
.hero-block {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10rem 0;
  z-index: 1;
}
.hero-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(32.71% 91.02% at 78.21% 47.86%, rgba(12, 87, 138, 0) 10.1%, #011849 100%);
  background-blend-mode: multiply;
  z-index: -1;
}
.page-hero-block {
  padding: 5rem 0;
  background: radial-gradient(38.52% 67.42% at 74.61% 50.08%, #2E88C6 0%, #011849 100%);
}
.page-hero-block p {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.251);
}
.highlight {
  color: var(--light-purple-color);
}

#cursor {
  font-weight: normal;
  display: inline-block;
  color: var(--light-purple-color);
  animation: blink 1.2s steps(1) infinite;
}

/* Cursor blinking animation */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Hero Block CSS */

/* Trusted Partners Block */
.partners-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.partners-slider .swiper-slide {
  width: auto;
  min-width: 7.5rem;
  padding: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Trusted Partners Block */

/* Contact US Block */
.page-hero-sm {
  padding: 5rem 0;
  background: radial-gradient(35% 100% at 50% 100%, #2e88c6 0, #011849 100%);
}
.contact-box {
  background-color: #ffffff;
  border: 1px solid #BDBDBD;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.102);
  border-radius: 0.625rem;
  padding: 3.125rem;
}
.form-control {
  font-family: "League Spartan", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--body-color);
  background-color: #F9F9F9;
  border: 1px solid #999999;
  border-radius: 0.625rem;
  padding: 0.657rem 1rem;
  height: auto;
}
.form-select {
  color: #666666;
}
.form-control:hover {
  border-color: var(--light-purple-color);
}
.form-control::placeholder {
  color: #666666;;
}
.form-control:focus {
  border-color: var(--primary-blue-color);
  box-shadow: none;
}
/* Contact US Block */

/* Products Block */
@media (min-width: 768px) {
  .corporate-gifting-banner {
    width: 63%;
  }
}
.corporate-gifting-banner {
  margin: -50px auto;
}
/* Products Bloc */

/* Footer CSS */
.footer a:hover {
  color: var(--sky-blue-color) !important;
}
/* Footer CSS */

/* Responsive */
@media (max-width: 1400px) {
  html { font-size: 14px; }
  h3, .h3 {
    font-size: 2.25rem;
  }
}
@media (max-width: 1199.1px) {
  .navbar .nav-item:not(:last-child) { margin-right: 1rem; }
  .navbar .nav-item .nav-link { font-size: 1.2rem; }
  .navbar .nav-item .btn {
    font-size: 16px;
    padding: 10px 30px;
  }
}
@media (max-width: 991.1px) {
  img {
    width: auto;
    height: auto;
  }
  h2, .h2 {
    font-size: 3.5rem;
  }
  h3, .h3 {
    font-size: 2rem;
  }
  .text-3line {
    min-height: 70px;
  }

  .section-spacing {
    padding: 3.125rem 0;
  }

  .header {
    position: relative;
  }
  .header .navbar {
    position: static;
  }
  .header .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: auto;
    background-color: var(--primary-blue-color);
    z-index: 10;
  }
  .navbar .nav-item {
    padding: 20px 20px 16px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .navbar .nav-item:not(:last-child) {
    margin-right: 0;
  }
  .navbar .nav-item .nav-link {
    font-size: 22px;
  }
  .navbar .nav-item .mobile-menu-close {
    font-size: 18px;
  }
  .navbar .nav-item .mobile-menu-close img {
    width: 20px;
    margin-top: -5px;
  }
  .navbar .nav-item .btn {
    padding: 5px 0;
    display: block;
    text-align: left;
  }
  .navbar .nav-item .btn {
    font-family: "League Spartan", sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    background-color: transparent;
  }

  .mega-menu {
    position: static;
    background: #ffffff;
    width: calc(100% + 40px);
    margin: 20px -20px 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .mega-menu.show {
    display: block;
  }
  .mega-menu .container {
    padding: 0;
  }
  .mega-menu .col-md-3:not(:last-child) .product-link {
    border-bottom: 1px solid #999999;
  }
  .mega-menu .product-link {
    border-radius: 0 !important;
  }
  .mega-menu .product-link img {
    width: 28px;
    height: 28px;
    margin-top: -50px;
  }
  .has-mega-menu.show {
    padding-bottom: 0;
  }
  .has-mega-menu.show .nav-link span {
    flex-direction: row-reverse;
    justify-content: flex-end !important;
    gap: 1.5rem !important;
  }
  .has-mega-menu.show .nav-link span img {
    transform: rotate(178deg);
  }
}
@media (max-width: 767.1px) {
  h1, .h1 {
    font-size: 4rem;
  }
  
  .btn {
    font-size: 20px;
    padding: 14px 28px;
  }
  .badge {
    font-size: 18px;
    padding: 16px 26px;
  }
  .badge-md-2 li {
    width: calc(50% - 5px);
    white-space: break-spaces;
    word-break: break-word;
  }
  .text-3line {
    min-height: initial;
  }
  
  .container {
    --bs-gutter-x: 3rem;
  }
  .pb-md-0 {
    padding-bottom: 0;
  }
  .section-separator {
    padding-top: 0.625rem;
    margin-top: 0.625rem;
  }

  .header {
    padding: 5px 0;
  }

  /* Hero Block CSS */
  .hero-block {
    padding: 4rem 0.625rem;
  }
  .hero-block::before {
    background: rgba(1, 24, 73, 0.85);
  }
  .page-hero-block {
    padding: 2rem 0 4rem;
    background: radial-gradient(713.07% 280.43% at 56.08% 72.65%, #2E88C6 0%, #011849 15%);
  }
  /* Hero Block CSS */

  .box-reset-md {
    padding: 0 !important;
    background-color: transparent !important;
  }
  .box-reset-md .box-icon-top {
    position: static !important;
    transform: none !important;
    margin: 0 0 10px;
  }

  /* Our Products CSS */
  #our-products {
    overflow: hidden;
    padding-bottom: 0;
  }
  #our-products .container {
    padding: 0;
  }
  #our-products .rounded-5 {
    border-radius: 0 !important;
  }
  /* Products Block */

  /* Trusted Partners Block */
  .partners-slider .swiper-slide {
    min-width: 3.75rem;
    padding: 0.125rem;
  }

  /* Contact US Block */
  .page-hero-sm {
    background: radial-gradient(150% 100% at 50% 100%, #2e88c6 0, #011849 100%);
  }
  .contact-box {
    padding: 2.5rem 1.5rem;
  }
  /* Contact US Block */
}
/* Responsive */