/* Global styles */
:root {
  --color-white: #fff;
  --color-blue: #1f49a0;
  --color-darkBlue: #0d205b;
  --color-lightBlue: #9fc0d3;
  --color-gray: #575b65;
  --color-lightGray: #6d727c;
  --color-dark: #353a44;
  --color-text: #1a1a1a;
  --button-background: var(--color-blue);
  --bs-link-color: var(--color-blue);
  --bs-link-color-rgb: var(--button-background);
  --bs-link-hover-color-rgb: var(--bs-link-color-rgb);
  --bs-border-radius: 0;
  --bs-border-width: 0;
  --bs-body-font-size: 18px;
  --bs-body-font-family: "Poppins", sans-serif;
  --bs-body-color: var(--color-text);
  --font-body: "Poppins", sans-serif;
  --font-title: "Poppins", sans-serif;
  --selection-color: var(--color-white);
  --selection-bg-color: var(--color-blue);
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--bs-link-color);
}

.btn {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 0;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--color-darkBlue);
}

.btn-primary {
  --bs-btn-color: var(--color-white);
  --bs-btn-bg: var(--color-blue);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--color-white);
  --bs-btn-hover-bg: var(--color-blue);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--color-white);
  --bs-btn-active-bg: var(--color-blue);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: var(--color-white);
  --bs-btn-disabled-bg: var(--color-blue);
  --bs-btn-disabled-border-color: transparent;
  box-shadow: none;
}

.btn-primary:hover {
  box-shadow: 0 16px 28px rgba(206, 32, 56, 0.28);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  line-height: 1;
  font-family: var(--font-title);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1,
.h1 {
  font-size: 72px;
}

h2,
.h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: 20px;
  line-height: 28px;
  color: var(--color-text);
  overflow-x: hidden;
}

@media (max-width: 1199.98px) {
  h1,
  .h1 {
    font-size: 50px;
  }

  h2,
  .h2 {
    font-size: 44px;
  }
}

/* nav-01 styles Start */
.nav-01 {
  background: transparent;
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease,
    padding-block 0.3s ease,
    box-shadow 0.3s ease;
  padding: 0;
}

.nav-01.scrolled {
  background: var(--color-dark);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.nav-01 .container {
  position: relative;
  z-index: 1031;
}

.nav-01__mobile-callbar {
  display: none;
}

.nav-01__menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1020;
  background: rgba(7, 11, 19, 0.56);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0px);
  transition:
    opacity 0.28s ease,
    backdrop-filter 0.28s ease;
}

body.menu-open .nav-01__menu-backdrop {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(2px);
}

.nav-01__inner {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  min-height: 52px;
  padding-block: 15px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition:
    min-height 0.28s ease,
    padding-block 0.28s ease;
}

.nav-01.scrolled .nav-01__inner {
  padding-block: 0;
}

.nav-01__inner::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(7, 11, 19, 0.56);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0.28s;
}

body.menu-open .nav-01__inner::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-01__brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.nav-01__logo {
  display: block;
  height: 105px;
  width: auto;
  transition: height 0.24s ease;
}

.nav-01.scrolled .nav-01__logo {
  height: 75px;
  width: auto;
}

.nav-01__actions {
  display: flex;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-01__contact-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 5px;
}

.nav-01__contact-link {
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.15;
  white-space: nowrap;
}

.nav-01__contact-link--secondary {
  font-size: 14px;
}

.nav-01.scrolled .nav-01__contact-link {
  color: var(--color-white);
}

.nav-01__office-pill {
  display: inline-flex;
  align-items: center;
  height: 60px;
  border-radius: 30px;
  color: var(--color-white);
}

.nav-01__office-pill {
  justify-content: center;
  min-width: auto;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.nav-01.scrolled .nav-01__office-pill {
  background: rgba(255, 255, 255, 0.9);
}

.nav-01__office-line {
  display: block;
  white-space: nowrap;
  color: var(--color-white);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.nav-01__office-logo {
  display: block;
  width: auto;
  height: 40px;
}

.nav-01.scrolled .nav-01__office-logo {
  filter: brightness(0.8) invert(1);
}

.nav-01.scrolled .nav-01__office-line {
  color: var(--color-text);
}

.nav-01__office-pill:hover {
  color: var(--color-white);
}

.nav-01__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-01__menu-shell {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  isolation: isolate;
  margin-bottom: 2px;
}

.nav-01__menu-toggle {
  position: relative;
  z-index: 3;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: none;
  transition:
    transform 0.2s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
  border-radius: 30px;
}

.nav-01__menu-toggle:hover {
  transform: translateY(-1px);
}

.nav-01__menu-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.nav-01__menu-fa {
  position: absolute;
  font-size: 22px;
  line-height: 1;
  color: var(--color-text);
  transition:
    transform 0.34s ease,
    opacity 0.22s ease,
    color 0.22s ease;
}

.nav-01__menu-fa--open {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.nav-01__menu-fa--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.55);
  color: var(--color-text);
}

.nav-01__menu-shell.is-open .nav-01__menu-toggle {
  background: transparent;
  box-shadow: none;
}

.nav-01__menu-shell.is-open .nav-01__menu-toggle:hover {
  transform: none;
}

.nav-01__menu-shell.is-open .nav-01__menu-fa--open {
  opacity: 0;
  transform: rotate(90deg) scale(0.55);
}

.nav-01__menu-shell.is-open .nav-01__menu-fa--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.nav-01__menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: min(244px, calc(100vw - 24px));
  padding: 25px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-text);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  transform-origin: calc(100% - 28px) 28px;
  transform: scale(0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.46s cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 0.24s ease,
    visibility 0s linear 0.46s;
}

