/*64px max*/
/*48px max*/
/*24px max*/
/*20px max*/
/*16px max*/
/* space-grotesk-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300;
  src: url("/fonts/space-grotesk-v21-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-grotesk-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/space-grotesk-v21-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-grotesk-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/space-grotesk-v21-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-grotesk-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/space-grotesk-v21-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-grotesk-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/space-grotesk-v21-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: url("/fonts/inter-v19-latin-100.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: url("/fonts/inter-v19-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("/fonts/inter-v19-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/inter-v19-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/inter-v19-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/inter-v19-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/inter-v19-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.has-fade {
  visibility: hidden;
}

@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
.fade-in {
  -webkit-animation: fade-in 300ms ease-in-out forwards;
  animation: fade-in 300ms ease-in-out forwards;
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  -webkit-animation: fade-out 300ms ease-in-out forwards;
  animation: fade-out 300ms ease-in-out forwards;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 300;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

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

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style-type: none;
}

ul li a {
  text-decoration: none;
}

a {
  all: unset;
}

button {
  all: unset;
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

.no-scrolling {
  overflow: hidden;
}

.center {
  margin: 0 auto;
}

.arrow-icon {
  padding-left: 10px;
}
@media (max-width: 63.9375em) {
  .arrow-icon {
    width: 25px;
  }
}

.heading-title {
  font-size: clamp(1.875rem, 0.3305084746rem + 3.0508474576vw, 3rem);
  font-weight: 700;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
}
.heading-title--icon-blue::after {
  content: ""; /* Must be present for pseudo-element to render, but no text */
  display: inline-block;
  /* Use background-image for PNGs */
  background-image: url("/assets/arrow-icon-blue.png"); /* Path to your icon */
  background-size: contain; /* Scales the image to fit the content box */
  background-repeat: no-repeat; /* Prevents repeating if image is smaller than element */
  background-position: center; /* Centers the image within the element */
  width: 24px;
  height: 24px;
  vertical-align: middle; /* Helps align with text */
  color: #081935;
  padding-left: 60px;
}
@media (max-width: 63.9375em) {
  .heading-title--icon-blue::after {
    width: 16px;
    height: 16px;
    padding-left: 42px;
  }
}
.heading-title--icon-yellow::after {
  content: ""; /* Must be present for pseudo-element to render, but no text */
  display: inline-block;
  /* Use background-image for PNGs */
  background-image: url("/assets/arrow-icon-yellow.png"); /* Path to your icon */
  background-size: contain; /* Scales the image to fit the content box */
  background-repeat: no-repeat; /* Prevents repeating if image is smaller than element */
  background-position: center; /* Centers the image within the element */
  width: 24px;
  height: 24px;
  vertical-align: middle; /* Helps align with text */
  color: #081935;
  padding-left: 60px;
}
@media (max-width: 63.9375em) {
  .heading-title--icon-yellow::after {
    width: 16px;
    height: 16px;
    padding-left: 42px;
  }
}
.heading-title--icon-green::after {
  content: ""; /* Must be present for pseudo-element to render, but no text */
  display: inline-block;
  /* Use background-image for PNGs */
  background-image: url("/assets/arrow-icon-green.png"); /* Path to your icon */
  background-size: contain; /* Scales the image to fit the content box */
  background-repeat: no-repeat; /* Prevents repeating if image is smaller than element */
  background-position: center; /* Centers the image within the element */
  width: 24px;
  height: 24px;
  vertical-align: middle; /* Helps align with text */
  color: #081935;
  padding-left: 60px;
}
@media (max-width: 63.9375em) {
  .heading-title--icon-green::after {
    width: 16px;
    height: 16px;
    padding-left: 42px;
  }
}

.bold {
  font-weight: 600;
}

