@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  line-height: 1;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset 100%;
          clip-path: inset 100%;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

* {
  -webkit-tap-highlight-color: transparent; /*убрать фон ссылок на мобильных*/
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  background-color: #FFFFFF;
  color: #191919;
  font-family: "Raleway", Arial;
  font-weight: normal;
  height: 100%;
  font-size: 1.6rem;
  font-optical-sizing: auto;
  font-style: normal;
  min-width: 320px;
  background: url("../img/bg-boxi.gif");
}
body._lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;
}

[class*=__my-container] {
  max-width: 1270px;
  padding: 0px 15px;
  margin: 0 auto;
}
a {
  color: #4e9fd5;
  text-decoration: none;
  transition: color 0.4s ease;
}
@media (hover: hover) {
  a:hover {
    color: #f9ac5e;
  }
}

.title {
  font-family: "Raleway", Arial;
  font-size: 2.33rem;
  line-height: 1.3;
  color: #191919;
  letter-spacing: 0;
  text-shadow: 1px 1px 2px #B2B2B2;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
/*-----------------Необходимые параметры для прижатия футера вниз*/
.main {
  flex: 1 1 auto;
  min-height: 100vh;
  align-items: center;
  text-align: center;
}

/*-----------------------header-----------------------*/
.header__logo {
  color: #fff;
  padding: 3px;
  text-align: center;
  position: relative;
  white-space: nowrap;
  font-size: 1.1rem;
  letter-spacing: -0.02rem;
  text-transform: uppercase;
  text-decoration: none;
}
.header__logo img {
  display: block;
  max-width: 100%;
  margin: 0 0 5px 0;
}
@media (max-width: 479.98px) {
  .header__logo img {
    font-size: 0.7em;
  }
}

.contacts_header__phone {
  line-height: 1.5em;
  font-size: 1.4em;
  font-weight: 600;
}
.contacts_header__phone a:hover {
  color: #f9ac5e;
  transition: 0.6s ease;
}

.contacts_header__time .yellow-text {
  font-weight: 700;
}

.yellow-text {
  color: #f9ac5e;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 99;
  transition: all ease 0.6s;
}
.header.scroll {
  background: radial-gradient(100% 215.42% at 0% 0%, #130051 0%, #262425 100%), #211F20;
  top: 0;
  opacity: 0.94;
  transition: all 0.6s;
}
.header.scroll .header__logo::before {
  background-color: #222c35;
}

/*---------------------------------------------------*/
.header__my-container {
  display: flex;
  align-items: center;
  height: 80px;
  justify-content: space-between;
  /*Позволяет рястянуть элементы flex контейнера*/
}

@media (max-width: 767.98px) {
  .menu__arrow {
    padding: 15px;
    border-left: 1px solid #575757;
  }
}
@media (min-width: 767.98px) {
  .menu__arrow {
    padding: 7px;
  }
}

@media (min-width: 767.98px) {
  .header__contacts {
    text-align: right;
  }
  .menu__sub-list {
    transform: translate(0px, 10%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .header__menu {
    flex: 1 1 auto;
    padding: 0 30px 0 30px;
  }
}
@media (min-width: 767.98px) and (max-width: 991.98px) {
  .header__menu {
    padding: 0 15px;
  }
}
@media (min-width: 767.98px) {
  .menu__list {
    justify-content: flex-end;
    display: flex;
    gap: 40px;
  }
  .menu__list > li {
    position: relative;
    display: flex;
    align-items: center;
  }
  .menu__sub-list {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    text-align: left;
    background-color: #fff;
    min-width: 200px;
    text-wrap-mode: nowrap;
  }
  .menu__sub-list .nav-item a {
    display: block;
    color: #222c35;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 40px;
    padding: 0 15px;
  }
  .menu__list > .nav-item > a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    padding: 27px 0 27px 0;
    text-decoration: none;
  }
  .menu__list > .nav-item > a:hover {
    color: #f9ac5e;
    transition: all 0.7s ease;
    /* Время изменения цвета */
  }
  .menu__sub-list .nav-item a:hover {
    color: #f9ac5e;
    transition: all 0.4s ease;
    background-color: #efefef;
    /* Время изменения цвета */
  }
}
@media (max-width: 767.98px) {
  .header__contacts {
    display: none;
  }
  .contacts_header__phone {
    line-height: 1.5em;
    font-size: 17px;
  }
  .header__menu {
    position: fixed;
    background-color: #1b232a;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    z-index: 5;
    padding: 120px 0px 0px 0px;
    transition: top 0.7s ease;
    overflow: auto;
    display: flex;
    flex-direction: column;
  }
  .header__menu._active {
    top: 0;
  }
  .menu__list > .nav-item > a {
    padding: 15px 20px;
    flex: 1 1 auto;
    text-decoration: none;
  }
  .menu__list {
    flex: 1 1 auto;
  }
  .menu__list li {
    flex-wrap: wrap;
    border-top: 1px solid #575757;
    display: flex;
    align-items: center;
  }
  .menu__list li:last-child {
    margin-bottom: 0;
    border-bottom: 1px solid #575757;
  }
  .menu__list > li._active .menu__sub-list {
    display: block;
  }
  .menu__sub-list {
    background-color: #f9f9f7;
    flex: 1 1 100%;
    margin: 20px 0 0 0;
    padding: 20px;
    display: none;
  }
  .menu__sub-list .nav-item a {
    color: #1b232a;
    text-decoration: none;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    flex: 1 1 auto;
  }
  .contacts_menu {
    padding: 15px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    line-height: 1.6;
    text-align: right;
    color: #FFFFFF;
  }
  /*-------------------burger button------------------------*/
  .menu__icon {
    position: relative;
    background: transparent;
    z-index: 10;
    cursor: pointer;
  }
  .menu__icon:focus {
    outline-width: 0;
  }
  .menu__icon [class*=bar-] {
    background: #4e9fd5;
    display: block;
    transform: rotate(0deg);
    /*-webkit-transition: .2s ease all;
    transition: .2s ease all;*/
    border-radius: 2px;
    height: 2px;
    width: 25px;
    margin-bottom: 4px;
  }
  .menu__icon .bar-bot {
    margin-bottom: 0;
  }
  .opened .bar-top {
    transform: rotate(45deg);
    transform-origin: 15% 15%;
  }
  .opened .bar-mid {
    opacity: 0;
  }
  .opened .bar-bot {
    transform: rotate(-45deg);
    transform-origin: 15% 95%;
  }
  .menu__list > .nav-item > a:hover {
    color: #f9ac5e;
    transition: all 0.7s ease;
    /* Время изменения цвета */
  }
  .menu__sub-list .nav-item a:hover, .menu__sub-list .nav-item a:active {
    color: #f9ac5e;
    transition: all 0.7s ease;
    /* Время изменения цвета */
  }
}
@media (min-width: 768px) {
  .contacts_menu {
    display: none;
  }
}
/*-----------------------------------------------------*/
body._pc .menu__list > li:hover .menu__sub-list {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
  pointer-events: all;
}
body._pc .menu__arrow {
  cursor: pointer;
}
body._pc .menu__arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  transition: transform 0.3s ease 0s;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #fff;
}
body._touch .menu__arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  transition: transform 0.3s ease 0s;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #fff;
}
body._touch .menu__list > li._active .menu__sub-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
body._touch .menu__list > li._active .menu__arrow::before {
  transform: rotate(-180deg);
}

.compensate-for-scrollbar .header {
  transform: translateY(-100%);
}

/*-----------------------------------------------------*/
.header__contacts {
  flex: 1 1 auto;
  justify-content: flex-end;
  line-height: 1.4em;
}

@media (max-width: 991.98px) {
  .menu__list {
    gap: 25px;
  }
  .contacts_header__phone {
    font-size: 16px;
  }
}
/* -----------about section---------------- */
.about {
  background: #FFFFFF;
  padding: 30px 0;
}
.about__my-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .about__my-container {
    flex-direction: column-reverse;
  }
}
.about__video {
  max-width: 50%;
  margin: 0 8rem 0 0;
  flex: 1 1 50%;
}
@media (max-width: 767.98px) {
  .about__video {
    width: 90%;
    max-width: 90%;
    flex: 1 1 auto;
    margin: 5.33rem 0 0 0;
  }
}
@media (max-width: 479.98px) {
  .about__video {
    max-width: 100%;
    width: 100%;
    margin: 2.8rem 0 0 0;
  }
}
.about__text {
  flex: 0 0 37.7%;
  color: #4C4C4C;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .about__text {
    max-width: 90%;
    text-align: justify;
  }
}
@media (max-width: 479.98px) {
  .about__text {
    max-width: 100%;
  }
}
.about__text p {
  margin: 1.67rem 0 0 0;
}
.about__title {
  max-width: 90%;
}
@media (max-width: 767.98px) {
  .about__title {
    max-width: 100%;
    text-align: center;
  }
}