.nav-01__menu-shell.is-open .nav-01__menu-panel {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-01__menu-panel-head {
  margin-bottom: 14px;
  padding-right: 56px;
}

.nav-01__menu-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bfbfbf;
}

.nav-01__menu-list {
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav-01__menu-panel-cta {
  display: none;
}

.nav-01__menu-list .nav-link {
  padding: 0;
  border-bottom: 0;
  color: #282828;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 2.5px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-01__menu-list .nav-link:hover,
.nav-01__menu-list .nav-link:focus-visible {
  color: var(--color-blue);
  transform: translateX(2px);
}

@media (max-width: 991.98px) {
  .nav-01__office-pill {
    min-width: 112px;
  }
}

@media (max-width: 767.98px) {
  .nav-01 {
    padding-block: 12px;
  }

  .nav-01__inner {
    min-height: 46px;
    gap: 10px;
  }

  .nav-01__logo {
    width: 88px;
    height: auto;
  }

  .nav-01__actions {
    gap: 7px;
  }

  .nav-01__menu-toggle {
    width: 56px;
    height: 56px;
  }

  .nav-01__menu-panel {
    width: min(236px, calc(100vw - 16px));
    padding: 16px 20px 22px;
    border-radius: 28px;
  }

  .nav-01__menu-list .nav-link {
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 2.5px;
  }
}

@media (max-width: 575.98px) {
  .nav-01 {
    padding: 0;
  }

  .nav-01.scrolled {
    background: var(--color-dark);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  }

  .nav-01 .container {
    padding-top: 0;
  }

  .nav-01__mobile-callbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-height: 56px;
    padding: 10px 28px;
    overflow: hidden;
    background: var(--color-dark);
    color: var(--color-white);
    transition:
      max-height 0.28s ease,
      padding 0.28s ease,
      opacity 0.2s ease;
  }

  .nav-01.scrolled .nav-01__mobile-callbar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
  }

  .nav-01__mobile-callbar:hover {
    color: var(--color-white);
  }

  .nav-01__mobile-callbar-label {
    flex: 0 0 auto;
    max-width: 92px;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
  }

  .nav-01__mobile-callbar-number {
    flex: 1 1 auto;
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }

  .nav-01__mobile-callbar-icon {
    flex: 0 0 auto;
    font-size: 32px;
    line-height: 1;
  }

  .nav-01__inner {
    min-height: 84px;
    align-items: center;
    transition: min-height 0.28s ease;
  }

  .nav-01.scrolled .nav-01__inner {
    min-height: 64px;
  }

  .nav-01__logo {
    width: 112px;
    height: auto;
  }

  .nav-01__actions {
    align-items: center;
    align-self: center;
  }

  .nav-01__menu-shell {
    margin-bottom: 0;
  }

  .nav-01__menu-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }

  .nav-01__menu-panel {
    width: min(224px, calc(100vw - 12px));
    border-radius: 28px;
  }

  .nav-01__menu-shell.is-open .nav-01__menu-toggle {
    position: fixed;
    top: 38px;
    right: 42px;
    z-index: 1034;
    width: 40px;
    height: 40px;
    border-radius: 0;
  }

  .nav-01__menu-fa {
    font-size: 18px;
  }

  .nav-01__menu-panel {
    position: fixed;
    top: 30px;
    right: 30px;
    left: 30px;
    width: auto;
    min-height: calc(100vh - 60px);
    padding: 25px;
    border-radius: 32px;
    transform-origin: calc(100% - 34px) 34px;
  }

  .nav-01__menu-panel-head {
    margin-bottom: 24px;
    padding-right: 52px;
  }

  .nav-01__menu-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .nav-01__menu-panel-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
  }

  .nav-01__menu-panel-phone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 16px 0 24px;
    border-radius: 999px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }

  .nav-01__menu-panel-phone:hover {
    color: var(--color-white);
  }

  .nav-01__menu-panel-phone-icon {
    flex: 0 0 auto;
    font-size: 30px;
    line-height: 1;
  }
}

