@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1140px !important;
  }
}

@media only screen and (max-width: 460px) {
  .row {
    --bs-gutter-x: 60px;
  }
}

@media only screen and (max-width: 415px) {
  .row {
    --bs-gutter-x: 24px;
  }
}

@media only screen and (max-width: 385px) {
  .row {
    --bs-gutter-x: 20px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --bg-primary: #fcfbf7;
  --white: #fff;
  --bg-primary-hover: #c0c0c050;
  --body-text: #0d3761;
  --primary-color: #0d3761;
  --primary-color-hover: #0060a1;
  --primary-color-variant: #006bb3;
  --secondary-color: #00954c;
  --secondary-color-hover: #00773e;
  --yellow: #ffd92e;
  --radius: 6px;
  --medium-radius: 25px;
  --timing-function: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 14.8px 0 rgba(0, 0, 0, 0.05);
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 14.8px 0 rgba(0, 0, 0, 0.05);
}

.site-header__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__logo img {
  max-height: 40px;
  width: auto;
  display: block;
}

.logo img {
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-header__toggle {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 7px;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  height: 2px;
  background: var(--primary-color-hover);
  transition:
    transform var(--timing-function),
    width var(--timing-function);
}

.site-header__toggle span {
  width: 30px;
}

.site-header.is-open .site-header__toggle span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

.site-header.is-open .site-header__toggle span:nth-child(2) {
  display: none;
}

.site-header.is-open .site-header__toggle span:last-child {
  width: 30px;
  transform: translateY(-4.5px) rotate(-45deg);
}

.site-header__nav {
  display: none;
}

.site-header__menu,
.site-header__mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__mobile {
  display: none;
  position: fixed;
  background: var(--white);
  top: 75px;
  left: 0;
  right: 0;
  z-index: 99;

  height: calc(100vh - 75px);
  overflow: hidden;
}

.site-header__mobile .container,
.site-header__mobile .row,
.site-header__mobile .col-12 {
  padding: 0px !important;
}

.site-header.is-open .site-header__mobile {
  display: block;
}

.site-header__mobile .container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.site-header__mobile-menu {
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);

  padding: 0px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  flex: 1;
}

.site-header__mobile-menu a,
.site-header__menu a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.site-header__mobile-menu li {
  display: block;
}

.site-header__mobile-menu a {
  display: block;
  padding: 14px 18px 14px 22px;
  border-left: 4px solid transparent;
  font-size: 15px;
  line-height: 1.25;
}

.site-header__mobile-menu a.active-header-menu {
  background: #d9e9f4;
  border-left-color: var(--primary-color-variant);
  font-weight: 700 !important;
  color: var(--primary-color);
}

.site-header__mobile-copyright {
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: 0 18px 18px 22px;
  color: var(--primary-color);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.site-header__coverage-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__coverage-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__coverage-label {
  display: none;
}

.active-header-menu {
  font-weight: 700 !important;
}

.active-footer-menu {
  font-weight: 700 !important;
}

body {
  background: #e9eff4;
  font-size: 15px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--body-text);
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/* Hero CSS Start */

.hero-section {
  position: relative;
  height: 570px;
}

.p-404-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 48px 24px;
  box-shadow: 0 18px 40px rgba(13, 55, 97, 0.08);
}

#lottie-404 {
  height: 350px;
}

.p-404-kicker {
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.p-404-title {
  color: var(--primary-color);
  margin-bottom: 14px;
}

.p-404-text {
  max-width: 560px;
  margin: 0 auto;
}

.p-404-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.p-privacy-content {
  color: var(--body-text);
  max-width: 900px;
}

.p-privacy-title {
  margin-bottom: 30px;
}

.p-privacy-content :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 18px;
  font-size: 25px;
  line-height: 35px;
}

.p-privacy-content :is(p, li) {
  color: var(--body-text);
  font-size: inherit;
  line-height: inherit;
}

.p-privacy-content p {
  margin-bottom: 16px;
}

.p-privacy-content ul {
  list-style: disc;
}

.p-privacy-content ul,
.p-privacy-content ol {
  margin: 0 0 20px 20px;
  padding: 0;
}

.p-privacy-content li + li {
  margin-top: 10px;
}

.p-privacy-content a {
  color: var(--primary-color-variant);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 150px;
}

.hero-content h1,
.hero-content p {
  color: var(--white);
}

.hero-content h1 {
  display: block;
  text-decoration: underline;
  white-space: pre-line;
	text-decoration-color: var(--secondary-color);
}

.hero-content p {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 30px;
}

.hero-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Hero CSS End */

/* Fonts CSS Start */

.title {
  font-size: 35px;
  line-height: 45px;
  font-weight: 700;
  white-space: pre-line;
}