.thumb-wrap {
  position: relative;
  padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
  height: 0;
  overflow: hidden;
}

.thumb-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}

/* -----------advantages section---------------- */
.advantages {
  padding: 30px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.advantages__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  flex-direction: row;
}
.advantages__title {
  max-width: 90%;
  padding: 0 0 15px 0;
}
@media (max-width: 767.98px) {
  .advantages__title {
    max-width: 100%;
    text-align: center;
  }
}

.item-advantages {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex: 0 0 30%;
  margin: 10px 0 10px;
}
.item-advantages__icon {
  padding: 0 15px 0 0;
}
.item-advantages__icon img {
  min-width: 40px;
}
@media (max-width: 991.98px) {
  .item-advantages {
    flex: 1 1 49%;
    max-width: 49%;
  }
}
@media (max-width: 767.98px) {
  .item-advantages {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.text-advantages {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: start;
}
.text-advantages__title {
  font-weight: bold;
  color: #1d5073;
  padding-bottom: 5px;
}
.text-advantages__txt {
  font-size: 1.4rem;
}

/*------------------blog------------------------*/
.blog__my-container {
  padding: 20px 0;
}
.blog__link-all {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  font-size: 1.4rem;
}
.blog__title {
  padding: 0 0 20px 0;
}
.blog__wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
  height: auto;
}
.blog__item {
  display: flex;
  flex-direction: column;
  max-width: 23%;
  width: 100%;
  box-shadow: 0px 2px 5px 1px rgba(178, 178, 178, 0.4);
  text-align: center;
  background: #FFF;
  overflow: hidden;
  transition: 0.3s;
  transform: scale(1);
}
@media only screen and (max-width: 991.98px) {
  .blog__item {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 7px;
  }
}
@media (max-width: 767.98px) {
  .blog__item {
    flex: 0 0 44%;
    max-width: 44%;
  }
}
@media (max-width: 320px) {
  .blog__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (hover: hover) {
  .blog__item:hover {
    transform: scale(1.02);
    z-index: 2;
  }
  .blog__item:hover .catalog-custom-block__item-more {
    background: #f9ac5e;
  }
}

.item-blog {
  background: #FFFFFF;
  height: 350px;
}
.item-blog__item-more {
  background: radial-gradient(100% 215.42% at 0% 0%, #130051 0%, #262425 100%), #211F20;
  color: #fff;
  padding: 10px;
  transition: 0.3s;
}
@media (hover: hover) {
  .item-blog__item-more:hover {
    background: #f9ac5e;
    color: #FFFFFF;
  }
}
.item-blog .btn {
  background: radial-gradient(100% 215.42% at 0% 0%, #130051 0%, #262425 100%), #211F20;
  color: #fff;
  padding: 10px;
  transition: 0.3s;
  display: flex;
}
@media (hover: hover) {
  .item-blog .btn:hover {
    background: #f9ac5e;
    color: #FFFFFF;
  }
}

.item-blog__img {
  position: relative;
  height: 200px;
}
@media (max-width: 468px) {
.item-blog__img {
  position: relative;
  height: 180px;
}
}
.item-blog__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.item-blog__title a {
  display: block;
  color: #1d5073;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 7px 5px 7px;
  font-size: 1.4rem;
}
.item-blog__txt {
  padding: 5px 7px 15px 7px;
  font-size: 1.4rem;
  flex: 1 1 auto;
}

.blog-items {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .blog-items {
    justify-content: space-between;
  }
}
.blog-items .btn {
  background: radial-gradient(100% 215.42% at 0% 0%, #130051 0%, #262425 100%), #211F20;
  color: #fff;
  padding: 10px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
}
.blog-items .btn span {
  display: none;
}
@media (hover: hover) {
  .blog-items .btn:hover {
    background: #f9ac5e;
    color: #FFFFFF;
  }
}

.item-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.item-content p {
  flex: 1 0 auto;
}

.blog-item {
  display: flex;
  flex-direction: column;
  max-width: 23%;
  width: 100%;
  box-shadow: 0px 2px 5px 1px rgba(178, 178, 178, 0.4);
  text-align: left;
  background: #FFF;
  overflow: hidden;
  margin: 7px;
  min-height: 500px;
}
.blog-item .page-header {
  padding: 0px 15px;
}
.blog-item p {
  padding: 10px 15px !important;
}
.blog-item p.readmore {
  padding: 0px !important;
  flex: 0 0 auto;
}
.blog-item .item-image {
  position: relative;
  height: 250px;
}
.blog-item .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 991.98px) {
  .blog-item {
    max-width: 48%;
  }
}
@media (max-width: 767.98px) {
  .blog-item {
    max-width: 46%;
  }
}
@media (max-width: 479.98px) {
  .blog-item {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 100%;
  }
}
@media (hover: hover) {
  .blog-item:hover .catalog-custom-block__item-more {
    background: #f9ac5e;
  }
}

/*---------reviews----------*/
.reviews {
  margin: auto;
  padding: 20px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.2;
  background: #FFFFFF;
}
.reviews__title {
  text-align: center;
  margin-bottom: 20px;
}
.reviews__link-all {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px 0 10px;
}

.review-card {
  background: #f4f4f4;
  padding: 15px;
  border-radius: 10px;
  margin: 0 5px;
  line-height: 2rem;
  max-height: 27rem;
  -webkit-box-orient: vertical;
  display: block;
  display: -webkit-box;
  overflow: hidden !important;
  text-overflow: ellipsis;
  -webkit-line-clamp: 8;
  height: 25rem;
}
.review-card__header {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.review-card__name {
  color: #1d5073;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.review-card__stars {
  color: #ffc500;
}
.review-card__date {
  color: #666;
}

.swiper-wrapper {
  padding: 0 0 30px 0;
}

.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  color: #f9ac5e;
  font-size: 2.2rem;
}

@media (max-width: 991.98px) {
  .swiper .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

/* -----------my-header section---------------- */
.my-header {
  display: flex;
  background: radial-gradient(100% 215.42% at 0% 0%, #130051 0%, #262425 100%), #211F20;
  min-height: 100vh;
  max-height: 902px;
}
.my-header__bg {
  background-image: url(../img/header/header-bg.png);
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 700px;
}
@media (max-width: 767.98px) {
  .my-header__bg {
    background-image: url(../img/header/header-bg-mobile.png);
    background-position: left bottom;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
  }
}
.my-header__my-container {
  display: flex;
  height: 100%;
}
@media (max-width: 991.98px) {
  .my-header__my-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.my-header__my-container .mod-custom {
  display: flex;
}
.my-header__start-text {
  max-width: 100%;
}
@media (min-width: 991.98px) {
  .my-header__start-text {
    max-width: 60%;
    margin: 120px 0 30px 0;
  }
}
.my-header__image {
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
  max-width: 58.16%;
}
@media (max-width: 767.98px) {
  .my-header__image {
    max-width: 80%;
  }
}
@media (max-width: 479.98px) {
  .my-header__image {
    max-width: 86.7%;
  }
}
.my-header__image img {
  max-width: 100%;
}

.start-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .start-text {
    align-items: center;
  }
}
.start-text__subtitle {
  color: #9d9d9d;
  text-align: left;
  font-size: 2rem;
  font-style: italic;
  padding: 10px 0;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .start-text__subtitle {
    text-align: center;
  }
}
.start-text__title {
  font-family: "Raleway", Arial;
  font-size: calc(36px + 1.25vw);
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: 0;
  max-width: 100%;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .start-text__title {
    text-align: center;
    align-items: center;
    font-size: 4rem;
  }
}
@media (max-width: 767.98px) {
  .start-text__title {
    max-width: 100%;
    font-size: 4rem;
  }
}
@media (max-width: 479.98px) {
  .start-text__title {
    max-width: 100%;
    font-size: 3rem;
  }
}
.start-text__text {
  color: #CDCDCD;
  line-height: 2;
  font-size: 2rem;
  margin: 2.8rem 0;
  text-align: left;
}
@media (max-width: 991.98px) {
  .start-text__text {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .start-text__text {
    line-height: 1.6;
  }
}
.start-text__button {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991.98px) {
  .start-text__button {
    margin: 0 auto;
    margin: 5% 0 0 0;
  }
}
@media (max-width: 767.98px) {
  .start-text__button {
    margin: 0 auto;
    margin: 20% 0 0 0;
  }
}

/* -----------my-header---------------- */
/* -----------header-inner section---------------- */
.header-inner {
  display: flex;
  background: radial-gradient(100% 215.42% at 0% 0%, #130051 0%, #262425 100%), #211F20;
}
.header-inner__bg {
  background-image: url(../img/header/header-bg.png);
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 250px;
}
@media (max-width: 767.98px) {
  .header-inner__bg {
    background-image: url(../img/header/header-bg-mobile.png);
    background-position: left bottom;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
  }
}
.header-inner__my-container {
  display: flex;
  height: 100%;
}
@media (max-width: 991.98px) {
  .header-inner__my-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.header-inner__text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 2.4rem;
  padding: 40px 15px 0 15px;
}

/* -----------button---------------- */
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  background-color: #f9ac5e;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 2px #161b13;
  transition: background-color 0.5s ease 0s;
  padding: 0 40px;
  position: relative;
  text-shadow: 1px 1px 2px #B2B2B2;
}
.button:hover {
  background-color: #eeb67e;
  color: #fff;
}
.button:active {
  top: 3px;
  box-shadow: 0 2px #161b13;
}

.button-round {
  position: absolute;
  display: block;
  z-index: 5;
  width: 3.46rem;
  height: 3.46rem;
  font-size: 1.33rem;
  line-height: 1.53;
  color: #292929;
  border: 0.14rem solid #ffb975;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .button-round:hover {
    border-color: #FDDCC4;
    background-color: #FDDCC4;
  }
}
.button-round::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

/* -----------button---------------- */
/*-------------------------------*/
.footer {
  display: flex;
  width: 100%;
  background: radial-gradient(110.67% 538.64% at 5.73% 50%, #2e1346 0%, #1A1A1C 100%), #211F20;
  color: #FFFFFF;
  padding: 20px 15px;
  font-size: 1.5rem;
  line-height: 1.9rem;
}
.footera:hover {
  color: #f9ac5e;
  transition: 0.6s ease;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 767.98px) {
  .footer__wrapper {
    flex-direction: column-reverse;
  }
}
.footer__social {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .footer__social {
    text-align: center;
    padding: 15px 0;
  }
}
.footer__copy {
  text-align: left;
  flex: 0 1 30%;
  font-size: 1.2rem;
  color: #B2B2B2;
}
@media (max-width: 991.98px) {
  .footer__copy {
    text-align: center;
    flex: 1 1 100%;
  }
}
.footer__contacts {
  font-size: 1.7rem;
  text-align: right;
  flex: 0 1 30%;
}
@media (max-width: 991.98px) {
  .footer__contacts {
    text-align: center;
    flex: 1 1 100%;
  }
}

/*-----------------pop-up-form--------------------*/
.form {
  max-width: 550px;
  margin: 0 auto;
  padding: 15px 15px;
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
}
.form * {
  outline: none;
}
.form input, .form button, .form textarea, .form select {
  border: none;
}
.form h3 {
  display: block;
  font-size: 30px;
  font-weight: 700;
  margin: 0 40px 20px 0;
}

.form__body {
  position: relative;
}
.form__body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.9) url("../img/icon/loading.gif") center/80px no-repeat;
  opacity: 0;
  visibility: hidden;
}
.form__body._sending::after {
  opacity: 1;
  visibility: visible;
}

.form__title {
  display: block;
  font-size: 30px;
  font-weight: 700;
  margin: 0 40px 20px 0;
}

.form__item {
  margin: 0 0 20px 0;
}

.form__label {
  font-size: 18px;
  display: block;
  margin: 0px 0px 10px 0px;
}

.form__input {
  height: 50px;
  padding: 0px 20px;
  border-radius: 5px;
  width: 100%;
  font-size: 18px;
}
.form__input:focus {
  box-shadow: 0 0 15px #7a956b;
}
.form__input._error {
  box-shadow: 0 0 15px red;
}

textarea.form__input {
  min-height: 120px;
  resize: vertical;
  padding: 20px;
}

.file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 20px 0;
}

.file__item {
  position: relative;
}

.file__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  font-size: 0;
  cursor: pointer;
}

.file__button {
  display: inline-flex;
  min-height: 40px;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  background-color: #f9ac5e;
  padding: 0px 20px;
}

.file__preview {
  display: inline-block;
  max-width: 100%;
}
.file__preview img {
  max-width: 100px;
}

.sf2Style-fancy button.sf2-element.sf2SendBtn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  background-color: #f9ac5e;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 2px #161b13;
  transition: background-color 0.5s ease 0s;
  position: relative;
  top: 0;
  text-shadow: 1px 1px 2px #B2B2B2;
}
.sf2Style-fancy button.sf2-element.sf2SendBtn:hover {
  background-color: #eeb67e;
}
.sf2Style-fancy button.sf2-element.sf2SendBtn:active {
  top: 3px;
  box-shadow: 0 2px #161b13;
}

.checkbox._error .checkbox__label::before {
  box-shadow: 0 0 15px red;
}

.sf2Style-fancy label.sf2-checkbox-label {
  color: #c8c8c8;
}

.checkbox__input {
  display: none;
}

.sf2Style-fancy .sf2-checkbox-label {
  position: relative;
  font-size: 16px;
  line-height: 140%;
  display: inline-flex;
  align-items: flex-start;
}

.sf2Style-fancy .sf2-checkbox-label input[type=checkbox] {
  display: none;
}

.sf2Style-fancy .sf2-checkbox-label input[type=checkbox] + i {
  display: inline-flex;
  width: 45px;
  margin-right: 10px;
}

.sf2Style-fancy .sf2-checkbox-label input[type=checkbox] + i:before {
  content: "";
  align-self: flex-start;
  flex: 0 0 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 4px;
}

.sf2Style-fancy .sf2-checkbox-label input[type=checkbox] + i:after {
  transition: transform 0.5s ease 0s;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #7a956b;
  border-radius: 3px;
  transform: scale(0);
  cursor: pointer;
}

.sf2Style-fancy .sf2-checkbox-label input[type=checkbox]:checked + i:after {
  transform: scale(1);
}

.checkbox__label {
  position: relative;
  font-size: 16px;
  line-height: 140%;
  display: inline-flex;
  align-items: center;
}
.checkbox__label a {
  color: #7a956b;
}
.checkbox__label::before {
  content: "";
  align-self: flex-start;
  flex: 0 0 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 4px;
  margin-right: 10px;
}

.checkbox__input:checked + .checkbox__label::after {
  transform: scale(1);
}

.checkbox__label::after {
  transition: transform 0.5s ease 0s;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #7a956b;
  border-radius: 3px;
  transform: scale(0);
  cursor: pointer;
}

.form__button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  background-color: #f9ac5e;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 2px #161b13;
  transition: background-color 0.5s ease 0s;
  position: relative;
  top: 0;
  text-shadow: 1px 1px 2px #B2B2B2;
}
.form__button:hover {
  background-color: #eeb67e;
}
.form__button:active {
  top: 3px;
  box-shadow: 0 2px #161b13;
}

.pop-up {
  position: fixed;
  background: radial-gradient(100% 215.42% at 0% 0%, #130051 0%, #262425 100%), #211F20;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  transition: all 0.7s ease;
  overflow: auto;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
}
.pop-up._active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.pop-up__close {
  position: absolute;
  display: flex;
  height: 30px;
  width: 30px;
  right: 15px;
  z-index: 101;
  top: 15px;
}
.pop-up__close::before, .pop-up__close::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  background-color: #f9f9f7;
  height: 2px;
  /*позволяет наклонить относительно одного края*/
}
.pop-up__close::before {
  transform: rotate(45deg);
}
.pop-up__close::after {
  transform: rotate(-45deg);
}

/*-------------------------------------------*/
.contacts {
  background: radial-gradient(110.67% 538.64% at 5.73% 50%, #2e1346 0%, #1A1A1C 100%), #211F20;
}
.contacts__my-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 0;
}
@media (max-width: 767.98px) {
  .contacts__my-container {
    flex-direction: column-reverse;
  }
}
.contacts__data {
  max-width: 60%;
  font-size: 2rem;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 767.98px) {
  .contacts__data {
    max-width: 100%;
  }
}
.contacts__phones {
  display: flex;
  flex-direction: column;
  font-size: 2.6rem;
  line-height: 3.6rem;
  padding: 15px 0 15px 0;
  align-items: center;
  justify-content: center;
}
.contacts__phones a:hover {
  color: #f9ac5e;
  transition: 0.6s ease;
}
.contacts__image {
  max-width: 25%;
  margin: 0 8rem 0 0;
}
@media (max-width: 767.98px) {
  .contacts__image {
    max-width: 42%;
    margin: 5.33rem 0 0 0;
  }
}
@media (max-width: 479.98px) {
  .contacts__image {
    max-width: 87%;
    margin: 2.8rem 0 0 0;
  }
}
.contacts__text {
  flex: 0 0 37.7%;
  color: #4C4C4C;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .contacts__text {
    max-width: 61%;
    text-align: justify;
    padding: 0 0.94rem;
  }
}
@media (max-width: 479.98px) {
  .contacts__text {
    max-width: 100%;
  }
}
.contacts__text p {
  margin: 1.67rem 0 0 0;
}
.contacts__title {
  color: #FFFFFF;
  font-size: 4.6rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .contacts__title {
    max-width: 100%;
    text-align: center;
    font-size: 3rem;
  }
}
.contacts__subtitle {
  font-size: 2rem;
  display: block;
  max-width: 63%;
  margin: 0 auto;
  padding: 0 0 20px 0;
  font-style: italic;
  color: #f9ac5e;
}