/* nav-01 styles End */

/* single-banner-01 styles Start */
.single-banner-01 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.5) 0%,
      rgba(10, 10, 10, 0.64) 38%,
      rgba(10, 10, 10, 0.14) 100%
    ),
    url("/images/banner-01.png") center center / cover no-repeat;
}

.single-banner-01 .container {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  align-items: flex-end;
  padding-bottom: 75px;
}

.single-banner-01-content {
  z-index: 1;
  color: var(--color-white);
  max-width: 760px;
}

.single-banner-01-scroll {
  position: absolute;
  right: 0;
  bottom: 60px;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--color-white);
}

.single-banner-01-scroll:hover {
  color: var(--color-white);
}

.single-banner-01-scroll__text {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: none;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.single-banner-01-scroll__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
}

.single-banner-01-subtitle {
  margin: 0 0 12px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.single-banner-01-title {
  margin-bottom: 15px;
}

.single-banner-01-text {
  margin: 0;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
}

.single-banner-01-btn {
  margin-top: 15px;
  color: var(--color-text);
  background-color: var(--color-lightBlue);
}

@media (max-width: 991.98px) {
  .single-banner-01 {
    background-position: 58% center;
  }

  .single-banner-01 .container {
    padding-bottom: 40px;
  }

  .single-banner-01-scroll {
    right: 20px;
    bottom: 28px;
  }
}

@media (max-width: 767.98px) {
  .single-banner-01 {
    min-height: 82vh;
  }

  .single-banner-01 .container {
    min-height: 82vh;
    padding-bottom: 30px;
  }

  .single-banner-01-scroll {
    display: none;
  }

  .single-banner-01-scroll__text {
    font-size: 11px;
  }

  .single-banner-01-scroll__icon {
    width: 28px;
    height: 28px;
  }
}

/* single-banner-01 styles End */

/* content-02-columns styles Start */
.content-02-columns {
  padding: 85px 0 40px;
  background: var(--color-white);
}

.content-02-columns .left-text {
  max-width: 580px;
}

.content-02-columns .right-text {
  max-width: 100%;
}

.content-02-columns .left-text p,
.content-02-columns .right-text p {
  margin: 0;
}

.content-02-columns .left-text p {
  color: #1f3a5f;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
}

.content-02-columns .right-text p {
  color: #5a5f69;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.content-02-columns .right-text p + p {
  margin-top: 28px;
}

@media (max-width: 1199.98px) {
  .content-02-columns {
    padding: 72px 0;
  }

  .content-02-columns .left-text {
    max-width: 520px;
  }

  .content-02-columns .left-text p {
    font-size: 26px;
    line-height: 32px;
  }
}

@media (max-width: 991.98px) {
  .content-02-columns {
    padding: 60px 0;
  }

  .content-02-columns .left-text,
  .content-02-columns .right-text {
    max-width: 100%;
  }

  .content-02-columns .left-text p {
    max-width: none;
    font-size: 23px;
    line-height: 29px;
  }

  .content-02-columns .right-text p {
    font-size: 16px;
    line-height: 24px;
  }

  .content-02-columns .right-text p + p {
    margin-top: 22px;
  }
}

@media (max-width: 767.98px) {
  .content-02-columns {
    padding: 48px 0;
  }

  .content-02-columns .left-text {
    margin-bottom: 15px;
  }

  .content-02-columns .left-text p {
    font-size: 20px;
    line-height: 26px;
  }

  .content-02-columns .right-text p + p {
    margin-top: 18px;
  }
}

@media (max-width: 575.98px) {
  .content-02-columns {
    padding: 40px 0 44px;
  }

  .content-02-columns .left-text p {
    font-size: 18px;
    line-height: 24px;
  }

  .content-02-columns .right-text p + p {
    margin-top: 16px;
  }
}

/* content-02-columns styles End */

/* footer-06 styles Start */
.footer-06 {
  padding: 52px 0 58px;
  background: var(--color-gray);
  color: var(--color-white);
}

.footer-06 .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.footer-06__info {
}

.footer-06__form-card {
  position: relative;
  min-height: 560px;
  padding: 45px;
  border-radius: 10px;
  background: var(--color-lightGray);
}

.footer-06__info {
  overflow: hidden;
}

.footer-06__info-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}

.footer-06__title,
.footer-06__form-title {
  margin-bottom: 18px;
  font-size: 55px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-white);
}

.footer-06__address,
.footer-06__consent-label {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
}

.footer-06__contact-lines a {
  font-size: 18px;
  line-height: 24px;
}

.footer-06__text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  color: var(--color-white);
  max-width: 580px;
}

