@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  src: url('../fonts/Montserrat-Light.woff2') format('woff2'), url('../fonts/Montserrat-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
      url('../fonts/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
      url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

:root {
  --c-dark: #1e1e1e;
  --c-white: #fff;
  --c-blue: #14a0ff;
  --c-dark-blue: #0181d9;
  --gradient-1: linear-gradient(270deg, #60c79b 0%, #14a0ff 46.88%, #214498 100%);
  --gradient-2: linear-gradient(270deg, #35b892 0%, #14a0ff 46.88%, #5f4ddb 100%);
  --c-grey: #f5f5f5;
  --c-middle-grey: #848484;
  --c-light-grey: #c7c7c7;
  --c-menu: #000762;
  --c-white-10: rgba(255, 255, 255, 0.1);
  --c-white-30: rgba(255, 255, 255, 0.3);
  --btn-br: 2rem;
  --font-montserrat: 'Montserrat', sans-serif;
}

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

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

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

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

ul li,
ol li {
  list-style-position: inside;
}

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

input,
textarea {
  padding: 0.7rem 1.2rem;
  font-family: var(--font-montserrat);
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--dark);
  border: 1px solid var(--c-light-grey);
  border-radius: 3px;
  outline: none;
}

button {
  all: unset;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-montserrat);
  font-size: 1.6rem;
  line-height: 150%;
  font-weight: 500;
  color: var(--c-white);
  text-decoration: none;
  text-align: center;
  background-color: var(--c-dark-blue);
  border-radius: var(--btn-br);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--c-blue);
}

.btn--transparent {
  color: var(--c-white);
  background-color: var(--c-white-10);
  -webkit-box-shadow: 0 0 0 1px var(--c-white);
  box-shadow: 0 0 0 1px var(--c-white);
}

.btn--transparent:hover {
  color: var(--c-menu);
  background-color: var(--c-white);
}

.btn--white {
  color: var(--c-menu);
  background-color: var(--c-white);
  -webkit-box-shadow: 0 0 0 1px var(--c-white);
  box-shadow: 0 0 0 1px var(--c-white);
}

.btn--white:hover {
  color: var(--c-white);
  background-color: var(--c-white-10);
}

.btn--gradiented {
  background-image: var(--gradient-1);
  background-size: 100% 100%;
}

.btn--gradiented:hover {
  background-size: 250% 100%;
}

a:not([class]) {
  color: var(--c-blue);
}

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

.container {
  max-width: 1338px;
  margin: 0 auto;
  padding: 0 30px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  font-family: var(--font-montserrat);
  font-weight: 400;
  line-height: 150%;
  color: var(--c-dark);
  clear: both;
}

a {
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: transparent;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

.header--sticky {
  background: rgba(255, 255, 255, 0.1);
}

.header.container {
  position: relative;
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.45rem 0;
}

.header__nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 5rem;
  text-align: center;
  background-color: var(--c-grey);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__nav-mobile--active {
  opacity: 1;
  visibility: visible;
}

.header__cta {
  width: 270px;
  padding: 1rem 2rem;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 200px;
  flex-basis: 200px;
}

.logo img {
  width: 141px;
  height: 30px;
}

.menu-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle--active .menu-toggle__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-toggle--active .menu-toggle__open {
  display: none;
}

.menu li:not(:last-child) {
  margin-bottom: 2rem;
}

.menu li.current-menu-item a {
  color: var(--c-dark-blue);
}

.menu a {
  font-size: 1.6rem;
  line-height: 150%;
  font-weight: 500;
  color: var(--c-menu);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu a:hover {
  color: var(--c-dark-blue);
  text-decoration: none;
}

.image-banner,
.page-banner {
  position: relative;
  margin-bottom: 5rem;
}

.image-banner picture,
.page-banner picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.image-banner__btn {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.05rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--c-white);
  background: var(--c-white-30);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.image-banner__row:hover .image-banner__btn {
  background-color: var(--c-dark);
}

.page-banner {
  max-height: 250px;
}

.page-banner__row {
  position: relative;
  z-index: 2;
}

.page-banner__row::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: var(--gradient-1);
  opacity: 0.3;
}

.site-content {
  position: relative;
}

.site-content__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 4rem 0;
}

.sidebar__row {
  position: sticky;
  top: 11.3rem;
}

.sidebar--left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 158px;
  flex: 0 0 158px;
  margin-right: 8.5rem;
}

.sidebar--right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 270px;
  flex: 0 0 270px;
  margin-left: 6.5rem;
}

