@charset "utf-8";
/* CSS Document */
@font-face {
  font-family: 'Nexa-Replica-RU';
  src: local('Nexa-Replica-RU'), local('Nexa-Replica-RU'),
  url(../fonts/Nexa-Replica-RU.ttf) format('opentype'),
  url('../fonts/Nexa-Replica-RU.woff') format('woff');
  font-style: normal;
}

:root {
  --font-family-1: "Arial";
  --font-family-2: "Nexa-Replica-RU";

  /*COLORS*/
  --color1: #ffffff; /*Белый*/
  --color2: #2e8be8; /*Синий*/
  --color3: #cccccc; /*Серый*/
  --color3a: #666666; /*Темно Серый*/
  --color3b: #333333; /*Темно темно Серый*/
  --color4: #000000; /*Черный*/
  --color5: #e9a412; /*Желтый*/
}

html {
  height: 100%;
  width: 100%;
}
* {
  margin: 0;
  padding: 0;
  outline: none !important;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  width: 100%;
  height: 100%;
  z-index: 999;
}
*::-webkit-scrollbar,
html *::-webkit-scrollbar {
  background:transparent !important;
  height: 12px;
  width: 8px;
}
*::-webkit-scrollbar-track,
html *::-webkit-scrollbar-track {
  background: transparent !important;
  filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); 
  -moz-opacity: 0; 
  -khtml-opacity: 0; 
  opacity: 0; 
}