.button {
  display: inline-block;
  padding: 8px 28px;
  font-size: clamp(0.8rem, 0.3601694915rem + 1.0169491525vw, 1rem);
  line-height: 1.5;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.button:hover {
  transform: translateY(-2px); /* Slight lift effect */
}

.button.yellow {
  background: #FFF48B;
  color: #040E1E;
}

.button.light-blue {
  background: #BFECE5;
  color: #040E1E;
  font-size: clamp(0.875rem, 0.3601694915rem + 1.0169491525vw, 1.25rem);
  letter-spacing: -1px;
  padding: 12px 34px;
  border-radius: 35px;
}

.button.light-blue:hover {
  background-color: #c3fff6;
}

.wrapper {
  padding-inline: 40px;
}

/*For tablet 810 px / 16 **/
@media (width >= 50.625em) {
  .wrapper {
    padding-inline: 44px;
  }
}
/*For desktop 1200 px / 16 **/
@media (width >= 75em) {
  .wrapper {
    max-width: 75em;
    padding-inline: 0;
  }
}
#buzz-uz-link {
  display: none; /* Hide by default */
}
@media (max-width: 39.9375em) {
  #buzz-uz-link {
    display: block; /* Hide on smaller screens */
  }
}

header {
  background-color: #081935;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 26px;
  background-color: #081935;
  margin: 0 auto;
}

@media (max-width: 39.9375em) {
  .header__cta {
    display: none; /* Hide on smaller screens */
  }
}

.header__nav {
  position: absolute;
  top: 10rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-height: 15.1rem;
  width: calc(100% - 4.8rem);
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #FFF;
  border-radius: 0.4rem;
  z-index: 98;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
}

/*for 1024px up*/
.header__logo {
  cursor: pointer;
}

.header__nav_list li a {
  font-weight: 700;
  line-height: 3rem;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  color: var(--color-deep-blue-800);
  cursor: pointer;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.header__nav_list li a:hover {
  color: #FFF48B;
}

.header__nav_list {
  text-align: center;
}

.header_cta_wrapper {
  display: flex;
}

.header__toggle {
  padding: 0.5rem;
  z-index: 98;
  margin-left: 15px;
}

.header__toggle span {
  display: block;
  width: 1.6rem;
  height: 0.2rem;
  background-color: #958e50;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform-origin: 0.2rem 0.2rem;
  transform-origin: 0.2rem 0.2rem;
}

.header__toggle span:not(:last-child) {
  margin-bottom: 0.3rem;
}

.header.open .header__toggle > span:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}

.header.open .header__toggle > span:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.no-scrolling {
  overflow: hidden;
}

@media (min-width: 64em) {
  .header__nav {
    all: unset;
  }
  .header__nav_items {
    display: inline;
    height: 50px;
  }
  .header__nav_list li:not(:last-child) {
    margin-right: 40px;
  }
  .header__nav_list li a {
    color: #FFF48B;
  }
}
/* mobile screen */
@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
  .header__nav {
    display: block;
    visibility: visible;
  }
}
/*For tablet 810 px / 16 **/
@media (width >= 50.625em) {
  .hide-for-mobile {
    display: none;
  }
}
/* Main Footer Styles */
.main-footer {
  background-color: #fff; /* White background as in the image */
  padding-top: 70px;
  color: #4a5568; /* Default text color */
}

.main-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Stack vertically by default for mobile */
  gap: 20px;
}

/* Top Section: Logo/Address and Mailing List */
.main-footer__top {
  display: flex;
  flex-direction: column; /* Stack vertically for mobile */
  gap: 30px;
}

.main-footer__logo-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 64em) {
  .main-footer__logo-info {
    flex: 1.4;
    gap: 35px;
  }
}

.main-footer__logo {
  width: 374px; /* Adjust logo size */
  height: auto;
  /* Placeholder for logo image */
  content: url("/assets/logo-dark.png");
}

.main-footer__address,
.main-footer__contact {
  margin: 0;
  font-size: 0.9em;
  line-height: 1.5;
  color: #666;
  font-weight: 400;
}
@media (min-width: 64em) {
  .main-footer__address,
  .main-footer__contact {
    font-size: 20px;
  }
}

.main-footer__mailing-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-footer__mailing-label {
  font-size: clamp(1.125rem, 0.6101694915rem + 1.0169491525vw, 1.5rem);
  font-weight: 700;
  color: #333;
}

.main-footer__mailing-input-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; /* Allow input and button to wrap on smaller screens */
}

.main-footer__mailing-input {
  flex: 1; /* Allow input to grow */
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.9em;
  min-width: 180px; /* Ensure input is not too small */
}

