@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

b {
  font-weight: 700;
}

em {
  font-style: italic;
}

/* Fonts */
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyrLight.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyrRoman.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyrMedium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyrBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "CharterC";
  src: url("../fonts/CharterCItalic.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
html, body {
  height: 100%;
  font-family: "HelveticaNeueCyr", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1e1e1e;
}

strong, b {
  font-weight: 700;
}

a,
a:hover {
  text-decoration: none;
}

a {
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

input, textarea, select, button {
  font-family: "HelveticaNeueCyr", sans-serif;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  box-sizing: border-box;
}

img {
  vertical-align: top;
}

/* page */
.page {
  height: 100%;
  font-family: Inter, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.page__body {
  -webkit-animation: body_show 0.5s forwards ease-in-out;
          animation: body_show 0.5s forwards ease-in-out;
  margin: 0;
  min-width: 320px;
  min-height: 100%;
}
.page__body._lock {
  overflow: hidden;
}

@-webkit-keyframes body_show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes body_show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* visually-hidden */
.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

/* site-container */
.site-container {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* main */
.main {
  flex-grow: 1;
}

/* container */
.container {
  margin: 0 auto;
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
}

/* container-big*/
.container-big {
  margin: 0 auto;
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
}

/* title */
.title {
  font-size: 40px;
  font-weight: 700;
  color: #0f4065;
  text-transform: uppercase;
  line-height: 1.2;
}
.title span {
  color: #e6332a;
  font-family: "CharterC", sans-serif;
  text-transform: none;
  font-style: italic;
  font-size: 43px;
}
@media (max-width: 1200px) {
  .title {
    font-size: 36px;
  }
  .title span {
    font-size: 39px;
  }
}
@media (max-width: 998px) {
  .title {
    font-size: 34px;
  }
  .title span {
    font-size: 37px;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }
  .title span {
    font-size: 29px;
  }
}

/* title-2 */
.title-2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f4065;
  line-height: 1.2;
}
.title-2 span {
  color: #e6332a;
  font-family: "CharterC", sans-serif;
  text-transform: none;
  font-style: italic;
  font-size: 39px;
}
@media (max-width: 1200px) {
  .title-2 {
    font-size: 32px;
  }
  .title-2 span {
    font-size: 37px;
  }
}
@media (max-width: 998px) {
  .title-2 {
    font-size: 32px;
  }
  .title-2 span {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .title-2 {
    font-size: 26px;
  }
  .title-2 span {
    font-size: 27px;
  }
}

/* btn */
.btn {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border-radius: 10px;
  background-color: #d7b56a;
  padding: 24px 61px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in;
}
@media (any-hover: hover) {
  .btn:hover {
    transform: translateY(-6px);
  }
}
@media (max-width: 768px) {
  .btn {
    padding: 20px 50px;
    font-size: 15px;
  }
}
.btn--danger {
  background-color: #e6332a;
  font-size: 20px;
  font-weight: 700;
  padding: 25px 130px;
  box-shadow: 0px 3px 0px #aa0800;
}

/* link */
.link {
  color: #0f4065;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .link {
    font-size: 15px;
  }
}

/* link-bold */
.link-bold {
  text-decoration: underline;
  color: #0f4065;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .link-bold {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .link-bold {
    font-size: 16px;
  }
}

/* header */
.header__top {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 992px) {
  .header__top {
    padding-bottom: 15px;
  }
}
.header__top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header__top-container {
    display: block;
    text-align: center;
  }
}
.header__top-logo {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__top-logo img {
  max-width: 100%;
}
@media (max-width: 1200px) {
  .header__top-logo {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .header__top-logo {
    margin: 0 auto;
    max-width: 380px;
  }
}
.header__top-icon {
  flex: 0 0 22%;
}
.header__top-descr {
  flex: 0 0 75%;
}
.header__top-text {
  padding-right: 20px;
  color: #e6332a;
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  font-family: "CharterC", sans-serif;
}
@media (max-width: 1200px) {
  .header__top-text {
    font-size: 32px;
  }
}
@media (max-width: 998px) {
  .header__top-text {
    font-size: 28px;
  }
}
@media (max-width: 894px) {
  .header__top-text {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .header__top-text {
    padding-right: 0;
    margin-top: 20px;
    font-size: 22px;
  }
}
@media (max-width: 420px) {
  .header__top-text {
    font-size: 18px;
  }
}
.header__bottom {
  background-color: #0f4065;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header__bottom-container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .header__bottom-container {
    align-items: center;
  }
}
@media (max-width: 992px) {
  .header__menu {
    padding: 130px 15px 30px 15px;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    overflow-y: scroll;
    background-color: #e7cc94;
    transition: all 0.4s ease-in-out;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 20;
  }
  .header__menu._active {
    left: 0;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
  .header__menu._active::after {
    left: 0;
    opacity: 1;
  }
  .header__menu::after {
    content: "";
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    left: -100%;
    background-color: #e7cc94;
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 992px) {
  .header__burger {
    display: block;
  }
}
.header__burger-close {
  display: none;
}
@media (max-width: 992px) {
  .header__burger-close {
    display: block;
    position: fixed;
    top: 17px;
    right: 20px;
    z-index: 1;
  }
}

/* nav */
.nav__list {
  display: flex;
  gap: 40px;
}
@media (max-width: 1270px) {
  .nav__list {
    gap: 22px;
  }
}
@media (max-width: 992px) {
  .nav__list {
    display: block;
  }
}
.nav__item {
  position: relative;
}
@media (min-width: 992px) {
  .nav__item:hover .nav__sub-list, .nav__item:focus-within .nav__sub-list {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    pointer-events: auto;
  }
  .nav__item:hover .nav__link::after, .nav__item:focus-within .nav__link::after {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .nav__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .nav__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.nav__link {
  position: relative;
  display: inline-block;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  z-index: 1;
  background-color: #d7b56a;
}
@media (any-hover: hover) {
  .nav__link:hover {
    color: #fff;
  }
  .nav__link:hover::after {
    width: 100%;
  }
}
@media (max-width: 1150px) {
  .nav__link {
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .nav__link {
    color: #0f4065;
    font-size: 22px;
    padding-top: 0;
    padding-bottom: 0;
    flex: 1 1 auto;
  }
}
.nav__icon {
  display: none;
}
@media (max-width: 992px) {
  .nav__icon {
    margin-left: 10px;
    display: block;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    background-image: url(../img/icons/arrow-1.png);
    background-repeat: no-repeat;
    background-position: center center;
  }
  .nav__icon._active {
    transform: rotate(180deg);
  }
}
@media (min-width: 992px) {
  .nav__sub-list {
    position: absolute;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 350px;
    top: 90%;
    left: -30px;
    background-color: #d7b56a;
    transition: all 0.3s ease;
    transform: translate(0, 15px);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
  }
}
@media (max-width: 992px) {
  .nav__sub-list {
    flex: 0 0 100%;
  }
}
.nav__sub-item {
  position: relative;
}
.nav__sub-link {
  padding: 10px 55px 10px 20px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #0f4065;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.35s ease;

}
@media (any-hover: hover) {
  .nav__sub-link:hover {
    text-decoration: underline;
  }
}
@media (max-width: 992px) {
  .nav__sub-link {
    font-size: 19px;
    padding: 10px 55px 10px 10px;
  }
  .nav__sub-link::before {
    display: none;
  }
}
.nav__sub-link--active {
  text-decoration: underline;
}
.nav__sub-icon {
  display: block;
  transition: all 0.3s ease-in-out;
  background-image: url(../img/icons/arrow-1.png);
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 45;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 3px;
  right: 15px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .nav__sub-icon {
    top: 10px;
    right: 0px;
  }
}
.nav__sub-sub-list {
  background: #e7cc94;
}
.nav__sub-sub-item {
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.nav__sub-sub-item:first-child {
  padding-top: 15px;
}
.nav__sub-sub-item:last-child {
  padding-bottom: 15px;
}
.nav__sub-sub-link {
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
  color: #0f4065;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.35s ease;
}
.nav__sub-sub-link::before {
  content: "";
  flex-shrink: 0;
  border-radius: 100%;
  margin-top: 12px;
  flex: 0 0 4px;
  width: 4px;
  height: 4px;
  border: 1px solid #0f4065;
}
@media (any-hover: hover) {
  .nav__sub-sub-link:hover {
    transform: translateX(10px);
    color: #0f4065;
  }
}
@media (max-width: 992px) {
  .nav__sub-sub-link {
    margin-left: 15px;
  }
}
.nav__sub-sub-link--active {
  text-decoration: underline;
}

/* accordion */
.accordion.open .accordion__content {
  display: block;
  opacity: 1;
}
.accordion.open .accordion__control {
  transform: rotate(180deg);
}
.accordion--activating .accordion__content {
  height: 0;
  display: block;
  overflow: hidden;
  transition: height 0.5s;
}
.accordion__control {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.accordion__content {
  display: none;
}

/* burger */
@media (max-width: 992px) {
  .burger {
    position: relative;
    flex: 0 0 30px;
    height: 18px;
    cursor: pointer;
  }
  .burger__line {
    top: calc(50% - 1px);
    left: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .burger__line:first-child {
    top: 0;
  }
  .burger__line:last-child {
    top: auto;
    bottom: 0px;
  }
}

/* burger-close */
@media (max-width: 992px) {
  .burger-close {
    position: relative;
    width: 30px;
    height: 35px;
    cursor: pointer;
    z-index: 35;
  }
  .burger-close__line {
    top: calc(50% - 1px);
    left: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #0f4065;
  }
  .burger-close__line:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .burger-close__line:last-child {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}

/* hero */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__slide {
  height: auto;
  background-color: #f7f7f7;
}
.hero__slide-inner {
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .hero__slide-inner {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.hero__slide-container {
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 20px;
  padding-top: 80px;
  padding-bottom: 30px;
  min-height: 520px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1270px) {
  .hero__slide-container {
    min-height: 420px;
  }
}
@media (max-width: 1050px) {
  .hero__slide-container {
    min-height: 350px;
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .hero__slide-container {
    min-height: 350px;
    padding-top: 90px;
    padding-bottom: 50px;
  }
}
@media (max-width: 500px) {
  .hero__slide-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.hero__slide-title {
  max-width: 43.5%;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.15;
  color: #e6332a;
  font-family: "CharterC", sans-serif;
  font-style: italic;
  text-align: center;
}
@media (max-width: 1270px) {
  .hero__slide-title {
    font-size: 33px;
  }
}
@media (max-width: 1050px) {
  .hero__slide-title {
    font-size: 27px;
  }
}
@media (max-width: 768px) {
  .hero__slide-title {
    font-size: 29px;
    max-width: 100%;
  }
}
@media (max-width: 420px) {
  .hero__slide-title {
    font-size: 26px;
  }
}
.hero__slide-text {
  margin-top: 1em;
  max-width: 43.5%;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #0f4065;
  text-align: center;
}
@media (max-width: 1270px) {
  .hero__slide-text {
    font-size: 20px;
  }
}
@media (max-width: 1050px) {
  .hero__slide-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .hero__slide-text {
    font-size: 14px;
    max-width: 100%;
  }
}
.hero__slide-descr {
  margin-top: 1em;
  max-width: 43.5%;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #0f4065;
  text-align: center;
}
@media (max-width: 1270px) {
  .hero__slide-descr {
    font-size: 15px;
  }
}
@media (max-width: 1050px) {
  .hero__slide-descr {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hero__slide-descr {
    font-size: 13px;
    max-width: 100%;
  }
}
.hero__slide-image {
  display: block;
  position: absolute;
  width: 53%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .hero__slide-image {
    width: 100%;
  }
}
.hero__buttons-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 1270px) {
  .hero__buttons-inner {
    display: none;
  }
}
.hero__buttons {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media (max-width: 500px) {
  .hero__buttons {
    display: none;
  }
}
.hero__buttons-btn {
  width: 46px;
  height: 46px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 46px 46px;
  border: none;
  pointer-events: painted;
  cursor: pointer;
}
.hero__buttons-btn_prev {
  background-image: url(../img/icons/arrow.png);
  transform: rotate(-90deg);
}
.hero__buttons-btn_next {
  background-image: url(../img/icons/arrow.png);
  transform: rotate(90deg);
}
.hero__dotes-inner {
  position: absolute;
  bottom: 15px;
  right: 0;
  width: 52%;
  z-index: 3;
}
@media (max-width: 768px) {
  .hero__dotes-inner {
    width: 100%;
    bottom: 25px;
    text-align: left;
  }
}
.hero__decor-item {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* about */
.about {
  padding-top: 90px;
  padding-bottom: 120px;
}
@media (max-width: 1200px) {
  .about {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media (max-width: 998px) {
  .about {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .about {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.about__row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 1200px) {
  .about__row {
    gap: 50px;
  }
}
@media (max-width: 998px) {
  .about__row {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.about__row--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 998px) {
  .about__row--reverse {
    flex-direction: column;
  }
}
.about__left {
  flex: 0 0 36%;
}
.about__body {
  border-radius: 10px;
  background-color: #0f4065;
}
.about__image {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  padding-bottom: 105%;
  border-radius: 10px;
  overflow: hidden;
}
.about__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__descr {
  padding: 37px 37px 30px 37px;
  color: #fff;
  font-family: "CharterC", sans-serif;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .about__descr {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  .about__descr {
    padding: 30px 30px 25px 30px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .about__descr {
    padding: 25px 25px 20px 25px;
  }
}
.about__right {
  flex: 1 1 auto;
}
.about__title {
  margin-top: -8px;
  padding-bottom: 0.7em;
}
.about__content--inner {
  padding-left: 15px;
}
@media (max-width: 998px) {
  .about__content--inner {
    padding-left: 0;
  }
}

/* content */
.content {
  font-size: 17px;
  line-height: 1.35;
}
.content ul {
  padding-left: 20px;
  padding-bottom:20px;
}
.content ul li {
  position: relative;
}
.content ul li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 7px;
  flex: 0 0 auto;
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #e6332a;
  border-radius: 50%;
}
.content .list-links li::before {
  display: none;
}
.content a {
  color: #0f4065;
  font-weight: 700;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .content a:hover {
    text-decoration: none;
  }
}
.content ol {
  counter-reset: myCounter;
  padding-left: 30px;
}
.content ol li {
  position: relative;
  list-style: none;
  margin-bottom: 0.8em;
}
.content ol li:before {
  position: absolute;
  top: 0;
  left: -20px;
  counter-increment: myCounter;
  content: counter(myCounter) ".";
  color: #e6332a;
  font-size: 1em;
  font-weight: 500;
}
.content p {
  margin-bottom: 0.8em;
}
.content b, .content strong {
  font-weight: 700;
}
.content img {
  max-width: 100%;
  margin-bottom: 20px;
}
.content table {
  width: 100%;
  background-color: #f6f6f6;
  border: 2px solid #d1d1d1;
  border-collapse: collapse;
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 998px) {
  .content table {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .content table {
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .content table {
    font-size: 13px;
  }
}
@media (max-width: 380px) {
  .content table {
    font-size: 12px;
  }
}
.content th {
  padding: 15px 20px;
  background-color: #0f4065;
  color: #fff;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 998px) {
  .content th {
    padding: 15px 10px;
  }
}
@media (max-width: 768px) {
  .content th {
    padding: 15px 5px;
  }
}
.content td {
  padding: 15px 20px;
  color: #232323;
}
@media (max-width: 998px) {
  .content td {
    padding: 15px 10px;
  }
}
@media (max-width: 768px) {
  .content td {
    padding: 15px 5px;
  }
}
.content tr:nth-child(2n) {
  background-color: #fff;
}
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  margin-bottom: 1em;
  line-height: 1.2;
  font-weight: 700;
  color: #0f4065;
}
.content h1 span, .content h2 span, .content h3 span, .content h4 span, .content h5 span, .content h6 span {
  color: #e6332a;
  font-family: "CharterC", sans-serif;
  text-transform: none;
  font-style: italic;
}
.content h1, .content h2 {
  text-transform: uppercase;
}
.content h1 {
  font-size: 32px;
}
.content h1 span {
  font-size: 34px;
}
.content h2 {
  font-size: 30px;
}
.content h2 span {
  font-size: 32px;
}
.content h3 {
  font-size: 28px;
}
.content h3 span {
  font-size: 30px;
}
.content h4 {
  font-size: 26px;
}
.content h4 span {
  font-size: 28px;
}
.content h5 {
  font-size: 24px;
}
.content h5 span {
  font-size: 26px;
}
.content h6 {
  font-size: 22px;
}
.content h6 span {
  font-size: 24px;
}
@media (max-width: 1200px) {
  .content {
    font-size: 16px;
  }
  .content h1 {
    font-size: 28px;
  }
  .content h1 span {
    font-size: 31px;
  }
  .content h2 {
    font-size: 26px;
  }
  .content h2 span {
    font-size: 28px;
  }
  .content h3 {
    font-size: 25px;
  }
  .content h3 span {
    font-size: 27px;
  }
  .content h4 {
    font-size: 24px;
  }
  .content h4 span {
    font-size: 26px;
  }
  .content h5 {
    font-size: 23px;
  }
  .content h5 span {
    font-size: 25px;
  }
  .content h6 {
    font-size: 21px;
  }
  .content h6 span {
    font-size: 23px;
  }
}
@media (max-width: 998px) {
  .content {
    font-size: 15px;
  }
  .content ul li:before {
    width: 5px;
    height: 5px;
    top: 8px;
  }
  .content h1 {
    font-size: 26px;
  }
  .content h1 span {
    font-size: 29px;
  }
  .content h2 {
    font-size: 25px;
  }
  .content h2 span {
    font-size: 27px;
  }
  .content h3 {
    font-size: 24px;
  }
  .content h3 span {
    font-size: 26px;
  }
  .content h4 {
    font-size: 23px;
  }
  .content h4 span {
    font-size: 25px;
  }
  .content h5 {
    font-size: 22px;
  }
  .content h5 span {
    font-size: 24px;
  }
  .content h6 {
    font-size: 20px;
  }
  .content h6 span {
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  .content h1 {
    font-size: 22px;
  }
  .content h1 span {
    font-size: 25px;
  }
  .content h2 {
    font-size: 21px;
  }
  .content h2 span {
    font-size: 24px;
  }
  .content h3 {
    font-size: 22px;
  }
  .content h3 span {
    font-size: 23px;
  }
  .content h4 {
    font-size: 21px;
  }
  .content h4 span {
    font-size: 22px;
  }
  .content h5 {
    font-size: 20px;
  }
  .content h5 span {
    font-size: 21px;
  }
  .content h6 {
    font-size: 19px;
  }
  .content h6 span {
    font-size: 20px;
  }
}

/* list-links */
.list-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.list-links li {
  display: inline-block;
  margin-right: 5px;
}
.list-links a {
  color: #d7b56a;
  text-decoration: none;
}
@media (any-hover: hover) {
  .list-links a:hover {
    text-decoration: underline;
  }
}

/* inner */
.inner__title {
  margin-bottom: 0em;
  padding-top: 0px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f4065;
  text-transform: uppercase;
}
.inner__title span {
  color: #e6332a;
  font-family: "CharterC", sans-serif;
  text-transform: none;
  font-style: italic;
  font-size: 34px;
}
@media (max-width: 1200px) {
  .inner__title {
    font-size: 28px;
  }
  .inner__title span {
    font-size: 31px;
  }
}
@media (max-width: 998px) {
  .inner__title {
    font-size: 26px;
  }
  .inner__title span {
    font-size: 29px;
  }
}
@media (max-width: 768px) {
  .inner__title {
    font-size: 22px;
  }
  .inner__title span {
    font-size: 25px;
  }
}
.inner__about {
  padding: 0;
}
.inner__content {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .inner__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* gallery */
.gallery__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .gallery__list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
@media (max-width: 430px) {
  .gallery__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.gallery__item {
  position: relative;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}
.gallery__link {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery__link::before {
  content: url(../img/icons/zoom.svg);
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  left: -100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  background-color: rgba(15, 64, 101, 0.4);
  transition: all 0.55s ease-in-out;
}
.gallery__link::after {
  content: url(../img/icons/zoom.svg);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  background-color: rgba(15, 64, 101, 0.4);
  transition: all 0.55s ease-in-out;
}
@media (any-hover: hover) {
  .gallery__link:hover::before {
    opacity: 1;
    left: 0;
    top: 0;
  }
  .gallery__link:hover::after {
    opacity: 1;
    left: 0;
    top: 0;
  }
}
.gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

/* article */
.article {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f7f7f7;
}
@media (max-width: 998px) {
  .article {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.article__row {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  z-index: 5;
}
@media (max-width: 998px) {
  .article__row {
    flex-direction: column;
  }
}
.article__content {
  flex: 1 1 auto;
}
.article__title {
  margin-top: -8px;
}
.article__text {
  margin-top: 1.7em;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 300;
}
@media (max-width: 1200px) {
  .article__text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .article__text {
    font-size: 15px;
  }
}
.article__action {
  margin-top: 2.5em;
}
.article__image {
  flex: 0 0 46%;
}
.article__image img {
  vertical-align: top;
  border-radius: 10px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 590/427;
}
.article--reverse {
  background-color: #fff;
}
.article--reverse .article__row {
  flex-direction: row-reverse;
}
@media (max-width: 998px) {
  .article--reverse .article__row {
    flex-direction: column;
  }
}

/* news */
.news {
  padding-top: 30px;
  padding-bottom: 0px;
}
@media (max-width: 998px) {
  .news {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .news {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.news__container {
  position: relative;
  z-index: 5;
}
.news__header {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .news__header {
    display: block;
  }
}
.news__action {
  padding-bottom: 5px;
}
@media (max-width: 768px) {
  .news__action {
    margin-top: 20px;
    padding-bottom: 0;
  }
}
.news__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}
@media (max-width: 998px) {
  .news__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .news__list {
    display: block;
  }
}
@media (max-width: 700px) {
  .news__item:not(:first-child) {
    margin-top: 20px;
  }
}
.news__image img {
  border-radius: 10px;
  vertical-align: top;
  aspect-ratio: 400/260;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__image-link {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
@media (any-hover: hover) {
  .news__image-link:hover:after {
    bottom: 0;
  }
}
.news__image-link:after {
  content: "Подробнее";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 50px;
  bottom: -100px;
  left: 0;
  color: #fff;
  background-color: #0f4065;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.news__descr {
  margin-top: 30px;
}
.news__date {
  color: #d7b56a;
  font-size: 18px;
  font-weight: 700;
}
.news__text {
  margin-top: 9px;
}
/* accede */
.accede {
  padding-top: 80px;
  padding-bottom: 70px;
}
@media (max-width: 768px) {
  .accede {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.accede__container {
  text-align: center;
}
.accede__text {
  margin-top: 40px;
  color: #0f4065;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .accede__text {
    margin-top: 35px;
    font-size: 18px;
  }
}
.accede__action {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .accede__action {
    margin-top: 45px;
  }
}
@media (max-width: 600px) {
  .accede__action-btn {
    width: 100%;
    max-width: 100%;
    padding: 25px;
  }
}

/* cover */
.cover {
  position: relative;
}
.cover__bg {
  position: absolute;
  width: 400px;
  height: 227px;
  z-index: 2;
}
@media (max-width: 1500px) {
  .cover__bg {
    display: none;
  }
}
.cover__bg--1 {
  width: 245px;
  height: 156px;
  left: 20px;
  bottom: 20px;
}
.cover__bg--2 {
  right: -100px;
  bottom: -50px;
}
.cover__bg--3 {
  left: -210px;
  bottom: -30px;
}
.cover__bg--4 {
  right: -120px;
  bottom: -20px;
}
.cover__bg--5 {
  left: -210px;
  bottom: -40px;
}

/* footer */
.footer {
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #0f4065;
}
.footer__container {
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 300;
}
.footer__top {
  display: grid;
  grid-template-columns: 3.2fr 1fr 1fr;
  gap: 25px;
}
@media (max-width: 1400px) {
  .footer__top {
    grid-template-columns: 2.5fr 1fr 1fr;
  }
}
@media (max-width: 1200px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer__top {
    display: block;
  }
}
@media (max-width: 1200px) {
  .footer__col--big {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .footer__col:not(:first-child) {
    margin-top: 40px;
  }
}
.footer__logo {
  max-width: 100%;
}
.footer__item:not(:first-child) {
  margin-top: 10px;
}
.footer__tel {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
@media (any-hover: hover) {
  .footer__tel:hover {
    text-decoration: underline;
  }
}
@media (max-width: 768px) {
  .footer__tel {
    font-size: 18px;
  }
}
.footer__mail {
  display: inline-block;
  margin-top: 5px;
  color: #d7b56a;
}
@media (any-hover: hover) {
  .footer__mail:hover {
    text-decoration: underline;
  }
}
.footer__bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .footer__bottom {
    display: block;
  }
}
@media (max-width: 600px) {
  .footer__bottom {
    margin-top: 40px;
  }
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media (max-width: 1200px) {
  .footer__links {
    margin-top: 25px;
  }
}
@media (max-width: 600px) {
  .footer__links {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__link {
  color: #fff;
  text-decoration: underline;
}

/* social */
.social {
  display: flex;
  gap: 5px;
}
.social__link {
  display: block;
  transition: all 0.2s ease;
}
.social__link img {
  width: 36px;
  height: 36px;
}
@media (any-hover: hover) {
  .social__link:hover {
    transform: rotate(360deg);
  }
}

/* fixed*/
.fixed {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  transform: translateY(25%);
}
.fixed--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1220px) {
  .fixed {
    bottom: 90px;
  }
}

/* btn-top*/
.btn-top {
  color: #0f4065;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-top::before {
  transition: all 0.2s ease;
  content: url(../img/icons/arrow.png);
}
@media (any-hover: hover) {
  .btn-top:hover::before {
    transform: rotate(360deg);
  }
}

/* cookie */
.cookie {
  position: fixed;
  padding: 20px;
  right: 90px;
  bottom: 20px;
  background: #d7b56a;
  max-width: 100%;
  z-index: 55;
  color: #fff;
  text-align: center;
  font-size: 15px;
}
.cookie a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 620px) {
  .cookie {
    width: 100%;
    bottom: 0;
    right: 0;
  }
}
.cookie__text {
  margin: 20px auto;
  max-width: 420px;
  line-height: 1.2;
}
.cookie__btn {
  display: flex;
  margin: 0 auto 20px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #fff;
  color: #fff;
  background: none;
  padding: 10px 15px;
  transition: all 0.2s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .cookie__btn:hover {
    background-color: #fff;
    color: #0f4065;
  }
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #d7b56a;
}

/* breadcrumb */
.breadcrumb {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 100%;
  color: #0f4065;
  margin-bottom: 5px;
  margin-right: 3px;
  gap: 4px;
  font-weight: 500;
}
.breadcrumb__list li::after {
  content: "/";
}
.breadcrumb__list li.active {
  color: #0f4065;
}
.breadcrumb__list li.active::after {
  display: none;
}
.breadcrumb__list li a {
  color: #0f4065;
  text-decoration: underline;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .breadcrumb__list li a:hover {
    text-decoration: none;
  }
}

/* pagination */
.pagination {
  margin-top: 35px;
  margin-bottom: 25px;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
}
.pagination__list li {
  display: inline-block;
}
.pagination__list li a {
  color: #0f4065;
  display: inline-block;
  padding: 3px;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .pagination__list li a:hover {
    color: #d7b56a;
  }
}
.pagination__list li a.active {
  transform: scale(1.3);
}
.pagination__list li .control {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: #f6f6f6;
  background-image: url(../img/icons/arrow-down-light.svg);
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  box-sizing: border-box;
  margin-bottom: -8px;
}
.pagination__list li .control.active {
  display: block;
  background-color: #0f4065;
  transform: rotate(-90deg);
}
@media (any-hover: hover) {
  .pagination__list li .control.active:hover {
    background-color: #d7b56a;
  }
}

/* quote-inner */
.quote-inner {
  margin-bottom: 0px;
}
.quote-inner__row {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 15px;
}
@media (max-width: 680px) {
  .quote-inner__row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.quote-inner__col {
  position: relative;
}
.quote-inner__content {
  padding-top: 7px;
  padding-bottom: 30px;
}
@media (max-width: 680px) {
  .quote-inner__content {
    padding-top: 10px;
    padding-bottom: 0;
  }
}
.quote-inner__cover {
  position: absolute;
  width: 245px;
  height: 145px;
  z-index: -1;
}
@media (max-width: 1500px) {
  .quote-inner__cover {
    display: none;
  }
}
.quote-inner__cover--1 {
  width: 230px;
  height: 147px;
  left: -250px;
  top: -48px;
}
.quote-inner__cover--2 {
  right: -46px;
  bottom: -19px;
}
.quote-inner__image img {
  max-width: 100%;
}
@media (max-width: 680px) {
  .quote-inner__image {
    text-align: center;
  }
  .quote-inner__image img {
    max-width: 300px;
  }
}
@media (max-width: 460px) {
  .quote-inner__image img {
    max-width: 100%;
  }
}
.quote-inner__text {
  font-style: italic;
}
.quote-inner__descr {
  margin-top: 20px;
  font-weight: 700;
}