@charset "utf-8";

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

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

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



:root {
  --font-family-1: "FuturaPT Light";
  --font-family-2: "FuturaPT Medium";
  --font-family-3: "FuturaPT Bold";

  /*COLORS*/
  --color1: #ffffff;
  /*Белый*/
  --color2: #d64040;
  /*Красный*/
  --color2a: #b04ffd;
  --color2b: #010338;
  --color2c: #002398;
  /*Синесерый*/
  --color3: #ffa900;
  /*Оранжевый*/
  --color4: #000000;
  /*Чёрный*/
  --color5: #f5f5f5;
  /*Светлый серый*/
  --color6: #171717;
  /*Серый*/
  --color7: #E7E7E7;
  /*Серый светлый*/
  --color8: #f1f1f1;
  /*Серый светлый*/
  --color9: #dddddd;
  /*Серый светлый*/
  --color10: #999999;
  /*Серый светлый*/

}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--color1);
  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-1);
  position: relative;
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  background-color: var(--color5);
  color: var(--color4);
  overflow-y: auto;
  overflow-x: hidden !important;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1376px;
}

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

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

.h-100 {
  height: 100%;
}

.mobile-menu {
  display: none;
}

.header-image-wrap {
  width: 100%;
  height: 600px;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.header-image-wrap2 {
  width: 100%;
  height: 450px;
  min-height: 60vh;
  overflow: hidden;
  position: relative;
}

.header-image-wrap2:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(49, 0, 0, 0.6);
  z-index: 1;
}

.header-image {
  width: 100%;
  height: 100%;
  background-image: url('../images/bg-header.jpg');
  background-position: center top;
  background-size: cover;
  -webkit-animation-name: zooming;
  -moz-animation-name: zooming;
  -o-animation-name: zooming;
  animation-name: zooming;

  -webkit-animation-duration: 9.9s;
  -moz-animation-duration: 9.9s;
  animation-duration: 9.9s;

  -webkit-animation-delay: 0;
  animation-delay: 0;
  -moz-animation-delay: 0;

  -webkit-animation-timing-function: all 0.2s ease-in-out;
  -moz-animation-timing-function: all 0.2s ease-in-out;
  animation-timing-function: all 0.2s ease-in-out;

  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.header-image2 {
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: cover;
  -webkit-animation-name: zooming;
  -moz-animation-name: zooming;
  -o-animation-name: zooming;
  animation-name: zooming;

  -webkit-animation-duration: 9.9s;
  -moz-animation-duration: 9.9s;
  animation-duration: 9.9s;

  -webkit-animation-delay: 0;
  animation-delay: 0;
  -moz-animation-delay: 0;

  -webkit-animation-timing-function: all 0.2s ease-in-out;
  -moz-animation-timing-function: all 0.2s ease-in-out;
  animation-timing-function: all 0.2s ease-in-out;

  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-moz-keyframes zooming {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
  }
}

@-webkit-keyframes zooming {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
  }
}

.header-image img {
  width: 100%;
}

.header-wrap {
  position: relative;
}

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  height: 90px;
  z-index: 2;
}

.header-top-container,
.header-top-row,
.header-top-col {
  height: 100%;
}

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

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

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

.header-menu ul {
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}

.header-menu ul li {
  display: inline-block;
  margin: 0 15px;
}

.header-menu ul li a {
  display: block;
  color: var(--color1);
  font-size: 24px;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
}

.header-menu ul li a:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--color1);
  -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:hover a:before {
  width: 100%;
}

.header-contakts,
.header-contakts .row {
  height: 100%;
}

