@import "normalize.min.css";

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Light.woff2") format("woff2"),
    url("../fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"),
    url("../fonts/OpenSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Medium.woff2") format("woff2"),
    url("../fonts/OpenSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"),
    url("../fonts/OpenSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"),
    url("../fonts/OpenSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-ExtraBold.woff2") format("woff2"),
    url("../fonts/OpenSans-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"),
    url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-ExtraBold.woff2") format("woff2"),
    url("../fonts/Roboto-ExtraBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Black.woff2") format("woff2"),
    url("../fonts/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-OpenSans: "Open Sans", sans-serif;
  --font-Roboto: "Roboto", sans-serif;
  --black-font: #000;
  --blue: #00468f;
  --light-blue: #ebf1ff;
  --light-grey: #f8f8f8;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.4;
}
[data-href] {
  cursor: pointer;
}
body {
  font-size: 18px;
  font-family: var(--font-OpenSans);
  color: var(--black-font);
  line-height: 1.4;
  background-color: var(--light-grey);
}
body.no-scroll {
  overflow-y: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
h1,
h2,
.h2 {
  font-family: var(--font-Roboto);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2em;
}
h1,
h2,
.h2 {
  font-size: 50px;
  margin: 30px 0;
}
h3 {
  font-size: 20px;
}
@media screen and (max-width: 1480px) {
  h1,
  h2,
  .h2 {
    font-size: 46px;
  }
}
@media screen and (max-width: 1280px) {
  h1,
  h2,
  .h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 992px) {
  h1,
  h2,
  .h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  h1,
  h2,
  .h2 {
    font-size: 28px;
    margin: 25px 0;
  }
}
@media screen and (max-width: 480px) {
  h1,
  h2,
  .h2 {
    font-size: 24px;
    margin: 20px 0;
    line-height: 1.2em;
  }
  h3 {
    font-size: 18px;
  }
}
.container {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
main {
  flex: 1;
}
.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.popup {
  display: none;
}
b {
  font-weight: 700;
}
.btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background-color: var(--blue);
  color: var(--white);
  text-transform: uppercase;
}
.contact-elem {
  position: relative;
  display: block;
  padding-left: 38px;
}
.contact-elem::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 24px;
  top: 0px;
  left: 0;
}
.contact-elem--tel::before {
  background: url("/static/img/tel.svg") center center / 100% no-repeat;
}
.contact-elem--adr::before {
  background: url("/static/img/adr.svg") center center / 100% no-repeat;
}
.contact-elem--mail::before {
  background: url("/static/img/mail.svg") center center / 100% no-repeat;
}
@media screen and (max-width: 992px) {
  .contact-elem {
    padding-left: 30px;
  }
}
/* header */
.header_contacts {
  color: #22578e;
}
header .contact-elem::before {
  filter: invert(25%) sepia(97%) saturate(639%) hue-rotate(177deg)
    brightness(93%) contrast(88%);
}
.header_top {
  padding: 20px 0;
  border-bottom: 2px solid #cecece;
}
.logo-mobile {
  display: none;
}
.header_contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 60px;
  row-gap: 5px;
  font-size: 16px;
  font-weight: 600;
}
.header_content {
  position: relative;
  padding: 20px 0;
}
.header_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
.header_menu {
  flex: 1;
}
header .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
}
header .menu a {
  display: block;
  padding: 10px 0;
  font-weight: 600;
}
header .menu .active a,
header .menu a:hover {
  color: var(--blue);
}
.header_btn {
  display: block;
  background-color: var(--blue);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  padding: 20px 45px;
  border-radius: 40px;
}
@media screen and (max-width: 1400px) {
  .header_contacts {
    column-gap: 20px;
  }
  .header_content {
    padding: 15px 0;
  }
  header .logo {
    max-width: 280px;
  }
  .header_btn {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 1080px) {
  .header_row {
    flex-wrap: wrap;
    row-gap: 5px;
  }
  .header_menu {
    width: 100%;
    order: 1;
    flex: initial;
  }
  header .menu {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  header .logo {
    display: none;
  }
  .header_menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: var(--light-grey);
    z-index: 4;
    padding: 0px 15px 20px;
    box-shadow: 0 5px 5px 1px rgba(0, 0, 0, 0.1);
  }
  .header .menu {
    display: block;
  }
  header .menu a {
    padding: 5px 15px;
  }
  .header_contacts {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .header_btn {
    font-size: 16px;
    padding: 12px 25px;
  }
  .logo-mobile {
    display: block;
    max-width: 240px;
  }
  .header_top .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 10px;
  }
  .header .contact-elem {
    white-space: nowrap;
  }
}
@media screen and (max-width: 480px) {
  .header_top .container {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }
  .header_contacts {
    align-items: flex-start;
  }
  .header_btn {
    font-size: 15px;
  }
}
.menu-toggle {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: none;
  align-items: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
}
.menu-toggle > span {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 5px;
  background: var(--blue);
  color: var(--blue);
}
.menu-toggle > span::before,
.menu-toggle > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: currentColor;
  left: 0;
}
.menu-toggle > span::before {
  top: -15px;
  transition: top 0.3s;
}
.menu-toggle > span::after {
  bottom: -15px;
  transition: bottom 0.3s;
}
.menu-toggle.is-active > span {
  background: transparent !important;
}
.menu-toggle.is-active > span::before {
  top: 0;
  transform: rotate(-45deg);
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.menu-toggle.is-active > span::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.invert:not(.open) .header:not(.fixed) .menu-toggle > span {
  background: var(--white);
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}
/* end header */
/* footer */
footer {
  padding: 40px 0 35px;
  border-top: 2px solid #cecece;
  color: var(--blue);
}
.footer_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  column-gap: 20px;
}
.footer_contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  row-gap: 5px;
  font-size: 16px;
  font-weight: 600;
  flex: 1;
  max-width: 760px;
}
footer .contact-elem::before {
  filter: invert(25%) sepia(97%) saturate(639%) hue-rotate(177deg)
    brightness(93%) contrast(88%);
}
footer .logo {
  max-width: 284px;
}
.footer_btn {
  display: block;
  background-color: var(--white);
  border: 2px solid var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 38px;
  border-radius: 40px;
  font-size: 16px;
}
.footer_copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  column-gap: 10px;
  row-gap: 5px;
}
.footer_copy__holder {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-Roboto);
  padding-left: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.footer_copy__holder::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("/static/img/copy.png") center center / 100% no-repeat;
}
.footer_copy a {
  text-decoration: underline;
  font-weight: 600;
}
.footer_copy a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1280px) {
  .footer_contacts {
    flex-direction: column;
    align-items: flex-start;
    max-width: 260px;
  }
}
@media screen and (max-width: 992px) {
  footer {
    padding: 30px 0 25px;
  }
  .footer_content {
    align-items: flex-start;
    margin-bottom: 20px;
    column-gap: 10px;
    flex-wrap: wrap;
  }
  footer .contact-elem {
    white-space: nowrap;
  }
  footer .logo {
    max-width: 260px;
  }
  .footer_btn {
    padding: 10px 25px;
  }
}
@media screen and (max-width: 600px) {
  .footer_content {
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
  }
  .footer_copy {
    flex-direction: column;
    align-items: center;
  }
}
/* end footer */

