@charset "utf-8";

/* CSS Document */
@font-face {
  font-family: 'Roboto Light';
  src: local('Roboto Light'), local('Roboto Light'),
    url(../fonts/Roboto-Light.ttf) format('opentype'),
    url('../fonts/Roboto-Light.woff') format('woff');
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Medium';
  src: local('Roboto Medium'), local('Roboto Medium'),
    url(../fonts/Roboto-Medium.ttf) format('opentype'),
    url('../fonts/Roboto-Medium.woff') format('woff');
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Regular';
  src: local('Roboto Regular'), local('Roboto Regular'),
    url(../fonts/Roboto-Regular.ttf) format('opentype'),
    url('../fonts/Roboto-Regular.woff') format('woff');
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Bold';
  src: local('Roboto Bold'), local('Roboto Bold'),
    url(../fonts/Roboto-Bold.ttf) format('opentype'),
    url('../fonts/Roboto-Bold.woff') format('woff');
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Black';
  src: local('Roboto Black'), local('Roboto Black'),
    url(../fonts/Roboto-Black.ttf) format('opentype'),
    url('../fonts/Roboto-Black.woff') format('woff');
  font-style: normal;
}


:root {
  --font-family-1: "Roboto Light";
  --font-family-2: "Roboto Medium";
  --font-family-3: "Roboto Regular";
  --font-family-4: "Roboto Bold";
  --font-family-5: "Roboto Black";

  /*COLORS*/
  --color1: #ffffff;
  /*Белый*/
  --color2: #ff8e01;
  /*Оранжевый*/
  --color2a: #263847;
  /*Синесерый*/
  --color3: #cc0004;
  /*Красный*/
  --color4: #000000;
  /*Чёрный*/
  --color5: #f4f4f4;
  /*Светлый серый*/
  --color6: #767676;
  /*Серый*/
  --color7: #e1e1e1;
  /*Серый светлый*/

}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--color2a);
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.preloader img {
  height: 50px;
  width: 50px;
  display: block;
  margin: auto;
}

html {
  height: 100%;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  outline: none !important;
}

*::-webkit-scrollbar,
html *::-webkit-scrollbar {
  height: 12px;
  width: 8px;
}

*::-webkit-scrollbar-track,
html *::-webkit-scrollbar-track {
  background: #fff;
}

*::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
  background-color: #cecece;
  border-radius: 5px;
  border: 3px solid transparent;
}

*::-webkit-scrollbar-thumb:hover,
html *::-webkit-scrollbar-thumb:hover {
  background-color: var(--color2);
  border-radius: 5px;
  border: 3px solid transparent;
  cursor: pointer;
}

body {
  font-family: var(--font-family-3);
  position: relative;
  background-image: url("../images/bg.png");
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  color: var(--color4);
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.h-100 {
  height: 100%;
}

.header-logo img {
  max-width: 100%;
}

.header-lozung {
  font-size: 16px;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 600;
  padding-left: 20px;
  border-left: 1px solid var(--color7);
}

.header-lozung span {
  color: var(--color2);
}

.header-top {
  padding: 15px 0;
}

.header-contakts {
  text-align: right;
}

.header-phone {
  font-size: 24px;
  font-family: var(--font-family-5);
  color: var(--color4);
}

.header-phone i {
  font-size: 28px;
  color: var(--color2);
  vertical-align: text-bottom;
}

.header-rejim {
  font-size: 13px;
  color: var(--color2a);
  letter-spacing: 2px;
}

.site-button {
  border: 0;
  padding: 15px 35px;
  background-color: var(--color2);
  color: var(--color1);
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  text-decoration: none;
  -moz-transform: translateX(0px);
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transform: translateX(0px);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transform: translateX(0px);
  -o-transition: all 0.4s ease-in-out;
}

.site-button:hover {
  background-color: var(--color3);
  color: var(--color1);
  text-decoration: none;
}

.site-button-black {
  padding: 15px 35px;
  background-color: transparent;
  color: var(--color4);
  border: 2px solid var(--color4);
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  text-decoration: none;
  -moz-transform: translateX(0px);
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transform: translateX(0px);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transform: translateX(0px);
  -o-transition: all 0.4s ease-in-out;
}

.site-button-black:hover {
  border: 2px solid var(--color4);
  background-color: var(--color4);
  color: var(--color1);
  text-decoration: none;
}

.header-menu {
  background-color: var(--color2a);
}

.header-menu ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 60px;
  position: relative;
  margin: 0;
}

