@charset "UTF-8";
@font-face {
  font-family: "Arial";
  src: local("../fonts/Arial"), local("../fonts/Arial"),
    url("../fonts/Arial.woff2") format("woff2"),
    url("../fonts/Arial.eot") format("eot"),
    url("../fonts/Arial.woff") format("woff"),
    url("../fonts/Arial.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
html,
body,
div,
span,
applet,
object,
iframe,
main,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
button,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
picture {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  outline: none;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  font: 400 16px/1.5rem "Arial", sans-serif;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}

body {
  color: #434343;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #234f9b;
  font-weight: 400;
}

h1,
.h1 {
  font-size: 2rem;
  line-height: 2.25rem;
}

h2,
.h2 {
  font-size: 1.75rem;
  line-height: 2rem;
}

h3,
.h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

h4,
.h4 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

h5,
.h5 {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

h6,
.h6 {
  font-size: 1rem;
  line-height: 1.5rem;
}

img,
svg {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover,
a:focus {
  color: inherit;
  outline: none;
}

strong {
  font-weight: 600;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 62rem;
  max-width: calc(100vw - 4rem);
  margin: 0 auto;
}
.container.container_secondary {
  width: 70rem;
}

form input.inputtext,
form textarea {
  width: 380px;
  max-width: 80vw;
  margin: 0 auto;
  font: 14px/20px "Arial";
}
form input.inputtext {
  height: 20px;
}
form textarea {
  width: 100%;
  height: 120px;
  resize: none;
}

label.error {
  position: absolute;
  background-color: #f24b4b;
  color: #fff;
  padding: 10px 15px;
  top: 34px;
  left: 100%;
  width: 340px;
  margin-left: 35px;
  z-index: 2;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0;
  top: calc(100% + 1px);
  width: 100%;
  height: auto;
  left: 0;
}
label.error:hover {
  display: none;
}
label.error:before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 100%;
  left: 30px;
  border: 10px solid transparent;
  border-bottom: 10px solid #f24b4b;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.form_error label.error {
  margin-left: 0;
  opacity: 1;
  visibility: visible;
}

.contact__formular {
  max-width: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 2rem;
}
.contact__formular .item {
  margin-bottom: 24px;
  position: relative;
}
.contact__formular .item label {
  display: block;
}
.contact__formular .item .form-field__title {
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  cursor: pointer;
  color: #313131;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contact__formular .item .form-field__title:hover {
  color: #898989;
}
.contact__formular .title {
  display: block;
  margin-bottom: 0;
}

.custom-check {
  display: block;
  position: relative;
}
.custom-check .custom-check__input {
  position: absolute;
  opacity: 0;
}
.custom-check .custom-check__input.error ~ .custom-check__text {
  color: #f24b4b;
}
.custom-check .custom-check__input:checked ~ .custom-check__text:before {
  opacity: 1;
}
.custom-check .custom-check__input:disabled ~ .custom-check__text {
  color: #eeeeee;
}
.custom-check .custom-check__input:disabled ~ .custom-check__text:after {
  border-color: #eeeeee;
}
.custom-check .custom-check__input:disabled ~ .custom-check__text:hover:after {
  border-color: #eeeeee;
}
.custom-check .custom-check__text {
  position: relative;
  padding-left: 40px;
  display: block;
  cursor: pointer;
}
.custom-check .custom-check__text:before,
.custom-check .custom-check__text:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.custom-check .custom-check__text:before {
  opacity: 0;
  z-index: 2;
}
.custom-check .custom-check__text:after {
  width: 24px;
  height: 24px;
  background-color: #fff;
}
.custom-check .custom-check__text:hover:before {
  opacity: 1;
}
.custom-check input[type="checkbox"] ~ .custom-check__text:before {
  font-size: 16px;
  content: "✓";
  color: #313131;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.custom-check input[type="radio"] ~ .custom-check__text:before,
.custom-check input[type="radio"] ~ .custom-check__text:after {
  border-radius: 50%;
}
.custom-check input[type="radio"] ~ .custom-check__text:before {
  width: 16px;
  height: 16px;
  background: #eeeeee;
  top: 4px;
  left: 4px;
}

.submit-wrap {
  width: 150px;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
}
.submit-wrap:hover .btn {
  color: rgba(255, 255, 255, 1);
  background-color: #234f9b;
}
.submit-wrap .submit-over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.form-pattern {
  gap: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.valid-pattern ~ .result {
  position: relative;
  font-size: 12px;
  color: red;
  top: 10px;
  background: white;
  border: 1px solid #ddd;
  width: 100%;
  max-width: 300px;
  padding: 7px 10px;
  z-index: 7;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: none;
}
.valid-pattern ~ .result::before {
  background: white;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  position: absolute;
  left: 50%;
  bottom: calc(100% - 7px);
  content: "";
  width: 15px;
  height: 15px;
}

.error ~ .result {
  display: block;
}

.btn {
  font-size: 1rem;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 0.875rem;
  border: none;
  border-radius: 0;
  border: 1px solid #234f9b;
  color: #234f9b;
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  outline: none;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn:disabled {
  background-color: #f0f0f0;
}
.btn:hover,
.btn:active {
  color: #ffffff;
  background-color: #234f9b;
}
.btn.btn_secondary,
.btn.btn_tertiary {
  color: #ffffff;
  text-transform: none;
  border: 0;
}
.btn.btn_secondary {
  background-color: #234f9b;
}
.btn.btn_secondary:hover,
.btn.btn_secondary:active {
  background-color: #000000;
}
.btn.btn_tertiary {
  background-color: #000000;
}
.btn.btn_tertiary:hover,
.btn.btn_tertiary:active {
  background-color: #234f9b;
}

.wysiwyg img,
.wysiwyg iframe,
.wysiwyg video {
  width: 100%;
  display: block;
}
.wysiwyg img:not(:last-child),
.wysiwyg iframe:not(:last-child),
.wysiwyg video:not(:last-child) {
  margin-bottom: 1.5rem;
}
.wysiwyg h1:not(:last-child),
.wysiwyg h2:not(:last-child),
.wysiwyg h3:not(:last-child),
.wysiwyg h4:not(:last-child),
.wysiwyg h5:not(:last-child),
.wysiwyg h6:not(:last-child) {
  margin-bottom: 0.5rem;
}
.wysiwyg p:not(:last-child),
.wysiwyg ul:not(:last-child),
.wysiwyg ol:not(:last-child) {
  margin-bottom: 1.5rem;
}
.wysiwyg ul,
.wysiwyg ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 0.5rem;
}
.wysiwyg ul {
  list-style: none;
}
.wysiwyg ul li {
  display: inline-block;
}
.wysiwyg ul li:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #234f9b;
  transform: translateY(-0.125rem);
  display: inline-block;
  margin-right: 0.25rem;
}
.wysiwyg ol {
  list-style: decimal inside;
  padding-left: 1rem;
}
.wysiwyg ol li {
  margin-bottom: 0.5rem;
}
.wysiwyg ol li:last-child {
  margin-bottom: 0;
}
.wysiwyg a {
  color: #234f9b;
}
.wysiwyg a:hover {
  text-decoration: underline;
}
.wysiwyg figure {
  gap: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  text-align: center;
}
.wysiwyg figure:not(:last-child) {
  margin-bottom: 2.5rem;
}
.wysiwyg figure figcaption {
  font-size: 1.25rem;
  line-height: 100%;
  font-weight: 500;
}

.swiper {
  position: relative;
}
.swiper .swiper-slide {
  height: auto;
}

.layout {
  font-size: 1.125rem;
  line-height: 125%;
  min-height: 100vh;
  padding-top: 5.25rem;
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (min-width: 768px) {
  .layout {
    padding-top: 14.5rem;
  }
}
.layout_ready-load {
  visibility: visible;
  opacity: 1;
}
.layout__main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.layout__header {
  padding: 0.75rem 0;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .layout__header {
    padding: 1.75rem 0 0;
  }
}
@media screen and (min-width: 768px) {
  .layout__header.scrolled .container {
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .layout__header.scrolled .header__logo img,
  .layout__header.scrolled .header__logo svg {
    width: 15rem;
    height: auto;
  }
}
.layout__header.header_menu-active .header__nav {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1) translateX(-50%);
  transform: scale(1) translateX(-50%);
}
.layout__header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (min-width: 768px) {
  .layout__header .container {
    gap: 3rem;
    grid-template-columns: 1fr 28.75rem 1fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: grid;
  }
}

.header__contact {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .header__contact {
    margin: 0;
  }
}
.header__contact .contact__list {
  gap: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__contact .contact__item {
  position: relative;
}
.header__contact .contact__item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: calc(100% + 1rem);
  background-color: #535353;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .header__contact .contact__item:not(:last-child)::after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header__contact .contact__item:nth-child(2) {
    display: none;
  }
}
.header__contact .contact__link {
  color: #535353;
  gap: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header__contact .contact__link:hover {
  color: #234f9b;
}
.header__contact .contact__symbol {
  width: 1.125rem;
  height: 1.125rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.header__contact .contact__ico {
  width: 100%;
  height: 100%;
  fill: #535353;
}
.header__contact .contact__text {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__contact .contact__text {
    display: block;
  }
}

.header__logo {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
@media screen and (min-width: 768px) {
  .header__logo {
    margin: 0.25rem 0;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
  }
}
.header__logo .logo__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.header__logo img,
.header__logo svg {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header__logo img,
  .header__logo svg {
    width: 28.5rem;
    height: 6.5rem;
  }
}

.header__socials {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__socials {
    display: block;
  }
}
.header__socials .socials__list {
  gap: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.header__socials .socials__item:nth-child(1) .socials__link {
  width: 1.5rem;
  height: 1.5rem;
}
.header__socials .socials__item:nth-child(2) .socials__link {
  width: 1.25rem;
  height: 1.25rem;
}
.header__socials .socials__item:hover .socials__ico {
  fill: #234f9b;
}
.header__socials .socials__link {
  width: 1.25rem;
  height: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.header__socials .socials__ico {
  width: 100%;
  height: 100%;
  fill: #535353;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.header__burger .burger__symbol {
  width: 3rem;
  height: 2rem;
  gap: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__burger .burger__item {
  width: 2.5rem;
  height: 0.25rem;
  background-color: #234f9b;
  border-radius: 0.5rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header__burger .burger__text {
  font-size: 0.75rem;
  line-height: 0.75rem;
}

@media screen and (min-width: 768px) {
  .header__nav {
    grid-column: span 3;
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    position: absolute;
    background-color: #ffffff;
    top: 100%;
    left: 50%;
    width: 100%;
    z-index: 12;
    max-width: calc(100% - 2rem);
    padding: 0.5rem 0 0.5rem 0.25rem;
    opacity: 0;
    -webkit-transform: scale(2) translateX(-50%);
    transform: scale(2) translateX(-50%);
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}
.header__nav .nav__list {
  gap: 0.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .header__nav .nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.header__nav .nav__item {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__nav .nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .header__nav .nav__item.nav__item_secondary {
    grid-template-columns: auto 2.5rem;
  }
}
.header__nav .nav__item_active .nav__link {
  color: #234f9b;
}
@media screen and (min-width: 768px) {
  .header__nav .nav__item_active .nav__link {
    color: #ffffff;
    background-color: #234f9b;
  }
}
@media screen and (min-width: 768px) {
  .header__nav .nav__item:hover .nav__link {
    color: #ffffff;
    background-color: #234f9b;
  }
  .header__nav .nav__item:hover .nav__sublist {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav .nav__link {
  color: #535353;
  background-color: transparent;
  font-size: 1.375rem;
  line-height: 100%;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header__nav .nav__link {
    padding: 0.75rem 1rem;
  }
}
.header__nav .nav__ico {
  height: 2.5rem;
  width: 2.5rem;
  background-color: #234f9b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header__nav .nav__ico {
    display: none;
  }
}
.header__nav .nav__ico:before {
  color: #ffffff;
  font-weight: 300;
  font-size: 2.5rem;
  content: "+";
}
.header__nav .nav__sublist {
  padding: 0.75rem 1rem;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .header__nav .nav__sublist {
    position: absolute;
    background-color: #ffffff;
    top: 100%;
    left: 0;
    padding: 1.25rem;
    z-index: 2;
    opacity: 0;
    gap: 0.25rem;
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}
.header__nav .nav__subitem:not(:last-child) {
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .header__nav .nav__subitem:not(:last-child) {
    margin-bottom: 0;
  }
}
.header__nav .nav__subitem_active .nav__sublink,
.header__nav .nav__subitem:hover .nav__sublink {
  color: #234f9b;
}
.header__nav .nav__sublink {
  color: #535353;
  font-size: 1.375rem;
  line-height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header__nav .nav__sublink {
    font-size: 1.125rem;
    white-space: nowrap;
    text-transform: uppercase;
  }
}

.layout__footer {
  padding: 2.5rem 0;
  background-color: #f0f0f0;
}
.layout__footer .container {
  gap: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .layout__footer .container {
    gap: 5rem;
    grid-template-columns: 1fr 1fr;
    display: grid;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .layout__footer .container::after {
    content: "";
    width: 1px;
    height: calc(100% + 2.5rem);
    background-color: #434343;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.footer__group {
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.footer__contact {
  font-size: 1rem;
  line-height: 1.25rem;
  gap: 0.5rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__contact {
    text-align: right;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.footer__contact .contact__title {
  font-weight: 700;
}
.footer__contact .contact__list {
  gap: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer__contact .contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer__contact .contact__link {
  color: #535353;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer__contact .contact__link:hover {
  color: #234f9b;
}

.footer__logo .logo__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.footer__logo img,
.footer__logo svg {
  width: 14.25rem;
  height: 5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__socials .socials__list {
  gap: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .footer__socials .socials__list {
    gap: 0.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .footer__socials .socials__item:nth-child(1) {
    -webkit-transform: translateX(2.75rem);
    transform: translateX(2.75rem);
  }
}
.footer__socials .socials__item:nth-child(1) .socials__ico {
  width: 1.875rem;
  height: 1.875rem;
}
.footer__socials .socials__link {
  color: #626262;
  gap: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__socials .socials__symbol {
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  border: 0.125rem solid #535353;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer__socials .socials__ico {
  width: 1.5rem;
  height: 1.5rem;
  fill: #626262;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer__socials .socials__item:hover .socials__ico {
  fill: #234f9b;
}
.footer__socials .socials__item:hover .socials__symbol {
  border-color: #234f9b;
}
.footer__socials .socials__item:hover .socials__text {
  color: #234f9b;
}
.footer__socials .socials__text {
  color: #626262;
  font-size: 0.875rem;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer__nav .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer__nav .nav__item:hover .nav__link,
.footer__nav .nav__item.nav__item_active .nav__link {
  color: #234f9b;
  text-decoration: underline;
}
.footer__nav .nav__link {
  color: #535353;
  font-size: 1rem;
  line-height: 130%;
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.layout__section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.75rem;
  padding: 2.5rem 0;
}
.layout__section .section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.layout__copyright {
  color: #ffffff;
  background-color: #234f9b;
  padding: 0.5rem 0;
  font-size: 1rem;
  line-height: 100%;
  text-align: center;
}
.copyright__link:hover {
  text-decoration: underline;
}
.layout__scroll {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  background-color: #234f9b;
  cursor: pointer;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (min-width: 768px) {
  .layout__scroll {
    right: 2rem;
    bottom: 11.25rem;
  }
}
.layout__scroll:hover .scroll__ico {
  fill: #434343;
}
.layout__scroll.layout__scroll_active {
  opacity: 1;
  visibility: visible;
}
.layout__scroll .scroll__ico {
  width: 100%;
  height: 100%;
  fill: #234f9b;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.layout__widgets {
  position: fixed;
  right: 0;
  top: 10rem;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .layout__widgets {
    top: 17.5rem;
  }
}
.layout__widgets .widgets__list {
  gap: 0.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.layout__widgets .widgets__item {
  position: relative;
  cursor: pointer;
}
.layout__widgets .widgets__item:hover .widgets__ico {
  fill: #a3a7b0;
}
.layout__widgets .widgets__item:hover .widgets__review {
  opacity: 1;
  visibility: visible;
}
.layout__widgets .widgets__preview {
  width: 2rem;
  height: 2rem;
}
.layout__widgets .widgets__symbol {
  width: 100%;
  height: 100%;
}
.layout__widgets .widgets__ico {
  width: 100%;
  height: 100%;
  fill: #234f9b;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.layout__widgets .widgets__review {
  border: 1px solid #a3a7b0;
  padding: 1.25rem;
  gap: 0.5rem;
  top: 0;
  right: 100%;
  max-width: 17rem;
  white-space: nowrap;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.layout__widgets .widgets__review.widgets__review_secodnary {
  padding: 0.25rem 0.75rem;
}
.layout__widgets .widgets__title {
  font-weight: 700;
}
.layout__widgets .widgets__sublink {
  color: #535353;
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.layout__widgets .widgets__sublink:hover {
  color: #234f9b;
}

.layout__cookie {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 11;
  width: 100%;
  padding: 1rem 2.5rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .layout__cookie {
    padding: 1rem 1.5rem;
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.layout__cookie .cookie__main {
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .layout__cookie .cookie__main {
    margin-bottom: 0;
    margin-right: 1.25rem;
  }
}
.layout__cookie .cookie__main a {
  color: #ffffff;
  text-decoration: underline;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.layout__cookie .cookie__main a:hover {
  color: #234f9b;
}
.layout__cookie .cookie_footer {
  gap: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.layout__cookie .cookie_footer .btn {
  min-width: 10rem;
}

.switch {
  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: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background-color: #f0f0f0;
}
.switch .switch__content {
  margin-right: 1rem;
}
.switch .switch__action .switch-action__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.switch .switch__action .switch-action__input {
  position: absolute;
  left: -9999px;
}
.switch
  .switch__action
  .switch-action__input:checked
  ~ .switch-action__text:after {
  background-color: #234f9b;
}
.switch
  .switch__action
  .switch-action__input:checked
  ~ .switch-action__text:before {
  right: 0.125rem;
}
.switch .switch__action .switch-action__text {
  padding-right: 6rem;
  font-size: 1rem;
  line-height: 2.5rem;
}
.switch .switch__action .switch-action__text:before,
.switch .switch__action .switch-action__text:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.switch .switch__action .switch-action__text:after {
  width: 4.75rem;
  height: 2.5rem;
  border-radius: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.switch .switch__action .switch-action__text:before {
  width: 2.25rem;
  height: 2.25rem;
  background-color: #ffffff;
  border-radius: 50%;
  top: 0.125rem;
  right: 2.35rem;
  z-index: 2;
  opacity: 1;
}

.layout__slider {
  width: 100%;
}

.slider__item {
  position: relative;
}

.slider__picture {
  aspect-ratio: 1/0.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .slider__picture {
    aspect-ratio: 1/0.3;
  }
}
.slider__picture img {
  width: 100%;
  height: 100%;
}

.slider__route {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
}

.slider__button {
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2.5rem;
  background: none;
  display: none !important;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  z-index: 2;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .slider__button {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.slider__button.slider__button_prev {
  left: 1.125rem;
}
.slider__button.slider__button_next {
  right: 1.125rem;
}
.slider__button img {
  width: 100%;
  height: 100%;
}

.slider__pagination {
  position: absolute;
  left: 50%;
  gap: 0.25rem;
  bottom: 0.875rem;
  z-index: 2;
  display: none !important;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .slider__pagination {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.slider__pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
}
.slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #234f9b;
}

.layout__article {
  text-align: center;
}
