:root {
  --font-inter: "Inter", sans-serif;
}

:root {
  --color-white: #fff;
  --color-light-grey: #F5F5F3;
  --color-black: #000;
  --color-dark: #05080D;
  --color-blue: #14A0FF;
  --color-dark-blue: #012F5D;
  --color-medium-grey: #888;
  --gradient-blue-grey: linear-gradient(90.01deg, #012F5D 3.58%, #FFFFFF 101.42%);
  --gradient-blue: linear-gradient(89.96deg, #012F5D 3.59%, #82ACD4 99.94%);
}

html {
  box-sizing: border-box;
  height: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

body {
  position: relative;
  min-width: 320px;
  height: 100%;
  font-family: var(--font-inter);
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--color-dark);
  background-color: var(--color-white);
}

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

ul li {
  list-style: none;
}

input,
textarea {
  padding: 0.7rem 1.5rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: normal;
  color: var(--color-dark);
  border: 1px solid var(--color-medium-grey);
  outline: none;
  background-color: var(--color-light-grey);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.button {
  display: inline-block;
  padding: 1.4rem 2.7rem;
  font-family: var(--font-inter);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  background-color: var(--color-dark-blue);
  transition: all 0.3s;
}

.button:hover,
.button:focus {
  color: var(--color-dark);
  background-color: var(--color-white);
  box-shadow: 0 0 0 1px var(--color-dark-blue);
}

.button--white {
  color: var(--color-dark-blue);
  background-color: var(--color-white);
  box-shadow: 0 0 0 1px var(--color-dark);
}

.button--white:hover,
.button--white:focus {
  color: var(--color-white);
  background-color: var(--color-blue);
  box-shadow: 0 0 0 1px transparent;
}

.button-slider {
  display: block;
  width: max-content;
  margin: 2rem auto 0; 
}

.unr-t {
  display: block;
  max-width: max-content;
  margin: 3rem auto 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-mukta);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  clear: both;
}

h1,
.h1 {
  font-size: 3.2rem;
  line-height: 4.5rem;
}

h2,
.h2 {
  font-size: 3.2rem;
  line-height: 4.5rem;
}

h3,
.h3 {
  font-size: 3.2rem;
  line-height: 4.5rem;
}

h4,
.h4 {
  font-size: 2.6rem;
  line-height: 140%;
}

h5,
.h5 {
  font-size: 2rem;
  line-height: 140%;
}

a {
  color: var(--color-blue);
  text-decoration: underline;
}

a:not([class]) {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:not([class]):hover,
a:not([class]):focus {
  text-decoration: none;
}

.container {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 3rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 4.5rem 0;
  background-color: var(--color-white);
  transition: all 0.3s;
}

.header.sticky {
  padding: 2.5rem 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.header__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav {
  position: relative;
  flex-grow: 1;
  max-width: 1156px;
  margin-right: 8rem;
  visibility: hidden;
}

.header__toggle-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.header__toggle-btn .close-icon {
  display: none;
  /* width: 30px; */
}

.header__toggle-btn > svg {
  transform: rotateX(360deg);
  transition: all 0.3s ease;
}

.header__toggle-btn[aria-expanded="true"] > svg {
  transform: rotateX(180deg);
}

.header__menu {
  display: flex;
  text-align: center;
}

.header__menu li {
  padding: 0 1.5rem;
}

.header__menu a {
  font-weight: 500;
  color: var(--color-dark);
  text-decoration: none;
}

.header__menu a:hover {
  color: var(--color-blue);
}

.header__overflow-nav {
  position: absolute;
  top: 2.5rem;
  display: block;
  padding: 2.5rem;
  background: var(--color-dark-blue);
  opacity: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  transform: scale(0.8);
  transition-property: opacity, transform, visibility;
  transition-timing-function: cubic-bezier(0.24, 0.22, 0.015, 1.56);
  transition-duration: 0.2s;
  visibility: hidden;
}

.p-plus--is-showing-overflow .header__overflow-nav {
  /* max-height: 517px; */
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}


.header.sticky .header__overflow-nav {
  top: 5.8rem;
}

.header__overflow-nav li:not(:last-child) {
  margin-bottom: 3rem;
}

.header__overflow-nav a {
  color: var(--color-white);
}

.header__overflow-nav a:hover {
  color: var(--color-blue);
}



.header__cta-button {
  padding: 1.15rem 3rem;
  color: var(--color-white);
  background-color: var(--color-blue);
}

.header__cta-button:hover,
.header__cta-button:focus {
  color: var(--color-dark);
  background-color: transparent;
}


.logo__link {
  display: flex;
}

.logo__img {
  width: 180px;
  max-width: 180px;
  max-height: 40px;
}

.sub-menu {
  display: none;
}

.intro {
  position: relative;
}

.intro__content {
  display: flex;
  background-color: var(--color-dark-blue);
}

.intro__image {
  display: flex;
}

.intro__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.intro__info,
.intro__image {
  width: 50%;
}

.intro__info-row {
  padding: 11.4rem 29rem 11.4rem 11rem;
  color: var(--color-white);
}

.intro__heading {
  margin-bottom: 2.5rem;
  font-size: 3.6rem;
  line-height: 5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.intro__text {
  margin-bottom: 3.5rem;
}

.intro__button {
  background-color: transparent;
  box-shadow: 0 0 0 1px var(--color-white);
}

.swiper-button-prev,
.swiper-button-next {
  transform: translateY(-50%);
  height: 50px;
  margin-top: -2.5rem;
}

.swiper-button-next {
  right: 3rem;
}

.swiper-button-prev {
  left: 3rem;
}

.swiper-pagination {
  position: static;
  margin-top: 6rem;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid var(--color-blue);
  opacity: 1;
}

.swiper-pagination-bullet:not(:last-child) {
  margin-right: 4rem;
}

.swiper-pagination-bullet-active {
  background: var(--color-blue);
}

#breadcrumbs {
  width: calc(100% - 60px);
  max-width: 1156px;
  margin: 0 auto;
  padding: 1.4rem 2.5rem;
  background: var(--gradient-blue-grey);
}

#breadcrumbs a {
  color: var(--color-white);
}

#breadcrumbs a:hover {
  text-decoration: underline;
}

#breadcrumbs span {
  color: var(--color-blue);
}

.primary-content {
  max-width: 1156px;
  margin: 7rem auto 8rem;
  padding: 0;
}

.primary-content__row {
  display: flex;
  gap: 15rem;
}

.aside {
  width: 100%;
  max-width: 317px;
}

.aside__item {
  margin-bottom: 3rem;
  padding: 3.5rem;
  background-color: var(--color-light-grey);
}

.aside__title {
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.8rem;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}

#menu-top-pages li:not(:last-child) {
  margin-bottom: 1.5rem;
}