*::-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-image: url("../images/bg.png");
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  color: var(--color4);
}
.header-bg {
  background-image: url('../images/bg-header.jpg');
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 800px;
  background-size: cover;
}
.flex-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-top-logo{
  text-align: center;
  height: 100%;
}
.header-top-logo a{
  color: var(--color4);
  text-decoration: none;
  font-family: var(--font-family-2);
  font-size: 26px;
  padding-top: 5px;
  line-height: 6px;
}
.header-top-lozung {
  font-size: 14px;
  color: var(--color3a);
  padding: 0 0 0 30px;
  position: relative;
}
.header-top-lozung:after {
  content: '';
  width: 1px;
  height: 40px;
  position: absolute;
  top:50%;
  margin-top: -20px;
  left: 0;
  background-color: var(--color3);
}
.header-top {
  padding:10px 0 10px 0;
}
.header-top-phone {
  color: var(--color4);
  font-family: var(--font-family-2);
  font-size: 19px;
}
.header-top-phone-text {
  font-size:14px;
  color:var(--color3a);
}
.btn-style-one {
  background: #ffeeb8;
  background-image: -webkit-linear-gradient(top, #ffeeb8, #f5a300);
  background-image: -moz-linear-gradient(top, #ffeeb8, #f5a300);
  background-image: -ms-linear-gradient(top, #ffeeb8, #f5a300);
  background-image: -o-linear-gradient(top, #ffeeb8, #f5a300);
  background-image: linear-gradient(to bottom, #ffeeb8, #f5a300);
  -webkit-border-radius: 9;
  -moz-border-radius: 9;
  border-radius: 9px;
  text-shadow: 0px 1px 4px #ffffff;
  font-family: Arial;
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px 25px 15px 25px;
  text-align: center;
  text-decoration: none;
  border: 0;
}
.btn-style-one:hover {
  background: #ffeeb8;
  background-image: -webkit-linear-gradient(top, #ffeeb8, #f5a300);
  background-image: -moz-linear-gradient(top, #ffeeb8, #f5a300);
  background-image: -ms-linear-gradient(top, #ffeeb8, #f5a300);
  background-image: -o-linear-gradient(top, #ffeeb8, #f5a300);
  background-image: linear-gradient(to bottom, #ffeeb8, #f5a300);
  -webkit-border-radius: 9;
  -moz-border-radius: 9;
  border-radius: 9px;
  text-shadow: 0px 1px 4px #ffffff;
  color: #000000;
  text-decoration: none;
}
.offer-row {
  padding: 50px 0 15px 40px;
}
.offer-site-top {
  font-size: 28px;
  font-weight: bold;
  padding: 0 0 0 50px;
  position: relative;
}
.offer-site-top:after {
  content: '';
  position: absolute;
  top:50%;
  left: 0;
  width: 40px;
  height: 6px;
  background: var(--color2);
  margin-top: -3px;
}
.offer-site-bigtext {
  font-size: 46px;
  line-height: 66px;
  color: var(--color4);
  font-family: var(--font-family-1);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.offer-site-bigtext::first-letter {
  font-size: 62px;
}
.offer-site-yellowtext {
  font-size: 60px;
  line-height: 62px;
  color: var(--color5);
  margin-bottom: 15px;
  font-weight: bold;
}
.offer-site-simpletext {
  font-size: 27px;
  line-height: 34px;
  color: var(--color3a);
  margin-bottom: 15px;
}
.btn-style-two {
	box-shadow: 0px 6px 0px 0px #998d31;
	background:linear-gradient(to bottom, #ffec64 5%, #ffab23 100%);
	background-color:#ffec64;
	border-radius:13px;
	border:0;
	display:inline-block;
	cursor:pointer;
	color:var(--color4);
	font-family:Arial;
	font-size:18px;
	font-weight:bold;
	padding:32px 50px;
	text-decoration:none;
	text-shadow:0px 1px 0px #fcf3b6;
  text-align: center;
}
.btn-style-two:hover {
	background:linear-gradient(to bottom, #ffab23 5%, #ffec64 100%);
	background-color:#ffab23;
  color:var(--color4);
}
.btn-style-two:active {
	position:relative;
	top:3px;
  box-shadow: 0px 3px 0px 0px #998d31;
}
.krugs {
  position: relative;
  width: 100%;
  height: 100%;
}
.krug-item {
  width: 50px;
  height: 50px;
  background: var(--color2);
  color:var(--color1);
  font-size: 34px;
  line-height: 50px;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  cursor: pointer;
}
.krug-one {
  position: absolute;
  top:100px;
  left: 100px;
}
.krug-two {
  position: absolute;
  top:330px;
  left: 20px;
}
.krug-item span{
  position: relative;
  display: block;
}
.krug-item span:after{
  content: '';
  position: absolute;
  top:0;
  left:0;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid var(--color2);
  -webkit-animation-name: pulsar;
  -moz-animation-name: pulsar;
  -o-animation-name: pulsar;
  animation-name: pulsar;

  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  animation-duration: 3s;

  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;

  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;

  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.krug-item span:before{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid var(--color2);
  -webkit-animation-name: pulsar;
  -moz-animation-name: pulsar;
  -o-animation-name: pulsar;
  animation-name: pulsar;

  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  animation-duration: 3s;

  -webkit-animation-delay: 0;
  animation-delay: 0;
  -moz-animation-delay: 0;

  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;

  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* ANIMATION BUTTON*/
@-moz-keyframes pulsar {
  0% {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -o-transform: scale(1);
      -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);
      -moz-opacity: 0.5;
      -khtml-opacity: 0.5;
      opacity: 0.5;
  }
  100% {
      transform: scale(1.5);
      -webkit-transform: scale(1.5);
      -moz-transform: scale(1.5);
      -o-transform: scale(1.5);
      -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);
      -moz-opacity: 0;
      -khtml-opacity: 0;
      opacity: 0;
  }
}

@-webkit-keyframes pulsar {
  0% {
      transform: scale(1.1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -o-transform: scale(1);
      -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);
      -moz-opacity: 0.5;
      -khtml-opacity: 0.5;
      opacity: 0.5;
  }
  100% {
      transform: scale(1.5);
      -webkit-transform: scale(1.5);
      -moz-transform: scale(1.5);
      -o-transform: scale(1.5);
      -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);
      -moz-opacity: 0;
      -khtml-opacity: 0;
      opacity: 0;
  }
}
.krug-item-text {
  position: absolute;
  top:60px;
  left: -120px;
  background-color: var(--color1);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 1px 20px -5px rgba(0,0,0,0.5);
  text-align: center;
  font-size:16px;
  line-height: 20px;
  font-weight: 100;
  color:var(--color3b);
  width: 300px;
  height: auto;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -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;
  overflow: hidden;
  pointer-events: none;
}
.krug-item:hover span .krug-item-text{
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  height: auto;
}
.header-bloks {
  margin-bottom: -100px !important;
  padding-bottom: 30px;
}
.header-bloks:after {
  content:'';
  display: block;
  clear: both;
}
.header-bloks-container {
  margin-top: -100px;
}
.header-blok-item {
  background-color: var(--color1);
  padding: 5px 0 5px 30px;
  box-sizing: border-box;
  border-radius: 15px;
  box-shadow: 0 1px 20px -5px rgba(0,0,0,0.5);
  width: 100% !important;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.header-blok-col {
  position: relative;
}
.header-blok-col:after {
  content:'';
  position: absolute;
  top:7px;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;
  width: 80%;
  height: 100%;
  border-radius: 15px;
  background-color: var(--color2);
  -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;
}
.header-blok-col:hover:after {
  top:-7px;
}
.header-blok-item-text, .header-blok-item-image {
  width: 50%;
}
.header-blok-item-text-big {
  color: var(--color4);
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 15px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.header-blok-item-text-simple {
  color:var(--color3b);
}
.fotos-item img{
  width: 100%;
}
.fotos {
  padding: 100px 0 50px 0;
}
.holst-title {
  text-align: center;
  margin-bottom: 30px;
}
.holst-title h2{
  font-size:34px;
  font-weight: bold;
  color:var(--color4);
}
.border-blok {
  border:2px solid var(--color3);
  border-radius: 20px;
  margin-bottom: 15px;
}
.qviz {
  padding-bottom: 30px;
}
.qviz-blok-title {
  padding: 30px;
  border-bottom: 1px solid var(--color3);
  font-size:30px;
  font-weight: bold;
}
.qviz-blok-content {
  padding: 30px;
}
.qviz-user {
  margin-bottom: 30px;
}
.qviz-user-foto {
  width: 30%;
  padding: 0 10px 5px 0;
}
.qviz-user-foto img{
  border-radius: 15px;
  width: 100%;
}
.qviz-user-info {
  width: 70%;
}
.qviz-user-info-name {
  font-size:24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.qviz-user-info-dolj {
  font-size:13px;
  color:var(--color3a);
}
.qviz-user-textinfo {
  text-align: center;
  color:var(--color3a);
  margin-bottom: 15px;
}
.qviz-user-phone {
  font-size:20px;
  font-weight: bold;
  text-align: center;
  font-family: var(--font-family-2);
  margin-bottom: 10px;
}
.qviz-user-whitsap {
  text-align: center;
}
.qviz-main {
  display: none;
}
.qviz-main.active {
  display: block;
}
.qviz-main-vopros {
  font-size:28px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 10px;
}
.qviz-main-otvet-item {
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  width: calc(100%/4);
  cursor: pointer;
}
.qviz-main-image img{
  border-radius: 20px;
}
.qviz-main-title {
  padding: 5px;
  text-align: center;
  font-size:14px;
  color:var(--color3b);
}
.qviz-main-buttons {
  justify-content: space-between;
  padding: 15px;
}
.qviz-button-prev {
  padding: 10px 30px;
  border:0;
  border-radius: 15px;
  color:var(--color3b);
  background: var(--color3);
  margin-bottom: 10px;
}
.qviz-button-next {
  padding: 10px 30px;
  border:0;
  border-radius: 15px;
  color:var(--color1);
  background: var(--color2);
  margin-bottom: 10px;
}
.qviz-button-end {
  padding: 10px 30px;
  border:0;
  border-radius: 15px;
  color:var(--color4);
  background: #ff9817;
  margin-bottom: 10px;
}
.qviz-main-otvet-item input {
  display: none;
}
.qviz-main-image img{
  width: 100%;
}
.qviz-main-otvet-item input + label {
  cursor: pointer;
}
.qviz-main-otvet-item input:checked + label::after {
  content: '';
  position: absolute;
  top:15px;
  left:15px;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #ffffff;
  background-image: url('../images/icon-galka.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60%;
  text-align: center;
  padding: 3px 0 0 0;
}
.qviz-form {
  padding: 10px 15px;
}
.qviz-dop-text {
  padding: 30px 15px;
  text-align: center;
  font-weight: bold;
}
.footer {
  padding:60px 0;
  background-color: #efefef;
  color:var(--color3b);
}
.footer a{
  color:var(--color3b);
  text-decoration: none;
}
.copyright {
  padding:30px 0;
  background-color: #000000;
  color:#efefef
}
.copyright a{
  text-decoration: none;
  color:#efefef
}
.modal-content {
  padding: 15px 30px;
  border-radius: 50px 0 50px 0 !important;
}
.ok-mes {
	text-align:center;
	font-size:26px;
	padding:50px 15px;
	color: var(--color2);
  width: 100%;
}
.qviz-result {
  display:none;
}
.ajax_form {
  width: 100%;
}