.entry-content__btn {
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 1rem 4.95rem;
  margin: 3rem auto 4rem;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  max-width: 700px;
}

.no-webp .side-cta {
  background-image: url(../img/background/side-cta.jpg);
}

.side-cta {
  background-position: center;
  background-size: cover;
  padding: 4rem 4rem 4.6rem;
  border-radius: 0 2rem 2rem 0;
}

.side-cta__caption {
  margin-bottom: 3rem;
  font-size: 2.8rem;
  line-height: 150%;
  font-weight: 500;
  color: var(--c-white);
}

.side-cta__btn {
  width: 100%;
  padding: 1.3rem 2rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

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

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

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

iframe {
  max-width: 100%;
}

.entry-content li:not(:last-child) {
  margin-bottom: 1rem;
}

.no-webp .prm-box {
  background-image: url(../img/background/side-cta.jpg);
}

.prm-box {
  margin: 3rem 0;
  padding: 5rem 7rem 5.5rem;
  color: var(--c-white);
  background-color: var(--c-menu);
  background-position: center;
  background-size: cover;
  border-radius: 2rem;
}

.prm-box__title {
  margin-bottom: 3rem;
  font-size: 2.4rem;
  line-height: 150%;
  font-weight: 500;
  color: var(--c-white);
}

.prm-box__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
}

.prm-box__code {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  padding: 0.7rem 1.7rem;
  font-size: 2rem;
  line-height: 150%;
  font-weight: 500;
  text-align: center;
  color: var(--c-white);
  border: 3px dashed var(--c-blue);
  border-radius: 2rem;
}

.prm-box__btn {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: 500;
}

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

.comments-title {
  margin-bottom: 3rem;
  font-size: 2.8rem;
  text-transform: uppercase;
  text-align: center;
}

.comment {
  margin: 3rem 0;
}

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

.comment-author {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  line-height: 150%;
  font-weight: 500;
}

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

.comment-author b.fn {
  font-weight: 600;
}

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

.comment-content p {
  margin: 1.5rem 0;
}

.comment-reply-link {
  position: relative;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-blue);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}

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

.comment-respond {
  margin-top: 3rem;
  padding: 4.5rem 6rem;
  background-color: var(--c-white);
  border-radius: 0.5rem;
}

.comment-reply-title {
  margin-bottom: 1rem;
  font-size: 2.8rem;
  line-height: 150%;
  font-weight: 500;
  color: var(--c-dark);
}

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

.comment-notes {
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
  line-height: 150%;
}

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

.comment-form textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
  background-color: var(--c-white);
}

.comment-form input[name='author'],
.comment-form input[name='email'] {
  width: 320px;
  max-width: 100%;
  margin-bottom: 2rem;
  background-color: var(--c-white);
}

.comment-form textarea::-webkit-input-placeholder,
.comment-form input[name='author']::-webkit-input-placeholder,
.comment-form input[name='email']::-webkit-input-placeholder {
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--c--middle-grey);
}

.comment-form textarea::-moz-placeholder,
.comment-form input[name='author']::-moz-placeholder,
.comment-form input[name='email']::-moz-placeholder {
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--c--middle-grey);
}

.comment-form textarea:-ms-input-placeholder,
.comment-form input[name='author']:-ms-input-placeholder,
.comment-form input[name='email']:-ms-input-placeholder {
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--c--middle-grey);
}

.comment-form textarea::-ms-input-placeholder,
.comment-form input[name='author']::-ms-input-placeholder,
.comment-form input[name='email']::-ms-input-placeholder {
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--c--middle-grey);
}

.comment-form textarea::placeholder,
.comment-form input[name='author']::placeholder,
.comment-form input[name='email']::placeholder {
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--c--middle-grey);
}

.success-comment {
  display: none;
  /* position: fixed;
  top: 6rem; */
  /* left: 0; */
  /* z-index: 999; */
  margin-top: 2rem;
  color: var(--c-menu);
  padding: 1.5rem 2rem;
  background-color: var(--c-white);
  border-radius: 0.5rem;
  /* background: var(--c-white-30);
  backdrop-filter: blur(7.5rem); */
  /* border-radius: .5rem; */
  /* max-width: 500px;
  left: 50%;
  transform: translateX(-50%); */
}

#aiowps-captcha-answer {
  width: 206px;
}

.aiowps-captcha-equation > strong {
  font-weight: 400;
}

.form-submit {
  margin: 3.5rem 0 0;
}