#menu-top-pages a {
  color: var(--color-dark);
}

#menu-top-pages a:hover {
  color: var(--color-blue);
}

main {
  max-width: 690px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
  margin-bottom: 2rem;
}

.wp-block-image {
  margin: 3rem auto;
}

.entry-content p {
  margin: 1rem 0;
}

.entry-content p img {
  margin: 3rem auto;
}

.entry-content p a:hover {
  text-decoration: underline;
}

.entry-button {
  display: block;
  max-width: max-content;
  margin: 3rem auto 3.5rem;
}

.aside-cta {
  background: var(--color-dark-blue);
  background-image: var(--gradient-blue);
  border-radius: 0 var(--border-radius-main) 0 var(--border-radius-main);
}

.aside-cta__row {
  padding: 4rem 6rem;
}

.aside-cta__text {
  margin-bottom: 2rem;
  font-family: var(--font-mukta);
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.8rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.aside-cta__promo {
  margin-bottom: 2rem;
  padding: 1rem 2rem;
}

.aside-cta__button {
  width: 100%;
  line-height: 2.1rem;
}

.aside-promo-cta {
  background: linear-gradient(120.5deg, #F4F4F4 12.02%, #F5F5F5 89.94%);
  border-radius: var(--border-radius-main);
}

.aside-promo-cta__row {
  padding: 4rem 4.3rem;
}

.aside-promo-cta__text {
  margin-bottom: 2rem;
  padding: 0 1.5rem;
  font-family: var(--font-mukta);
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.8rem;
  letter-spacing: 0.05em;
  color: var(--color-dark);
}

.aside-promo-cta__text span {
  color: var(--color-accent-red);
}

.aside-promo-cta__button {
  padding: 1.3rem 3.5rem;
  font-family: var(--font-mukta);
  line-height: 2.3rem;
}

.entry-content ul li {
  list-style-type: disc;
}

.entry-content li {
  list-style-position: inside;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.entry-promo {
  margin: 3rem 0;
  padding: 3rem 3.95rem;
  color: var(--color-white);
  background-color: var(--color-dark-blue);
  border-radius: 2rem;
}

.entry-promo__caption {
  margin-bottom: 3rem;
  font-size: 2.6rem;
  line-height: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.entry-promo__list {
  margin-bottom: 3rem;
}

.entry-promo__list li {
  margin-bottom: 0;
  padding-left: 0;
}

.entry-promo__list li a:hover {
  text-decoration: underline;
}

.entry-promo__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.entry-promo__code {
  padding: 1.2rem 4rem;
  font-size: 1.8rem;
  line-height: 2.5rem;
  font-weight: 600;
  border: 3px dashed var(--color-blue);
}

.entry-promo__button {
  padding: 1.7rem 4.85rem;
}

.comments-area {
  margin-top: 3.5rem;
}

#respond  {
  padding: 4.5rem 7.5rem 4.5rem 4.5rem;
  background-color: var(--color-light-grey);
  border-radius: var(--border-radius-main);
}

.comment-reply-title {
  margin-bottom: 2rem;
  font-size: 2.6rem;
  line-height: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-dark);
}

#cancel-comment-reply-link {
  display: inline-block;
  margin-left: 1rem;
}

.comment-notes {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--color-dark);
}