.header-menu ul>span {
  position: absolute;
  left: 0;
  top: 24px;
  content: '';
  width: 28px;
  height: 17px;
  background-image: url('../images/icon-menu.png');
  cursor: pointer;
}

.header-menu ul>li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 65px;
}

.header-menu ul>li a {
  color: var(--color1);
  font-size: 18px;
  text-decoration: none;
  font-family: var(--font-family-1);
  -moz-transform: translateX(0px);
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transform: translateX(0px);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transform: translateX(0px);
  -o-transition: all 0.2s ease-in-out;
}

.header-menu ul>li a:hover {
  color: var(--color1);
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.8);
}

.mobileicon-menu,
.mobile-menu {
  display: none;
}

.holst {
  overflow: hidden;
  position: relative;
}

.holst-bg {
  height: 450px;
  background-image: url('../images/bg-header.jpg');
  background-position: center center;
  background-size: 100%;
}

.holst-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.holst-container {
  height: 100%;
}

.holst-row {
  height: 100%;
}

.holst-text-max {
  font-family: var(--font-family-4);
  color: var(--color2a);
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.holst-text-big {
  font-family: var(--font-family-4);
  color: var(--color2a);
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.holst-text-simple {
  font-family: var(--font-family-1);
  color: var(--color1);
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.holst-text-simple span {
  background-color: var(--color2);
}

.holst-image {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10%;
}

.holst-blok {
  padding: 40px 15px;
  position: relative;
}

.blok-preim {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.blok-preim a {
  width: 260px;
  height: 260px;
  background-image: url(../images/play-video.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: -10%;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  -moz-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  -ms-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  -o-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
}

.blok-preim a:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.blok-preim-text {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 70%;
  padding: 20px;
  font-size: 30px;
  line-height: 32px;
  font-family: var(--font-family-4);
  color: var(--color1);
}

.blok-preim-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, var(--color2) 10%, var(--color2) 30%, transparent);
}

.blok-preim-mask-black {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, var(--color4) 10%, var(--color4) 30%, transparent);
}

.blok-preim-mask-greey {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, var(--color2a) 10%, var(--color2a) 30%, transparent);
}

.blok-preim-mask-gold {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #8b7134 10%, #8b7134 30%, transparent);
}

/*.blok-preim-videoplay {
  width: 260px;
  height: 260px;
  background-image: url('../images/play-video.png');
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: -10%;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  -moz-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  -ms-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  -o-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
}

.blok-preim-videoplay:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
}*/

.blok-preim-col {
  margin-bottom: 30px;
}

.bg-holst {
  background-image: url('../images/bg-holst.jpg');
  background-position: center center;
  background-size: cover;
}

.program-image {
  position: absolute;
  top: -10%;
  z-index: 1;
}

.program-image img {
  width: 90%;
  border-radius: 50%;
  overflow: hidden;
  border: 15px solid var(--color1);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  margin: auto;
}

.program-title {
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 35px;
  color: var(--color4);
  font-family: var(--font-family-5);
  margin-top: 30px;
}

.program-text {
  font-size: 24px;
  margin-bottom: 50px;
}

.program-text ul {
  margin: 0;
  padding: 0;
}

.program-text ul li {
  margin-bottom: 5px;
  position: relative;
  padding: 0 0 0 50px;
  display: block;
}

.program-text ul li:after {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 21px;
  height: 20px;
  background-image: url('../images/galka.png');
  background-repeat: no-repeat;
}

.program-button {
  margin-bottom: 30px;
}

.holst-title {
  padding: 30px 0 5px 0;
  font-size: 50px;
  font-family: var(--font-family-4);
  text-align: center;
}

.holst-subtitle {
  padding: 5px 0 15px 0;
  font-size: 32px;
  font-family: var(--font-family-4);
  text-align: center;
}

.holst-subtitle span {
  background-color: var(--color2);
  font-family: var(--font-family-4);
  color: var(--color1);
}

.tarif-row {
  padding-top: 100px;
}

.bg-greey {
  background-color: #f4f4f4;
}

.tarif-item {
  text-align: center;
  background-color: var(--color1);
  box-shadow: 0 1px 26px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  padding: 30px 15px 60px 15px;
  margin-bottom: 40px;
  -webkit-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  -moz-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  -ms-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  -o-transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  transition: all 0.4s cubic-bezier(0.58, 0.08, 0.26, 0.98);
  border: 3px solid var(--color1);
  box-sizing: border-box;
}

.tarif-item:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  border: 3px solid var(--color2);
  box-sizing: border-box;
}

