@use "sass:math";
* {
  padding: 0px;
  margin: 0px;
  border: 0px; }

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

html,
body {
  height: 100%;
  min-width: 320px; }

body {
  color: #000;
  line-height: 1.333;
  font-family: "Roboto", sans-serif;
  font-size: rem(24);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --header-height: 10.9375rem;
  --lg-gap: 3.125rem;
  --head-margin: 3.1875rem; }
  @media (max-width: 1199.98px) {
    body {
      font-size: 1.25rem;
      --header-height: 9.375rem;
      --lg-gap: 2.25rem;
      --head-margin: 3rem; } }
  @media (max-width: 767.98px) {
    body {
      --header-height: 6.25rem;
      --lg-gap: 1.5rem;
      --head-margin: 2.5rem; } }

input,
button,
textarea,
a {
  line-height: 1; }

input,
button,
textarea {
  font-family: "Roboto", sans-serif;
  font-size: inherit; }

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent; }

a {
  color: inherit;
  text-decoration: none; }

ul li {
  list-style: none; }

svg path {
  transition: 0.2s ease-in-out; }

svg,
img {
  max-width: 100%;
  vertical-align: top; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit; }

.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none; }

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow: clip; }
  .wrapper > main {
    flex: 1 1 auto; }
  .wrapper > * {
    min-width: 0; }

.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.5625rem; }

