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

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

html {
  font-family: sans-serif;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.page {
  overflow: hidden;
  min-height: 100vh;
  padding-top: 8rem;
  background: #fff;
  background-size: cover;
}
@media only screen and (min-width: 991px) {
  .page {
    padding-top: 12rem;
  }
}
.page.locked {
  height: 100vh;
  width: 100vw;
}

.content {
  position: relative;
  z-index: 101;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 117rem;
  padding: 0 1.5rem;
}
@media only screen and (min-width: 1500px) {
  .container {
    max-width: 143rem;
  }
}

.footer-padding {
  padding-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .footer-padding {
    padding-bottom: 7rem;
  }
}

ul {
  list-style: none;
}

li {
  position: relative;
  margin: 0 0 0.5rem 0;
  padding: 0 0 0 2.5rem;
}
li::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  background: #e62020;
  border-radius: 50%;
}

.footer {
  position: relative;
  background: #0f2a59;
}

.footer-content {
  padding: 3rem 0;
}
@media only screen and (min-width: 768px) {
  .footer-content {
    column-gap: 4rem;
  }
}
@media only screen and (min-width: 991px) {
  .footer-content {
    column-gap: 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-content {
    column-gap: 10rem;
  }
}
@media only screen and (min-width: 768px) {
  .footer-content {
    padding: 6rem 0 1rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-content {
    padding: 8rem 0 3rem 0;
  }
}
.footer-content__info {
  flex: 1.8;
  padding-bottom: 4rem;
}
.footer-content__logo {
  margin-bottom: 3.4rem;
}
.footer-content__logo img {
  max-height: 5.5rem;
}
.footer-content__text {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05rem;
}
.footer-content__contact {
  flex: 1.5;
  padding-bottom: 4rem;
}
.footer-content__links {
  flex: 1;
  padding-bottom: 4rem;
}
.footer-content__title {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  margin-bottom: 3.4rem;
}
.footer-content__title span {
  position: relative;
}
.footer-content__title span::before {
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  height: 0.3rem;
  background: #e62020;
}
.footer-content__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-content__menu li {
  margin: 0;
  padding: 0 0 2rem 0;
}
.footer-content__menu li:before {
  display: none;
}
.footer-content__menu li a {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  transition: 0.3s;
  letter-spacing: 0.05rem;
  text-decoration: none;
}
.footer-content__menu li a:hover {
  color: #e62020;
}
.footer-content__contact-btn .contact-button {
  max-width: 33rem;
}
@media only screen and (min-width: 768px) {
  .footer-content {
    display: flex;
  }
}

.copyright {
  padding: 1.5rem;
  background: #ffffff;
  text-align: center;
  color: #4f4f4f;
  font-weight: 400;
  font-size: 1.4rem;
}
.copyright a {
  text-decoration: none;
  color: inherit;
}
.copyright img {
  transform: translateY(2px);
}

.btn, .pagination__btn, .form-submit-button, .info-panel__btn, .header-button {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  padding: 1rem 2.5rem;
  appearance: none;
  display: inline-block;
  transition: 0.3s;
  color: #4f4f4f;
  border-radius: 0 !important;
  letter-spacing: 0.05rem;
  line-height: 1;
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .btn, .pagination__btn, .form-submit-button, .info-panel__btn, .header-button {
    padding: 1.5rem 3.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .btn, .pagination__btn, .form-submit-button, .info-panel__btn, .header-button {
    padding: 1.8rem 5.5rem;
  }
}
.btn:hover, .pagination__btn:hover, .form-submit-button:hover, .info-panel__btn:hover, .header-button:hover {
  color: #e62020;
  text-decoration: none;
}
.btn:disabled, .pagination__btn:disabled, .form-submit-button:disabled, .info-panel__btn:disabled, .header-button:disabled {
  cursor: default;
  filter: grayscale(100%);
  pointer-events: none;
  opacity: 0.5;
}

.btn-primary, .pagination__btn, .form-submit-button, .info-panel__btn, .header-button {
  background: #e62020 !important;
  color: #ffffff !important;
}
.btn-primary:hover, .pagination__btn:hover, .form-submit-button:hover, .info-panel__btn:hover, .header-button:hover {
  background: #1e4c76 !important;
  color: #ffffff !important;
}

.contact-button {
  display: flex;
  flex-wrap: wrap;
  min-height: 4.8rem;
  background: #31474a;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}
.contact-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  background: #e62020;
}
.contact-button__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  white-space: nowrap;
  color: inherit;
  font-size: 1.6rem;
  font-weight: 400;
}
.contact-button:hover {
  background: #ffffff;
  color: #0f2a59;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0;
  width: 100%;
  background: #fff;
}
.header .header-main {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
}
@media only screen and (min-width: 991px) {
  .header .header-main {
    padding: 3.1rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .header .header-main {
    row-gap: 2rem;
  }
}
.header .header-main__left {
  display: flex;
  align-items: center;
}
.header .header-main__right {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.header-logo img {
  max-height: 5.5rem;
}

@media only screen and (max-width: 767px) {
  .header-button {
    display: table;
    margin: 0 auto;
  }
}

.header-toggle {
  border: none;
  outline: none !important;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none !important;
  padding: 0 1.2rem;
  margin: 0 0 0 2.5rem;
  display: flex;
  align-items: center;
  background: transparent;
  position: relative;
  transition: 0.3s;
  height: 3.6rem;
  border-radius: 0;
  background: #e62020;
}
@media only screen and (min-width: 550px) {
  .header-toggle {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .header-toggle {
    display: none;
  }
}
.header-toggle__label {
  margin: 0 0 0 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #ffffff;
  text-transform: uppercase;
  min-width: 5.3rem;
  display: none;
}
@media only screen and (min-width: 550px) {
  .header-toggle__label {
    display: block;
  }
}
.header-toggle__label .toggle-lbl-1 {
  display: block;
}
.header-toggle__label .toggle-lbl-2 {
  display: none;
}
.header-toggle__label.open .toggle-lbl-1 {
  display: none;
}
.header-toggle__label.open .toggle-lbl-2 {
  display: block;
}
.header-toggle__icon {
  position: relative;
  height: 1rem;
  width: 1.2rem;
}
.header-toggle__icon span {
  display: block;
  position: absolute;
  height: 0.2rem;
  width: 1.2rem;
  background: #ffffff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  pointer-events: none;
}
.header-toggle__icon span:nth-child(1) {
  top: 0rem;
}
.header-toggle__icon span:nth-child(2) {
  top: 0.4rem;
}
.header-toggle__icon span:nth-child(3) {
  top: 0.4rem;
}
.header-toggle__icon span:nth-child(4) {
  top: 0.8rem;
}
.header-toggle__icon.open span:nth-child(1) {
  top: 0rem;
  width: 0%;
  left: 50%;
}
.header-toggle__icon.open span:nth-child(2) {
  transform: rotate(45deg);
}
.header-toggle__icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.header-toggle__icon.open span:nth-child(4) {
  top: 0rem;
  width: 0%;
  left: 50%;
}

.section-title, .article-wrapper h2, .partners-wrapper__title, .news-wrapper__title, .about-wrapper__title {
  font-size: 2.8rem;
  margin: 0;
  padding: 0;
  color: #0f2a59;
  letter-spacing: 0.05rem;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .section-title, .article-wrapper h2, .partners-wrapper__title, .news-wrapper__title, .about-wrapper__title {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .section-title, .article-wrapper h2, .partners-wrapper__title, .news-wrapper__title, .about-wrapper__title {
    font-size: 4.2rem;
  }
}

.section-text, .contact-box, .map__content, .contact-item, .form-default, .article-wrapper, .about-wrapper__left {
  margin: 0;
  padding: 0;
  color: #4f4f4f;
  letter-spacing: 0.05rem;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
}

.section-list, .article-wrapper > ul, .article-li, .about-points-box__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.section-list li, .article-wrapper > ul li, .article-li li, .about-points-box__list li {
  position: relative;
  margin: 0 0 0.5rem 0;
  padding: 0 0 0 2.5rem;
}
.section-list li::before, .article-wrapper > ul li::before, .article-li li::before, .about-points-box__list li::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  background: #e62020;
  border-radius: 50%;
}

.blue-box {
  background-color: #0f2a59;
  color: white;
  padding: 4rem;
  position: relative;
  margin-top: 32px;
}
.blue-box br {
  margin: 2rem 0;
}
.blue-box p:last-child {
  margin: 0;
}
.blue-box img {
  opacity: 20%;
  width: 12%;
  height: 12%;
  position: absolute;
  right: 0;
  top: 0;
  margin: 2rem 2rem 0 2rem;
}
.blue-box__header {
  font-size: 18px;
  width: 80%;
  padding: 0 1rem 2rem 1rem;
}
.blue-box__content {
  padding: 0 1rem;
  font-size: 16px;
}

@media only screen and (min-width: 768px) {
  .about-wrapper {
    column-gap: 4rem;
  }
}
@media only screen and (min-width: 991px) {
  .about-wrapper {
    column-gap: 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-wrapper {
    column-gap: 9rem;
  }
}
@media only screen and (min-width: 768px) {
  .about-wrapper {
    display: flex;
  }
}
.about-wrapper__left {
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .about-wrapper__left {
    padding-top: 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-wrapper__left {
    padding-top: 10rem;
  }
}
.about-wrapper__left strong {
  color: #e62020;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .about-wrapper__left {
    flex: 1;
  }
}
.about-wrapper__right {
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .about-wrapper__right {
    padding-top: 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-wrapper__right {
    padding-top: 10rem;
  }
}
@media only screen and (min-width: 768px) {
  .about-wrapper__right {
    flex: 1;
  }
}
.about-wrapper__title strong {
  font-weight: 700;
}
.about-wrapper__arrow {
  padding-top: 2rem;
  padding-bottom: 3rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .about-wrapper__arrow {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-wrapper__arrow {
    padding-bottom: 9rem;
  }
}
.about-wrapper__arrow img {
  max-width: 8rem;
}
@media only screen and (min-width: 768px) {
  .about-wrapper__arrow img {
    max-width: 12rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-wrapper__arrow img {
    max-width: 100%;
  }
}

.about-points-box {
  padding: 2rem 2.5rem;
  background: #dcddde;
  color: #4f4f4f;
  letter-spacing: 0.05rem;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .about-points-box {
    padding: 3rem 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .about-points-box {
    padding: 5.5rem 6.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .about-points-box {
    font-size: 1.8rem;
  }
}
.about-points-box__title {
  color: #0f2a59;
  font-weight: 600;
  font-size: 2.2rem;
}
.about-points-box__title strong {
  color: #e62020;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .about-points-box__title {
    font-size: 2.8rem;
  }
}
.about-points-box__list {
  margin-top: 4rem;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-intro {
  padding: 6rem 0 3rem 0;
}
@media only screen and (min-width: 768px) {
  .section-intro {
    padding: 11rem 0 18rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .section-intro {
    padding: 17rem 0 25rem 0;
  }
}

.section-header {
  padding: 4rem 0;
  background: #0f2a59 url("../images/header-intro-background.jpg") no-repeat center center;
  background-size: cover;
}

.intro-caption {
  font-size: 2.8rem;
  color: #ffffff;
  font-weight: 700;
}
@media only screen and (min-width: 550px) {
  .intro-caption {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .intro-caption {
    font-size: 4.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-caption {
    font-size: 5.6rem;
  }
}
.intro-caption strong {
  color: #e62020;
}

.intro-scroller {
  padding-top: 3rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .intro-scroller {
    padding-top: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .intro-scroller {
    padding-top: 6rem;
  }
}

.intro-scroll-button {
  cursor: pointer;
  position: relative;
  appearance: none;
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  animation: fadeInDown 3s infinite;
}

.map-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0rem;
}
@media only screen and (min-width: 768px) {
  .map-wrapper {
    margin-top: -14rem;
  }
}
@media only screen and (min-width: 1200px) {
  .map-wrapper {
    margin-top: -20rem;
  }
}

.map-box {
  position: relative;
  z-index: 10;
  max-width: 80%;
  width: 100%;
  background: #fff;
  text-align: center;
}
.map-box__image {
  background: #fff;
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .map-box__image {
    padding-top: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .map-box__image {
    padding-top: 6rem;
  }
}
.map-box__image img {
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .map-box::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -1.5rem;
    left: -1.5rem;
    width: calc(100% + 3rem);
    height: 15.5rem;
    background: #0f2a59;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1200px) {
  .map-box::before {
    top: -3rem;
    left: -3rem;
    width: calc(100% + 6rem);
    height: 23rem;
  }
}

.section-info-panel {
  padding-top: 4rem;
}
@media only screen and (min-width: 768px) {
  .section-info-panel {
    padding-top: 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .section-info-panel {
    padding-top: 12rem;
  }
}

.info-panel {
  padding: 1.5rem 2rem;
  background: #0f2a59 url("../images/header-intro-background.jpg") no-repeat center center;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .info-panel {
    padding: 3rem 3.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .info-panel {
    padding: 4.5rem 10rem 4.5rem 5.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .info-panel {
    column-gap: 4rem;
  }
}
@media only screen and (min-width: 991px) {
  .info-panel {
    column-gap: 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .info-panel {
    column-gap: 10rem;
  }
}
@media only screen and (min-width: 768px) {
  .info-panel {
    display: flex;
    align-items: center;
  }
}
.info-panel__content {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05rem;
}
@media only screen and (min-width: 991px) {
  .info-panel__content {
    font-size: 2rem;
  }
}
.info-panel__content strong {
  color: #e62020;
}
.info-panel__controls {
  padding-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .info-panel__controls {
    padding-top: 0;
  }
}
.info-panel__btn {
  white-space: nowrap;
}
.info-panel__btn:hover {
  background: #ffffff !important;
  color: #e62020 !important;
}

.news-link-columns-sizing, .news-link {
  display: flex;
  flex-wrap: wrap;
}
.news-link-columns-sizing .news-link__category, .news-link .news-link__category {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .news-link-columns-sizing .news-link__category, .news-link .news-link__category {
    width: 20rem;
    padding-right: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .news-link-columns-sizing .news-link__category, .news-link .news-link__category {
    width: 30rem;
  }
}
.news-link-columns-sizing .news-link__title, .news-link .news-link__title {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .news-link-columns-sizing .news-link__title, .news-link .news-link__title {
    width: calc(100% - 20rem);
  }
}
@media only screen and (min-width: 1200px) {
  .news-link-columns-sizing .news-link__title, .news-link .news-link__title {
    width: calc(100% - 30rem);
  }
}

.news-wrapper {
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .news-wrapper {
    padding-top: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .news-wrapper {
    padding-top: 10rem;
  }
}
.news-wrapper__title {
  padding-bottom: 3rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .news-wrapper__title {
    padding-bottom: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .news-wrapper__title {
    padding-bottom: 7rem;
  }
}

.news-list {
  padding-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .news-list {
    padding-bottom: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .news-list {
    padding-bottom: 7rem;
  }
}
.news-list__item {
  margin-bottom: 1.5rem;
}

.news-actions {
  text-align: center;
}
.news-actions a {
  transition: 0.3s;
  font-size: 1.6rem;
  letter-spacing: 0.05rem;
  color: #e62020;
  text-decoration: underline;
}
.news-actions a:hover {
  color: #0f2a59;
}

.news-link {
  text-decoration: none;
  font-size: 1.6rem;
  letter-spacing: 0.05rem;
  line-height: 1.4;
}
.news-link__category {
  color: #0f2a59;
  font-weight: 600;
  text-transform: uppercase;
}
.news-link__title {
  color: #e62020;
  font-weight: 400;
}
.news-link:hover .news-link__title {
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .news-link {
    font-size: 1.8rem;
  }
}

.pagination--news {
  padding-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .pagination--news {
    padding-bottom: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .pagination--news {
    padding-bottom: 7rem;
  }
}

.partners-wrapper {
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .partners-wrapper {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-wrapper {
    padding-top: 10rem;
    padding-bottom: 7rem;
  }
}
.partners-wrapper__title {
  padding-bottom: 3rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .partners-wrapper__title {
    padding-bottom: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-wrapper__title {
    padding-bottom: 7rem;
  }
}
.partners-wrapper__text {
  padding-bottom: 4rem;
  text-align: center;
  color: #4f4f4f;
  letter-spacing: 0.05rem;
  line-height: 1.4;
  font-weight: 400;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .partners-wrapper__text {
    padding-bottom: 7rem;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-wrapper__text {
    padding-bottom: 13rem;
  }
}
.partners-wrapper__text a {
  transition: 0.3s;
  color: #e62020;
}
.partners-wrapper__text a:hover {
  color: #0f2a59;
}

.partners-list__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 3rem;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .partners-list__group {
    row-gap: 4.5rem;
    margin-bottom: 4.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-list__group {
    row-gap: 7rem;
    margin-bottom: 7rem;
  }
}
.partners-list__group--s {
  column-gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .partners-list__group--s {
    column-gap: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-list__group--s {
    column-gap: 6.5rem;
  }
}
.partners-list__group--s .partners-item img {
  max-height: 3rem;
  max-width: 7rem;
}
@media only screen and (min-width: 768px) {
  .partners-list__group--s .partners-item img {
    max-height: 4rem;
    max-width: 10rem;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-list__group--s .partners-item img {
    max-height: 6.7rem;
    max-width: 10rem;
  }
}
.partners-list__group--m {
  column-gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .partners-list__group--m {
    column-gap: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-list__group--m {
    column-gap: 8.5rem;
  }
}
.partners-list__group--m .partners-item img {
  max-height: 4rem;
  max-width: 10rem;
}
@media only screen and (min-width: 768px) {
  .partners-list__group--m .partners-item img {
    max-height: 5rem;
    max-width: 12rem;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-list__group--m .partners-item img {
    max-height: 10rem;
    max-width: 15rem;
  }
}
.partners-list__group--l {
  column-gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .partners-list__group--l {
    column-gap: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-list__group--l {
    column-gap: 8.5rem;
  }
}
.partners-list__group--l .partners-item img {
  max-height: 5rem;
  max-width: 12rem;
}
@media only screen and (min-width: 768px) {
  .partners-list__group--l .partners-item img {
    max-height: 7rem;
    max-width: 15rem;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-list__group--l .partners-item img {
    max-height: 12rem;
    max-width: 20rem;
  }
}
.partners-list__group--xl {
  column-gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .partners-list__group--xl {
    column-gap: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-list__group--xl {
    column-gap: 8.5rem;
  }
}
.partners-list__group--xl .partners-item img {
  max-height: 7rem;
  max-width: 15rem;
}
@media only screen and (min-width: 768px) {
  .partners-list__group--xl .partners-item img {
    max-height: 11rem;
    max-width: 20rem;
  }
}
@media only screen and (min-width: 1200px) {
  .partners-list__group--xl .partners-item img {
    max-height: 15rem;
    max-width: 25rem;
  }
}

.partners-item {
  transition: 0.3s;
}
.partners-item img {
  max-height: 15rem;
  max-width: 25rem;
}
.partners-item:hover {
  transform: scale(1.1);
}

.article-wrapper {
  padding: 3rem 0;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .article-wrapper {
    padding: 4rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .article-wrapper {
    padding: 6rem 0;
  }
}
@media only screen and (min-width: 550px) {
  .article-wrapper {
    max-width: 81rem;
  }
}
.article-wrapper h2 strong,
.article-wrapper h3 strong,
.article-wrapper h4 strong {
  font-weight: 700;
}
.article-wrapper h3 {
  color: #0f2a59;
  font-weight: 600;
  font-size: 2.2rem;
}
.article-wrapper h3 strong {
  color: #e62020;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .article-wrapper h3 {
    font-size: 2.8rem;
  }
}
.article-wrapper img {
  display: block;
  width: 100%;
  transition: 0.3s;
  border-radius: 0;
}
.article-wrapper a {
  color: #e62020;
}
.article-wrapper a:hover {
  text-decoration: none;
}
.article-wrapper > ul {
  margin: 3rem 0;
}
.article-wrapper > ul li::before {
  top: 0.6rem !important;
}

@media only screen and (min-width: 550px) {
  .article-wide-container {
    max-width: 102rem;
  }
}
@media only screen and (min-width: 1025px) {
  .article-wide-container {
    margin: 0 -10.5rem;
  }
}

.content-gallery {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 1.2rem);
  margin: 3rem -0.6rem 3rem -0.6rem;
}
@media only screen and (min-width: 991px) {
  .content-gallery {
    margin: 4.5rem -0.6rem 4.5rem -0.6rem;
  }
}
.content-gallery__item {
  width: 50%;
  padding: 0 0.6rem;
  margin: 0 0 1.2rem 0;
}
@media only screen and (min-width: 550px) {
  .content-gallery__item {
    width: 33.33%;
  }
}
@media only screen and (min-width: 991px) {
  .content-gallery__item {
    width: 25%;
  }
}
.content-gallery__item:hover img {
  opacity: 0.8;
}

.article-li {
  margin: 3rem 0;
}
.article-li li::before {
  top: 0.6rem !important;
}

.contact-section {
  padding: 0 0 3rem 0;
}
@media only screen and (min-width: 768px) {
  .contact-section {
    padding: 0 0 4rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-section {
    padding: 0 0 6rem 0;
  }
}

.contact-box {
  margin-top: 3rem;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 2px 24px 0 rgba(167, 182, 195, 0.25);
}
@media only screen and (min-width: 768px) {
  .contact-box {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-box {
    margin-top: 6rem;
  }
}
@media only screen and (min-width: 991px) {
  .contact-box {
    display: flex;
    flex-wrap: wrap;
  }
}
.contact-box__left {
  padding: 2rem;
  border-right: 0.1rem #dcddde solid;
}
@media only screen and (min-width: 768px) {
  .contact-box__left {
    padding: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-box__left {
    padding: 5rem;
  }
}
@media only screen and (min-width: 991px) {
  .contact-box__left {
    width: 50rem;
  }
}
.contact-box__right {
  padding: 2rem;
  flex: 1;
}
@media only screen and (min-width: 768px) {
  .contact-box__right {
    padding: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-box__right {
    padding: 5rem;
  }
}
@media only screen and (min-width: 991px) {
  .contact-box__right {
    width: 50rem;
  }
}
.contact-box__right h2 {
  color: #0f2a59;
  font-weight: 600;
  font-size: 2.2rem;
}
.contact-box__right h2 strong {
  color: #e62020;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .contact-box__right h2 {
    font-size: 2.8rem;
  }
}
.contact-box__item {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 3rem 0;
}
.contact-box__item a {
  display: flex;
  align-items: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.contact-box__item a:hover strong {
  color: #e62020;
}
.contact-box__item img {
  margin: 0 2rem 0 0;
}
.contact-box__item strong {
  display: block;
  font-weight: 600;
  font-size: 1.8rem;
  color: #0f2a59;
  transition: 0.3s;
}

.contact-box-person {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin: 0 0 4rem 0;
}
.contact-box-person__texts h2 {
  font-size: 1.6rem;
  color: #0f2a59;
}
@media only screen and (min-width: 768px) {
  .contact-box-person__texts h2 {
    font-size: 1.8rem;
  }
}
.contact-box-person__texts p {
  margin: 0;
  color: #4f4f4f;
}
.contact-box-person__texts p strong {
  color: #e62020;
}

.map {
  position: relative;
}
.map img,
.map iframe {
  width: 100%;
  display: block;
  box-shadow: 0 2px 24px 0 rgba(167, 182, 195, 0.25);
  border-radius: 0;
}
.map__frame {
  display: block;
}
@media (min-width: 768px) {
  .map__frame {
    padding: 0 0 0 17rem;
  }
}
.map__box {
  z-index: 10;
  border-radius: 0;
  box-shadow: 0 2px 24px 0 rgba(167, 182, 195, 0.25);
  background: #fff;
}
@media (min-width: 768px) {
  .map__box {
    position: absolute;
    top: 5rem;
    width: 35rem;
  }
}
.map__content {
  padding: 1.5rem 2rem;
}
@media only screen and (min-width: 768px) {
  .map__content {
    padding: 2rem 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .map__content {
    padding: 3rem 4rem;
  }
}
.map__content h3 {
  color: #0f2a59;
}
.map__content a {
  color: #e62020;
  text-decoration: underline;
}
.map__content a:hover {
  text-decoration: none;
}

.contact__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% + 2rem);
  margin: 0 -1rem;
}
@media only screen and (min-width: 991px) {
  .contact__cards {
    width: calc(100% + 4rem);
    margin: 0 -2rem;
  }
}
.contact__card {
  width: 100%;
  padding: 0 1rem 1.5rem 1rem;
}
@media only screen and (min-width: 768px) {
  .contact__card {
    width: 33.33%;
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 991px) {
  .contact__card {
    padding: 0 2rem;
  }
}

.contact-item {
  padding: 1.5rem 2rem;
  height: 100%;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(167, 182, 195, 0.25);
  border-radius: 0;
}
@media only screen and (min-width: 768px) {
  .contact-item {
    padding: 2rem 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-item {
    padding: 3rem 4rem;
  }
}
.contact-item__title {
  display: flex;
  width: 100%;
  font-weight: 600;
  font-size: 1.8rem;
  color: #0f2a59;
}
.contact-item__title img {
  margin: 0 1.5rem 0 0;
  width: 3rem;
}
.contact-item a {
  color: #e62020;
  text-decoration: underline;
}
.contact-item a:hover {
  text-decoration: none;
}
.contact-item strong {
  color: #e62020;
}

.required-indication {
  color: #e62020;
  font-weight: 700;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: calc(100% + 3rem);
  margin: 0 -1.5rem;
}
.form-row .form-field {
  padding: 0 1.5rem;
  width: 100%;
}
@media only screen and (min-width: 500px) {
  .form-row .form-field {
    width: 50%;
  }
}

.form-field {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1.5rem 0;
  padding: 0;
  width: 100%;
}
@media (min-width: 550px) {
  .form-field {
    margin: 0 0 2rem 0;
  }
}
.form-field a {
  color: inherit;
  text-decoration: underline;
}
.form-field a:hover {
  text-decoration: none;
}
.form-field__label {
  width: 100%;
  padding: 0 0 0.7rem 0;
  margin: 0;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.05rem;
  color: #4f4f4f;
}
.form-field__edit {
  width: 100%;
}
.form-field__textbox, .form-field__textarea {
  width: 100%;
  margin: 0;
  padding: 1rem 1rem;
  border: 0.1rem solid #dcddde;
  background: #fff;
  border-radius: 0;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.05rem;
}
.form-field__textbox[type=time], .form-field__textbox[type=date], .form-field__textarea[type=time], .form-field__textarea[type=date] {
  padding: 0.7rem 1rem;
}
.form-field__textbox::placeholder, .form-field__textarea::placeholder {
  color: #999;
}
.form-field__textbox:focus, .form-field__textarea:focus {
  box-shadow: 0 2px 24px 0 rgba(167, 182, 195, 0.25);
  border-color: #0f2a59;
}
.form-field__textbox.error, .form-field__textarea.error {
  border-color: #e62020;
  color: #e62020;
}
.form-field__textarea {
  resize: none;
  height: 12rem;
}

.form-info {
  text-align: right;
}
.form-info a {
  color: #e62020;
}
.form-info a:hover {
  text-decoration: none;
}

.form-footer {
  display: flex;
  justify-content: flex-end;
}

.contact-section-title {
  margin: 0 0 3rem 0;
  color: #0f2a59;
  font-weight: 600;
  font-size: 2.2rem;
  text-align: center;
}
.contact-section-title strong {
  color: #e62020;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .contact-section-title {
    font-size: 2.8rem;
  }
}

.wpcf7-form-control-wrap.your-message {
  width: 100% !important;
}

.wpcf7-spinner {
  opacity: 0;
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 1.8rem;
  font-weight: 300;
  color: black;
  text-align: center;
  padding: 1.5rem 0 !important;
}

@media only screen and (max-width: 767px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    padding-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .header-nav {
    display: flex !important;
    align-items: center;
  }
}
.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 1.5rem;
}
.header-nav ul li {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
}
@media only screen and (max-width: 767px) {
  .header-nav ul li {
    display: block !important;
    text-align: center;
  }
}
.header-nav ul li.current a {
  color: #e62020;
}
.header-nav ul li:before {
  display: none;
}
.header-nav ul li a {
  display: block;
  text-decoration: none;
  margin: 0;
  padding: 1rem 1.5rem;
  transition: 0.3s;
  color: #0f2a59;
  letter-spacing: 0.05rem;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .header-nav ul li a {
    font-size: 1.8rem;
  }
}
.header-nav ul li a:hover {
  color: #e62020;
}

.pagination {
  position: relative;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media only screen and (min-width: 550px) {
  .pagination {
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
.pagination__btn:disabled, .pagination__btn[disabled] {
  background: #dcddde !important;
  color: #4f4f4f !important;
  pointer-events: none !important;
}
.pagination__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.pagination__list li {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0;
}
.pagination a.pagination__item:hover {
  text-decoration: underline;
}
.pagination__item {
  position: relative;
  display: block;
  padding: 0 0.5rem;
  margin: 0;
  min-width: 4rem;
  line-height: 4rem;
  transition: 0.3s;
  background: transparent;
  border-radius: 0;
  text-align: center;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4f4f4f;
  text-decoration: none;
}
@media only screen and (min-width: 991px) {
  .pagination__item {
    min-width: 5.1rem;
    line-height: 5.1rem;
  }
}
.pagination__item--current {
  background: #e62020;
  color: #ffffff;
  font-weight: 600;
}
.pagination__item--separator {
  opacity: 0.5;
  min-width: 0.1rem;
  padding: 0;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.7);
}

.popup-window {
  position: absolute;
  top: 0;
  left: 0;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  pointer-events: none;
}
@media only screen and (max-width: 990px) {
  .popup-window {
    align-items: center;
  }
}
.popup-window__box {
  width: 100%;
  pointer-events: all;
}
@media only screen and (max-width: 990px) {
  .popup-window__box {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    transform: none !important;
  }
}
.popup-window__close {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
@media only screen and (min-width: 768px) {
  .popup-window__close {
    top: 2rem;
    right: 2rem;
  }
}
.popup-window .box__content {
  padding: 2rem;
  position: relative;
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
}
@media only screen and (min-width: 768px) {
  .popup-window .box__content {
    padding: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .popup-window .box__content {
    padding: 5rem;
  }
}
.popup-window .box__content h2 {
  color: #0f2a59;
  font-weight: 600;
  font-size: 2.2rem;
}
.popup-window .box__content h2 strong {
  color: #e62020;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .popup-window .box__content h2 {
    font-size: 2.8rem;
  }
}
.popup-window .box__content h3 {
  color: #0c9147;
  font-weight: 600;
  font-size: 2.2rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .popup-window .box__content h3 {
    font-size: 2.8rem;
  }
}

.box {
  position: relative;
  background: #ffffff;
  color: #000000;
  box-shadow: 0 2px 24px 0 rgba(167, 182, 195, 0.25);
}

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