.footer-06__text p,
.footer-06__address p,
.footer-06__contact-lines p {
  margin-bottom: 0;
}

.footer-06__address,
.footer-06__contact-lines,
.footer-06__socials {
  margin-top: 28px;
}

.footer-06__contact-lines a {
  color: var(--color-lightBlue);
  font-weight: 500;
}

.footer-06__socials {
  display: flex;
  gap: 8px;
}

.footer-06__rics-logo {
  display: block;
  height: 60px;
  width: auto;
  margin-top: 18px;
}

.footer-06__social {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 18px;
}

.footer-06__watermark {
  position: absolute;
  left: 45px;
  bottom: 45px;
  width: 110px;
  height: auto;
  pointer-events: none;
}

.footer-06__form {
  margin: 0;
}

.footer-06 .form.blocked {
  pointer-events: none;
}

.footer-06__form .row {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 16px;
}

.footer-06__label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-white);
}

.footer-06__control.form-control {
  min-height: 63px;
  padding: 10px 14px;
  border: 0;
  border-radius: 4px;
  background: #ececec;
  box-shadow: none;
  font-size: 15px;
  color: #111;
}

.footer-06__control.form-control:focus {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.footer-06__textarea {
  min-height: 260px;
  resize: none;
}

.footer-06 .form .tickbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-06 .form .form-error {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #b94a48;
  font-size: 15px;
  line-height: 140%;
}

.footer-06 .form textarea.form-control {
  height: 260px;
}

.footer-06 .form input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-top: 5px;
}

.footer-06 .form input[type="checkbox"] + label {
  padding: 0 0 0 5px;
}

.footer-06 form input[type="checkbox"] + label + .form-error {
  display: none;
}

.footer-06 form .checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.footer-06 form .checkbox + label {
  position: relative;
  padding-left: 30px !important;
  cursor: pointer;
}

.footer-06 form .checkbox + label::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: inset 0 2px 2px rgba(172, 172, 172, 0.27);
}

.footer-06 form .checkbox:checked + label::after {
  content: "\f00c";
  position: absolute;
  top: 3px;
  left: 4px;
  display: inline-block;
  color: #000;
  cursor: pointer;
  font-family: "Font Awesome 5 Free";
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.footer-06__consent-label {
  margin: 0;
}

.footer-06 .required-star {
  color: var(--color-white);
}

.footer-06 .btn-primary {
  --bs-btn-bg: var(--color-dark);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: var(--color-dark);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-bg: var(--color-dark);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-bg: var(--color-dark);
  --bs-btn-disabled-border-color: transparent;
}

.footer-06 .btn-primary:hover {
  box-shadow: 0 16px 28px rgba(13, 32, 91, 0.28);
}

.footer-06 .form-group {
  margin-bottom: 0;
}

.footer-06 .form-group label.error {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-blue);
}

.footer-06 .form-group.has-error .footer-06__control.form-control {
  box-shadow: 0 0 0 2px var(--color-blue);
}

.footer-06 .form-group.has-error .footer-06__consent-label {
  color: #fff;
}

.footer-06 form .tickbox.has-error label::before {
  border-color: var(--color-blue);
}

@media (max-width: 1199.98px) {
  .footer-06__info,
  .footer-06__form-card {
    min-height: 520px;
  }
}

@media (max-width: 991.98px) {
  .footer-06 {
    padding: 46px 0 52px;
  }

  .footer-06__info,
  .footer-06__form-card {
    min-height: auto;
  }

  .footer-06__info-inner {
    padding-bottom: 110px;
  }

  .footer-06__watermark {
    left: auto;
    right: 26px;
    bottom: 26px;
    width: 88px;
  }
}

@media (max-width: 575.98px) {
  .footer-06 {
    padding: 34px 0 38px;
  }

  .footer-06__info,
  .footer-06__form-card {
    padding: 24px 18px;
  }

  .footer-06__info-inner {
    padding-bottom: 100px;
  }

  .footer-06__form .row {
    --bs-gutter-y: 14px;
  }

  .footer-06__title,
  .footer-06__form-title {
    font-size: 34px;
  }

  .footer-06__submit.btn {
    width: 100%;
  }
}

/* footer-06 styles End */

/* footer-02 styles Start */
.footer-02 {
  padding: 0 0 40px;
  background: var(--color-gray);
  color: var(--color-white);
}

.footer-02__nav {
  width: 100%;
}

.footer-02__menu {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  margin: 0;
  list-style: none;
}

.footer-02__menu li {
  text-align: center;
}