.header-phone,
.header-button {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-phone {
  text-align: center;
}

.header-phone a {
  font-size: 24px;
  font-family: var(--font-family-3);
  color: var(--color1);
  text-decoration: none;
}

.site-button-outline-white {
  background-color: transparent;
  border: 1px solid var(--color1);
  padding: 12px 30px;
  color: var(--color1);
  font-size: 18px;
  text-transform: uppercase;
  -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;
  text-decoration: none;
}

.site-button-outline-white i {
  font-size: 24px;
  vertical-align: text-top;
}

.site-button-outline-white:hover {
  background-color: var(--color1);
  border: 1px solid var(--color1);
  color: var(--color4);
}

.site-button-outline-black {
  background-color: transparent;
  border: 1px solid var(--color4);
  padding: 12px 30px;
  color: var(--color4);
  font-size: 18px;
  text-transform: uppercase;
  -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;
  text-decoration: none;
}

.site-button-outline-black i {
  font-size: 24px;
  vertical-align: text-top;
}

.site-button-outline-black:hover {
  background-color: var(--color4);
  border: 1px solid var(--color4);
  color: var(--color1);
}

.header-blok-text {
  position: absolute;
  top: 30%;
  width: 100%;
  text-align: center;
  color: var(--color1);
}

.header-blok-text2 {
  position: absolute;
  top: 55%;
  width: 100%;
  text-align: center;
  color: var(--color1);
  z-index: 2;
}

.header-hb {
  position: absolute;
  top: 42%;
  width: 100%;
  text-align: center;
  color: var(--color1);
  z-index: 2;
}

.header-hb ul {
  padding: 0;
  margin: 0;
  text-align: center;
}

.header-hb ul li {
  display: inline-block;
  margin: 0 5px;
}

.header-hb ul li a {
  color: var(--color1);
  font-size: 18px;
  text-decoration: none;
}

.header-blok-text-big {
  font-family: var(--font-family-3);
  color: var(--color1);
  font-size: 60px;
  line-height: 62px;
  margin-bottom: 30px;
}

.header-blok-text-decor {
  text-align: center;
  margin-bottom: 15px;
}

.header-blok-text-decor span {
  position: relative;
}

.header-blok-text-decor span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  width: 100px;
  height: 2px;
  background-color: var(--color1);
}

.header-blok-text-decor span::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 100px;
  height: 2px;
  background-color: var(--color1);
}

.header-blok-text-simple {
  font-size: 26px;
  line-height: 28px;
  margin-bottom: 30px;
}

.header-blok-text-button {
  padding: 5px;
  margin-bottom: 40px;
}

.header-blok-text-strlk {
  background-image: url('../images/strlk.png');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 25px;
}

.subheder {
  background-color: var(--color2);
  padding: 30px 0;
}

.kub {
  text-align: center;
  border-right: 1px solid var(--color1);
}

.subheder-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color1);
  font-size: 28px;
  line-height: 30px;
  font-family: var(--font-family-2);
  width: 100%;
  height: 100%;
}

.holst {
  padding: 40px 0;
}

.holst-bg {
  position: relative;
  overflow-x: hidden;
}

.holst-bg:after {
  content: '';
  position: absolute;
  background-image: url(../images/krug.png);
  background-repeat: no-repeat;
  width: 800px;
  height: 800px;
  background-size: contain;
  position: absolute;
  top: -550px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.holst-title {
  text-align: center;
  font-size: 36px;
  line-height: 38px;
  text-transform: uppercase;
  font-family: var(--font-family-3);
  margin-bottom: 15px;
}

.holst-title-decor {
  text-align: center;
  margin-bottom: 30px;
}

.holst-title-decor span {
  position: relative;
}

.holst-title-decor span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  width: 100px;
  height: 2px;
  background-color: var(--color4);
}

.holst-title-decor span::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 100px;
  height: 2px;
  background-color: var(--color4);
}

.icon-grid-item {
  text-align: center;
}

.icons-grid-col {
  margin-bottom: 50px;
}

.icon-grid-item-image {
  text-align: center;
  margin-bottom: 15px;
}

.icon-grid-item-text {
  font-size: 24px;
  line-height: 26px;
  font-family: var(--font-family-3);
  margin-bottom: 10px;
  color: var(--color2);
}