.tarif-title-big {
  font-size: 36px;
  font-family: var(--font-family-4);
  color: var(--color2);
  font-weight: bold;
  line-height: 40px;
}

.tarif-title-big span {
  font-size: 30px;
  font-family: var(--font-family-4);
  color: var(--color4);
  font-weight: bold;
  display: block;
  line-height: 30px;
  margin-bottom: 20px;
}

.tarif-introtext {
  font-size: 20px;
  color: var(--color2a);
  margin-bottom: 15px;
}

.tarif-old-price {
  font-size: 38px;
  line-height: 38px;
  color: var(--color4);
  margin-bottom: 15px;
  font-family: var(--font-family-1);
}

.tarif-old-price b {
  text-decoration: line-through;
}

.tarif-price {
  font-size: 42px;
  line-height: 42px;
  color: var(--color4);
  margin-bottom: 30px;
  font-family: var(--font-family-4);
}

.tarif-item-image {
  margin-top: -30%;
  text-align: center;
}

.tarif-item-image img {
  width: 45%;
  border-radius: 50%;
  border: 10px solid var(--color1);
  box-shadow: 0 1px 26px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  margin-bottom: 30px;
}

.obuch-title {
  padding: 60px 0 0 0;
  font-size: 42px;
  line-height: 44px;
  font-family: var(--font-family-4);
  margin-bottom: 30px;
}

.obuch-simpletext {
  font-size: 18px;
  line-height: 22px;
  font-family: var(--font-family-1);
  margin-bottom: 35px;
}