.heading {
  font-weight: 700;
  font-size: 25px;
  line-height: 35px;
  white-space: pre-line;
}

.mini-heading {
  font-size: 18px;
  line-height: 25px;
}

/* Fonts CSS End */

/* Links CSS Start */

.link {
  display: inline-flex;
  padding: 12px 15px;
  background-color: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--timing-function);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  line-height: normal;
  font-weight: 500;
}

.link-brand-primary {
  background-color: var(--primary-color-variant);
}

/* Links CSS End */

@media only screen and (min-width: 992px) and (hover: hover) {
  a,
  button,
  input,
  select,
  textarea {
    transition:
      color var(--timing-function),
      background-color var(--timing-function),
      border-color var(--timing-function),
      box-shadow var(--timing-function),
      transform var(--timing-function),
      opacity var(--timing-function);
  }

  a:hover {
    color: var(--primary-color-hover);
  }

  .site-header__menu a:hover,
  .site-header__mobile-menu a:hover,
  .footer-links ul li a:hover,
  .p-contact-email-link:hover,
  .p-key-contact-email-link:hover {
    color: var(--secondary-color);
  }

  .active-header-menu:hover {
    color: var(--primary-color);
  }

  .link:hover {
    background-color: var(--secondary-color-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .link-brand-primary:hover {
    background-color: var(--primary-color-hover);
  }

  .site-header__toggle:hover span {
    background-color: var(--primary-color-hover);
  }

  .site-header__toggle:hover span:last-child {
    width: 30px;
  }

  .site-header__coverage-link svg rect {
    transition: fill var(--timing-function);
  }

  .site-header__coverage-link:hover svg rect {
    fill: var(--secondary-color);
  }

  .privacy-policy-links a span {
    transition: color var(--timing-function);
  }

  .privacy-policy-links a:hover span {
    color: var(--secondary-color);
  }
}

.amenities-container {
  position: relative;
  top: -50px;
  z-index: 6;
}

.amenities-holder {
  gap: 20px;
}

.amenity {
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: var(--primary-color);
}

.amenity-icon {
  height: 38px;
  display: flex;
  align-items: flex-end;
}

.amenity-icon img {
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.amenity-number-and-text span {
  display: block;
}

.amenity-text {
  display: block;
  min-height: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.amenity-number {
  color: var(--yellow);
}

.amenity-number-and-text {
  margin: 30px 0px 0px 0px;
}

.amenity-title {
  color: var(--white);
  font-weight: 600;
}

.amenity-title-and-text p {
  color: var(--white);
  margin-top: 5px;
}

.hero {
  overflow: hidden;
}

.amenities-slider {
  overflow: unset !important;
}

.process-section {
  overflow: hidden !important;
  margin-top: 50px;
  background: var(--white);
  padding: 50px 0px;
  position: relative;
}

.process-truck {
  display: none;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 150px;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #006bb3;
}

.process-content-services .process-truck {
  top: 220px;
}

.process-truck svg {
  animation: infiniteMove 10s linear infinite;
}

.process-section.is-process-paused .process-truck svg {
  opacity: 0;
  transition: opacity 0.35s ease;
}

@keyframes infiniteMove {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  45% {
    transform: translateX(calc(100vw + 100%));
    opacity: 1;
  }
  50% {
    transform: translateX(calc(100vw + 100%));
    opacity: 0;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

.process-section {
  overflow: hidden !important;
}

.process-list.swiper {
  overflow: unset !important;
}

.process-list-mobile {
  display: none;
}

.process-list-wrapper {
  gap: 0;
}

.process-item {
  height: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(4px) scale(0.985);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  will-change: transform, opacity;
}

.process-section.is-process-running .process-item,
.process-section.is-process-paused .process-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-section.is-process-resetting .process-item {
  opacity: 0;
  transform: translateY(4px) scale(0.985);
  transition-delay: 0ms;
}

.process-section.is-process-resetting .process-image,
.process-section.is-process-resetting .process-texts span,
.process-section.is-process-resetting .process-texts p {
  transition-delay: 0ms;
}

.process-section.is-process-running .process-item {
  transition-delay: var(--process-item-delay, 0ms);
}

.process-icon {
  background: var(--white);
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 10px solid rgba(0, 107, 179, 0.1);
}

.process-icon img {
  max-width: 60%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.process-image {
  max-width: 60%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transform: scale(0.92);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  will-change: transform, opacity;
}

.process-section.is-process-running .process-image,
.process-section.is-process-paused .process-image {
  transform: scale(1);
  opacity: 1;
  transition-delay: var(--process-item-delay, 0ms);
}

.process-section.is-process-running .process-item .process-image {
  animation: process-image-pop 0.35s ease both;
}

.process-content .services-text {
  text-align: center;
  margin-bottom: 30px;
}

.process-content h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}

.process-content-services h2 {
  margin-bottom: 10px;
}

.process-texts {
  margin-top: 15px;
  text-align: center;
}

.process-texts span {
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: block;
  overflow: hidden;
  opacity: 0;
}

.process-texts p {
  position: relative;
  display: block;
  overflow: hidden;
  opacity: 0;
}

.process-mobile-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.process-mobile-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  border: 8px solid rgba(0, 107, 179, 0.1);
  flex-shrink: 0;
  z-index: 3;
  position: relative;
}

.process-mobile-icon img {
  max-width: 60%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.process-mobile-line {
  width: 2px;
  min-height: 24px;
  flex: 1;
  background: rgba(0, 107, 179, 0.22);
  margin-top: 8px;
}

.process-mobile-texts {
  flex: 1;
  padding-top: 4px;
}

.process-mobile-texts span {
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.process-mobile-texts p {
  margin: 0;
}

.process-section.is-process-running .process-texts span,
.process-section.is-process-running .process-texts p,
.process-section.is-process-paused .process-texts span,
.process-section.is-process-paused .process-texts p {
  opacity: 1;
  transform: translateY(0);
}

.process-section.is-process-resetting .process-texts span,
.process-section.is-process-resetting .process-texts p {
  opacity: 0;
  transform: translateY(10px);
}

.process-section.is-process-resetting .process-item .process-image,
.process-section.is-process-resetting .process-item .process-texts span,
.process-section.is-process-resetting .process-item .process-texts p {
  animation: none;
}

.process-section.is-process-running .process-item .process-texts span,
.process-section.is-process-running .process-item .process-texts p {
  opacity: 0;
  transform: translateY(10px);
  animation-fill-mode: both;
}

.process-section.is-process-running .process-item .process-texts span {
  animation: process-text-reveal 0.45s ease
    calc(var(--process-item-delay, 0ms) + 240ms) both;
}

.process-section.is-process-running .process-item .process-texts p {
  animation: process-text-reveal 0.45s ease
    calc(var(--process-item-delay, 0ms) + 520ms) both;
}

.process-section.is-process-running .process-item .process-texts span::after,
.process-section.is-process-running .process-item .process-texts p::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-20deg);
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.95) 50%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
}

.process-section.is-process-running .process-item .process-texts span::after {
  animation: process-text-shine 0.7s ease
    calc(var(--process-item-delay, 0ms) + 260ms) both;
}

.process-section.is-process-running .process-item .process-texts p::after {
  animation: process-text-shine 0.7s ease
    calc(var(--process-item-delay, 0ms) + 560ms) both;
}

@keyframes process-image-pop {
  0% {
    transform: scale(0.88);
    opacity: 0.55;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes process-text-reveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes process-text-shine {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120%) skewX(-20deg);
  }
}

.process-route,
.process-link {
  margin-top: 50px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.process-link {
  justify-content: center;
}

.process-route-texts {
  width: calc(100% - 96px);
}

.process-route-texts span {
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.process-route-icon {
  height: 80px;
  width: 80px;
}

.process-route-icon img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.process-list-mobile {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}

.process-list-mobile::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 60px;
  left: 50px;
  width: 1px;
  background: var(--primary-color);
}

footer {
  overflow: hidden;
}

.partners-section {
  overflow: hidden !important;
}

.desktop-process-list {
  display: none;
}

/* Spacings CSS Start */

.spacing-top {
  padding-top: 50px;
}

.spacing-bottom {
  padding-bottom: 50px;
}

.margin-spacing-top {
  margin-top: 50px;
}

.margin-spacing-bottom {
  margin-bottom: 50px;
}

/* Spacings CSS End */

/* Footer CSS Start */

footer {
  padding: 50px 0px 20px 0px;
  background: var(--white);
  font-size: 15px;
  line-height: normal;
}

.privacy-policy-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}

.privacy-policy-links a {
  color: #b0b0b1;
  text-decoration: none;
}

.footer-logo-and-copyright span,
.footer-logo-and-copyright .privacy-policy-links {
  display: none;
}

.footer-links ul {
  margin: 50px 0px 0px 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links ul li a {
  text-decoration: none;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 15px;
  line-height: normal;
}

.mobile-copyright {
  margin-top: 50px;
}

.mobile-copyright span {
  line-height: 22px;
}

#lottie-map .ai {
  display: none !important;
}

/* Footer CSS End */

#lottie-map {
  min-height: 220px;
}

@media only screen and (min-width: 992px) {
  /* Spacings CSS Start */

  .footer-logo-and-copyright .privacy-policy-links {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    gap: 3px;
  }

  .privacy-policy-links span {
    display: inline !important;
  }

  #lottie-404 {
    min-height: 400px;
  }

  #lottie-map {
    min-height: 410px;
  }

  .desktop-process-list {
    display: flex !important;
  }

  .process-list-mobile {
    display: none;
  }

  .site-header__logo img,
  .logo img {
    max-height: 60px;
  }

  .spacing-top {
    padding-top: 100px;
  }

  .spacing-bottom {
    padding-bottom: 100px;
  }

  .margin-spacing-top {
    margin-top: 100px;
  }

  .margin-spacing-bottom {
    margin-bottom: 100px;
  }

  .site-header__coverage-link {
    position: relative;
    top: 3px;
  }

  .active-header-menu svg rect {
    fill: var(--secondary-color);
  }

  .title {
    font-size: 45px;
    line-height: 55px;
    white-space: pre-line;
  }

  .heading {
    white-space: pre-line;
    font-size: 30px;
    line-height: 40px;
  }

  .mini-title {
    font-size: 22px;
    line-height: 30px;
  }

  body {
    font-size: 18px;
    line-height: 25px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .site-header__toggle {
    display: none;
  }

  .site-header__nav {
    display: block;
  }

  .site-header__menu {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .site-header__menu a {
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .site-header__coverage-link {
    width: 30px;
    height: 30px;
  }

  .site-header__mobile {
    display: none !important;
  }

  .title span {
    white-space: pre-line;
  }

  .hero-content p {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 50px;
  }

  .hero-section {
    height: 700px;
  }

  .link {
    padding: 15px 20px;
  }

  .hero-content {
    padding-top: 140px;
  }

  .hero-links {
    flex-direction: row;
  }

  .p-404-section {
    min-height: calc(100vh - 140px);
  }

  .p-404-content {
    padding: 72px 60px;
  }

  .p-privacy-title {
    margin-bottom: 60px;
  }

  .p-privacy-content :is(h1, h2, h3, h4, h5, h6) {
    font-size: 30px;
    line-height: 40px;
  }

  .process-list.swiper {
    overflow: visible;
  }

  .process-list-wrapper .swiper-slide {
    width: auto;
  }

  .process-route,
  .process-link {
    width: 50%;
    margin-left: 25%;
    margin-top: 100px;
  }

  .process-route-icon {
    width: 94px;
    height: 94px;
  }

  .process-route-texts {
    width: calc(100% - 110px);
  }

  .process-route-texts p {
    width: 90%;
  }

  .process-content h2 {
    margin-bottom: 60px;
  }

  .process-content-services h2 {
    margin-bottom: 10px;
  }

  .process-content-services .services-text {
    margin-bottom: 60px;
  }

  .process-truck {
    display: block;
    top: 260px;
  }

  .process-content-services .process-truck {
    top: 280px;
  }

  .process-section {
    margin-top: 100px;
    padding: 100px 0px;
  }

  .footer-content {
    display: flex;
    gap: 200px;
  }

  .mobile-copyright {
    display: none;
  }

  .footer-logo-and-copyright {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer-logo-and-copyright span {
    font-size: 15px;
    line-height: normal;
    display: block;
  }

  .footer-links ul {
    margin-top: 0px;
  }

  footer {
    padding: 100px 0px;
  }
}

@media only screen and (min-width: 1200px) {
  .title {
    font-size: 50px;
    line-height: 60px;
  }

  .p-404-title {
    font-size: 56px;
    line-height: 1.1;
  }

  .p-privacy-content :is(h1, h2, h3, h4, h5, h6) {
    font-size: 35px;
    line-height: 45px;
  }

  #lottie-map {
    min-height: 610px;
  }

  .process-list-wrapper {
    display: grid;
    grid-template: auto / repeat(4, 1fr);
    gap: 60px;
  }

  .hero-content p {
    font-size: 28px;
    line-height: 40px;
  }

  .heading {
    font-size: 35px;
    line-height: 45px;
  }

  #lottie-404 {
    height: 650px;
  }
}

@media only screen and (min-width: 1400px) {
  .title {
    font-size: 55px;
    line-height: 130%;
  }

  .heading {
    font-size: 48px;
    line-height: 60px;
  }
}

@media only screen and (min-width: 1600px) {
  .title {
    font-size: 60px;
    line-height: 70px;
  }

  .p-privacy-content :is(h1, h2, h3, h4, h5, h6) {
    font-size: 40px;
    line-height: 50px;
  }

  .mini-title {
    font-size: 24px;
    line-height: 35px;
  }
}

@media only screen and (min-width: 1800px) {
  .title {
    font-size: 65px;
    line-height: 75px;
  }
}