.checkbox {
  position: relative;
  font-size: 1.25rem; }
  .checkbox__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0; }
    .checkbox__input:checked + .checkbox__label:before {
      background-color: #d9000d !important; }
  .checkbox__label {
    cursor: pointer;
    display: inline-flex;
    position: relative;
    gap: 1.25rem; }
    .checkbox__label:before {
      content: "";
      align-self: flex-start;
      flex: 0 0 4.6875rem;
      width: 4.6875rem;
      aspect-ratio: 1/1;
      transition: .2s ease-in-out;
      border: 0.0625rem solid #707070;
      background: url(./e04b18991310c4a00b49a0db80c5311a.svg) center/2rem no-repeat, #fff; }
  .checkbox__text {
    align-self: center; }
  @media (any-hover: hover) {
    .checkbox:hover .checkbox__label::before {
      background-color: #eef2f5; } }

body::after {
  content: "";
  background-color: rgba(14, 36, 121, 0.4);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149; }

.popup-show body::after {
  opacity: 1; }

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1.875rem 0.625rem;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none; }
  .popup__close {
    font-size: 0;
    position: absolute;
    left: 100%;
    bottom: 100%;
    aspect-ratio: 1/1;
    width: 2.1875rem;
    mask: url(./e04b18991310c4a00b49a0db80c5311a.svg) no-repeat center/contain;
    background-color: #fff;
    transition: 0.2s ease-in-out; }
    @media (max-width: 1023.98px) {
      .popup__close {
        right: 0.625rem;
        top: 0.625rem;
        bottom: auto;
        left: auto;
        width: 1.5rem;
        background-color: #0e2479; } }
    @media (any-hover: hover) {
      .popup__close:hover {
        background-color: #0e2479; } }

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto; }

.popup_show .popup__content {
  visibility: visible;
  transform: scale(1); }

.popup__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }

.popup__content {
  visibility: hidden;
  transform: scale(0);
  transition: transform 0.3s ease 0s;
  background-color: #fff;
  width: 100%;
  max-width: 53.125rem; }
  .lock .popup__content {
    visibility: visible; }

.modal {
  padding: 3.13rem 2.5rem 3.13rem 0;
  display: grid;
  gap: var(--lg-gap); }
  @media (min-width: 767.98px) {
    .modal {
      grid-template-columns: 15.625rem 1fr; } }
  @media (max-width: 767.98px) {
    .modal {
      padding: 2.5rem 1.25rem 1.25rem; } }
  .modal__img {
    height: 11.375rem; }
    .modal__img img {
      object-fit: cover;
      width: 100%;
      height: 100%; }
  .modal__head {
    display: flex;
    flex-direction: column;
    gap: 0.1875rem;
    margin-bottom: 1.125rem; }
  .modal__title {
    font-weight: 700;
    font-size: 1.5rem; }
    @media (max-width: 767.98px) {
      .modal__title {
        font-size: 1.25rem; } }
  .modal__prof {
    font-size: 1.25rem; }
  .modal__contacts {
    display: grid;
    gap: 0.625rem;
    margin-bottom: 5rem; }
    @media (max-width: 1023.98px) {
      .modal__contacts {
        margin-bottom: 3rem; } }
    @media (max-width: 767.98px) {
      .modal__contacts {
        margin-bottom: 2rem; } }
  .modal__info {
    font-size: 1.5rem; }
    @media (max-width: 768px) {
      .modal__info {
        font-size: 1.25rem; } }
    .modal__info p:not(:last-child) {
      margin-bottom: 1.875rem; }
    .modal__info ul li {
      padding-left: 0.75rem;
      position: relative; }
      .modal__info ul li::before {
        position: absolute;
        top: 0.875rem;
        border-radius: 50%;
        left: 0;
        aspect-ratio: 1/1;
        width: 0.25rem;
        content: "";
        background-color: #000; }
  .modal__phone span:nth-child(2) {
    display: none; }
  .modal__phone:hover span:nth-child(1) {
    display: none; }
  .modal__phone:hover span:nth-child(2) {
    display: block; }

#modal-info .popup__content {
  max-width: 33.25rem;
  background-color: #d9000d;
  color: #fff; }

#modal-info .modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.375rem 2.9375rem;
  gap: 1.25rem; }

#modal-info .modal__img {
  height: auto; }

#modal-info .modal__text {
  font-size: 1.5rem; }

#modal-info .modal .btn {
  color: #d9000d; }

#modal-info .modal .btn:hover {
  background-color: #0e2479;
  color: #fff; }

[class*="-ibg"] {
  position: relative; }
  [class*="-ibg"] img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover; }

[class*="-ibg--contain"] img {
  object-fit: contain; }

h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 2.5rem; }
  @media (max-width: 1199.98px) {
    h1 {
      font-size: 3.125rem; } }
  @media (max-width: 767.98px) {
    h1 {
      font-size: 2.375rem; } }

h2 {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 32px; }
  @media (max-width: 767.98px) {
    h2 {
      font-size: 1.5rem;
      margin-bottom: 16px; } }

h3 {
  margin-bottom: 1.25rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.75rem;
  font-weight: 700; }
  @media (max-width: 767.98px) {
    h3 {
      font-size: 1.5rem; } }

h4 {
  margin-bottom: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700; }
  @media (max-width: 767.98px) {
    h4 {
      font-size: 1.25rem; } }

h5 {
  margin-bottom: 0.75rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700; }
  @media (max-width: 767.98px) {
    h5 {
      font-size: 1rem; } }

h6 {
  margin-bottom: 0.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700; }
  @media (max-width: 767.98px) {
    h6 {
      font-size: 0.75rem; } }

p {
  margin-bottom: 1.5rem; }
  p:last-of-type {
    margin-bottom: 0; }

ul {
  padding-left: 30px;
  margin: 1.5rem 0; }
  ul li {
    list-style: initial; }

.page-img {
  width: 100%; }
  @media (min-width: 767.98px) {
    .page-img {
      height: 37.5rem; } }
  @media (max-width: 767.98px) {
    .page-img {
      aspect-ratio: 1/0.49230769230769234; } }
  .page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.contact-item, .team-card__item {
  display: flex;
  align-items: center;
  gap: 1.1875rem;
  transition: 0.2s ease-in-out;
  font-size: 1.25rem; }
  @media (max-width: 767.98px) {
    .contact-item, .team-card__item {
      font-size: 1rem; } }
  .contact-item svg, .team-card__item svg,
  .contact-item picture,
  .team-card__item picture,
  .contact-item img,
  .team-card__item img {
    flex: 0 0 auto; }
    @media (max-width: 767.98px) {
      .contact-item svg, .team-card__item svg,
      .contact-item picture,
      .team-card__item picture,
      .contact-item img,
      .team-card__item img {
        display: none; } }
  
  .contact-item img,
  .team-card__item img {
    width: 1.5rem;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center; }
  @media (any-hover: hover) {
    .contact-item:hover, .team-card__item:hover {
      color: #d9000d; }
      .contact-item:hover svg path, .team-card__item:hover svg path {
        fill: #d9000d; } }

.container-lg {
  max-width: 112.5rem;
  margin: 0 auto;
  padding: 0 1.5625rem; }

.link {
  background-color: #0e2479;
  font-size: 1rem;
  padding: 0.375rem;
  min-width: 10rem;
  border-radius: 0.3125rem;
  text-align: center;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  transition: 0.2s ease-in-out; }
  @media (any-hover: hover) {
    .link:hover {
      background-color: #d9000d; } }

.btn {
  background-color: #fff;
  padding: 0.375rem;
  min-width: 10rem;
  border-radius: 0.3125rem;
  text-align: center;
  color: #0e2479;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out; }
  @media (any-hover: hover) {
    .btn:hover {
      background-color: #d9000d;
      color: #fff; } }
  .btn--accent {
    background-color: #d9000d;
    color: #fff; }
    @media (any-hover: hover) {
      .btn--accent:hover {
        background-color: #0e2479; } }
  .btn--secondary {
    background-color: #0e2479;
    color: #fff; }
    @media (any-hover: hover) {
      .btn--secondary:hover {
        background-color: #d9000d; } }

.slide-pagination {
  display: flex;
  align-items: center;
  gap: 1.5625rem; }
  .slide-pagination .swiper-pagination-bullet {
    width: 1.5625rem;
    flex: 0 0 auto;
    aspect-ratio: 1/1;
    background-color: #fff;
    transition: 0.2s ease-in-out;
    cursor: pointer; }
    .slide-pagination .swiper-pagination-bullet:hover, .slide-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background-color: #0e2479; }

button.cky-btn.cky-btn-accept:before {
  transition: 0.2s ease-in-out;
  display: inline-block;
  content: "";
  mask: url(./f9f282e0930eedd0f9a68a201f38fbcd.svg) no-repeat center/contain;
  aspect-ratio: 1/1;
  width: 1.5625rem;
  background-color: #fff; }

.cky-notice {
  max-width: 75rem;
  margin: 0 auto; }

.cky-btn-revisit-wrapper > *:not(button) {
  display: none; }

p.cky-title, .cky-notice-des p {
  font-size: 20px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  margin: 0 !important; }

.cky-notice-des {
  max-width: 51.125rem; }

button.cky-btn.cky-btn-accept {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  padding: 0; }

.cky-notice-des {
  overflow-y: unset !important; }

@media (min-width: 1200px) {
  .cky-notice {
    padding: 0 1.5625rem; } }

.cookies {
  background-color: #d9000d;
  padding: 1.1875rem 0 1.5625rem;
  font-size: 1.25rem;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%; }
  .cookies__inner {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem; }
    @media (max-width: 767.98px) {
      .cookies__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem; } }
  .cookies__content {
    max-width: 53.125rem; }
  .cookies__btn {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 1.25rem; }
    .cookies__btn::before {
      transition: 0.2s ease-in-out;
      display: inline-block;
      content: "";
      mask: url(./f9f282e0930eedd0f9a68a201f38fbcd.svg) no-repeat center/contain;
      aspect-ratio: 1/1;
      width: 1.5625rem;
      background-color: #fff; }
    @media (any-hover: hover) {
      .cookies__btn:hover::before {
        translate: 0.625rem 0; } }

.link-arrow, .card__link, .section__link, .team-card__more, .details__link {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.25rem; }
  @media (max-width: 767.98px) {
    .link-arrow, .card__link, .section__link, .team-card__more, .details__link {
      font-size: 1rem;
      font-weight: 700; } }
  .link-arrow::before, .card__link::before, .section__link::before, .team-card__more::before, .details__link::before {
    transition: 0.2s ease-in-out;
    display: inline-block;
    content: "";
    mask: url(./f9f282e0930eedd0f9a68a201f38fbcd.svg) no-repeat center/contain;
    aspect-ratio: 1/1;
    width: 1.5625rem;
    background-color: #000; }
  @media (any-hover: hover) {
    .link-arrow:hover, .card__link:hover, .section__link:hover, .team-card__more:hover, .details__link:hover {
      color: #d9000d; }
      .link-arrow:hover::before, .card__link:hover::before, .section__link:hover::before, .team-card__more:hover::before, .details__link:hover::before {
        background-color: #d9000d;
        translate: 0.625rem 0; } }

@media (max-width: 768px) {
  .card:not(:last-child) {
    margin-bottom: 56px; } }

.card__img {
  background-color: #47596e;
  padding-bottom: 20.625rem;
  width: 100%;
  position: relative; }
  @media (max-width: 1199.98px) {
    .card__img {
      padding-bottom: 18rem; } }
  @media (max-width: 767.98px) {
    .card__img {
      padding-bottom: 15.4375rem; } }
  .card__img img {
    position: absolute;
    object-fit: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }

.card__body {
  padding-top: 2.5rem; }
  @media (max-width: 1199.98px) {
    .card__body {
      padding-top: 1.875rem; } }
  @media (max-width: 767.98px) {
    .card__body {
      padding-top: 1.25rem; } }

.card__title {
  margin-bottom: 1.25rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  transition: 0.2s ease-in-out;
  font-weight: 700; }
  @media (max-width: 767.98px) {
    .card__title {
      font-size: 2.375rem; } }

.card__description {
  margin-bottom: 2.5rem;
  line-height: 1.333;
  text-overflow: -o-ellipsis-lastline;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 1.5rem; }
  @media (max-width: 1199.98px) {
    .card__description {
      margin-bottom: 2rem; } }
  @media (max-width: 767.98px) {
    .card__description {
      margin-bottom: 0.625rem;
      font-size: 1.25rem; } }

@media (max-width: 767.98px) {
  .card__link {
    background-color: #0e2479;
    font-size: 1.25rem;
    padding: 0.375rem;
    min-width: 10rem;
    border-radius: 0.3125rem;
    text-align: center;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    font-size: 1rem;
    font-weight: 700; }
    .card__link::before {
      display: none; } }

@media (any-hover: hover) {
  .card:hover .card__title {
    color: #d9000d; } }

.btn-top {
  position: fixed;
  z-index: 10;
  right: 5vw;
  bottom: 5vh;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  font-size: 0;
  width: 4.6875rem;
  justify-content: center;
  background-color: #0e2479;
  transition: 0.2s ease-in-out;
  opacity: 0;
  pointer-events: none; }
  .btn-top.show {
    opacity: 1;
    pointer-events: all; }
  @media (max-width: 767.98px) {
    .btn-top {
      display: none !important; } }
  .btn-top::before {
    display: inline-block;
    width: 1.5625rem;
    aspect-ratio: 1/1;
    mask: url(./f9f282e0930eedd0f9a68a201f38fbcd.svg) no-repeat center/contain;
    rotate: -90deg;
    background-color: #fff;
    content: ""; }
  @media (any-hover: hover) {
    .btn-top:hover {
      background-color: #d9000d; } }
  @media (max-width: 1199.98px) {
    .btn-top {
      width: 3.75rem; } }

.section-head, .team__head, .details__head, .contact-info__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: var(--head-margin); }

.title-lg, .section__title-lg, .details__title, .contact-info__title-lg {
  font-size: 3.75rem;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif; }
  @media (max-width: 767.98px) {
    .title-lg, .section__title-lg, .details__title, .contact-info__title-lg {
      font-size: 3rem; } }

.title, .section-title, .section__title, .team__title, .assistent-block__title {
  font-size: 3rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700; }

.title-h5, .contact-info__sub-title {
  font-size: 1.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700; }

.title-md, .sponsors-block__title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700; }
  @media (max-width: 767.98px) {
    .title-md, .sponsors-block__title {
      font-size: 1.5rem; } }

.section-margin, .team, .login, .sponsors {
  margin: 7.5rem 0; }
  @media (max-width: 1199.98px) {
    .section-margin, .team, .login, .sponsors {
      margin: 6.25rem 0; } }
  @media (max-width: 767.98px) {
    .section-margin, .team, .login, .sponsors {
      margin: 5rem 0; } }

.section, .contact-info {
  margin: 7.5rem 0; }
  @media (max-width: 1199.98px) {
    .section, .contact-info {
      margin: 6.25rem 0; } }
  @media (max-width: 767.98px) {
    .section, .contact-info {
      margin: 5rem 0; } }
  .section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: var(--head-margin);
    line-height: 1;
    flex-wrap: wrap; }
  .section__col-2, .section__col-3 {
    display: grid;
    gap: var(--lg-gap); }
  @media (min-width: 767.98px) {
    .section__col-2 {
      grid-template-columns: repeat(2, 1fr); } }
  .section__col-3 {
    grid-template-columns: repeat(3, 1fr); }
    @media (max-width: 1023.98px) {
      .section__col-3 {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 767.98px) {
      .section__col-3 {
        grid-template-columns: auto; } }

input,
textarea {
  width: 100%;
  padding: 1.5rem 1.875rem;
  border: 0.0625rem solid #707070;
  font-size: 1.25rem; }
  input::placeholder,
  textarea::placeholder {
    color: #000; }
  @media (any-hover: hover) {
    input:hover,
    textarea:hover {
      background-color: #eef2f5; } }
  input:focus,
  textarea:focus {
    background-color: #eef2f5; }

input {
  height: 4.6875rem; }

textarea {
  height: 18.0625rem; }

@media (max-width: 768px) {
  .link-arrow, .card__link, .section__link, .team-card__more, .details__link, .section__link, .team-card__more, .details__link {
    font-size: 1.25rem; }
  .card__link {
    font-size: 1rem; } }

.header {
  border-top: 1.125rem solid #0e2479;
  padding: 1.1875rem 0;
  display: flex;
  align-items: center;
  border-bottom: 0.0625rem solid #eef2f5;
  position: sticky;
  min-height: var(--header-height);
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 15;
  transition: .4s; }
  @media (max-width: 1199.98px) {
    .header {
      border-top-width: 0.875rem; } }
  @media (max-width: 1023.98px) {
    .header::before {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      min-height: var(--header-height);
      background-color: inherit;
      content: '';
      transition: .4s; } }
  @media (max-width: 767.98px) {
    .header {
      border-top-width: 0.625rem; }
      .header::after {
        position: absolute;
        height: 0.75rem;
        content: "";
        left: 0;
        z-index: 2;
        top: -0.75rem;
        width: 100%;
        background-color: #0e2479; } }
  .header.sticky {
    min-height: 90px;
    position: fixed; }
    .header.sticky .header__logo {
      max-width: 5rem; }
    .header.sticky .link {
      display: none; }
    @media (max-width: 1023.98px) {
      .header.sticky {
        min-height: 50px; }
        .header.sticky::before {
          min-height: 3rem; }
        .header.sticky .header__logo {
          max-width: 3rem; }
        .header.sticky .icon-menu span {
          width: 2rem; } }
  .header__container {
    max-width: 112.5rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding: 0 1.5625rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem; }
  .header__logo {
    max-width: 13.5rem;
    position: relative;
    z-index: 10; }
    @media (max-width: 1199.98px) {
      .header__logo {
        max-width: 9.75rem; } }
    @media (max-width: 767.98px) {
      .header__logo {
        max-width: 5.9375rem; } }
  .header__right {
    display: flex;
    align-items: flex-end;
    gap: 2rem; }
    @media (min-width: 1023.98px) {
      .header__right {
        flex-direction: column; } }
    @media (max-width: 1023.98px) {
      .header__right {
        align-items: center; }
        .header__right .link {
          position: relative;
          z-index: 5;
          margin-right: 100px; } }
  .header .menu__icon.icon-menu svg, .header .menu__icon.icon-menu rect {
    transition: all .4s; }
  .header .menu__icon.icon-menu:hover #line_1 {
    transform: translateX(10px); }
  .header .menu__icon.icon-menu:hover #line_2 {
    transform: translate(0px, 12px); }
  .header .menu__icon.icon-menu:hover #line_3 {
    transform: translate(30px, 23px); }
  @media (max-width: 1023.98px) {
    .header .menu__body {
      position: fixed;
      right: 0;
      top: 0;
      width: 100%;
      height: 100vh;
      overflow-y: auto;
      padding: 8.75rem 1.5625rem 1.5625rem;
      background-color: #fff;
      transition: all 0.3s ease 0s;
      translate: 100% 0;
      border-top: 0.875rem solid #0e2479;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 2rem; } }
  @media (max-width: 1023.98px) and (max-width: 767.98px) {
    .header .menu__body {
      border-top-width: 0.625rem; } }
  @media (max-width: 1023.98px) {
      .menu-open .header .menu__body {
        translate: 0 0; } }
  .header .menu__list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0; }
    @media (max-width: 1023.98px) {
      .header .menu__list {
        flex-direction: column;
        align-items: flex-end;
        width: 100%; } }
    @media (max-width: 767.98px) {
      .header .menu__list {
        gap: 2rem; } }
    .header .menu__list li {
      list-style: none; }
    .header .menu__list > li {
      position: relative;
      padding-bottom: 1.875rem;
      margin-bottom: -1.875rem; }
      @media (max-width: 1023.98px) {
        .header .menu__list > li {
          width: 100%;
          display: flex;
          flex-direction: column; }
          .header .menu__list > li a {
            text-align: right; } }
      .header .menu__list > li::after {
        position: absolute;
        bottom: 1.25rem;
        height: 0.375rem;
        left: 0;
        opacity: 0;
        pointer-events: none;
        width: 100%;
        margin-top: 0.25rem;
        content: "";
        background-color: #0e2479;
        transition: 0.2s ease-in-out; }
        @media (max-width: 1023.98px) {
          .header .menu__list > li::after {
            display: none; } }
      .header .menu__list > li.show::after {
        opacity: 1; }
      .header .menu__list > li.show .sub-menu-wrapper {
        grid-template-rows: 1fr;
        visibility: visible;
        pointer-events: all; }
      @media (any-hover: hover) {
        .header .menu__list > li:hover::after {
          opacity: 1; }
        .header .menu__list > li:hover .sub-menu-wrapper {
          opacity: 1;
          grid-template-rows: 1fr;
          visibility: visible;
          pointer-events: all; } }
    .header .menu__list a {
      font-size: 1.25rem;
      position: relative;
      white-space: nowrap; }
      @media (max-width: 1023.98px) {
        .header .menu__list a {
          font-size: 1.5rem;
          padding: 0.3125rem; } }

.sub-menu-wrapper {
  position: absolute;
  top: 100%;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: 0.2s ease-in-out;
  pointer-events: none;
  visibility: hidden; }
  @media (max-width: 1023.98px) {
    .sub-menu-wrapper {
      position: static;
      width: 100%; } }

.sub-menu {
  display: grid;
  gap: 0.25rem;
  min-width: 15.625rem;
  min-height: 0;
  transition: 0.2s ease-in-out;
  margin: 0;
  padding: 0; }
  .sub-menu li a {
    display: block;
    transition: 0.2s ease-in-out;
    background-color: #eef2f5;
    padding: 0.9375rem 1.1875rem; }
    @media (any-hover: hover) {
      .sub-menu li a:hover {
        background-color: #0e2479;
        font-weight: 700;
        color: #fff; } }
    @media (max-width: 767.98px) {
      .sub-menu li a {
        padding: 0.625rem !important; } }

.icon-menu {
  display: none; }
  @media (max-width: 1023.98px) {
    .icon-menu {
      display: block;
      position: relative;
      width: rem(70);
      height: rem(27);
      z-index: 55; } }
  @media (max-width: 1023.98px) and (any-hover: none) {
    .icon-menu {
      cursor: default; } }
  @media (max-width: 1023.98px) {
      .icon-menu span, .icon-menu::before, .icon-menu::after {
        content: "";
        transition: all 0.3s ease 0s;
        position: absolute;
        height: rem(4); }
      .icon-menu::before, .icon-menu::after {
        left: 0; }
      .icon-menu::before {
        top: 0;
        width: 3.75rem; }
      .icon-menu::after {
        bottom: 0;
        width: 2.5rem; }
      .icon-menu span {
        right: 0;
        top: calc(50% - rem(2));
        width: 4.3rem;
        transform: translateY(-12px); }
      .menu-open .icon-menu::before {
        translate: 0.625rem 0; }
      .menu-open .icon-menu::after {
        translate: 1.875rem 0; } }

.partners {
  background-color: #eef2f5;
  padding: 3.625rem 0; }
  @media (max-width: 767.98px) {
    .partners {
      display: none; } }
  .partners__items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--lg-gap); }
  .partners__item {
    border: 0.0625rem solid #707070;
    background-color: #fff;
    aspect-ratio: 1/0.66;
    display: flex;
    align-items: center;
    justify-content: center; }

.team__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.75rem var(--lg-gap); }
  @media (max-width: 1023.98px) {
    .team__items {
      grid-template-columns: repeat(3, 1fr);
      row-gap: 2.5rem; } }
  @media (max-width: 767.98px) {
    .team__items {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem 1.25rem; } }

.team-card {
  position: relative; }
  .team-card__top {
    background-color: #707070;
    aspect-ratio: 1/0.728;
    position: relative; }
  .team-card__img {
    width: 100%;
    height: 100%; }
    .team-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
  .team-card__layout {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(14, 36, 121, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease-in-out; }
  .team-card__more {
    cursor: pointer;
    color: #fff; }
    .team-card__more::before {
      background-color: #fff; }
    @media (any-hover: hover) {
      .team-card__more:hover {
        color: #fff; }
        .team-card__more:hover::before {
          background-color: #fff; } }
  .team-card__body {
    padding-top: 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 1.1875rem; }
    @media (max-width: 767.98px) {
      .team-card__body {
        gap: 0.625rem; } }
  .team-card__title {
    font-weight: 700;
    font-size: 1.5rem; }
    @media (max-width: 768px) {
      .team-card__title {
        font-size: 1.25rem; } }
    .team-card__title:not(:last-child) {
      margin-bottom: 0.1875rem; }
    .team-card__title a::before {
      content: "";
      position: absolute;
      inset: 0; }
  .team-card__description {
    font-size: 1.25rem; }
    @media (max-width: 767.98px) {
      .team-card__description {
        display: none; } }
  .team-card__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    position: relative;
    z-index: 2;
    font-size: 1.25rem; }
  .team-card__phone span:nth-child(2) {
    display: none; }
  .team-card:hover .team-card__layout {
    opacity: 1;
    pointer-events: all; }
  .team-card:hover .team-card__phone {
    color: #d9000d; }
    .team-card:hover .team-card__phone span:nth-child(1) {
      display: none; }
    .team-card:hover .team-card__phone span:nth-child(2) {
      display: block; }

.footer {
  position: relative;
  background-color: #0e2479;
  padding: 6.375rem 0 13.1875rem;
  font-size: 1.25rem;
  color: #fff; }
  @media (max-width: 767.98px) {
    .footer {
      padding: 3.0625rem 0 18.0625rem; } }
  .footer ul {
    padding: 0; }
    .footer ul li {
      list-style: none; }
  .footer-cky-hide {
    padding-bottom: 3.0625rem; }
  .footer__inner {
    display: flex;
    flex-direction: column;
    gap: 0.625rem; }
    @media (max-width: 767.98px) {
      .footer__inner {
        gap: 1.875rem; } }
  .footer__top {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start; }
    @media (max-width: 1023.98px) {
      .footer__top {
        display: grid;
        grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 767.98px) {
      .footer__top {
        display: block; } }
  .footer__items {
    display: flex;
    gap: 1.875rem;
    flex-direction: column; }
    @media (min-width: 1023.98px) {
      .footer__items {
        flex: 0 0 auto;
        min-width: 25rem; } }
  .footer__menu {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0; }
    @media (max-width: 767.98px) {
      .footer__menu {
        display: none; } }
    .footer__menu a {
      display: inline-flex;
      gap: 1.25rem; }
      .footer__menu a::before {
        transition: 0.2s ease-in-out;
        display: inline-block;
        content: "";
        mask: url(./f9f282e0930eedd0f9a68a201f38fbcd.svg) no-repeat center/contain;
        aspect-ratio: 1/1;
        width: 1.5625rem;
        background-color: #fff;
        transform: translateY(-3px); }
      @media (any-hover: hover) {
        .footer__menu a:hover::before {
          translate: 0.625rem 0; } }
  .footer__links {
    text-align: right;
    margin: 0 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 1rem; }
    @media (any-hover: hover) {
      .footer__links a:hover {
        text-decoration: underline; } }
  .footer__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem; }
    @media (max-width: 767.98px) {
      .footer__bottom {
        flex-wrap: wrap;
        gap: 0.75rem; } }
  @media (max-width: 768px) {
    .footer__copy {
      font-size: 1rem; } }
  .footer__social {
    display: flex;
    align-items: center;
    gap: 1.875rem; }
    @media (max-width: 767.98px) {
      .footer__social {
        order: -1;
        width: 100%; } }

.hero {
  position: relative; }
  .hero__pagination {
    position: absolute;
    bottom: 6.25rem;
    right: 0;
    left: 50%;
    translate: -50% 0;
    width: 100%;
    padding: 0 1.5625rem;
    justify-content: flex-end;
    max-width: 112.5rem;
    z-index: 5;
    display: flex;
    justify-content: flex-end; }
    @media (max-width: 767.98px) {
      .hero__pagination {
        display: none; } }

.hero-slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  @media (min-width: 767.98px) {
    .hero-slide {
      max-height: 79.0625rem;
      padding: 6.25rem 0;
      height: calc(100vh - var(--header-height)); } }
  .hero-slide .container-lg {
    height: 100%; }
  .hero-slide__img {
    width: 100%;
    aspect-ratio: 1/0.49230769230769234; }
    .hero-slide__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
    @media (min-width: 767.98px) {
      .hero-slide__img {
        display: none; } }
  .hero-slide__inner {
    height: 100%;
    display: flex;
    align-items: flex-end; }
  .hero-slide__content {
    padding: 3.75rem 0;
    position: relative;
    min-height: 26.875rem;
    width: 50%;
    max-width: 850px;
    color: #fff; }
    @media (max-width: 1199.98px) {
      .hero-slide__content {
        width: 70%; } }
    @media (max-width: 767.98px) {
      .hero-slide__content {
        width: 100vw;
        min-height: 18.0625rem;
        background-color: #0e2479;
        padding: 2.4375rem 1.5625rem;
        margin: 0 -1.5625rem; } }
    .hero-slide__content::after {
      content: "";
      background-color: #0e2479;
      position: absolute;
      width: 50vw;
      right: 0;
      top: 0;
      height: 100%;
      mix-blend-mode: multiply; }
      @media (max-width: 1199.98px) {
        .hero-slide__content::after {
          width: 70vw; } }
      @media (max-width: 767.98px) {
        .hero-slide__content::after {
          display: none; } }
  .hero-slide__text {
    font-size: 3rem;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 1; }
    @media (max-width: 1199.98px) {
      .hero-slide__text {
        font-size: 2.375rem; } }
    @media (max-width: 767.98px) {
      .hero-slide__text {
        font-size: 1.75rem;
        font-style: italic; } }
  .hero-slide__title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1; }
    @media (max-width: 1199.98px) {
      .hero-slide__title {
        font-size: 3.125rem; } }
    @media (max-width: 767.98px) {
      .hero-slide__title {
        font-size: 2.375rem;
        font-style: italic; } }
  .hero-slide .btn {
    position: relative;
    z-index: 1; }

.home__content {
  margin: 7.5rem 0;
  font-size: 1.5rem; }
  @media (max-width: 768px) {
    .home__content {
      margin: 80px 0;
      font-size: 1.25rem; } }

.home__title {
  font-size: 3.75rem;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 5.875rem; }
  @media (max-width: 1199.98px) {
    .home__title {
      margin-bottom: 3.125rem;
      font-size: 3.125rem; } }
  @media (max-width: 767.98px) {
    .home__title {
      margin-bottom: 1.25rem;
      font-size: 2.375rem; } }

.home__description {
  font-size: 1.5rem;
  line-height: 1.333;
  margin-bottom: 2.5rem; }
  @media (min-width: 1199.98px) {
    .home__description {
      font-size: 1.875rem; } }

.home__line {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--lg-gap); }
  @media (max-width: 1023.98px) {
    .home__line {
      grid-template-columns: auto; } }

.home__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start; }
  @media (max-width: 767.98px) {
    .home__item {
      gap: 1rem; } }

.home__item-title {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif; }
  @media (max-width: 767.98px) {
    .home__item-title {
      font-size: 1.5rem; } }
  .home__line .home__item-title {
    margin-bottom: 0; }

.hero .swiper-slide {
  overflow: hidden; }

.details__head {
  margin-bottom: 2.5rem; }

.details__line {
  margin: 2.5rem 0; }

.details__text-lg {
  font-size: 1.875rem;
  margin: 2.5rem 0; }
  @media (max-width: 768px) {
    .details__text-lg {
      font-size: 1.5rem; } }

.details__text {
  font-size: 1.5rem; }
  @media (max-width: 768px) {
    .details__text {
      font-size: 1.25rem; } }

.details__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem;
  margin: 2.5rem 0; }
  @media (max-width: 767.98px) {
    .details__grid {
      grid-template-columns: none;
      gap: 2.5rem; } }

.details__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start; }
  @media (max-width: 767.98px) {
    .details__col:nth-child(2) {
      order: -1; } }
  .details__col .details__text {
    text-overflow: -o-ellipsis-lastline;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden; }
  .details__col .details__img {
    aspect-ratio: 1/0.682; }

.details__img {
  aspect-ratio: 1/0.682; }
  .details__img img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

@media (max-width: 767.98px) {
  .title-lg, .section__title-lg, .details__title, .contact-info__title-lg, .section__title-lg, .details__title, .contact-info__title-lg {
    font-size: 2.375rem; } }

.auth .container {
  max-width: 73.3rem; }

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; }
  .auth-form__grid {
    display: grid;
    gap: 1.25rem 3.125rem;
    grid-template-columns: repeat(2, 1fr); }
    @media (max-width: 1023.98px) {
      .auth-form__grid {
        gap: 1.5rem; } }
    @media (max-width: 767.98px) {
      .auth-form__grid {
        grid-template-columns: auto; } }
  .auth-form__block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem; }
    @media (max-width: 1023.98px) {
      .auth-form__block {
        gap: 1.5rem; } }
  .auth-form .btn {
    width: fit-content; }

.login {
  margin-left: auto;
  margin-right: auto;
  max-width: 34.375rem; }

.page-id-305 .gfield textarea,
.page-id-305 .gfield input {
  font-size: 1.25rem !important;
  padding: 1.5rem 1.875rem !important;
  border: 0.0625rem solid #707070; }

.page-id-305 .gfield_checkbox {
  display: grid;
  gap: 1.25rem 3.125rem; }

.page-id-305 .ginput_container_consent,
.page-id-305 .gchoice {
  display: inline-flex;
  gap: 1.25rem;
  position: relative; }

.page-id-305 .ginput_container_consent label,
.page-id-305 .gchoice label {
  cursor: pointer;
  align-self: center;
  font-size: 1.25rem !important; }

.page-id-305 .ginput_container_consent label::after,
.page-id-305 .gchoice label::after {
  position: absolute;
  content: '';
  inset: 0; }

.page-id-305 .ginput_container_consent:hover::before,
.page-id-305 .gchoice:hover::before {
  background-color: #eef2f5; }

.page-id-305 .ginput_container_consent::before,
.page-id-305 .gchoice::before {
  content: "";
  align-self: flex-start;
  flex: 0 0 4.6875rem;
  width: 4.6875rem;
  aspect-ratio: 1 / 1;
  transition: 0.2s ease-in-out;
  border: 0.0625rem solid #707070;
  background: url(./e04b18991310c4a00b49a0db80c5311a.svg) center/2rem no-repeat, #fff; }

.page-id-305 .ginput_container_consent > input,
.page-id-305 .gchoice .gfield-choice-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 0;
  height: 0; }

.page-id-305 .ginput_container_consent:has(> input:checked)::before,
.page-id-305 .gchoice:has(.gfield-choice-input:checked)::before {
  background-color: #d9000d !important; }

#gform_submit_button_1 {
  line-height: 1; }

.page-id-305 .gform_footer input[type='submit'] {
  padding: 0.375rem;
  min-width: 10rem;
  border-radius: 0.3125rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.5rem;
  height: 2.5rem;
  cursor: pointer;
  border: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  background-color: #d9000d;
  color: #fff;
  width: fit-content; }

.page-id-305 .gform_footer input[type='submit']:hover {
  background-color: #0e2479; }

.page-id-305 fieldset.gfield:not(:last-child) {
  margin-bottom: 1.5rem !important; }

.page-id-305 fieldset.gfield legend {
  font-size: 1.5rem !important;
  margin-bottom: 1.25rem !important;
  font-weight: 400 !important;
  padding-top: 1.5rem !important; }

@media (min-width: 767.98px) {
  .page-id-305 .gfield_checkbox {
    grid-template-columns: repeat(2, 1fr); } }

.sponsors__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem; }
  @media (max-width: 1023.98px) {
    .sponsors__inner {
      gap: 3.75rem; } }
  @media (max-width: 767.98px) {
    .sponsors__inner {
      gap: 2.5rem; } }

.sponsors-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; }
  .sponsors-block__head {
    display: grid;
    gap: 2.5rem 3.125rem; }
    @media (max-width: 1023.98px) {
      .sponsors-block__head {
        gap: 2.5rem; } }
    @media (max-width: 767.98px) {
      .sponsors-block__head {
        gap: 1.25rem;
        display: flex;
        flex-wrap: wrap; } }
  .sponsors-block__title {
    margin-bottom: 0; }
  .sponsors-block__body {
    display: grid;
    gap: 2.5rem 3.125rem; }
    @media (max-width: 1023.98px) {
      .sponsors-block__body {
        gap: 2.5rem; } }
    @media (max-width: 767.98px) {
      .sponsors-block__body {
        gap: 1.25rem; } }
  .sponsors-block__item {
    width: 100%;
    align-items: center;
    display: flex;
    border: 0.0625rem solid #707070;
    justify-content: center;
    aspect-ratio: 1/0.6142857142857143;
    overflow: hidden; }
    .sponsors-block__item picture,
    .sponsors-block__item img {
      max-height: 100%;
      height: 100%; }
  .sponsors-block__title--empty {
    font-size: 0; }
    @media (max-width: 767.98px) {
      .sponsors-block__title--empty {
        display: none; } }
  .sponsors-block__head, .sponsors-block__body {
    grid-template-columns: repeat(2, 1fr); }

.sponsors-block--col-3 .sponsors-block__head, .sponsors-block--col-3 .sponsors-block__body {
  grid-template-columns: repeat(3, 1fr); }

@media (min-width: 769px) {
  .sponsors-block--col-4 .sponsors-block__item {
    height: 156px; } }

.sponsors-block--col-4 .sponsors-block__item picture,
.sponsors-block--col-4 .sponsors-block__item img {
  max-height: 100%; }
  @media (min-width: 769px) {
    .sponsors-block--col-4 .sponsors-block__item picture,
    .sponsors-block--col-4 .sponsors-block__item img {
      height: 156px; } }

.sponsors-block--col-4 .sponsors-block__body {
  gap: 2.5rem 3.125rem; }
  @media (max-width: 767.98px) {
    .sponsors-block--col-4 .sponsors-block__body {
      gap: 1.25rem; } }

.sponsors-block--col-4 .sponsors-block__head, .sponsors-block--col-4 .sponsors-block__body {
  grid-template-columns: repeat(4, 1fr); }

.sponsors-block--col-7 .sponsors-block__body {
  gap: 2.5rem 3.125rem; }
  @media (max-width: 767.98px) {
    .sponsors-block--col-7 .sponsors-block__body {
      gap: 1.25rem; } }

.sponsors-block--col-7 .sponsors-block__head, .sponsors-block--col-7 .sponsors-block__body {
  grid-template-columns: repeat(7, 1fr); }

@media (min-width: 768px) {
  .sponsors-block--col-4 .sponsors-block__title:nth-child(2), .sponsors-block--col-4 .sponsors-block__title:nth-child(3), .sponsors-block--col-4 .sponsors-block__title:nth-child(4) {
    grid-column: span 1; }
  .sponsors-block--col-7 .sponsors-block__title {
    grid-column: span 1; } }

@media (min-width: 767.98px) {
  .contact .container-lg {
    height: 100%; } }

.contact__map {
  height: calc(100vh - var(--header-height));
  position: relative;
  width: 100%;
  max-height: 1265px; }
  @media (max-width: 767.98px) {
    .contact__map {
      display: flex;
      flex-direction: column;
      height: auto; } }
  .contact__map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }
    @media (max-width: 767.98px) {
      .contact__map iframe {
        aspect-ratio: 16/9;
        position: static;
        height: auto; } }

.contact__inner {
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 6.25rem 0; }
  @media (max-width: 767.98px) {
    .contact__inner {
      padding: 0; } }

.contact__content {
  margin-top: auto;
  padding: 3.75rem 0;
  position: relative;
  min-height: 26.875rem;
  width: 50%;
  color: #fff; }
  @media (max-width: 1199.98px) {
    .contact__content {
      width: 70%; } }
  @media (max-width: 767.98px) {
    .contact__content {
      width: 100vw;
      min-height: 18.0625rem;
      background-color: #0e2479;
      padding: 2.4375rem 1.5625rem;
      margin: 0 -1.5625rem; } }
  .contact__content::after {
    content: "";
    background-color: #0e2479;
    position: absolute;
    width: 50vw;
    right: 0;
    top: 0;
    height: 100%;
    mix-blend-mode: multiply; }
    @media (max-width: 1199.98px) {
      .contact__content::after {
        width: 70vw; } }
    @media (max-width: 767.98px) {
      .contact__content::after {
        display: none; } }

.contact__text {
  font-size: 3rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  position: relative;
  z-index: 1;
  font-style: italic; }
  @media (max-width: 1199.98px) {
    .contact__text {
      font-size: 2.375rem; } }
  @media (max-width: 767.98px) {
    .contact__text {
      font-size: 1.75rem; } }

.contact__title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  font-style: italic;
  z-index: 1; }
  @media (max-width: 1199.98px) {
    .contact__title {
      font-size: 3.125rem; } }
  @media (max-width: 767.98px) {
    .contact__title {
      font-size: 2.375rem; } }

.contact-info__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem; }
  @media (max-width: 767.98px) {
    .contact-info__body {
      grid-template-columns: none;
      gap: 1.25rem; } }

.contact-info__item {
  font-size: 1.5rem; }
  @media (max-width: 768px) {
    .contact-info__item {
      font-size: 1.25rem; } }
  .contact-info__item p:not(:last-child) {
    margin-bottom: 1.3rem; }

.section__footer {
  margin-top: 40px;
  text-align: right; }

.assistents__items {
  display: flex;
  flex-direction: column;
  gap: 5rem; }
  @media (max-width: 1023.98px) {
    .assistents__items {
      gap: 3.75rem; } }
  @media (max-width: 767.98px) {
    .assistents__items {
      gap: 3.125rem; } }

.assistents .section__title-lg {
  font-size: 3rem; }

.assistent-block__title {
  font-size: 2.375rem !important;
  margin-bottom: 2.5rem; }
  @media (max-width: 767.98px) {
    .assistent-block__title {
      margin-bottom: 1.5625rem; } }

.assistent-block__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; }

.assistent-block__line {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem var(--lg-gap); }
  @media (max-width: 767.98px) {
    .assistent-block__line {
      grid-template-columns: none;
      border-bottom: 0.0625rem solid #707070;
      padding-bottom: 1.5rem; } }

.assistent-block__item {
  gap: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media (min-width: 767.98px) {
    .assistent-block__item {
      padding: 1.5rem 0;
      border-bottom: 0.0625rem solid #707070; } }

.assistent-block__item-title {
  font-size: 1.25rem;
  flex: 1; }

.assistent-block__times {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  font-size: 1rem; }

#modal-info .modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.375rem 2.9375rem;
  gap: 1.25rem; }
  #modal-info .modal__img {
    height: auto; }
  #modal-info .modal__text {
    font-size: 1.5rem; }
  #modal-info .modal .btn {
    color: #d9000d; }
    #modal-info .modal .btn:hover {
      background-color: #0e2479;
      color: #fff; }

#modal-info .popup__content {
  max-width: 33.25rem;
  background-color: #d9000d;
  color: #fff; }
.swiper {
  overflow: hidden; }

.swiper-initialized {
  touch-action: pan-y; }

.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative; }

.swiper-vertical .swiper-wrapper {
  flex-direction: column; }

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start; }

.swiper-initialized .swiper-slide {
  flex-shrink: 0; }

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-button-lock {
  display: none !important; }

/*# sourceMappingURL=app.min.css.map*/