.footer-02__menu a {
  color: var(--color-lightBlue);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.footer-02__menu a:hover {
  color: var(--color-white);
  opacity: 0.88;
}

.footer-02__divider {
  width: 100vw;
  height: 1px;
  margin-left: calc(50% - 50vw);
  background: rgba(39, 44, 54, 0.38);
}

.footer-02__meta {
  padding-top: 35px;
}

.footer-02__meta p {
  margin: 0;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.025em;
}

.footer-02__meta a {
  color: var(--color-white);
  margin-left: 20px;
}

.footer-02__meta a span {
  font-family: var(--font-title);
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .footer-02 {
    padding-bottom: 34px;
  }

  .footer-02__menu {
    gap: 22px 34px;
    padding: 40px 0 34px;
  }

  .footer-02__meta {
    padding-top: 28px;
  }
}

@media (max-width: 767.98px) {
  .footer-02 {
    padding-bottom: 30px;
  }

  .footer-02__menu {
    gap: 18px 26px;
    padding: 34px 0 28px;
  }

  .footer-02__menu a {
    font-size: 16px;
  }

  .footer-02__meta {
    padding-top: 24px;
  }
}

@media (max-width: 575.98px) {
  .footer-02 {
    padding-bottom: 24px;
  }

  .footer-02__menu {
    width: 100%;
    flex-direction: column;
    gap: 14px;
    padding: 28px 0 24px;
  }

  .footer-02__menu a {
    font-size: 17px;
  }

  .footer-02__meta {
    padding-top: 20px;
  }

  .footer-02__meta p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* footer-02 styles End */

/* services-01 styles Start */
.services-01 {
  padding: 45px 0;
  background: var(--color-white);
}

.services-01__card {
  height: 100%;
}

.services-01__link {
  position: relative;
  display: block;
  min-height: 420px;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  color: var(--color-white);
  background: #d9dde3;
}

.services-01__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0) 38%, rgba(5, 10, 18, 0.82) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
  transition: opacity 0.25s ease;
}

.services-01__link:hover::before {
  opacity: 0.92;
}

.services-01__media,
.services-01__image {
  width: 100%;
  height: 100%;
}

.services-01__image {
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.services-01__link:hover .services-01__image {
  transform: scale(1.05);
}

.services-01__content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
}

.services-01__title {
  margin: 0;
  max-width: 160px;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.services-01__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.services-01__link:hover .services-01__icon {
  transform: translateX(2px);
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-darkBlue);
}

@media (max-width: 1199.98px) {
  .services-01 {
    padding: 40px 0;
  }

  .services-01__link {
    min-height: 340px;
    height: 340px;
  }

  .services-01__content {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }
}

@media (max-width: 991.98px) {
  .services-01 {
    padding: 34px 0;
  }

  .services-01__link {
    min-height: 320px;
    height: 320px;
  }

  .services-01__title {
    max-width: 180px;
  }
}