.comment-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.comment-form textarea {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
}

.comment-form input[name="author"],
.comment-form input[name="email"] {
  width: 320px;
  max-width: 100%;
  margin-bottom: 2rem;
}

.comment-form textarea:placeholder,
.comment-form input[name="author"]:placeholder,
.comment-form input[name="email"]:placeholder {
  color: var(--color-medium-grey);
}

.button-submit {
  display: block;
  margin: 3rem auto 0;
  color: var(--color-dark);
  background-color: transparent;
  border: none;
  box-shadow: 0 0 0 1px var(--color-dark-blue);
  cursor: pointer;
}

.button-submit:hover,
.button-submit:focus {
  color: var(--color-white);
  background-color: var(--color-dark-blue);
}

.comment-list {
  margin-bottom: 3.5rem;
}

.comments-title {
  margin-bottom: 3rem;
  font-size: 2.6rem;
  line-height: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-dark);
}

.comments-title__page {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
}

.comment {
  margin-bottom: 3rem;
}

.comment.depth-2 {
  margin-top: 2rem;
  margin-left: 2rem;
}

.comment-meta {
  margin-bottom: 1.5rem;
}

.comment-author {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.5rem;
}

.vcard .avatar {
  float: left;
  margin-right: 1.5rem;
  width: 47px;
  height: 47px;
  border-radius: 5rem;
}

.comment-metadata,
.comment-metadata a {
  font-size: 1.2rem;
  line-height: 1.7rem;
  color: var(--color-grey);
}

.comment-content {
  margin-bottom: 1.5rem;
}

.comment-reply-link {
  position: relative;
  font-weight: 600;
  color: var(--color-blue);
  letter-spacing: 0.02em;
  transition: all 0.2s;
  text-decoration: none;
}

.comment-reply-link:hover {
  color: var(--color-dark-blue);
}

.load-more {
  display: block;
  margin: 0 auto;
  max-width: 220px;
}

/* .comment-reply-link:before {
  content: "";
  position: relative;
  top: -2px;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 1rem;
  background-image: url(../images/icons/reply.svg);
  background-repeat: no-repeat;
  transition: all 0.2s;
}

.comment-reply-link:hover {
  color: var(--color-accent-red);
}

.comment-reply-link:hover:before {
  background-image: url(../images/icons/reply-red.svg);
} */

.success-comment {
  display: none;
  margin-top: 3rem;
  padding: 1.8rem 2.5rem;
  background-color: var(--color-light-grey);
  border: 1px solid var(--color-dark);
}