.plashka {
  padding: 30px 0;
}

.plashka-wrap {
  margin: auto;
  width: 98%;
  background-color: var(--color1);
  border-radius: 30px;
  box-shadow: 0 1px 35px -10px rgba(0, 0, 0, 0.3);
  padding: 40px;
  position: relative;
}

.plashka-wrap:after {
  content: '';
  position: absolute;
  top: 1%;
  left: 1%;
  z-index: 0;
  width: 98%;
  height: 94%;
  border: 1px solid var(--color7);
  border-radius: 25px;
  pointer-events: none;
}

.plashka-text {
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.plashka-readmore-button {
  text-align: center;
  padding: 15px 0;
  position: relative;
  z-index: 1;
}

.callblok {
  padding: 40px 0;
  position: relative;
}

.callblok-image img {
  width: 120%;
}

.callblok-content {
  padding: 0 0 0 30px;
}

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

.callblok-sub-title {
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  font-family: var(--font-family-3);
  color: var(--color4);
}

.callblok-big-title {
  font-size: 54px;
  line-height: 58px;
  text-transform: uppercase;
  font-family: var(--font-family-3);
  color: var(--color2);
  margin-bottom: 10px;
}

.callblok-simple-text {
  padding: 30px 0;
  font-size: 26px;
}

.callblok-buttons {
  margin-bottom: 30px;
}

.decor-blok-left {
  background-image: url('../images/krug.png');
  background-repeat: no-repeat;
  width: 800px;
  height: 800px;
  background-size: contain;
  position: absolute;
  top: -200px;
  left: -450px;
  z-index: -1;
}

.decor-blok-right {
  background-image: url('../images/krug.png');
  background-repeat: no-repeat;
  width: 800px;
  height: 800px;
  background-size: contain;
  position: absolute;
  top: -200px;
  right: -450px;
  z-index: -1;
}

.step-item {
  text-align: center;
}

.step-item-number {
  background-color: var(--color2);
  color: var(--color1);
  font-size: 80px;
  text-align: center;
  font-family: var(--font-family-3);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 15px;
  position: relative;
}

.step-item-number:after {
  content: '';
  background-color: var(--color2);
  position: absolute;
  top: 50%;
  left: 100%;
  width: 280px;
  height: 3px;
}

.step-col:last-child .step-item .step-item-number:after {
  display: none;
}

.step-item-text {
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  font-family: var(--font-family-3);
  color: var(--color2);
}

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

.plitka-item {
  width: calc(100%/3);
  padding: 15px;
  cursor: pointer;
}

.plitka-item:nth-child(1),
.plitka-item:nth-child(2) {
  width: 50%;
}

.plitka-item-wrap {
  position: relative;
  border-radius: 30px;
  box-shadow: 0 1px 30px -10px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.plitka-item:nth-child(1) .plitka-item-wrap {
  background-color: #d64040;
}

.plitka-item:nth-child(2) .plitka-item-wrap {
  background-color: #357fb8;
}

.plitka-item:nth-child(3) .plitka-item-wrap {
  background-color: #000000;
}

.plitka-item:nth-child(4) .plitka-item-wrap {
  background-color: #cccccc;
  color: var(--color4) !important;
}

.plitka-item:nth-child(5) .plitka-item-wrap {
  background-color: #f69710;
}

.plitka-item:nth-child(6) .plitka-item-wrap {
  background-color: #216da3;
}

.plitka-item:nth-child(7) .plitka-item-wrap {
  background-color: #0a1e50;
}

.plitka-item:nth-child(8) .plitka-item-wrap {
  background-color: #c32d2d;
}

.plitka-item-text {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 28px;
  line-height: 30px;
  color: var(--color1);
  font-family: var(--font-family-3);
}

.plitka-item:nth-child(4) .plitka-item-wrap .plitka-item-text {
  color: var(--color4) !important;
}

.plitka-item-image {
  text-align: right;
}

.plitka-item-image img {
  float: right;
}

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

.zayavka-content {
  background-image: url('../images/big-decor.png');
  background-repeat: no-repeat;
  background-position: center left;
  min-height: 300px;
  padding: 30px 0 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zayavka-bigtitle {
  font-size: 52px;
  line-height: 54px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: var(--font-family-3);
  color: var(--color2);
}

.zayavka-simpletitle {
  font-family: var(--font-family-3);
  color: var(--color4);
  font-size: 26px;
  line-height: 30px;
  text-transform: uppercase;
  position: relative;
}

.zayavka-simpletitle:after {
  content: '';
  width: 95px;
  height: 64px;
  background-image: url('../images/strlk2.png');
  background-repeat: no-repeat;
  position: absolute;
  bottom: -50px;
  right: 0;
}

.zayavka-form-blok {
  background-color: var(--color1);
  border-radius: 20px;
  box-shadow: 0 1px 30px -10px rgba(0, 0, 0, 0.5);
  padding: 30px;
}

.zayavka-form-blok-title {
  text-align: center;
  font-family: var(--font-family-3);
  color: var(--color4);
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.form-input .form-control-lg {
  border-radius: 0;
}

.site-button-color {
  text-align: center;
  border: 0;
  background-color: var(--color2);
  color: var(--color1);
  text-transform: uppercase;
  font-size: 20px;
  padding: 9px 15px;
  display: block;
}

.form-checkbox {
  padding: 5px 0;
}

.form-checkbox input {
  display: none;
}

.form-checkbox input+label {
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 18px;
  font-size: 16px;
}

.form-checkbox input+label:after {
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #ced4da;
  position: absolute;
  top: 2px;
  left: 0;
}

.form-checkbox input:checked+label:before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('../images/checked.png');
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 2px;
  left: 0;
}

.zayavka-form-col {
  margin-bottom: 15px;
}

.carusel-item {
  padding: 15px;
  height: 100%;
}

.usluga-item {
  background-color: var(--color1);
  border-radius: 20px;
  box-shadow: 0 1px 20px -8px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  height: 100%;
}

.usluga-item-text {
  padding: 15px 30px;
  font-family: var(--font-family-2);
  font-size: 20px;
  line-height: 22px;
  color: var(--color4);
  min-height: 120px;
}

.holst-carusel .owl-item {
  height: 100%;
}

.owl-carousel .owl-dots button span {
  width: 20px !important;
  height: 20px !important;
  background: #cccccc !important;
}

.owl-carousel .owl-dots button.active span {
  width: 20px !important;
  height: 20px !important;
  background: #666666 !important;
}

.clients-simpletitle {
  font-family: var(--font-family-3);
  color: var(--color4);
  font-size: 26px;
  line-height: 30px;
  position: relative;
}

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

.clients-map img {
  width: 100%;
}

.otzuv-item {
  padding: 15px;
}

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

.otzuv-item-wrap:after {
  content: '';
  width: 130px;
  height: 95px;
  background-image: url('../images/zapyatue.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 0;
  pointer-events: none;
}

.otzuv-item-name {
  font-size: 22px;
  font-family: var(--font-family-3);
  color: var(--color4);
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.otzuv-item-dolj {
  font-size: 18px;
  font-family: var(--font-family-1);
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.otzuv-item-text {
  font-size: 20px;
  line-height: 24px;
  font-family: var(--font-family-1);
  margin-bottom: 5px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.holst-subtitle {
  text-align: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.quests-item {
  margin-bottom: 15px;
}

.quests-item-vopros {
  font-family: var(--font-family-3);
  font-size: 24px;
  color: var(--color4);
  padding: 15px 40px 15px 25px;
  background-color: var(--color8);
  border-radius: 15px;
  cursor: pointer;
  position: relative;
}

.quests-item-vopros:after {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background-image: url('../images/plus.png');
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 15px;
  top: 15px;
}

.quests-item-vopros.openaccordion:after {
  background-image: url('../images/minus.png') !important;
}

.quests-item-otvet {
  padding: 0 30px 0 30px;
  font-size: 20px;
  display: none;
  overflow: hidden;
  margin: 10px 0;
  height: auto;
}

.holst-map {
  position: relative;
}

.holst-map-wrap {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
}

.holst-map-container {
  height: 1px;
}

.holst-map-contakts {
  background-color: var(--color1);
  border-radius: 20px;
  box-shadow: 0 1px 20px -8px rgba(0, 0, 0, 0.5);
  width: 350px;
  padding: 30px;
}

.holst-map-contakts-title {
  font-size: 26px;
  text-align: center;
  font-family: var(--font-family-3);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.holst-map-contakts-text {
  font-size: 20px;
  font-family: var(--font-family-2);
}

.footer {
  background-color: var(--color2);
  color: var(--color1);
  padding: 40px 0;
  font-size: 22px;
}

.footer-menu {
  margin-bottom: 30px;
}

.footer-menu ul {
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  display: inline-block;
  margin-right: 30px;
}

.footer-menu ul li a {
  display: block;
  color: var(--color1);
  text-decoration: none;
}

.footer-phone {
  font-family: var(--font-family-3);
  font-size: 24px;
  text-align: right;
}

.footer-copyright-right {
  text-align: right;
}

.footer-copyright-right a {
  text-decoration: none;
  color: var(--color1);
}

.footer-copyright-left {
  line-height: 22px;
}

.footer-copyright-logo {
  padding-left: 50px;
  background-image: url('../images/minilogo.png');
  background-position: center left;
  background-repeat: no-repeat;
  display: block;
}

.modal-content {
  border-radius: 0;
  border: 0;
  padding: 15px 25px;
}

.modal-body .form-group {
  margin: 15px 0;
}

.custom-input input {
  display: none;
}

.custom-input input+label {
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-image: url(../images/icon-file.svg);
  background-position: center right;
  background-size: contain;
  cursor: pointer;
  margin: 15px 0;
  font-size: 20px;
}

.filename {
  text-align: center;
  padding: 5px 0;
  font-family: var(--font-family-3);
  color: var(--color2);
}

.simple-content-text {
  font-size: calc((100vw - 480px)/(1280 - 480) * (20 - 16) + 16px);
}

.simple-content {
  margin-bottom: 70px;
}

.simple-content-image img {
  border-radius: 20px;
  box-shadow: 0 1px 20px -8px rgba(0, 0, 0, 0.7);
}

.simple-content-map {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 1px 20px -8px rgba(0, 0, 0, 0.7);
}

.padding-left {
  padding-left: 30px;
}

.padding-top {
  padding-top: 30px;
}

.padding-bottom {
  padding-bottom: 30px;
}

.gall-item{
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.gall-item a{
  display: block;
    transition: all 0.3s;
box-shadow: 0 1px 10px -8px rgb(0 0 0 / 27%);
}
.gall-item:hover a{
  transition: all 0.3s;
box-shadow: 0 1px 20px -8px rgb(0 0 0 / 50%);
}


.gall-item img{
  height: 235px;
  object-fit: cover;
}

@media (max-width: 991px){
  .gall-item img{
    height: 150px;
  }
}

@media (max-width: 767px){
  .gall-item img{
    height: auto;
    max-height: 350px;
  }
}

#call-phone a{text-align: center;font-weight: bold;color: var(--color4);text-decoration: none;font-size: 2.6rem;display: block;}
#call-phone a:hover{text-decoration: underline;}


.captcha-field{margin-bottom:10px}
#zayavka .captcha-field{text-align: center;display: flex;align-items: center;justify-content: center;flex-direction: column;}