/*-----------map------------*/
.map {
  position: relative;
  filter: grayscale(85%);
}

.line-link {
  position: relative;
}
.line-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #f9a34f;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.line-link:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

/*-----------breadcrumbs------------*/
.mod-breadcrumbs__wrapper {
  padding: 0 0 20px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb li::after {
  padding-right: 0.5rem;
  color: #6c757d;
  content: ">";
  padding: 0 7px;
}
.breadcrumb li:last-child:after {
  content: "";
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb {
    overflow-x: scroll;
    flex-wrap: nowrap;
  }
}

/*-------------content-----------*/
.content {
  font-size: 1.6rem;
  line-height: 2.3rem;
  text-align: left;
  padding: 20px 0;
}
.content__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.content__txt {
  flex: 1 1 60%;
}
@media (max-width: 991.98px) {
  .content__txt {
    flex: 1 1 100%;
  }
}
.content__img-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content__video {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.content__video video {
  width: 100%;
  max-width: 800px;
  height: auto;
}
.content__img {
  flex: 1 1 40%;
}
@media (max-width: 991.98px) {
  .content__img {
    flex: 1 1 100%;
  }
}
.content__img img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  margin: 0 0 20px 20px;
}
@media (max-width: 991.98px) {
  .content__img img {
    margin: 0 auto;
  }
}
.content H1 {
  padding: 25px 0 25px 0;
  font-size: 3rem;
}
.content H2 {
  padding: 20px 0 15px 0;
  font-size: 2rem;
}
.content H3 {
  padding: 20px 0 15px 0;
  font-size: 2rem;
}
.content p {
  padding: 10px 0 10px 0;
}
.content ul {
  list-style-type: none;
  /* Убираем стандартные маркеры списка */
  padding: 0;
}
.content ul li {
  display: flex;
  text-align: left;
}
.content ul li::before {
  content: "•";
  /* Добавляем свой маркер в виде точки */
  color: #f9ac5e;
  /* Цвет маркера */
  font-weight: bold;
  font-size: 1.6rem;
  padding-right: 0.5rem;
}

/*------------------services---------------------*/
.services__title {
  text-shadow: 1px 1px 2px #B2B2B2;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 500;
  text-align: center;
}

.catalog-custom-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  height: auto;
  padding: 20px 0;
}
.catalog-custom-block__item-img {
  position: relative;
  height: 250px;
}
.catalog-custom-block__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.catalog-custom-block__item-title {
  flex: 1 0 auto; /*Три*/
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  color: #013964;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .catalog-custom-block__item-title {
    font-size: 16px;
  }
}
@media (max-width: 479.98px) {
  .catalog-custom-block__item-title {
    font-size: 15px;
    word-break: break-word;
  }
}
.catalog-custom-block__item-txt {
  flex: 1 0 auto; /*Три*/
  padding: 5px 5px 10px 5px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #1a1a1a;
}
.catalog-custom-block__item-more {
  background: radial-gradient(100% 215.42% at 0% 0%, #130051 0%, #262425 100%), #211F20;
  color: #fff;
  padding: 10px;
  transition: 0.3s;
}
.catalog-custom-block__item {
  display: flex;
  flex-direction: column;
  max-width: 23%;
  width: 100%;
  margin: 10px;
  box-shadow: 0px 2px 5px 1px rgba(178, 178, 178, 0.4);
  text-align: center;
  background: #FFF;
  border-radius: 0.25rem;
  overflow: hidden;
  transition: 0.3s;
  transform: scale(1);
}
@media only screen and (max-width: 991.98px) {
  .catalog-custom-block__item {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 7px;
  }
}
@media (max-width: 767.98px) {
  .catalog-custom-block__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (hover: hover) {
  .catalog-custom-block__item:hover {
    transform: scale(1.02);
    z-index: 2;
  }
  .catalog-custom-block__item:hover .catalog-custom-block__item-more {
    background: #f9ac5e;
  }
}
.catalog-custom-block__item:active .catalog-custom-block__item-more {
  background: #f9ac5e;
}

.custom-list {
  list-style-type: none;
  /* Убираем стандартные маркеры списка */
  padding: 0;
}
.custom-list li {
  display: flex;
  text-align: left;
}
.custom-list li::before {
  content: "•";
  /* Добавляем свой маркер в виде точки */
  color: #f9ac5e;
  /* Цвет маркера */
  font-weight: bold;
  font-size: 1.6rem;
  padding-right: 0.5rem;
}

.boxi-by {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  animation: beat 0.25s infinite alternate;
  transform-origin: center;
}

/* Heart beat animation */
@keyframes beat {
  to {
    transform: scale(1.05);
  }
}