.success-comment__text span {
  font-weight: bold;
}

.footer {
  padding: 8rem 0;
  background-color: var(--color-light-grey);
}

.footer__container {
  max-width: 1230px;
  padding: 0;
}

.footer__logo-link {
  display: flex;
}

.footer__logo-image {
  width: 167px;
}

.footer__line {
  display: block;
  max-width: 167px;
  height: 1px;
  margin-top: 4rem;
  background-color: var(--color-blue);
}

.footer__menu {
  margin: 2rem 0;
  -moz-columns: 2;
  columns: 2;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
}

.footer__menu li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.footer__menu a {
  text-decoration: underline;
  color: var(--color-dark);
}

.footer__azs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 865px;
}

.footer__azs-link {
  font-weight: 500;
  text-decoration: none;
  color: var(--color-dark);
}

.footer__azs-link:hover {
  color: var(--color-dark-blue);
}

.footer__azs-logo {
  display: flex;
  max-height: 60px;
}

.footer__copyright {
  margin-top: 2rem;
  color: var(--color-dark);
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 1.5rem;
  left: 0;
  z-index: 998;
  display: none;
  max-width: 320px;
  margin: 0 auto;
  transform: scale(0.8);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.mobile-cta--active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.mobile-cta__button {
  display: block;
  padding: 1.5rem 2.6rem;
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  color: var(--color-white);
  background-color: rgba(20, 160, 255, 0.8);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

.mobile-cta__button:hover,
.mobile-cta__button:focus {
  color: var(--color-dark);
  background-color: rgba(255, 255, 255, 0.8);
}


.error-404 {
  text-align: center;
}

.error404 .site-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.error404 #main-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 0 auto;
}

.error404 .footer {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .button-slider,
  .unr-t {
    display: none;
  }
}

@media (min-width: 1025px) {
  .header__menu li {
    padding: 0 1.5rem;
  }

  .header__menu li {
    border-right: 1px solid var(--color-blue);
  }
}

@media (min-width: 1921px) {
  .footer {
    max-width: 1920px;
    margin: 0 auto;
  }
}

@media (max-width: 1600px) {

  .header {
    padding: 3.5rem 0;
  }

  body:not(.home) .header .container {
    max-width: 1216px;
  }

  .header.sticky {
    padding: 2rem 0;
  }

  .header.sticky .header__overflow-nav {
    top: 5.4rem;
  }

  .header__nav {
    max-width: 761px;
    margin-right: 0;
  }

  .intro__info-row {
    padding: 6.2rem 15.1rem 6.5rem 6.2rem;
  }

  .intro__heading {
    margin-bottom: 2rem;
    font-size: 3.2rem;
    line-height: 4.5rem;
    font-weight: 500;
  }

  .primary-content {
    margin: 5rem auto 8rem;
  }

  .primary-content__row {
    gap: 9rem;
  }
}

@media (max-width: 1365px) {

  .logo__img {
    width: 136px;
  }
  .header.sticky .header__overflow-nav {
    top: 4.4rem;
  } 

  .intro__info-row {
    padding: 4rem 10.3rem 6.9rem 6.45rem;
  }

  .primary-content__row {
    justify-content: center;
    gap: 0;
  }

  .aside {
    display: none;
  }

  .footer {
    padding: 4rem 0;
  }

  .footer__container {
    max-width: 644px;
    margin: 0 auto;
  }

  .footer__line {
    margin-top: 2rem;
  }

  .footer__menu {
    -moz-column-gap: 5rem;
    column-gap: 5rem;
  }

  .footer__azs {
    align-items: flex-start;
    max-width: 583px;
  }
}

@media (max-width: 1024px) {

  .header__nav {
    flex-grow: 0;
  }

  .header__toggle-btn {
    padding: 1rem 1.5rem;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-blue);
  }

  .header__overflow-nav li {
    padding: 0;
  }

  .header__overflow-nav li:not(:last-child) {
    margin-bottom: 2.5rem;
  }

  main {
    max-width: 633px;
    padding-top: 0;
  }
}