.main-gallery {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.main-slider {
  position: relative;
  overflow: hidden;
}
.main-slider img {
  display: block;
}
.slider-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url("/static/img/arr.svg") center center / 30% no-repeat, #99cbff;
  border-radius: 5px;
  top: 50%;
  z-index: 2;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.slider-btn:hover {
  opacity: 1;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
}
.main-slider-prev {
  transform: translate(-700px, -50%) scale(-1, 1);
  left: 50%;
}
.main-slider-next {
  right: 50%;
  transform: translate(700px, -50%);
}
@media screen and (max-width: 1450px) {
  .main-slider-prev {
    transform: translateY(-50%) scale(-1, 1);
    left: 15px;
  }
  .main-slider-next {
    right: 15px;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 992px) {
  .main-slider_item {
    position: relative;
    padding-bottom: 36vw;
    overflow: hidden;
  }
  .main-slider_item img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    max-width: initial;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .main-gallery .slider-btn {
    display: none;
  }
}
.billet {
  position: relative;
  background-color: var(--white);
  padding: 30px 20px 30px 130px;
  border-radius: 30px;
  font-weight: 600;
  min-height: 100px;
  line-height: 1.25;
}
.billet::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  width: 80px;
  height: 80px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.billet--1::before {
  background-image: url("/static/img/icons/billet-01.svg");
}
.billet--2::before {
  background-image: url("/static/img/icons/billet-02.svg");
}
.billet--3::before {
  background-image: url("/static/img/icons/billet-03.svg");
}
.billet--4::before {
  background-image: url("/static/img/icons/billet-04.svg");
}
.billet--5::before {
  background-image: url("/static/img/icons/billet-05.svg");
}
.billet--6::before {
  background-image: url("/static/img/icons/billet-06.svg");
}
.billet--7::before {
  background-image: url("/static/img/icons/billet-07.svg");
}
.billet--8::before {
  background-image: url("/static/img/icons/billet-08.svg");
}
.billet b {
  display: block;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.billet span {
  display: block;
  line-height: 1.1em;
}
@media screen and (max-width: 1480px) {
  .billet {
    padding: 25px 15px 25px 120px;
  }
  .billet::before {
    left: 25px;
    top: 25px;
    width: 75px;
    height: 75px;
  }
}
@media screen and (max-width: 1280px) {
  .billet b {
    font-size: 22px;
  }
  .billet {
    padding: 20px 15px 20px 100px;
  }
  .billet::before {
    left: 15px;
    top: 15px;
    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .billet {
    padding: 15px 10px 15px 80px;
    border-radius: 10px;
    min-height: 80px;
  }
  .billet::before {
    left: 10px;
    top: 10px;
    width: 60px;
    height: 60px;
  }
  .billet b {
    font-size: 20px;
  }
}
.mainpage {
  padding-top: 165px;
  padding-bottom: 140px;
}
.mainpage_intro {
  margin-bottom: 160px;
}
.mainpage_intro__text {
  font-family: var(--font-Roboto);
  width: 46%;
  font-size: 36px;
  font-weight: 600;
}
.mainpage_intro__text h1 {
  margin: 0 0 20px;
}
.mainpage_intro__sub {
  line-height: 1.2em;
}
.mainpage_intro__billets {
  width: 52%;
  padding-top: 10px;
  margin-bottom: 30px;
}
.mainpage_intro__billets li {
  display: grid;
  justify-content: space-between;
  row-gap: 20px;
  column-gap: 30px;
}
@media screen and (min-width: 769px) {
  .mainpage_intro__billets li:nth-child(1) {
    grid-template-columns: 1fr 1.01fr;
    padding-left: 13px;
  }
  .mainpage_intro__billets li:nth-child(2) {
    grid-template-columns: 1fr 1.4fr;
  }
}
.mainpage_intro__billets li + li {
  margin-top: 30px;
}
.mainpage_intro__list {
  display: grid;
  justify-content: space-between;
  row-gap: 20px;
  column-gap: 30px;
  grid-template-columns: 1fr 1.9fr 1.4fr;
}
@media screen and (max-width: 1480px) {
  .mainpage {
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .mainpage_intro {
    margin-bottom: 120px;
  }
  .mainpage_intro__text {
    width: 44%;
  }
  .mainpage_intro__billets {
    width: 54%;
  }
}
@media screen and (max-width: 1080px) {
  .mainpage {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .mainpage_intro {
    margin-bottom: 100px;
  }
  .mainpage_intro__text,
  .mainpage_intro__billets {
    width: 100%;
  }
  .mainpage_intro__text h1 {
    margin-bottom: 10px;
  }
  .mainpage_intro br {
    display: none;
  }
  .mainpage_intro__list {
    grid-template-columns: 1fr 1fr;
  }
  .mainpage_intro__list li:nth-child(2) {
    order: 1;
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 992px) {
  .mainpage {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .mainpage_intro {
    margin-bottom: 80px;
  }
  .mainpage_intro__text {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .mainpage {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .mainpage_intro {
    margin-bottom: 60px;
  }
  .mainpage_intro__text {
    font-size: 24px;
  }
  .mainpage_intro__billets {
    margin-bottom: 15px;
  }
  .mainpage_intro__billets li,
  .mainpage_intro__list {
    grid-template-columns: repeat(2, 48.5%);
    row-gap: 15px;
    column-gap: initial;
  }
  .mainpage_intro__billets li + li {
    margin-top: 15px;
  }
}
@media screen and (max-width: 600px) {
  .mainpage_intro__billets li,
  .mainpage_intro__list {
    grid-template-columns: 100%;
  }
}
@media screen and (max-width: 480px) {
  .mainpage {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .mainpage_intro {
    margin-bottom: 40px;
  }
  .mainpage_intro__text {
    font-size: 20px;
  }
}
.mainpage_info {
  align-items: flex-start;
  margin-bottom: 160px;
}
.mainpage_info__text {
  width: 49%;
}
.mainpage_info__text .mainpage_info__sub {
  font-size: 24px;
  font-weight: 700;
  max-width: unset;
  margin-bottom: 25px;
}
.mainpage_info__text p {
  max-width: 580px;
}
.mainpage_info__img {
  width: 49%;
  padding-top: 5px;
}
.mainpage_info__img img {
  display: block;
  border-radius: 30px;
}
@media screen and (max-width: 1480px) {
  .mainpage_info {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 992px) {
  .mainpage_info {
    margin-bottom: 80px;
  }
  .mainpage_info__text .mainpage_info__sub {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .mainpage_info {
    margin-bottom: 60px;
  }
  .mainpage_info__text .mainpage_info__sub {
    font-size: 20px;
  }
  .mainpage_info__text,
  .mainpage_info__img {
    width: 100%;
  }
  .mainpage_info__text p {
    max-width: initial;
  }
  .mainpage_info__img img {
    margin: 0 auto;
    border-radius: 25px;
  }
}
@media screen and (max-width: 480px) {
  .mainpage_info__text .mainpage_info__sub {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.mainpage_catalog {
  margin-bottom: 140px;
}
.maincatalog_list {
  display: grid;
  grid-template-columns: repeat(4, 23.5%);
  justify-content: space-between;
  row-gap: 30px;
  padding-top: 20px;
  margin-bottom: 40px;
}
.maincatalog_elem {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  min-height: 164px;
  padding: 30px 50% 30px 30px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.maincatalog_name {
  color: var(--blue);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.maincatalog_more {
  position: relative;
  display: inline-block;
  padding-right: 30px;
  align-self: flex-start;
  margin-top: auto;
}
.maincatalog_more::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 12px;
  background: url("/static/img/arrow-right.svg") center center / 100% no-repeat;
}
.mainpage_catalog__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--blue);
  color: var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 240px;
  min-height: 64px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 auto;
  padding: 10px;
}
@media screen and (max-width: 1480px) {
  .mainpage_catalog {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1080px) {
  .maincatalog_list {
    grid-template-columns: repeat(3, 31.5%);
    row-gap: 20px;
    padding-top: 0px;
  }
}
@media screen and (max-width: 992px) {
  .mainpage_catalog {
    margin-bottom: 80px;
  }
  .maincatalog_elem {
    min-height: 148px;
    padding: 20px 50% 20px 20px;
  }
  .mainpage_catalog__link {
    min-height: 58px;
  }
}
@media screen and (max-width: 768px) {
  .maincatalog_list {
    grid-template-columns: repeat(2, 48.5%);
    row-gap: 15px;
  }
}
@media screen and (max-width: 600px) {
  .maincatalog_name {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .mainpage_catalog {
    margin-bottom: 40px;
  }
  .maincatalog_list {
    grid-template-columns: 100%;
    row-gap: 15px;
  }
  .maincatalog_elem {
    min-height: 120px;
    background-position: right center;
    background-size: auto 100%;
  }
  .mainpage_catalog__link {
    min-height: 48px;
    max-width: 200px;
  }
}
.mainpage_invitation {
  padding-top: 35px;
}
.invitation {
  position: relative;
  background: var(--light-blue);
  padding: 65px 50% 60px 75px;
  border-radius: 40px;
  box-shadow: 0px 4px 8px 4px #d4def0;
  margin-bottom: 40px;
}
.invitation::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: url("/static/img/invitation.png") 42% 40% / 61% no-repeat;
  right: 0;
  top: 0;
}
.invitation_title {
  margin: 0 0 40px;
  line-height: 1.25em;
}
.invitation p {
  margin-bottom: 30px;
}
.invitation_sub {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
}
@media screen and (max-width: 1480px) {
  .invitation {
    padding: 55px 50% 50px 60px;
  }
}
@media screen and (max-width: 1080px) {
  .invitation {
    padding: 40px 50% 40px 40px;
  }
}
@media screen and (max-width: 992px) {
  .invitation {
    padding-right: 40%;
  }
  .invitation::before {
    width: 40%;
    background-position: center;
    background-size: 75%;
  }
  .invitation_sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .invitation {
    padding: 30px 40% 30px 20px;
    border-radius: 20px;
  }
  .invitation_title,
  .invitation p {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .invitation {
    padding: 200px 15px 30px;
    border-radius: 20px;
    text-align: center;
  }
  .invitation::before {
    width: 100%;
    height: 180px;
    left: 0;
    top: 10px;
    background-size: auto 100%;
  }
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--blue);
  padding: 20px 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("/static/img/arr-b.svg") center center / 7px no-repeat;
  margin: 0 10px;
  filter: invert(12%) sepia(58%) saturate(5916%) hue-rotate(201deg)
    brightness(95%) contrast(101%);
}
.breadcrumbs li:last-child::after {
  display: none;
}
.delivery_intro {
  display: grid;
  grid-template-columns: 32% 66%;
  justify-content: space-between;
  padding-top: 55px;
  margin-bottom: 40px;
  row-gap: 20px;
}
.delivery_intro h1 {
  margin: 0;
}
.delivery_intro p {
  max-width: 800px;
}
p.delivery_intro__sub {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.delivery_methods {
  padding-bottom: 40px;
}
.delivery_methods__list {
  display: grid;
  grid-template-columns: repeat(4, 23.5%);
  justify-content: space-between;
  align-items: start;
  row-gap: 20px;
  margin-bottom: 40px;
}
.delivery_methods__list li {
  padding: 28px;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0px 5px 8px 1px rgba(128, 127, 128, 0.1);
  font-weight: 600;
}
.delivery_methods__list li b {
  position: relative;
  display: block;
  font-size: 24px;
  text-transform: uppercase;
  padding-left: 60px;
  min-height: 50px;
  margin-bottom: 20px;
  line-height: 1.25em;
}
.delivery_methods__list li b::before {
  content: attr(data-num);
  position: absolute;
  font-size: 68px;
  color: var(--blue);
  font-family: var(--font-Roboto);
  font-weight: 800;
  left: 0;
  top: 0;
  line-height: 0.9;
}
.delivery_methods__list li p {
  line-height: 1.35em;
  margin: 0;
}
.delivery_notice {
  background: url("/static/img/delivery_notice.png") center center / cover
      no-repeat,
    var(--light-blue);
  padding: 30px;
  border-radius: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  box-shadow: 0px 4px 8px 4px #d4def0;
  width: 100%;
  max-width: 1390px;
  margin: 0 auto 40px;
}
.delivery_notice p {
  width: 100%;
  max-width: 950px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 1480px) {
  .delivery_intro {
    padding-top: 30px;
  }
  .delivery_methods__list li {
    padding: 25px 15px 25px 20px;
  }
  .delivery_methods__list li b {
    padding-left: 50px;
    margin-bottom: 15px;
    font-size: 22px;
  }
}
@media screen and (max-width: 1180px) {
  .delivery_methods__list {
    grid-template-columns: repeat(2, 48.5%);
    align-items: initial;
  }
  .delivery_methods__list li b {
    display: flex;
    align-items: center;
  }
  .delivery_methods__list li b::before {
    top: -5px;
  }
  .delivery_intro__sub br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .delivery_intro {
    grid-template-columns: 100%;
    padding-top: 20px;
    margin-bottom: 25px;
  }
  .delivery_notice,
  p.delivery_intro__sub {
    font-size: 22px;
  }
  .delivery_notice {
    padding: 30px 15px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 600px) {
  .delivery_methods__list li b {
    font-size: 20px;
    padding-left: 40px;
    min-height: 40px;
  }
  .delivery_methods__list li b::before {
    font-size: 52px;
    top: 0;
  }
  .delivery_methods {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .delivery_notice,
  p.delivery_intro__sub {
    font-size: 20px;
  }
  .delivery_methods__list {
    grid-template-columns: 100%;
    margin-bottom: 20px;
  }
}
.catalog-main .breadcrumbs {
  margin-bottom: 55px;
}
.maincats {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  justify-content: space-between;
  row-gap: 30px;
  padding-top: 20px;
  margin-bottom: 60px;
}
.maincats_item {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  min-height: 194px;
  padding: 20px 40% 30px 30px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  box-shadow: 0px 12px 18px 0px rgba(202, 202, 202, 0.1);
}
.maincats_name {
  color: var(--blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.maincats_more {
  position: relative;
  display: inline-block;
  padding-right: 30px;
  align-self: flex-start;
  margin-top: auto;
}
.maincats_more::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 12px;
  background: url("/static/img/arrow-right.svg") center center / 100% no-repeat;
}
@media screen and (max-width: 1480px) {
  .maincats_name {
    font-size: 28px;
  }
}
@media screen and (max-width: 1280px) {
  .catalog-main .breadcrumbs {
    margin-bottom: 35px;
  }
  .maincats_name {
    font-size: 26px;
  }
  .maincats {
    row-gap: 25px;
    padding-top: 0px;
    margin-bottom: 40px;
  }
  .maincats_item {
    min-height: 180px;
    padding: 20px 40% 25px 20px;
  }
}
@media screen and (max-width: 992px) {
  .maincats {
    grid-template-columns: repeat(2, 48.5%);
    row-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .maincats_item {
    min-height: 164px;
  }
  .maincats_name {
    font-size: 22px;
  }
  .catalog-main .breadcrumbs {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 600px) {
  .maincats_name {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .maincats {
    grid-template-columns: 100%;
    row-gap: 15px;
  }
  .maincats_item {
    min-height: 120px;
    background-position: right center;
    background-size: auto 100%;
  }
  .maincats_name {
    font-size: 24px;
  }
}
.catalog {
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: start;
  column-gap: 60px;
  padding-top: 80px;
  margin-bottom: 80px;
}
.catalog_aside {
  border-right: 2px solid #9ab4d0;
  padding-right: 35px;
  padding-top: 40px;
}
.catalog_menu {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  padding-bottom: 20px;
}
.catalog_menu li {
  margin-bottom: 10px;
}
.catalog_menu li a {
  position: relative;
  display: block;
  padding: 10px 10px 10px 20px;
  border: 2px solid transparent;
  border-radius: 15px;
  line-height: 1em;
}
.catalog_menu li a::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url("/static/img/arr-b.svg") center center / 10px no-repeat;
  filter: invert(12%) sepia(58%) saturate(5916%) hue-rotate(201deg)
    brightness(95%) contrast(101%);
  display: none;
}
.catalog_menu li.active a,
.catalog_menu li a:hover {
  background-color: var(--white);
  border-color: var(--blue);
  padding-right: 30px;
}
.catalog_menu li.active a::before,
.catalog_menu li a:hover::before {
  display: block;
}
.catalog_content h1 {
  margin: 0 0 20px;
  line-height: 0.9em;
}
.catalog-title {
  font-size: 40px;
}
.catalog_content__hero {
  display: grid;
  grid-template-columns: 58% 40%;
  justify-content: space-between;
  row-gap: 20px;
  align-items: start;
  margin-bottom: 40px;
}
.catalog_panel {
  background-color: var(--light-blue);
  padding: 20px 30px;
  border-radius: 15px;
  margin-top: 30px;
  max-width: 556px;
}
.catalog_panel__list {
  display: flex;
  flex-wrap: wrap;
  /* column-count: 3; */
  column-gap: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
}
.catalog_panel__list li {
  margin-bottom: 4px;
}
.catalog_panel__list li a {
  position: relative;
  display: block;
  padding: 5px 0;
  line-height: 1.4em;
  z-index: 1;
}
.catalog_panel__list li a::before {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 100%;
  left: -10px;
  top: 0;
  z-index: -1;
  opacity: 0;
  border-radius: 10px;
  background-color: var(--white);
}
.catalog_panel__list li a:hover::before {
  opacity: 1;
}
.catalog_picture {
  position: relative;
  margin: -20px -20px 0 0;
}
.catalog_picture img {
  display: block;
  margin-left: auto;
}
.catalog_content__text {
  padding-top: 20px;
  margin-bottom: 40px;
}
.catalog_notice {
  background: url("/static/img/catalog_notice.png") center center / cover
      no-repeat,
    var(--light-blue);
  padding: 30px 20px 20px;
  border-radius: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  box-shadow: 0px 4px 8px 4px #d4def0;
  width: 100%;
  max-width: 1000px;
  margin: 90px auto 40px;
}
.catalog-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 10px;
  width: 100%;
  min-height: 60px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 auto;
  padding: 10px;
}

@media screen and (max-width: 1480px) {
  .catalog_picture {
    margin: 0;
  }
  .catalog-title {
    font-size: 38px;
  }
}
@media screen and (max-width: 1280px) {
  .catalog {
    grid-template-columns: 300px 1fr;
    padding-top: 40px;
    margin-bottom: 60px;
    column-gap: 40px;
  }
  .catalog_aside {
    padding-right: 15px;
    padding-top: 20px;
  }
  .catalog-title {
    font-size: 36px;
  }
  .catalog_panel {
    padding: 20px;
  }
  .catalog_notice {
    margin: 60px auto 30px;
    padding: 20px 15px 10px;
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  .catalog_content__hero {
    grid-template-columns: 100%;
    margin-bottom: 25px;
  }
  .catalog_panel {
    margin-top: 10px;
    max-width: initial;
  }
  .catalog_picture img {
    margin: 0 auto;
  }
  .catalog_notice {
    font-size: 20px;
  }
  .catalog-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .catalog {
    grid-template-columns: 100%;
    row-gap: 30px;
    padding-top: 10px;
    margin-bottom: 40px;
  }
  .catalog_aside {
    padding: 0;
    border-right: none;
  }
  .catalog_menu {
    display: none;
    padding: 20px 0 0;
  }
  .catalog_menu li {
    margin-bottom: 5px;
  }
  .catalog_menu li a {
    border-radius: 5px;
    border-width: 1px;
  }
  .catalog_menu li a::before {
    opacity: 0;
  }
  .catalog-toggle {
    display: flex;
  }
  .catalog-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .catalog-title {
    font-size: 26px;
  }
  .catalog_menu li a {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 18px;
  }
  .catalog_notice {
    font-size: 18px;
    margin: 20px 0;
  }
  .catalog_panel {
    padding: 25px 15px;
  }
  .catalog_panel__list li a {
    font-size: 18px;
  }
  .catalog_panel__list li a::before {
    width: 100%;
    left: 0px;
    border-radius: 8px;
  }
}
.catalog-item .breadcrumbs {
  margin-bottom: 65px;
}
.form-entry {
  display: block;
  width: 100%;
}
.agreement {
  position: relative;
  display: block;
  font-size: 16px;
}
.agreement input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.agreement span {
  position: relative;
  display: block;
  padding-left: 35px;
}
.agreement span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue);
  border-radius: 3px;
  background-color: var(--white);
}
.agreement span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 12px;
  height: 6px;
  transform: rotate(-45deg);
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0;
}
.agreement input:checked + span::after {
  opacity: 1;
}
.agreement span a {
  font-weight: 600;
  text-decoration: underline;
}
.agreement span a:hover {
  text-decoration: none;
}
.captcha-row {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.captcha-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .agreement {
    font-size: 14px;
  }
  .agreement span {
    padding-left: 30px;
  }
  .captcha-row {
    column-gap: 10px;
  }
}

.item {
  display: grid;
  grid-template-columns: 36% 57%;
  justify-content: space-between;
  row-gap: 20px;
  padding-top: 15px;
  margin-bottom: 40px;
}
.item_display img {
  display: block;
  margin: 0 auto;
}
.item_tabs__btns {
  padding: 30px;
  background-color: var(--light-blue);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  justify-content: space-between;
  align-items: center;
  column-gap: 30px;
  row-gap: 10px;
  margin-top: 10px;
  margin-bottom: 40px;
}
.tab-btn {
  width: 100%;
  padding: 10px;
  background-color: var(--white);
  color: var(--blue);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}
.tab-btn:hover,
.tab-btn.active {
  background-color: var(--blue);
  color: var(--white);
}
.item_tab {
  display: none;
}
.item_tab.active {
  display: block;
}
.item_desc p b {
  font-size: 1.1em;
}
.item_desc__sub {
  font-size: 1.2em;
}
.item_spec__img {
  margin-bottom: 25px;
  text-align: center;
}
.item_spec__doc {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 16px;
  text-decoration: underline;
  padding-left: 56px;
  min-height: 45px;
  font-weight: 500;
}
.item_spec__doc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 44px;
  background: url("/static/img/pdf.png") center center / 100% no-repeat;
}
.item_spec__doc:hover {
  text-decoration: none;
}
.item-gallery {
  position: relative;
  overflow: hidden;
  padding: 10px;
}
.item-gallery_item img {
  display: block;
  box-shadow: 0px 6px 8px 0px rgba(202, 202, 202, 0.2);
  border-radius: 20px;
}
.item-gallery-prev {
  transform: translateY(-50%) scale(-1, 1);
  left: 0;
}
.item-gallery-next {
  right: 0;
  transform: translateY(-50%);
}
.item_question {
  padding-top: 20px;
  font-size: 16px;
  color: var(--blue);
}
.item-form_entries {
  display: grid;
  grid-template-columns: repeat(2, 48.5%);
  justify-content: space-between;
  row-gap: 30px;
  margin-bottom: 30px;
}
.item-form .form-entry {
  font-size: 16px;
  color: var(--blue);
  border: 2px solid var(--blue);
  background-color: var(--white);
  border-radius: 10px;
  padding: 12px 12px 12px 20px;
}
.item-form textarea.form-entry {
  grid-column: 1/-1;
  min-height: 140px;
  resize: none;
}
.item-form_controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 20px;
  row-gap: 20px;
}
.item-form_checks {
  max-width: 460px;
}
.item-form .captcha-row {
  margin-bottom: 15px;
}
.item-form .captcha-row span {
  border: 2px solid var(--blue);
  border-radius: 10px;
  overflow: hidden;
  max-width: 122px;
}
.item-form_btn {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 18px;
  flex: 1;
  max-width: 295px;
  min-height: 70px;
  border-radius: 40px;
}
@media screen and (max-width: 1280px) {
  .catalog-item .breadcrumbs {
    margin-bottom: 45px;
  }
  .item {
    grid-template-columns: 38% 58%;
  }
}
@media screen and (max-width: 1080px) {
  .item_desc {
    font-size: 16px;
  }
  .item_tabs__btns {
    padding: 20px;
    column-gap: 15px;
    margin-bottom: 30px;
  }
  .item-form_btn {
    min-height: 54px;
  }
}
@media screen and (max-width: 900px) {
  .item {
    grid-template-columns: 100%;
  }
  .item_question {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .catalog-item .breadcrumbs {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .item-form_controls {
    flex-direction: column;
    align-items: stretch;
  }
  .item-form_checks {
    max-width: initial;
  }
  .item-form_btn {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .item_tabs__btns,
  .item-form_entries {
    grid-template-columns: 100%;
  }
  .item-form_entries {
    row-gap: 20px;
    margin-bottom: 20px;
  }
  .item-gallery {
    padding: 0;
  }
}
.inner-page {
  padding: 30px 0 80px;
}
@media screen and (max-width: 992px) {
  .inner-page {
    padding: 20px 0 60px;
  }
}
@media screen and (max-width: 480px) {
  .inner-page {
    padding: 10px 0 40px;
  }
}
.about_history {
  margin-bottom: 90px;
}
.about_history h1 {
  margin: 0;
}
.history-gallery img {
  max-width: 250vw;
}
.history-gallery .slider-btn {
  position: static;
}
.history-gallery-prev {
  transform: scale(-1, 1);
}
.history-gallery .swiper-slide {
  width: auto;
}
.history-gallery_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 20px;
  margin-bottom: 40px;
}
.history-gallery_btns {
  display: flex;
  align-items: center;
  column-gap: 9px;
}
.about_thanks {
  padding-top: 20px;
  margin-bottom: 90px;
}
.about_thanks h2 {
  text-align: center;
  margin-bottom: 60px;
}
.thanks-gallery_wrap {
  position: relative;
  padding: 0 100px;
}
.thanks-gallery {
  overflow: hidden;
}
.thanks-gallery-prev,
.mission-gallery-prev {
  left: 0;
  transform: translateY(-50%) scale(-1, 1);
}
.thanks-gallery-next,
.mission-gallery-next {
  right: 0;
  transform: translateY(-50%);
}
.thanks-gallery img {
  display: block;
  border-radius: 15px;
  margin: 0 auto;
}
.about_mission {
  padding-top: 55px;
  margin-bottom: 140px;
}
.about_mission__header {
  display: grid;
  grid-template-columns: 30% 66%;
  justify-content: space-between;
  row-gap: 10px;
  margin-bottom: 60px;
}
.about_mission__header h2 {
  margin: 0;
}
.about_mission__sub {
  font-size: 22px;
  line-height: 1.3em;
  font-weight: 500;
  margin-bottom: 15px;
}
.mission-gallery__wrap {
  position: relative;
  padding: 0 80px;
}
.mission-gallery {
  overflow: hidden;
}
.mission-gallery img {
  display: block;
  border-radius: 20px;
  margin: 0 auto;
}
.about_preffs {
  padding-top: 50px;
  margin-bottom: 120px;
}
.about_preffs__grid {
  display: grid;
  grid-template-columns: 36% 60%;
  justify-content: space-between;
  row-gap: 20px;
  margin-bottom: 30px;
}
.about_preffs__billets {
  display: grid;
  grid-template-columns: 45% 52%;
  justify-content: space-between;
  row-gap: 20px;
  width: 100%;
  max-width: 810px;
  margin-left: auto;
}
.about_preffs .billet {
  padding-top: 25px;
  padding-bottom: 25px;
}
.about_preffs h2 {
  margin: 0 0 30px;
}
.about_preffs__list {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  justify-content: space-between;
  row-gap: 20px;
}
.about_partners .slider-btn {
  position: static;
}
.partners-gallery,
.orgs-gallery {
  position: relative;
  overflow: hidden;
}
.partners-gallery img,
.orgs-gallery img {
  display: block;
  border-radius: 20px;
  margin: 0 auto;
}
.partners-gallery_list,
.orgs-gallery_list {
  padding: 10px;
}
.partners-gallery_item,
.orgs-gallery_item {
  border-radius: 15px;
  box-shadow: 0px 3px 6px 0px rgba(158, 157, 157, 0.19);
}

.about_partners {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 80px;
}
.about_partners__header h2 {
  margin: 0;
}
.about_partners__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 20px;
  margin-bottom: 40px;
}
.about_partners__btns {
  display: flex;
  align-items: center;
  column-gap: 9px;
}
.partners-gallery-prev {
  transform: scale(-1, 1);
}
.about_orgs {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .about_history,
  .about_partners {
    margin-bottom: 60px;
  }
  .about_thanks,
  .about_mission,
  .about_preffs {
    margin-bottom: 90px;
  }
  .about_mission__header {
    margin-bottom: 40px;
  }
  .thanks-gallery_wrap,
  .mission-gallery__wrap {
    padding: 0 60px;
  }
}
@media screen and (max-width: 992px) {
  .about_mission {
    padding-top: 35px;
    margin-bottom: 90px;
  }
  .thanks-gallery_wrap,
  .mission-gallery__wrap {
    padding: 0 45px;
  }
  .about_thanks h2 {
    margin-bottom: 30px;
  }
  .about_preffs__grid {
    grid-template-columns: 100%;
    margin-bottom: 20px;
  }
  .about_preffs__billets,
  .about_preffs__list {
    max-width: initial;
    grid-template-columns: repeat(2, 48.5%);
  }
  .about_partners,
  .about_orgs {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .history-gallery_header {
    margin-bottom: 20px;
  }
  .about_mission__header {
    grid-template-columns: 100%;
    margin-bottom: 20px;
  }
  .about_history,
  .about_partners {
    margin-bottom: 40px;
  }
  .about_thanks,
  .about_mission,
  .about_preffs {
    margin-bottom: 60px;
  }
  .about_mission__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .about_preffs__billets,
  .about_preffs__list {
    grid-template-columns: 100%;
  }
  .about_preffs br {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .about_thanks,
  .about_mission,
  .about_preffs,
  .about_partners,
  .about_orgs {
    padding-top: 10px;
  }
}
.contacts .breadcrumbs {
  margin-bottom: 70px;
}
.contacts_header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 50px;
  row-gap: 20px;
  margin-bottom: 45px;
}
.contacts_header h1 {
  margin: 0;
}
.contacts_links {
  font-size: 20px;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  row-gap: 10px;
  flex: 1;
  max-width: 1040px;
  font-weight: 600;
}
.contacts .contact-elem {
  padding-left: 45px;
  white-space: nowrap;
}
.contacts .contact-elem::before {
  width: 28px;
  height: 30px;
  filter: invert(25%) sepia(97%) saturate(639%) hue-rotate(177deg)
    brightness(93%) contrast(88%);
}
.contacts_map {
  border: 2px solid #c7caca;
  border-radius: 60px;
  overflow: hidden;
  margin-bottom: 110px;
}
.contacts_map iframe {
  display: block;
}
.contacts_info {
  padding: 25px 0;
  margin-bottom: 150px;
}
.contacts_info__title {
  color: var(--blue);
  text-transform: none;
  font-size: 34px;
}
.contacts_info__grid {
  display: grid;
  grid-template-columns: 36% 61%;
  justify-content: space-between;
  row-gap: 10px;
  padding-top: 20px;
}
.contacts_info__grid p {
  max-width: 420px;
}
.contacts_info__grid b {
  font-weight: 600;
}
.contacts_info__list {
  display: grid;
  grid-template-columns: 50% 38%;
  justify-content: space-between;
  row-gap: 20px;
}
.contacts_info__list b {
  display: block;
  margin-bottom: 8px;
}
.contacts .page-question {
  margin-bottom: 100px;
}
.page-question {
  display: grid;
  grid-template-columns: 38% 57%;
  justify-content: space-between;
  row-gap: 20px;
  background: var(--light-blue);
  padding: 65px 40px 40px 20px;
  border-radius: 40px;
  box-shadow: 0px 4px 8px 4px #d4def0;
  margin-bottom: 40px;
}
.page-question .h2 {
  text-align: center;
  margin: 0 0 35px;
}
.page-question_img {
  padding-left: 40px;
}
.page-question_display img {
  display: block;
  margin: 0 auto;
}
.page-question_form {
  font-size: 16px;
  color: var(--blue);
  padding-top: 10px;
  max-width: 690px;
}
.question-form_entries {
  display: grid;
  grid-template-columns: repeat(2, 48.5%);
  justify-content: space-between;
  row-gap: 30px;
  margin-bottom: 30px;
}
.question-form .form-entry {
  font-size: 16px;
  color: var(--blue);
  border: 2px solid var(--blue);
  background-color: var(--white);
  border-radius: 10px;
  padding: 12px 12px 12px 20px;
}
.question-form textarea.form-entry {
  grid-column: 1/-1;
  min-height: 140px;
  resize: none;
}
.question-form_controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 20px;
  row-gap: 20px;
}
.question-form_checks {
  max-width: 460px;
}
.question-form .captcha-row {
  margin-bottom: 15px;
}
.question-form .captcha-row span {
  border: 2px solid var(--blue);
  border-radius: 10px;
  overflow: hidden;
  max-width: 122px;
}
.question-form_btn {
  padding: 10px 25px;
  font-weight: 700;
  font-size: 18px;
  flex: 1;
  max-width: 220px;
  min-height: 70px;
  border-radius: 40px;
}
@media screen and (max-width: 1280px) {
  .contacts .breadcrumbs {
    margin-bottom: 40px;
  }
  .contacts_map {
    margin-bottom: 80px;
  }
  .contacts_info {
    margin-bottom: 120px;
  }
  .contacts_info__title {
    font-size: 30px;
  }
  .contacts_info__grid {
    grid-template-columns: 38% 60%;
  }
  .contacts_info__list {
    grid-template-columns: 52% 42%;
  }
  .contacts .page-question {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 992px) {
  .contacts_links {
    column-gap: 20px;
    justify-content: flex-start;
    flex: initial;
    flex-wrap: wrap;
    font-size: 18px;
    width: 100%;
  }
  .contacts .contact-elem {
    padding-left: 30px;
  }
  .contacts .contact-elem::before {
    width: 22px;
    height: 24px;
  }
  .contacts_map {
    border-radius: 40px;
    margin-bottom: 60px;
  }
  .contacts_info {
    margin-bottom: 80px;
  }
  .contacts_info__grid {
    grid-template-columns: 100%;
    padding-top: 0;
  }
  .contacts_info__grid p {
    max-width: initial;
    margin-bottom: 15px;
  }
  .page-question {
    grid-template-columns: 28% 68%;
    padding: 40px 20px;
    border-radius: 20px;
  }
  .page-question_form {
    padding-top: 0;
  }
  .page-question .h2 {
    margin: 0px;
  }
  .page-question_img {
    padding-left: 0px;
  }
  .page-question_display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .question-form_controls {
    flex-direction: column;
  }
  .question-form_btn {
    flex: initial;
    width: 100%;
    min-height: 54px;
    margin: 0 auto;
  }
  .question-form_entries {
    row-gap: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contacts .breadcrumbs {
    margin-bottom: 20px;
  }
  .contacts_map {
    border-radius: 20px;
    margin-bottom: 40px;
  }
  .contacts_info {
    padding: 10px 0;
  }
  .contacts_info__title {
    font-size: 26px;
  }
  .contacts_map iframe {
    height: 340px;
  }
  .contacts_header {
    margin-bottom: 25px;
  }
  .contacts_info {
    margin-bottom: 60px;
  }
  .page-question {
    grid-template-columns: 100%;
    padding: 30px 20px;
  }
  .page-question_form {
    width: 100%;
    margin: 0 auto;
  }
  .page-question_display img {
    width: 200px;
  }
}
@media screen and (max-width: 600px) {
  .contacts_info__list {
    grid-template-columns: 100%;
  }
  .contacts_info__grid b {
    display: block;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .contacts_info__title {
    font-size: 22px;
  }
  .question-form_entries {
    grid-template-columns: 100%;
    row-gap: 15px;
    margin-bottom: 15px;
  }
  .question-form .form-entry {
    padding: 10px 10px 10px 15px;
  }
  .page-question {
    padding: 30px 15px;
  }
  .question-form .captcha-row span {
    max-width: 110px;
  }
}
.feedback-popup.fancybox-content {
  padding: 0;
  background: transparent;
}
.feedback-popup .page-question {
  margin: 0;
  box-shadow: none;
}
.feedback-popup .fancybox-close-small {
  padding: 0;
  top: 10px;
  right: 10px;
}

@media screen and (max-width: 992px) {
  .feedback-popup .fancybox-close-small {
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  .feedback-popup .page-question_img {
    display: none;
  }
}
.gdpr {
  position: fixed;
  top: auto;
  bottom: 0;
  height: auto;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  box-shadow: 0px 3px 38px 0px rgba(99, 99, 99, 0.38);
  padding: 15px 0;
  font-weight: 600;
  z-index: 1000;
}
.gdpr--white {
  background-color: rgba(255, 255, 255, 0.9);
  color: #090f1f;
  border-top: 3px solid #191919;
}
.gdpr .container {
  display: grid;
  grid-template-columns: 1fr 244px;
  grid-column-gap: 80px;
  align-items: center;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
}
.gdpr .container:before,
.gdpr .container:after {
  display: none;
}
.gdpr a {
  color: rgb(0, 70, 143);
  text-decoration: underline;
}
.gdpr a:hover {
  text-decoration: none;
}
.gdpr p,
.gdpr small {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.3;
}
.gdpr .container > small {
  display: none;
}
.btn_close {
  grid-row: 1/3;
  grid-column: 2/3;
  display: block;
  margin: 0;
  padding: 20px;
  font-size: 14px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  border: none;
  background-color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.gdpr--white .btn_close {
  background-color: #000000;
  color: #fff;
}
.btn_close:hover {
  color: #000;
}
.gdpr--white .btn_close:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .gdpr .container {
    grid-template-columns: 1fr 200px;
    grid-column-gap: 40px;
  }
}
@media screen and (max-width: 680px) {
  .gdpr {
    padding: 20px 0 15px;
  }
  .gdpr .container {
    grid-template-columns: 1fr 175px;
    grid-column-gap: 35px;
  }
  .gdpr p {
    grid-column: 1/-1;
    margin-bottom: 10px;
    font-size: 13px;
  }
  .gdpr p small {
    display: none;
  }
  .gdpr .container > small {
    display: block;
    font-size: 12px;
    font-weight: normal;
  }
  .btn_close {
    grid-row: 2/3;
    grid-column: 2/3;
    font-size: 13px;
  }
}
@media screen and (max-width: 400px) {
  .gdpr .container {
    grid-template-columns: 1fr 145px;
    grid-column-gap: 20px;
  }
  .btn_close {
    padding: 15px 10px;
  }
}