.obuch-cena {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.obuch-price {
  font-size: 50px;
  color: var(--color3);
}

.obuch-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dps-image {
  margin-left: -50%;
}

.dps-image img {
  max-width: 100%;
}

.hols-top-decor {
  background-image: url('../images/blok-top-bg.png');
  background-position: top center;
  background-repeat: no-repeat;
  height: 66px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.otzuv-item {
  padding: 15px;
  cursor: pointer;
}

.otzuv-item-wrap {
  background-color: var(--color1);
  border-radius: 20px;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.2);
  padding: 30px 20px;
  position: relative;
}

.otzuv-item-name {
  font-size: 26px;
  font-family: var(--font-family-4);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.otzuv-item-text {
  position: relative;
  z-index: 1;
  font-size: 14px;
}

.otzuv-item-decor {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background-image: url('../images/zapyatue.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.holst-title-small {
  margin-bottom: 30px;
  text-align: center;
  font-size: 16px;
}

.prem-col {
  margin-bottom: 50px;
}

.prem-item {
  padding: 15px 15px 15px 70px;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-family: var(--font-family-4);
  color: var(--color4);
}

.prem-item::before {
  width: 80px;
  height: 80px;
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 10px;
  background-color: #f8f8f8;
  border-radius: 50%;
}

.prem-item-number {
  position: absolute;
  top: 25px;
  left: 0;
  font-size: 80px;
  font-family: var(--font-family-4);
  color: var(--color2);
  z-index: 1;
}

.prem-item-text {
  position: relative;
  z-index: 1;
}

.photo-item {
  padding: 15px;
}

.photo-item img {
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.2);
}

.map-ya {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  overflow: hidden;
  -webkit-box-shadow: 0px 18px 15px -6px rgba(34, 60, 80, 0.2) inset;
  -moz-box-shadow: 0px 18px 15px -6px rgba(34, 60, 80, 0.2) inset;
  box-shadow: 0px 18px 15px -6px rgba(34, 60, 80, 0.2) inset;
}

.minheight500 {
  min-height: 500px;
}

.contakts-plashka {
  background-color: var(--color1);
  padding: 30px;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
  max-width: 300px;
  border-radius: 4px;
}

.contakts-plashka-title {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: var(--font-family-5);
}

.point-none {
  pointer-events: none;
}

.footer {
  background-image: url('../images/bg-footer.jpg');
  background-repeat: repeat;
  padding: 30px 0;
  color: var(--color2a);
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-logo>div {
  margin-right: 15px;
}

.footer-col {
  display: flex;
  align-items: center;
}

.footer-col:last-child {
  display: flex;
  flex-direction: row;
  justify-content: end;
}

.footer-copy {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer-copy a {
  font-size: 14px;
  text-align: right;
  color: var(--color2a);
  text-decoration: none;
}

.footer-copy a:hover {
  color: var(--color4);
}

.footer-logo>div:first-child img {
  max-width: 90%;
}

.ajax_form .form-group {
  margin-bottom: 15px;
}

.ajax_form label {
  font-size: 90%;
  color: var(--color6);
}

.modal-footer {
  align-items: center;
  justify-content: center;
}

.ajax_form .form-control {
  padding: 12px 15px;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 0.3rem;
  outline: 0;
  padding: 8px 25px;
  border-radius: 0;
}

.otzuv-item-text-full {
  display: none;
}

.holst-button {
  text-align: center;
  padding: 30px 0 0 0;
}

.fullscreen-wrap {
  overflow: hidden;
  z-index: -100;
  position: relative;
  height: 550px;
  width: 100%;
}

.fullscreen-bg__video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.icon-vk {
  font-size: 12px;
  color: #263847;
  text-decoration: none;
}

.icon-vk span {
  text-transform: none;
  color: #263847;
  vertical-align: middle;
}

.mobileicon-menu-wrap {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1;
}

.mobileicon-menu-wrap span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color2a);
  border-radius: 6px;
}

.mobileicon-menu-wrap span:nth-child(1) {
  top: 0;
}

.mobileicon-menu-wrap span:nth-child(2) {
  top: 10px;
}

.mobileicon-menu-wrap span:nth-child(3) {
  top: 20px;
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  left: -110%;
  min-width: 380px;
  max-width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: var(--color2a);
  padding: 15px;
  box-sizing: border-box;
  color: var(--color1);
  z-index: 9;
  box-shadow: 0 2px 20px -5px rgb(0, 0, 0, 0.8);
  -moz-transform: translateX(0px);
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transform: translateX(0px);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transform: translateX(0px);
  -o-transition: all 0.4s ease-in-out;
}

.mobile-menu-open {
  left: 0;
}

.mobile-menu-wrap {
  position: relative;
}

.mobile-menu-close {
  width: 27px;
  height: 27px;
  position: absolute;
  top: 8px;
  right: 8px;
}

.mobile-menu-links {
  padding: 40px 15px;
}

.mobile-menu-links>ul {
  padding: 0;
  margin: 0;
  margin: auto;
  max-width: 280px;
}

.mobile-menu-links>ul>li>ul {
  padding: 15px 0 5px 0;
}

.mobile-menu-links>ul>li {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.mobile-menu-links>ul>li>ul>li {
  width: 100%;
  display: block;
  margin-bottom: 5px;
}

.mobile-menu-links>ul>li>a {
  display: block;
  color: var(--color1);
  font-size: 26px;
  line-height: 30px;
  font-family: var(--font-family-1);
  text-decoration: none;
  text-align: center;
}

.mobile-menu-links>ul>li>a:hover {
  color: var(--color2);
}

.mobile-menu-links>ul>li>ul>li>a {
  display: block;
  color: var(--color1);
  font-size: 16px;
  font-family: var(--font-family-1);
  text-decoration: none;
  text-align: center;
}

.mobile-menu-links>ul>li>ul>li>a:hover {
  color: var(--color2);
}

.simple-content {
  min-height: 600px;
}

.contakt-textrow {
  font-size: 24px;
  margin-bottom: 30px;
}