@media (max-width: 1023px) {
  .intro__content {
    position: relative;
    flex-direction: column;
    height: auto;
  }

  .intro__info {
    position: absolute;
    right: 0;
    bottom: -4.6rem;
    left: 0;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-dark-blue);
  }

  .intro__info,
  .intro__image {
    width: auto;
  }

  .intro__info-row {
    padding: 3.8rem 3.5rem;
  }

  .intro__heading {
    margin-bottom: 1rem;
  }

  .intro__text {
    margin-bottom: 2.5rem;
  }

  .intro__see-more {
    text-align: center;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .swiper-pagination {
    margin-top: 8.6rem;
  }

  .entry-promo {
    margin: 3rem auto;
    padding: 3rem 3.65rem 4.6rem;
  }

  .entry-promo__caption {
    margin-bottom: 4.5rem;
  }

  .entry-promo__list {
    margin-bottom: 6rem;
  }

  .entry-promo__action {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 2rem;
  }

  .primary-content__row {
    display: block;
  }

  #breadcrumbs {
    width: calc(100% - 40px);
    background: linear-gradient(89.96deg, #012F5D 3.59%, #82ACD4 99.94%);
  }

  #breadcrumbs span {
    color: var(--color-white);
  }

  .header {
    height: 74px;
  }

  .header,
  .header.sticky {
    padding: 1.5rem 0;
  }

  .logo__img {
    width: 114px;
  }

  .p-plus--is-showing-overflow .header__toggle-btn .text {
    display: none;
  }

  .p-plus--is-showing-overflow .header__toggle-btn .close-icon {
    display: flex;
    align-items: center;
    height: 24px;
  }

  .header__overflow-nav {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 9999;
    width: 285px;
    height: 100%;
    overflow-y: auto;
    transition: left 0.3s ease 0s;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    box-shadow: none;
    /* background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px); */
  }

  .header.sticky .header__overflow-nav {
    top: 0;
  }

  .p-plus--is-showing-overflow .header__overflow-nav {
    left: calc(100% - 285px);

  }

  .mobile-overlay {
    position: fixed;
    top: 7.4rem;
    right: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transition: left 0.3s ease 0s;
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
    opacity: 1;
    visibility: visible;
  }

  .p-plus--is-showing-overflow .mobile-overlay {
    left: 0;

  }

  .header__toggle-btn {
    text-transform: capitalize;
  }

  .header__cta-button {
    display: none;
  }

  .intro .container {
    padding: 0;
  }

  .intro__info {
    position: static;
    max-width: 100%;
  }

  .intro__info-row {
    padding: 2.5rem 2rem 2rem;
  }

  .intro__heading {
    font-size: 1.6rem;
    line-height: 2.1rem;
  }

  .intro__text {
    font-size: 1.3rem;
    line-height: 1.9rem;
  }

  .intro__image img {
    min-height: 200px;
  }

  .swiper-pagination {
    margin-top: 2.6rem;
  }

  .primary-content {
    margin-top: 3rem;
    padding: 0 2rem;
  }

  .entry-promo {
    padding: 3rem 3.3rem;
  }

  .entry-promo__caption {
    margin-bottom: 3rem;
  }

  .entry-promo__list {
    margin-bottom: 3rem;
  }

  #respond {
    padding: 2.5rem 2rem;
    padding-bottom: 0;
    margin-right: -2rem;
    margin-left: -2rem;
    background-color: var(--color-white);
    border-radius: 0;
  }

  .footer {
    padding: 3rem 0 8rem;
  }

  .footer__container {
    padding: 0 2rem;
  }

  .footer__menu {
    -moz-columns: 1;
    columns: 1;
  }

  .footer__menu li:nth-child(6) {
    margin-bottom: 3rem;
  }

  .footer__azs {
    flex-direction: column;
    gap: 2rem;
  }

  .mobile-cta {
    display: block;
  }
}

@media (max-width: 340px) {
  .mobile-cta {
    max-width: 300px;
  }

  .mobile-cta__button {
    padding: 1.5rem 1.6rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header__overflow-nav {
    top: 4.4rem;
    left: 50%;
    width: 285px;
    transform: scale(0.8) translateX(-50%);
  }

  .p-plus--is-showing-overflow .header__overflow-nav {
    transform: scale(1) translateX(-50%);
  }
}