.main-footer__mailing-button {
  padding: 10px 20px;
  background-color: #dedede; /* Light background for subscribe button */
  color: #333;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: 600;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 39.9375em) {
  .main-footer__mailing-button {
    width: 100%;
  }
}

.main-footer__mailing-button:hover {
  background-color: #e0e0e0;
  border-color: #a0a0a0;
}

/* Middle Section: Legal Links and Social Media */
.main-footer__middle {
  display: flex;
  flex-direction: column; /* Stack vertically for mobile */
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.main-footer__legal-links {
  display: flex;
  flex-direction: column; /* Stack vertically for mobile */
  gap: 10px;
  font-size: clamp(0.875rem, 0.3601694915rem + 1.0169491525vw, 1.25rem);
  font-weight: 400;
}

.main-footer__legal-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.main-footer__legal-link:hover {
  color: #333;
}

.main-footer__social-links {
  display: flex;
  gap: 15px;
  justify-content: center; /* Center social icons on mobile */
  margin-top: 10px; /* Space from legal links */
}

@media (max-width: 63.9375em) {
  .main-footer__social-link > svg {
    width: 34px; /* Smaller size for mobile */
    height: 34px;
  }
}

/* Bottom Section: Solutions and Large Logo/Copyright */
.main-footer__bottom {
  display: flex;
  flex-direction: column; /* Stack vertically for mobile */
  gap: 30px;
  padding-top: 20px;
  border-top: 4px solid #313131;
}

.main-footer__solutions-group {
  display: flex;
  flex-direction: column; /* Stack vertically for mobile */
  gap: 20px;
}
@media (min-width: 64em) {
  .main-footer__solutions-group {
    font-size: 36px;
  }
}

.main-footer__solutions-left,
.main-footer__solutions-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
}

.main-footer__solutions-right {
  text-align: right;
}
@media (max-width: 39.9375em) {
  .main-footer__solutions-right {
    text-align: left;
  }
}

.main-footer__solution-item {
  font-size: clamp(1.125rem, 0.6101694915rem + 1.0169491525vw, 1.5rem);
  font-weight: 700;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.main-footer__solution-item:hover {
  color: #e3cc00; /* Example hover color */
}

.main-footer__copyright-section {
  display: flex;
  flex-direction: column; /* Stack vertically for mobile */
  align-items: center; /* Center items for copyright on mobile */
  gap: 20px;
  padding-top: 20px;
}

.main-footer__large-logo {
  width: 137px; /* Larger logo size */
  height: auto;
}
@media (max-width: 39.9375em) {
  .main-footer__large-logo {
    width: 100px; /* Larger logo size */
    height: auto;
  }
}

.main-footer__copyright-text {
  font-size: clamp(0.875rem, 0.3601694915rem + 1.0169491525vw, 1.25rem);
  color: #666;
  text-align: center;
  margin: 0;
  padding-bottom: 50px;
}
/* Responsive adjustments for larger screens (e.g., tablets and desktops) */
@media (min-width: 768px) {
  .main-footer__top {
    flex-direction: row; /* Side-by-side for top section */
    justify-content: space-between;
    align-items: flex-start;
  }
  .main-footer__middle {
    flex-direction: row; /* Side-by-side for middle section */
    justify-content: space-between;
    align-items: center;
  }
  .main-footer__legal-links {
    flex-direction: row; /* Display legal links in a row */
    gap: 20px;
  }
  .main-footer__social-links {
    justify-content: flex-end; /* Align social icons to the right */
  }
  .main-footer__bottom {
    flex-direction: row; /* Side-by-side for bottom section */
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 28px;
  }
}
@media (min-width: 768px) and (min-width: 64em) {
  .main-footer__bottom {
    padding-top: 38px;
  }
}
@media (min-width: 768px) {
  .main-footer__solutions-group {
    flex-direction: row; /* Solutions columns side-by-side */
    justify-content: space-around;
    flex: 2; /* Allow solutions to take more space */
  }
  .main-footer__copyright-section {
    flex-direction: column; /* Large logo and copyright text side-by-side */
    justify-content: space-between;
  }
}
/* Further adjustments for very large screens (optional) */
@media (min-width: 1024px) {
  .main-footer__heading {
    font-size: 1.2em;
  }
}

/*# sourceMappingURL=components.css.map */