@media (max-width: 767.98px) {
  .services-01 {
    padding: 28px 0;
  }

  .services-01__link {
    min-height: 300px;
    height: 300px;
    border-radius: 18px;
  }

  .services-01__content {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .services-01__title {
    max-width: 170px;
  }
}

@media (max-width: 575.98px) {
  .services-01 {
    padding: 24px 0;
  }

  .services-01__link {
    min-height: 300px;
    height: 300px;
    border-radius: 16px;
  }

  .services-01__content {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .services-01__title {
    max-width: 100%;
  }
}

/* services-01 styles End */

/* sectors-01 styles Start */
.sectors-01 {
  padding: 30px 0 55px;
  background: var(--color-white);
}

.sectors-01__card {
  height: 100%;
}

.sectors-01__link {
  display: flex;
  min-height: 175px;
  height: 100%;
  flex-direction: column;
  padding: 25px;
  border-radius: 20px;
  background: #f5f5f5;
  color: var(--color-blue);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    min-height 0.3s ease;
}

.sectors-01__icon {
  margin-bottom: 18px;
  color: var(--color-lightBlue);
  font-size: 40px;
  line-height: 1;
  transition: color 0.25s ease;
}

.sectors-01__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 18px;
  row-gap: 12px;
  margin-top: auto;
  transition: padding-top 0.3s ease;
}

.sectors-01__title {
  margin: 0;
  grid-column: 1;
  color: var(--color-darkBlue);
  font-size: 22px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.03em;
  transition:
    color 0.25s ease,
    transform 0.3s ease;
}

.sectors-01__arrow {
  display: inline-flex;
  grid-column: 2;
  grid-row: 1;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  align-self: start;
  border: 2px solid var(--color-lightBlue);
  border-radius: 50%;
  color: var(--color-lightBlue);
  font-size: 14px;
  line-height: 1;
  transition:
    opacity 0.2s ease,
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.sectors-01__text {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--color-gray);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.025em;
  transform: translateY(8px);
  transition:
    max-height 0.3s ease,
    opacity 0.22s ease,
    transform 0.3s ease,
    color 0.25s ease;
}

.sectors-01__link:hover {
  background: #dceaf6;
  transform: translateY(-2px);
  box-shadow: 0 20px 35px rgba(31, 73, 160, 0.08);
}

.sectors-01__link:hover .sectors-01__icon,
.sectors-01__link:hover .sectors-01__arrow {
  color: #8db9db;
  border-color: #8db9db;
}

.sectors-01__link:hover .sectors-01__arrow {
  transform: translateX(2px);
}

.sectors-01__link:hover .sectors-01__title {
  color: #274f82;
}

.sectors-01__link:hover .sectors-01__text {
  color: #6a727c;
}

.sectors-01__link:hover {
  min-height: 250px;
}

.sectors-01__link:hover .sectors-01__content {
  padding-top: 15px;
}

.sectors-01__link:hover .sectors-01__arrow {
  opacity: 0;
  transform: translateY(6px);
}

.sectors-01__link:hover .sectors-01__text {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.sectors-01__link:hover .sectors-01__title {
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .sectors-01 {
    padding: 24px 0 50px;
  }

  .sectors-01__link {
    min-height: 170px;
    padding: 24px;
  }

  .sectors-01__link:hover {
    min-height: 236px;
  }

  .sectors-01__link:hover .sectors-01__content {
    padding-top: 14px;
  }
}

@media (max-width: 991.98px) {
  .sectors-01 {
    padding: 22px 0 44px;
  }

  .sectors-01__link {
    min-height: 164px;
    padding: 22px;
    border-radius: 20px;
  }

  .sectors-01__link:hover {
    min-height: 224px;
  }

  .sectors-01__link:hover .sectors-01__content {
    padding-top: 12px;
  }
}

@media (max-width: 767.98px) {
  .sectors-01 {
    padding: 20px 0 38px;
  }

  .sectors-01__link {
    min-height: 156px;
    padding: 20px;
    border-radius: 18px;
  }

  .sectors-01__arrow {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .sectors-01__link:hover {
    min-height: 214px;
  }

  .sectors-01__link:hover .sectors-01__content {
    padding-top: 10px;
  }
}

@media (max-width: 575.98px) {
  .sectors-01 {
    padding: 18px 0 34px;
  }

  .sectors-01__link {
    min-height: 148px;
    padding: 18px;
    border-radius: 16px;
  }

  .sectors-01__arrow {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 12px;
  }

  .sectors-01__link:hover {
    min-height: 202px;
  }

  .sectors-01__link:hover .sectors-01__content {
    padding-top: 8px;
  }
}

/* sectors-01 styles End */

/* cta-01 styles Start */
.cta-01 {
  position: relative;
  overflow: hidden;
  padding: 110px 0 150px;
  background:
    linear-gradient(
      90deg,
      rgba(26, 98, 204, 0.56) 0%,
      rgba(26, 98, 204, 0.24) 42%,
      rgba(26, 98, 204, 0.1) 100%
    ),
    url("/images/cta-01.png") center center / cover no-repeat;
}

.cta-01__content {
  position: relative;
  z-index: 1;
  max-width: 430px;
  color: var(--color-white);
}

.cta-01__title {
  margin: 0;
  color: var(--color-white);
  font-size: 72px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.cta-01__text {
  margin: 18px 0 0;
  max-width: 400px;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.025em;
}

.cta-01__btn.btn {
  margin-top: 20px;
  background: var(--color-lightBlue);
  color: var(--color-text);
}

.cta-01__btn.btn:hover {
  background: #d7e6f1;
  color: var(--color-dark);
}

@media (max-width: 1199.98px) {
  .cta-01 {
    padding: 92px 0 120px;
  }

  .cta-01__title {
    font-size: 62px;
  }

  .cta-01__text {
    max-width: 380px;
  }
}

@media (max-width: 991.98px) {
  .cta-01 {
    padding: 82px 0 104px;
    background-position: 62% center;
  }

  .cta-01__content {
    max-width: 390px;
  }

  .cta-01__title {
    font-size: 54px;
  }

  .cta-01__text {
    max-width: 360px;
    line-height: 25px;
  }
}

@media (max-width: 767.98px) {
  .cta-01 {
    padding: 68px 0 88px;
    background-position: 68% center;
  }

  .cta-01__content {
    max-width: 340px;
  }

  .cta-01__title {
    font-size: 46px;
  }

  .cta-01__text {
    margin-top: 16px;
    max-width: 320px;
    line-height: 23px;
  }

  .cta-01__btn.btn {
    margin-top: 20px;
  }
}

@media (max-width: 575.98px) {
  .cta-01 {
    padding: 54px 0 72px;
    background-position: 72% center;
  }

  .cta-01__content {
    max-width: 280px;
  }

  .cta-01__title {
    font-size: 38px;
  }

  .cta-01__text {
    margin-top: 14px;
    max-width: 260px;
    line-height: 22px;
  }

  .cta-01__btn.btn {
    min-height: 52px;
    margin-top: 18px;
    padding: 0 24px;
  }
}

/* cta-01 styles End */

/* values-01 styles Start */
.values-01 {
  padding: 100px 0;
  background: #f5f5f5;
}

.values-01__head {
  position: relative;
  padding: 0 0 25px;
}

.values-01__head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(53, 58, 68, 0.16);
}

.values-01__title {
  margin: 0;
  color: var(--color-darkBlue);
  font-size: 55px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.values-01__row {
  padding-top: 35px;
}

.values-01__item {
  max-width: 220px;
}

.values-01__icon {
  color: var(--color-lightBlue);
  font-size: 36px;
  line-height: 1;
}

.values-01__item-title {
  margin: 18px 0 0;
  color: var(--color-lightBlue);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.025em;
}

.values-01__text {
  margin: 12px 0 0;
  color: var(--color-gray);
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

@media (max-width: 1199.98px) {
  .values-01 {
    padding: 70px 0;
  }

  .values-01__title {
    font-size: 50px;
  }

  .values-01__item-title {
    font-size: 27px;
    line-height: 32px;
  }

  .values-01__text {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 991.98px) {
  .values-01 {
    padding: 60px 0;
  }

  .values-01__head {
    padding: 30px 0 22px;
  }

  .values-01__title {
    font-size: 44px;
  }

  .values-01__row {
    row-gap: 28px;
    padding-top: 30px;
  }

  .values-01__item {
    max-width: none;
  }

  .values-01__item-title {
    margin-top: 16px;
    font-size: 24px;
    line-height: 30px;
  }

  .values-01__text {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 767.98px) {
  .values-01 {
    padding: 50px 0;
  }

  .values-01__title {
    font-size: 38px;
  }

  .values-01__row {
    row-gap: 24px;
    padding-top: 24px;
  }

  .values-01__item-title {
    font-size: 24px;
    line-height: 28px;
  }

  .values-01__text {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 575.98px) {
  .values-01 {
    padding: 40px 0;
  }

  .values-01__head {
    padding: 26px 0 18px;
  }

  .values-01__title {
    font-size: 34px;
  }

  .values-01__row {
    row-gap: 22px;
    padding-top: 22px;
  }

  .values-01__item-title {
    margin-top: 14px;
    font-size: 24px;
    line-height: 24px;
  }

  .values-01__text {
    margin-top: 10px;
    font-size: 18px;
    line-height: 22px;
  }
}

/* values-01 styles End */

/* process-01 styles Start */
.process-01 {
  padding: 100px 0 110px;
  background: var(--color-white);
}

.process-01__media {
  overflow: hidden;
  border-radius: 24px;
}

.process-01__image {
  display: block;
  width: 100%;
  height: auto;
}

.process-01__content {
  max-width: 100%;
}

.process-01__content--mobile-head {
  padding-bottom: 24px;
}

.process-01__title {
  margin: 0;
  color: var(--color-darkBlue);
  font-size: 55px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.process-01__text {
  margin: 14px 0 0;
  color: var(--color-gray);
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.025em;
}

.process-01__btn.btn {
  margin-top: 24px;
  background: var(--color-darkBlue);
  color: var(--color-white);
  box-shadow: none;
}

.process-01__btn.btn:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

@media (max-width: 1199.98px) {
  .process-01 {
    padding: 80px 0 90px;
  }

  .process-01__content {
    max-width: 100%;
  }

  .process-01__title {
    font-size: 48px;
  }
}

@media (max-width: 991.98px) {
  .process-01 {
    padding: 64px 0 74px;
  }

  .process-01__media {
    border-radius: 22px;
  }

  .process-01__content {
    max-width: none;
    padding: 36px 0 0;
  }

  .process-01__content--mobile-head {
    padding: 0 0 28px;
  }

  .process-01__title {
    font-size: 42px;
  }
}

@media (max-width: 767.98px) {
  .process-01 {
    padding: 52px 0 60px;
  }

  .process-01__media {
    border-radius: 20px;
  }

  .process-01__content {
    padding-top: 28px;
  }

  .process-01__content--mobile-head {
    padding-bottom: 24px;
  }

  .process-01__title {
    font-size: 38px;
  }

  .process-01__text {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 575.98px) {
  .process-01 {
    padding: 44px 0 50px;
  }

  .process-01__media {
    border-radius: 18px;
  }

  .process-01__content {
    padding-top: 22px;
  }

  .process-01__content--mobile-head {
    padding-bottom: 18px;
  }

  .process-01__title {
    font-size: 34px;
  }

  .process-01__text {
    font-size: 18px;
    line-height: 24px;
  }

  .process-01__btn.btn {
    margin-top: 20px;
  }
}

/* process-01 styles End */

/* grid-gallery styles Start */
.grid-gallery {
  --gallery-grid-gap: 24px;
  --gallery-grid-rows: 2;
  --gallery-grid-columns: 6;
  --gallery-grid-edge-peek: clamp(44px, 5vw, 94px);
  --gallery-grid-center-width: calc(100vw + var(--gallery-grid-edge-peek) * 2 - 48px);
  padding: 0 0 52px;
  overflow: clip;
  background:
    linear-gradient(
      180deg,
      var(--color-white) 0 70%,
      var(--color-gray) 70% 100%
    );
}

.grid-gallery__items {
  display: grid;
  grid-template-areas:
    "n1 n2 n3 n4 n4 n5"
    "n6 n6 n7 n8 n9 n9";
  --gallery-grid-cell-size: calc(
    (var(--gallery-grid-center-width) - var(--gallery-grid-gap) * 5) / 6
  );
  grid-template-rows: repeat(var(--gallery-grid-rows), var(--gallery-grid-cell-size));
  grid-template-columns: repeat(6, var(--gallery-grid-cell-size));
  gap: var(--gallery-grid-gap);
  width: max-content;
  margin-left: calc(var(--gallery-grid-edge-peek) * -1);
}

.grid-gallery__item {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  transform: translateZ(0);
}

.grid-gallery__item:nth-of-type(1) {
  grid-area: n1;
}

.grid-gallery__item:nth-of-type(2) {
  grid-area: n2;
}

.grid-gallery__item:nth-of-type(3) {
  grid-area: n3;
}

.grid-gallery__item:nth-of-type(4) {
  grid-area: n4;
}

.grid-gallery__item:nth-of-type(5) {
  grid-area: n5;
}

.grid-gallery__item:nth-of-type(6) {
  grid-area: n6;
}

.grid-gallery__item:nth-of-type(7) {
  grid-area: n7;
}

.grid-gallery__item:nth-of-type(8) {
  grid-area: n8;
}

.grid-gallery__item:nth-of-type(9) {
  grid-area: n9;
}

.grid-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.grid-gallery__item:hover .grid-gallery__image {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.grid-gallery__item:nth-of-type(1) .grid-gallery__image {
  object-position: 28% center;
}

.grid-gallery__item:nth-of-type(5) .grid-gallery__image {
  object-position: 78% center;
}

.grid-gallery__item:nth-of-type(7) .grid-gallery__image {
  object-position: 50% center;
}

.grid-gallery__item:nth-of-type(8) .grid-gallery__image {
  object-position: center center;
}

@media (max-width: 1199.98px) {
  .grid-gallery {
    --gallery-grid-gap: 20px;
    --gallery-grid-edge-peek: clamp(30px, 4vw, 64px);
    padding-bottom: 46px;
  }
}

@media (max-width: 991.98px) {
  .grid-gallery {
    --gallery-grid-gap: 16px;
    --gallery-grid-rows: 2;
    --gallery-grid-columns: 4;
    --gallery-grid-edge-peek: clamp(18px, 3vw, 36px);
    --gallery-grid-center-width: calc(100vw + var(--gallery-grid-edge-peek) * 2 - 32px);
  }

  .grid-gallery__items {
    grid-template-areas:
      "n2 n2 n3 n3"
      "n6 n6 n8 n9";
    --gallery-grid-cell-size: calc(
      (var(--gallery-grid-center-width) - var(--gallery-grid-gap) * 3) / 4
    );
    grid-template-columns: repeat(4, var(--gallery-grid-cell-size));
  }

  .grid-gallery__item:nth-of-type(1) {
    display: none;
  }

  .grid-gallery__item:nth-of-type(4) {
    display: none;
  }

  .grid-gallery__item:nth-of-type(5) {
    display: none;
  }

  .grid-gallery__item:nth-of-type(7) {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .grid-gallery {
    padding: 24px 0 42px;
  }
}

@media (max-width: 575.98px) {
  .grid-gallery {
    --gallery-grid-center-width: 100%;
    --gallery-grid-columns: 2;
    --gallery-grid-gap: 12px;
    --gallery-grid-edge-peek: 0px;
    padding: 20px 12px 34px;
  }

  .grid-gallery__items {
    grid-template-areas:
      "n2 n3"
      "n4 n6"
      "n8 n9";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    width: 100%;
    margin-inline: auto;
    justify-content: center;
  }

  .grid-gallery__item {
    display: block;
    aspect-ratio: 1 / 1;
  }

  .grid-gallery__item:nth-of-type(1),
  .grid-gallery__item:nth-of-type(5),
  .grid-gallery__item:nth-of-type(7) {
    display: none;
  }

  .grid-gallery__item:nth-of-type(4) {
    display: block;
  }
}

/* grid-gallery styles End */