.btn-submit {
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  padding: 1.4rem 3.4rem;
  color: var(--c-dark);
  background: var(--c-white);
  -webkit-box-shadow: 0 0 0 1px #000762;
  box-shadow: 0 0 0 1px #000762;
  border-radius: 5px;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
}

.btn-submit:hover {
  color: var(--c-white);
  -webkit-box-shadow: 0 0 0 1px var(--c-blue);
  box-shadow: 0 0 0 1px var(--c-blue);
}

.footer {
  position: relative;
  padding: 6rem 0;
  background-color: var(--c-dark);
}

.footer__container {
  max-width: 800px;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.azs-logo {
  display: flex;
  width: max-content;
  margin-bottom: 3rem;
}

.footer__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 3rem;
  color: var(--c-white);
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__copyright {
  font-size: 1.6rem;
  line-height: 140%;
  font-weight: 400;
  color: var(--c-white);
}

.footer__copyright a {
  color: var(--c-white);
  text-decoration: underline;
}

.footer__copyright a:hover {
  text-decoration: none;
}

.scroll-up {
  position: fixed;
  bottom: 0;
  right: 2rem;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #435059;
  border-radius: 1rem 1rem 0 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.scroll-up--active {
  opacity: 1;
  visibility: visible;
}

.scroll-up img {
  width: 20px;
  height: 20px;
}

.home .mobile-cta {
  opacity: 0;
  visibility: hidden;
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  z-index: 99;
  width: 100%;
  background: var(--gradient-2);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.home .mobile-cta--active {
  opacity: 1;
  visibility: visible;
}

.mobile-cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.1rem 2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  color: var(--c-white);
  text-align: center;
  border-radius: 0;
}

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

.error404 .site-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.btn-404 {
  display: block;
  max-width: 270px;
  margin: 3rem auto 0;
}

@media (min-width: 1024px) {
  .mobile-cta {
      display: none;
  }
}

@media (min-width: 1025px) {
  .header__nav-mobile {
      display: none;
  }

  .header__toggle {
      display: none;
  }
}

@media (max-width: 1199px) {
  .sidebar--right {
      display: none;
  }
}

@media (max-width: 1024px) {
  .header__cta {
      width: 200px;
  }

  .logo img {
      width: 117.5px;
      height: 25px;
  }

  .site-content__row {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
  }

  .sidebar--left {
      display: none;
  }

  .footer {
      padding: 5rem 0 11rem;
  }

  .scroll-up {
      bottom: 6.2rem;
      right: 0;
      background: rgba(67, 80, 89, 0.4);
      border-radius: 1rem 0 0 1rem;
  }
}

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

  .header__nav-mobile {
      height: 100vh;
      padding: 2rem;
  }

  .header__cta {
      display: none;
  }

  .image-banner,
  .page-banner {
      margin-bottom: 2.5rem;
  }

  .site-content__row {
      padding: 0 0 3rem;
  }

  .entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5 {
      font-size: 2.4rem;
  }

  .entry-content__btn {
      margin: 3rem auto 2.5rem;
      padding: 1rem 2.95rem;
  }

  .prm-box {
      padding: 5rem 3.5rem;
  }

  .prm-box__title {
      font-size: 2rem;
  }

  .prm-box__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }

  .prm-box__code {
      width: 250px;
  }

  .prm-box__btn {
      width: 250px;
  }

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

  .comments-title {
      font-size: 2.4rem;
  }

  .comment-respond {
      width: calc(100% + 4rem);
      margin-left: -2rem;
      padding: 3rem 2rem 3.5rem;
      border-radius: 0;
  }

  .comment-reply-title {
      margin-bottom: 2rem;
      font-size: 2.4rem;
      font-weight: 400;
  }

  .comment-form input[name='author'],
  .comment-form input[name='email'] {
      width: 100%;
  }

  .success-comment {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    border-radius: 0;
  }

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

  .footer__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
  }

  .footer__right {
      margin-top: 50px;
  }

  .mobile-cta__btn {
      padding: 1.4rem 2rem;
      font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .image-banner,
  .page-banner {
      width: calc(100% + 4rem);
      margin-left: -2rem;
  }

  .image-banner__img {
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover;
  }
}

@media (max-width: 359px) {
  .prm-box {
      padding: 3rem 2rem;
  }
}

.webp .side-cta {
  background-image: url(../img/background/side-cta.webp);
}

.webp .prm-box {
  background-image: url(../img/background/side-cta.webp);
}


@supports not (backdrop-filter: blur(1rem)) {
  .header--sticky {
    background: var(--c-white);
  }
}