* {
  box-sizing: border-box;
}




body {
  padding: 0;
  margin: 0 auto;
  font-family: "Raleway";
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  background: #fff;
  overflow-x: hidden;
}




.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-weight:600
  height: 50px;
  padding: 1em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding-right: 50px;
     
    font-weight: 600;
}

.menu > li {
  margin: 0 0.7rem;
  overflow: hidden;
}

.menu a {
    color: #fff;
    text-decoration: none;
    
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 700px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 90px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #ec9206;
	font-weight:600;
	z-index: 1;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}



.menu ul li a {
    width: 100px;
    padding: 4px 0 4px 0px;
    margin: 0;
    border: none;
    
}



/* MENU */
.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #fdaf0a;
    width: max-content;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

li.dropdown {
    overflow: visible;
}

.dropdown li {
    list-style-type: none;
}


.dropbtn {
    padding-right: 28px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

@media(min-width: 701px) {
    .dropbtn::after {
        content: "\25B2";
        font-size: 13px;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-38%) rotateX(180deg);
        transition: transform 0.3s ease-in-out;
    }
}

.dropdown:hover .dropbtn::after {
    transform: translateY(-50%) rotateX(0deg);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.menu ul.dropdown-content li a {
    color: black;
    text-decoration: none;
    display: block;
    padding: 8px 8px;
    width: auto;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

@media(max-width:700px) {
    li.dropdown {
        display: flex;
        flex-direction: column;
        overflow: auto;
        text-align: center;
    }

    #menu-toggle:checked~.menu li.dropdown {
        height: auto;
        padding: 0;
        border: none;
    }

    .dropdown-content {
        opacity: 1;
        visibility: visible;
        position: relative;
        width: 100%;
        background: transparent;

    }

    .dropdown-content {
        width: 100% height: 2.5em;
    }

    .menu ul.dropdown-content li a {
        color: #fff;
        padding: 0;
    }

    .dropbtn {
        display: block;
        border: 1px solid #333;
        width: 100% height: 2.5em;
        padding: 0.5em;
    }
}
/* END MENU */













h1 {

    font-size: 5rem;
    font-family: "Raleway";
    line-height: 1.25;
    font-weight: 700;
	color: #525252;
	    text-shadow: 1px 1px 1px rgba(3, 0, 0, .9);
}


h2 {

  font-family: "Raleway";
  font-size: 4rem;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.875rem;
}

h3 {

  font-size: 30px;
  font-weight: 500;
  color: #525252;
}

h5 {

  font-size: 23px;
  font-weight: 500;
  color: #525252;
}


@media (max-width: 1200px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 40px;
    line-height: 57px;
    letter-spacing: 0.03em;
  }
}
@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 30px;
    line-height: 36px;
  }
}



b,
strong {
  font-weight: 600;
}

.header__calc-cost,
.main-offer__button,
.textures__offer-button,
.hpl-advantages__cta-button_cost,
.work-slider__button_solid,
.quiz__step-button_next,
.contact-input__submit-button,
.work-step__gift-button,
.contact-input__submit-button,
.cooperation__button,
.quiz__submit-button,
.footer__button-partner,
.telmeet {
     background: linear-gradient(180deg, #f1c569, #ffad00), #1d7588;
    transition: 1s;
    box-shadow: 0px 2px 0px #5b687b;
}
.header__calc-cost:hover,
.main-offer__button:hover,
.textures__offer-button:hover,
.hpl-advantages__cta-button_cost:hover,
.work-slider__button_solid:hover,
.kviz__step-button_next:hover,
.contact-input__submit-button:hover,
.work-step__gift-button:hover,
.contact-input__submit-button:hover,
.cooperation__button:hover,
.kviz__submit-button:hover,
.footer__button-partner:hover,
.telmeet:hover {
  background-size: 100% 150%;
  transition: all .5s ease-in;
  background: #ffad00;
  -webkit-animation: pulseButtonAnimation 2s ease-in;
          animation: pulseButtonAnimation 2s ease-in;
}

@-webkit-keyframes Animation {
  0% {
    left: -30px;
    margin-left: 0px;
  }
  30% {
    left: 110%;
    margin-left: 80px;
  }
  100% {
    left: 110%;
    margin-left: 80px;
  }
}

@keyframes Animation {
  0% {
    left: -30px;
    margin-left: 0px;
  }
  30% {
    left: 110%;
    margin-left: 80px;
  }
  100% {
    left: 110%;
    margin-left: 80px;
  }
}
@-webkit-keyframes pulseButtonAnimation {
  0% {
    background-position: 10% 10%;
  }
  70% {
    background-position: 91% 100%;
  }
  100% {
    background-position: 200% 0%;
  }
}
@keyframes pulseButtonAnimation {
  0% {
    background-position: 10% 10%;
  }
  70% {
    background-position: 91% 100%;
  }
  100% {
    background-position: 200% 0%;
  }
}
.main-offer {
  width: 100%;
  max-width: 2560px;
  background: url("../img/fon_header.jpg") center center no-repeat;
  background-size: 105%;
  margin: 0 auto;
  padding-top:25px;
  padding-left: 40px;
  
}

@media screen and (max-width: 1200px) {
  .main-offer {
    margin-top: 121px;
  }
}

@media screen and (max-width: 769px) {
  .main-offer {
    margin-top: 0px;
	background: url("../img/fon_header_mob.jpg") center center no-repeat;
  }
}





.main-offer_rashet {
  width: 100%;
  max-width: 2560px;
  background: url("../img/parket_raschet.jpg") center center no-repeat;
  background-size: 105%;
  margin: 80px auto;

}

@media (max-width: 1905px) {
  .main-offer_rashet {

    background-size: 140%;
  }
}
@media (max-width: 1400px) {
  .main-offer_rashet {
    background-size: 120%;
  }
}
@media (max-width: 1366px) {
  .main-offer_rashet {

    background-size: 130%;
  }
}
@media (max-width: 1200px) {
  .main-offer_rashet {
    background-size: 212%;

  }
}
@media (max-width: 768px) {
  .main-offer_rashet {
    -webkit-animation: none;
            animation: none;
    background-size: cover;
  }
}
@media (max-width: 380px) {
  .main-offer_rashet {
   background: url("../img/kuhnya_raschet_mob.jpg") top center no-repeat;
   margin: 0px auto;
  }
}
.main-offer_rashet__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.main-offer_rashet-price__inner {
  width: 100%;
  max-width: 1200px;
  min-height: 0px;
  padding: 0 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}



@media (max-width: 1200px) {
  .main-offer_rashet__inner {
    max-width: 768px;
    padding: 0 40px;
    min-height: 696px;
  }
}
@media (max-width: 768px) {
  .main-offer_rashet__inner {
    max-width: 380px;
    padding: 30px;
    min-height: 320px;
  }
}
.main-offer_rashet__content {
  width: 100%;
}
@media (max-width: 768px) {
  .main-offer_rashet__content {
    max-width: 320px;
  }
}
.main-offer_rashet__title-wrapper {
  position: relative;
  width: 100%;
  max-width: 570px;
  padding-top: 30px;
}
@media (max-width: 1200px) {
  .main-offer_rashet__title-wrapper {
    max-width: 530px;
  }
}
@media (max-width: 768px) {
  .main-offer_rashet__title-wrapper {
    max-width: 320px;
	padding-top:0px;
  }
}
.main-offer_rashet__title {
  color: #fff;
  margin: 0 0 30px;
}
.main-offer_rashet__title span {
  position: relative;
  color: #4aa7ff;
  border-bottom: 2px dashed #fff;
}
@media (max-width: 768px) {
  .main-offer_rashet__title {
    margin-bottom: 20px;
  }
}












.main-offer-price {
  width: 100%;
  max-width: 2560px;
  background: url(../img/pat_blue.jpg)repeat;;
  background-size: 105%;
  margin: 0 auto;

}


@media (max-width: 1905px) {
  .main-offer {

    background-size: 140%;
  }
}
@media (max-width: 1400px) {
  .main-offer {
    background-size: 100%;
  }
}
@media (max-width: 1366px) {
  .main-offer {

    background-size: 100%;
  }
}
@media (max-width: 1200px) {
  .main-offer {
    background-size: 100%;

  }
}
@media (max-width: 768px) {
  .main-offer {
    -webkit-animation: none;
            animation: none;
    background-size: cover;
	padding-left: 0px;
	
  }
}
@media (max-width: 380px) {
  .main-offer {
	
  }
}
.main-offer__inner {
  width: 100%;
  max-width: 1920px;
  min-height: 500px;
  padding: 0 25px;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.main-offer-price__inner {
  width: 100%;
  max-width: 1200px;
  min-height: 0px;
  padding: 0 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}



@media (max-width: 1200px) {
  .main-offer__inner {
    max-width: 768px;
    padding: 0 40px;
    min-height: 696px;
  }
}
@media (max-width: 768px) {
  .main-offer__inner {
    max-width: 380px;
    padding: 30px;
    min-height: 0px;
	margin-bottom: 0px;
  }
}
.main-offer__content {
  width: 100%;
}
@media (max-width: 768px) {
  .main-offer__content {
    max-width: 320px;
  }
}
.main-offer__title-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding-top: 20px;
}
@media (max-width: 1200px) {
  .main-offer__title-wrapper {
    max-width: 530px;
  }
}
@media (max-width: 768px) {
  .main-offer__title-wrapper {
    max-width: 320px;
	padding-top:0px;
  }
}
.main-offer__title {
  color: #fff;
  margin: 40px 00px 80px;
}
.main-offer__title span {
  position: relative;
  color: #4aa7ff;

}

.main-offer__title_small {
    color: #fff;
    margin: 10px 00px 80px;
    font-size: 30px;
}



@media (max-width: 768px) {
  .main-offer__title {
    margin-bottom: 20px;
	margin-top:0px;
  }
  .main-offer__title_small {
    font-size:20px;
	line-height: 30px;
  }
}
.main-offer .info-icon {
  display: -webkit-box;
  display: block;
  line-height: 1;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 18px;
  height: 18px;
  position: absolute;
  border: 1px solid #f5a525;
  border-radius: 10px;
  color: #f5a525;
  font: 13px "Raleway", sans-serif;
  right: 220px;
  bottom: 40px;
  padding-left: 0.5px;
}
@media (max-width: 1200px) {
  .main-offer .info-icon {
    right: 140px;
  }
}
@media (max-width: 768px) {
  .main-offer .info-icon {
    bottom: 20px;
    right: 65px;
	display:none;
  }
}
.main-offer .info-banner {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0px 10px 200px;
  width: 100%;
  max-width: 360px;
  height: 240px;
}
.main-offer .info-banner__wrapper {
  width: 100%;
  max-width: 360px;
  position: absolute;
  right: -217px;
  top: 140px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .main-offer .info-banner__wrapper {
    right: -202px;
  }
}
@media (max-width: 800px) {
  .main-offer .info-banner__wrapper {
    right: auto;
    left: -10px;
    top: 180px;
  }
}
.main-offer .info-banner__wrapper_active {
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}
.main-offer .info-banner__inner {
  position: absolute;
  bottom: -10px;
  left: 10px;
  padding: 40px 30px 40px 40px;
  width: 100%;
  max-width: 360px;
  background: linear-gradient(131.92deg, rgba(60, 49, 47, 0) 23.89%, rgba(60, 49, 47, 0.15) 88.45%), #ffffff;
  border-radius: 0px 10px 200px;
}
.main-offer .info-banner__inner p {
  margin: 0;
  font-size: 15px;
  line-height: 27px;
  color: #23201f;
}
.main-offer__list {
  list-style: none;
  padding: 0;
  margin: 60px 0 40px;
}
.main-offer__list li {
  margin: 0 0 15px;
  color: #fff;
  line-height: 30px;
  font-size: 23px;
    font-weight: 600;
  
}
.main-offer__list li:last-child {
  margin: 0;
}
.main-offer__list li img {
  vertical-align: middle;
  margin: 0 20px 3px 0;
  width: 5%;
}
@media (max-width: 768px) {
  .main-offer__list {
    margin: 0 0 30px;
	background: #00000059;
    border: solid 2px #999;
    padding: 10px;
  }
}


.main-offer__list2 {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.main-offer__list2 li {
  margin: 0 0 15px;
  color: #666;
  line-height: 24px;
  font-size: 15px;
}
.main-offer__list2 li:last-child {
  margin: 0;
}
.main-offer__list2 li img {
  vertical-align: middle;
  margin: 0 20px 3px 0;
}
@media (max-width: 768px) {
  .main-offer__list2 {
    margin: 0 0 30px;
	padding: 10px;
	text-align: left;
  }
}




.main-offer__button {
  font-size: 20px;
  color: #000;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #fff;
  width: 100%;
  max-width: 250px;
  height: 48px;
  font-weight: 700;
  margin-top: 60px;
  padding-top: 2px;
  margin-bottom: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: 1s;
  -webkit-animation: pulseButtonAnimation 2s ease-out infinite;
          animation: pulseButtonAnimation 2s ease-out infinite;
}
.main-offer__button:after {
  margin-left: 60px;
  content: " ";
  width: 30px;
  height: 300px;
  background: #fff;
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  position: absolute;
  left: -40px;
  top: -150px;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  transition: all 0.1s;
  -moz-transition: all 0.1s;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  -khtml-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -webkit-animation-name: Animation;
  animation-name: Animation;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
@media (max-width: 1200px) {
  .main-offer__button {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .main-offer__button {
    height: 56px;
        font-size: 18px;
        margin-right: 20px;
        padding: 0px
  }
}
.main-offer__call-to-action {
  margin: 0;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 768px) {
  .main-offer__call-to-action {
    text-align: center;
    line-height: 24px;
    max-width: 300px;
    margin: 0 auto;
  }
  .main-offer__list li {
  

  font-size: 15px;
   
  
}
}

.main-offer__btn {
  font-size: 15px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  border: none;
  width: 100%;
  max-width: 320px;
  height: 68px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding-top: 2px;
  margin-bottom: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: 1s;
  -webkit-animation: pulseButtonAnimation 2s ease-out infinite;
          animation: pulseButtonAnimation 2s ease-out infinite;
     background: linear-gradient(180deg, #f1c569, #ffad00), #1d7588;
  box-shadow: 0px 2px 0px #940818;
}
.main-offer__btn:after {
  margin-left: 60px;
  content: " ";
  width: 30px;
  height: 300px;
  background: #fff;
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  position: absolute;
  left: -40px;
  top: -150px;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  transition: all 0.1s;
  -moz-transition: all 0.1s;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  -khtml-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -webkit-animation-name: Animation;
  animation-name: Animation;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
@media (max-width: 1200px) {
  .main-offer__btn {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .main-offer__btn {
    height: 56px;
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.header {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px;
 
  padding: 10px 0px 10px 0;
  z-index: 1000000;

}
.top {
	
}

.header-price {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  padding: 15px 0;
  margin: 0 0 0px;
}


@media (max-width: 1200px) {
  .header {
    padding-top: 20px;
    margin: 0 0 90px;
  }
}
@media (max-width: 768px) {
  .header {
    padding-top: 20px;
    margin: 0 0 0px;
  }
  .header__logo-img {
  width: 134px !important;
  margin-left:0px;

}
}
.header__logo {
  
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
		  padding-left:10px;
		  width: 200px;
}
.header__link {
  width: 100%;
  flex-basis: 100%;
}

/*
@media (max-width: 1200px) {
  .header__logo {
    width: auto;
  }
}
*/
.header__logo-img {
  width: 100%;
  margin-right: 15px;
  height: auto;
}
.header__logo-text {
  font-size: 14px;
  margin: 2px 0 0;
  padding: 0;
  line-height: 18px;
  color:#fff;
  font-weight: 600;
}
.header__logo-text span {
  font-weight: 600;
}
@media (max-width: 1200px) {
  .header__logo-text {
    font-size: 13px;
    line-height: 13px;
	
  }
}
.header__contact {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
 
  padding: 20px;

}
.header__tel {
  text-align: right;
}
.header__tel p {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  margin: 2px 0 0;
  color:#fff;
}
.header__tel p img {
  margin-right: 10px;
  line-height: 0;
  margin: 0 10px 1px 0;
}
.header__tel p a {
  color: #606060;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
}
.header__tel button {
  background: none;
  border: none;
  border-bottom: 1px dashed #4aa7ff;
  padding: 0 0 3px;
  margin: 0;
  color: #4aa7ff;
  font-size: 13px;
  cursor: pointer;
}

.header__tel-button {
	
	background: linear-gradient(180deg, #f1c569, #ffad00), #1d7588;
    transition: 1s;
    box-shadow: 0px 2px 0px #5b687b;
	font-size: 20px;
    color: #000;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #fff;
    width: 100%;
    max-width: 250px;
    height: 48px;
    font-weight: 700;
    margin-top: 60px;
    padding-top: 2px;
    margin-bottom: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: 1s;
    -webkit-animation: pulseButtonAnimation 2s ease-out infinite;
    animation: pulseButtonAnimation 2s ease-out infinite;
}


@media (max-width: 768px) {
  .header__tel {
    display: none;
  }
}
.header__tel-button_mob {
  display: none;
  height: 46px;
  width: 46px;
  border-radius: 23px;
  box-shadow: none;
  border: none;
  outline: none;
  cursor: pointer;
  background: rgb(112 112 112);
}
@media (max-width: 768px) {
  .header__tel-button_mob {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
  }
}

.telmeet {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.07em;
  border: none;
  cursor: pointer;

}

.telmeet {
  padding: 15px;
  border-radius: 3px;
  box-shadow: none;

}

.telmeet a{
  color: #fff;
  text-decoration: none;

}

.header__calc-cost {
  font-size: 20px;
    color: #000;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #fff;
    width: 100%;
    max-width: 250px;
    height: 48px;
    font-weight: 700;
    margin-top: 60px;
    padding-top: 2px;
    margin-bottom: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: 1s;
    -webkit-animation: pulseButtonAnimation 2s ease-out infinite;
    animation: pulseButtonAnimation 2s ease-out infinite;
	margin-left: 10px;
 
}
@media (max-width: 768px) {
  .header__calc-cost {
    height: 56px;
        font-size: 18px;
        margin-right: 20px;
        padding: 0px;
  }
}
.header__calc-cost_mob {
  display: none;
  padding: 2px 0 0 0;
  width: 46px;
  border-radius: 23px;
  box-shadow: none;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .header__calc-cost_mob {
    display: block;
  }
}

#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  z-index: 20;
  background: #fff;
  padding: 0px;
  border-bottom: 2px solid #c4c4c4;
  padding: 10px 0px 10px 0;
}
#header.fixed .header__logo-text {

}
#header.fixed .container {
  /* padding: 0 15px; */
  /* Mobale */
  /* Mobale */
}
@media (max-width: 1200px) {
  #header.fixed .container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  #header.fixed .container {
    padding: 0 0;
  }
}

.container:not(.containerquiz) {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  /* Laptop */
  /* Mobale */
}
@media (max-width: 1200px) {
  .container:not(.containerquiz) {
    max-width: 768px;
  }
}
@media (max-width: 768px) {
  .container:not(.containerquiz) {
    max-width: 380px;
  }
}

[data-btn-decstop] {
  /* Mobale */
}
@media (max-width: 768px) {
  [data-btn-decstop] {
    display: none;
  }
}

[data-btn-mob] {
  display: none;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  /* Mobale */
}
@media (max-width: 768px) {
  [data-btn-mob] {
    display: -webkit-box;
    display: flex;
  }
}

.header-btn-q {
  padding: 2px 0 0 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: none;
  margin-left: 20px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.07em;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
    background: linear-gradient(180deg, #f1c569, #ffad00), #1d7588;
  transition: 1s;
}

.quize-page {
  padding-bottom: 30px;
  padding-top: 30px;
}
.quize-page .quiz {
  margin: 20px auto 1px;
}

.body-quize {
  
  position: relative;
}

.quize-link {
  text-decoration: none;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 25px;
  color: #333;
}

.transition-fade {
  transition: 0.4s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

.hpl-advantages {
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
  

}
@media (max-width: 1200px) {
  .hpl-advantages {
  }
}
@media (max-width: 380px) {
  .hpl-advantages {
  }
}
.hpl-advantages__inner {
  width: 100%;
  max-width: 1200px;
  padding: 50px 15px 0px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .hpl-advantages__inner {
    max-width: 768px;
    padding: 50px 40px 0px;
  }
}
@media (max-width: 1200px) {
  .hpl-advantages__inner {
    padding: 50px 30px 0px;
  }
}
@media (max-width: 768px) {
  .hpl-advantages__inner {
    max-width: 380px;
    padding: 0px 30px 0px;
  }
   .hpl-advantages__item_2 {
    display:none;
  }
}
@media (max-width: 410px) {
  .hpl-advantages__inner {
    padding-bottom: 0px;
  }
}
.hpl-advantages__title {
  width: 100%;
  margin: 0 auto 0px;
  margin-bottom: 50px;

}
.hpl-advantages__title span {
  color: #864000;
}
@media (max-width: 1200px) {
  .hpl-advantages__title {
    margin-bottom: 30px;
	padding-top: 50px;
  }
}
.hpl-advantages__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .hpl-advantages__list {
    margin-bottom: 55px;
  }
}
@media (max-width: 1200px) {
  .hpl-advantages__list {
    margin-bottom: 32px;
  }
}
.hpl-advantages__item {
  width: 100%;
  max-width: 33%;
  /*  max-width: 370px; */
  margin-bottom: 0;
  padding: 10px;
}

.hpl-advantages__item_2 {
  width: 100%;
  max-width: 25%;
  /*  max-width: 370px; */
  margin-bottom: 0;
  padding: 10px;
}
.hpl-advantages__item:nth-child(2) .hpl-advantages__item-inner, .hpl-advantages__item:nth-child(5) .hpl-advantages__item-inner {

}
@media (max-width: 1200px) {
  .hpl-advantages__item:nth-child(2) .hpl-advantages__item-inner, .hpl-advantages__item:nth-child(5) .hpl-advantages__item-inner {
    margin-top: 0;
  }
}
@media (max-width: 1200px) {
  .hpl-advantages__item, .hpl-advantages__item_2 {
    max-width: 334px;
    margin-bottom: 30px;
  }
}
.hpl-advantages__item-inner,.hpl-advantages__item_2 {
   
    position: relative;
    height: 100%;

}
.hpl-advantages__item-inner::after {
  display: block;
  content: "";
  width: calc(100% - 30px);
  margin: 0 auto;
  height: 15px;
  border-radius: 0 0 15px 15px;
  position: absolute;
  bottom: -15px;
}
.hpl-advantages__item-icon {
  position: absolute;
  top: -25px;
  left: calc(50% - 26px);
  
}
.hpl-advantages__item-icon span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  background: #fff;
}
.hpl-advantages__item-img {
  
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .hpl-advantages__item-img {
    margin-bottom: 20px;
  }
}
.hpl-advantages__item-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
  margin: -20px 0 30px;
  position: absolute;
    bottom: 0px;
    left: 20px;
    background: #f8a802;
    color: #000;
    width: 60%;
	font-weight:600;
  
}
@media (max-width: 768px) {
  .hpl-advantages__item-title {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    position: absolute;
    left: 0px;
  }
}
.hpl-advantages__item-description {
  text-align: center;
  font-size: 17px;
  line-height: 30px;
  padding: 0 15px 15px;
  margin: 0;
  color: #000;
  opacity: 0.9;
  font-weight: 600;
}
@media (max-width: 768px) {
  .hpl-advantages__item-description {
    font-size: 15px;
    line-height: 26px;
  }
}
.hpl-advantages__cta {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1200px) {
  .hpl-advantages__cta {
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
}
.hpl-advantages__cta-content {
  width: 100%;
  max-width: 670px;
}
.hpl-advantages__cta-content p:first-child {
  color: #706967;
  line-height: 30px;
  margin: 0 0 20px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .hpl-advantages__cta-content p:first-child {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 10px;
  }
}
.hpl-advantages__cta-title {
  margin: 0 0 15px -4px;
}
.hpl-advantages__cta-title span {
  color: #c61429;
}
.hpl-advantages__cta-description {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}
@media (max-width: 1200px) {
  .hpl-advantages__cta-description {
    margin-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .hpl-advantages__cta-description {
    margin-bottom: 30px;
  }
}
.hpl-advantages__cta-description p {
  margin: 0;
  font-size: 17px;
  line-height: 30px;
  color: #706967;
  display: block;
  width: calc(100% - 100px);
}
@media (max-width: 768px) {
  .hpl-advantages__cta-description p {
    font-size: 15px;
    line-height: 26px;
    opacity: 0.9;
  }
}
.hpl-advantages__cta-icon-wrapper {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.5) 100%);
}
.hpl-advantages__cta-icon-inner {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0px 30px 50px rgba(112, 105, 103, 0.1);
}
.hpl-advantages__cta-buttons {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.hpl-advantages__cta-button {
  font-size: 15px;
  font-weight: 600;
  height: 68px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding-top: 2px;
  transition: 0.3s;
  cursor: pointer;
  margin-right: 30px;
}
.hpl-advantages2__cta-button {
  font-size: 15px;
  font-weight: 600;
  height: 68px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding-top: 2px;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hpl-advantages__cta-button {
    height: 56px;
    font-size: 14px;
  }
}
.hpl-advantages__cta-button_cost {
  color: #fff;
  border: none;
  width: 320px;

}
@media (max-width: 768px) {
  .hpl-advantages__cta-button_cost {
    margin: 0 0 75px 0;
  }
}
.hpl-advantages__cta-button_video {
  color: #c61429;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  border: 1px solid #c61429;
  background: none;
  width: 280px;
}
.hpl-advantages2__cta-button_video {
  color: #c61429;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  border: 1px solid #c61429;
  background: none;
  width: 280px;
}
@media (max-width: 768px) {
  .hpl-advantages__cta-button_video {
    width: 100%;
  }
  .hpl-advantages2__cta-button_video {
    width: 100%;
	margin-bottom:30px;
  }
}
.hpl-advantages__cta-button_video img {
  margin-right: 15px;
}
.hpl-advantages__buttons-description {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .hpl-advantages__buttons-description {
    position: relative;
	display:none;
  }
}
.hpl-advantages__button-description {
  color: #706967;
  text-align: center;
  font-size: 15px;
  line-height: 22px;
  padding: 0 15px;
}
.hpl-advantages__button-description:first-child {
  width: 320px;
  margin-right: 30px;
}
@media (max-width: 768px) {
  .hpl-advantages__button-description:first-child {
    width: 100%;
    margin-right: 0;
    position: absolute;
    top: -131px;
  }
}
.hpl-advantages__button-description:last-child {
  width: 280px;
}
@media (max-width: 768px) {
  .hpl-advantages__button-description:last-child {
    width: 100%;
  }
}

.dark-wrapper {
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
}
.dark-wrapper_1 {
  
  background: url("/img/vstavki/block_1.png") top right no-repeat;
}
@media (max-width: 1200px) {
  .dark-wrapper_1 {
	  background:none;
	  background-color:#333;

  }
}
.dark-wrapper_2 {
  padding-top: 0px;
  
  
}

@media (max-width: 768px) {
  .dark-wrapper_1 {
	  background:none;
	  
	  padding-top:50px;

  }
}



@media (max-width: 1200px) {
  .dark-wrapper_2 {
    padding-top: 0;
    background-size: cover;
  }
}

.video-slider__list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 30px;
  /* Mobale */
}
@media (max-width: 768px) {
  .video-slider__list {
    gap: 10px;
  }
}

.video-slider {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.video-slider__inner {
  width: 100%;
  margin: 0 auto;
  padding: 130px 0 130px;
  /* Xs */
}
@media (max-width: 1200px) {
  .video-slider__inner {
    max-width: 768px;
    padding: 97px 40px;
  }
}
@media (max-width: 768px) {
  .video-slider__inner {
    max-width: 380px;
    padding: 79px 30px 127px;
  }
}
@media (max-width: 425px) {
  .video-slider__inner {
    padding: 79px 30px 60px;
  }
}
.video-slider__title {
  width: 100%;
  max-width: 770px;
  margin: 0 auto 43px;
  color: #fff;
  text-align: center;
}
.video-slider__title span {
  background: linear-gradient(180deg, #f17180 0%, rgba(198, 20, 41, 0) 110%), #c61429;
  display: block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1200px) {
  .video-slider__title {
    max-width: 700px;
    margin-bottom: 30px;
  }
}
.video-slider__item {
  opacity: 0.8;
  position: relative;
  
  /* Mobale */
}
@media (max-width: 1200px) {
  .video-slider__item {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (max-width: 768px) {
  .video-slider__item {
    
  }
}
.video-slider__item img {
  border-radius: 15px;
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  /* Mobale */
}
@media (max-width: 768px) {
  .video-slider__item img {
    margin-bottom: 5px;
  }
}
.video-slider__item-title {
  left: 20px;
  bottom: 20px;
  color: #fff;
  margin: 0;
  opacity: 1;
  /* Mobale */
}
@media (max-width: 768px) {
  .video-slider__item-title {
    font-size: 12px;
  }
}
.video-slider__play-content {
  opacity: 1;
  position: absolute;
  z-index: 1000;
  top: calc(50% - 47px);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
  -webkit-box-align: center;
          align-items: center;
  left: calc(50% - 45.5px);
  cursor: pointer;
  /* Xs */
}
.video-slider__play-content button {
  width: 66px;
  height: 66px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 0 3px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  background: linear-gradient(180deg, #f17180 0%, rgba(198, 20, 41, 0) 110%), #c61429;
  border-radius: 33px;
  margin-bottom: 18px;
  box-shadow: 0px 0px 40px rgba(198, 20, 41, 0.5), 0px 0px 80px #c61429;
  /* Laptop */
}
@media (max-width: 1200px) {
  .video-slider__play-content button {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .video-slider__play-content button {
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
  }
}
.video-slider__play-content button img {
  width: 20px !important;
  border-radius: 0;
  margin-bottom: 0;
  /* Mobale */
}
@media (max-width: 768px) {
  .video-slider__play-content button img {
    width: 13px;
  }
}
.video-slider__play-content p {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .video-slider__play-content p {
    font-size: 10px;
  }
}
@media (max-width: 1200px) {
  .video-slider__play-content {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .video-slider__play-content {
    top: calc(50% - 35px);
    left: calc(50% - 25px);
  }
}
@media (max-width: 320px) {
  .video-slider__play-content {
    top: calc(50% - 45px);
  }
}
.video-slider .center .video-slider__item {
  transition: all 300ms ease;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.video-slider .center .video-slider__play-content {
  opacity: 1;
  transition: all 300ms ease;
}
.video-slider .center .video-slider__item-title {
  opacity: 1;
  transition: all 300ms ease;
}
.video-slider .owl-nav {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 411px);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 822px;
  margin: 0 auto;
  height: 1px;
}
@media (max-width: 1200px) {
  .video-slider .owl-nav {
    left: auto;
  }
}
@media (max-width: 768px) {
  .video-slider .owl-nav {
    top: calc(50% - 13px);
  }
}
.video-slider .owl-prev,
.video-slider .owl-next {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  border: none;
  background: linear-gradient(180deg, #f17180 0%, rgba(198, 20, 41, 0) 110%), #c61429 !important;
}
@media (max-width: 768px) {
  .video-slider .owl-prev,
  .video-slider .owl-next {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 1200px) {
  .video-slider .owl-prev {
    margin-left: -25px;
  }
}
@media (max-width: 768px) {
  .video-slider .owl-prev {
    margin-left: -12px;
  }
}
.video-slider .owl-prev img {
  margin-right: 2px;
}
@media (max-width: 768px) {
  .video-slider .owl-prev img {
    width: 16px;
    padding-left: 1px;
  }
}
@media (max-width: 1200px) {
  .video-slider .owl-next {
    margin-right: -25px;
  }
}
@media (max-width: 768px) {
  .video-slider .owl-next {
    margin-right: -12px;
  }
}
.video-slider .owl-next img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-left: 2px;
}
@media (max-width: 768px) {
  .video-slider .owl-next img {
    width: 16px;
    padding-left: 1px;
  }
}
.video-slider .owl-dots {
  display: none;
}

.our-advantages {
  width: 100%;
  max-width: 2560px;
  margin: 80px 0;
}
.our-advantages__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .our-advantages__inner {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .our-advantages__inner {
    max-width: 500px;
    padding: 0 0px;
  }
}
.our-advantages__title {
  color: #fff;
  width: 100%;
  max-width: 620px;
  margin: 0 auto 110px;
  text-align: center;
  padding-top:0px;
}
@media (max-width: 1200px) {
  .our-advantages__title {
    margin-bottom: 105px;
  }
}
@media (max-width: 768px) {
  .our-advantages__title {
    margin-bottom: 60px;
  }
  .our-advantages__lists {
	flex-wrap: wrap !important;  
	  
  }
}
.our-advantages__title__title-seporator {
  display: block;
}
.our-advantages__title span {
  color: #fd2942;
}
.our-advantages__lists {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  position: relative;
}
.our-advantages__lists::after {
  display: block;
  content: "";
  width: calc(100% - 30px);
  margin: 0 auto;
  height: 15px;
  border-radius: 0 0 15px 15px;
  position: absolute;
  bottom: -15px;
  left: 15px;
}
@media (max-width: 1200px) {
  .our-advantages__lists::after {
    display: none;
  }
}
.our-advantages__list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  position: relative;
}
.our-advantages__list:first-child .our-advantages__item:first-child {
  border-radius: 15px 0 0 15px;
  border-right: 1px solid transparent;
  -o-border-image: linear-gradient(0deg, rgba(169, 165, 164, 0) 0%, #a9a5a4 50%, rgba(169, 165, 164, 0) 100%);
     border-image: linear-gradient(0deg, rgba(169, 165, 164, 0) 0%, #a9a5a4 50%, rgba(169, 165, 164, 0) 100%);
  border-image-slice: 1;
}
.our-advantages__list:first-child .our-advantages__item:last-child {
  border-right: 1px solid transparent;
  -o-border-image: linear-gradient(0deg, rgba(169, 165, 164, 0) 0%, #a9a5a4 50%, rgba(169, 165, 164, 0) 100%);
     border-image: linear-gradient(0deg, rgba(169, 165, 164, 0) 0%, #a9a5a4 50%, rgba(169, 165, 164, 0) 100%);
  border-image-slice: 1;
}
@media (max-width: 1200px) {
  .our-advantages__list:first-child .our-advantages__item:last-child {
    border-right: none;
    border-radius: 0 15px 15px 0;
  }
}
@media (max-width: 1200px) {
  .our-advantages__list:first-child::after {
    display: block;
    content: "";
    width: calc(100% - 30px);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    height: 15px;
    border-radius: 0 0 15px 15px;
    position: absolute;
    bottom: -15px;
    left: 15px;
  }
}
@media (max-width: 768px) {
  .our-advantages__list:first-child::after {
    display: none;
  }
  .our-advantages {
    margin-top: 50px;
	margin-bottom: 50px;
  }
  .our-advantages__item {
	  width:100% !important;
  }
}
.our-advantages__list:last-child .our-advantages__item:last-child {
  border-radius: 0 15px 15px 0;
  border-left: 1px solid transparent;
  -o-border-image: linear-gradient(0deg, rgba(169, 165, 164, 0) 0%, #a9a5a4 50%, rgba(169, 165, 164, 0) 100%);
     border-image: linear-gradient(0deg, rgba(169, 165, 164, 0) 0%, #a9a5a4 50%, rgba(169, 165, 164, 0) 100%);
  border-image-slice: 1;
}
@media (max-width: 1200px) {
  .our-advantages__list:last-child .our-advantages__item:last-child {
    border-right: none;
  }
}
@media (max-width: 379px) {
  .our-advantages__list:last-child .our-advantages__item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) {
  .our-advantages__list:last-child .our-advantages__item:first-child {
    border-radius: 15px 0 0 15px;
  }
}
@media (max-width: 1200px) {
  .our-advantages__list:last-child::after {
    display: block;
    content: "";
    width: calc(100% - 30px);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    height: 15px;
    border-radius: 0 0 15px 15px;
    position: absolute;
    bottom: -15px;
    left: 15px;
  }
}
@media (max-width: 768px) {
  .our-advantages__list:last-child::after {
    display: none;
  }
}
@media (max-width: 379px) {
  .our-advantages__list:last-child::after {
    border-radius: 15px;
  }
}
@media (max-width: 1200px) {
  .our-advantages__list:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) {
  .our-advantages__list {
    width: 100%;
    
  }
}
.our-advantages__item {
  width: 50%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
  

}

.our-advantages__item_new {
  width: 30%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
  position:relative;

}



.our-advantages__item img {
  width: 250px;
  height: 250px;
  margin: 30px 0 5px 0;

}

.our-advantages__item_new img {
  width: 320px;
  height: 320px;
  margin: 30px 0 5px 0;

}

.our-advantages__item_new p {
 
  color:#fff;
  text-align: left;
  margin: 0 0 0px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  position:absolute;
  top: 50px;
  left:60px;
}


@media (max-width: 768px) {
  
  .our-advantages__item_new {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
  position:relative;

}
  
  .our-advantages__item img {
    
    margin: 20px 0 15px 0;
  }
}
.our-advantages__item p {
  width: 100%;
  margin: 0 0 0px;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
}
@media (max-width: 768px) {
  
   .our-advantages__item p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
	padding-right: 20px;
	    padding-left: 5px;
  }
  
  .our-advantages__item_new p {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
	padding-right: 20px;
	padding-left: 10%;
    text-align: left;
  }
  
  .our-advantages__item_new img {
    
    margin: 20px 0 15px 0;
	width: 250px;
  height: 250px;
  margin: 30px 0 5px 0;
  }
}

.work-examples {
  width: 100%;
  max-width: 1920px;
  margin: 30px auto;
}
.work-examples__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 15px 35px;
}
@media (max-width: 1200px) {
  .work-examples__inner {
    max-width: 768px;
    padding: 15px 40px;
  }
}
@media (max-width: 768px) {
  .work-examples__inner {
    max-width: 380px;
    padding: 30px;
  }
}
.work-examples__title {
  width: 100%;
  margin: 0 auto 40px;

}
.work-examples__title span {
  background: #864000;
  display: block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .work-examples__title {
    margin-bottom: 18px;
  }
}

.slick-slide {
  opacity: 1;
}
@media (max-width: 1200px) {
  .slick-slide {
    opacity: 1;
  }
}

.slick-current {
  opacity: 1;
}

.work-slider__item {
  width: 970px;
  margin: 0 15px;
  display: -webkit-box !important;
  display: flex !important;
  flex-wrap: wrap;
  padding: 10px;
  background: #fff;
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .work-slider__item {
    margin: 0 1px;
    width: 100%;
  }
}
.work-slider__img {
  width: 49.05263157894737%;
}
@media (max-width: 1200px) {
  .work-slider__img {
    width: 100%;
    max-width: 324px;
  }
}
@media (max-width: 768px) {
  .work-slider__img {
    max-width: 100%;
  }
}
.work-slider .owl-stage-outer {
  margin-bottom: 0px;
}
.work-slider .owl-thumbs {
  line-height: 0;
  display: none;
}
.work-slider .owl-thumb-item {
  width: 109px;
  height: 93px;
  padding: 0;
  border: none;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 5px;
}
.work-slider .owl-thumb-item:last-child {
  margin-right: 0;
}
.work-slider .owl-thumb-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .work-slider .owl-thumb-item {
    width: 73px;
    height: auto;
  }
}
.work-slider .owl-nav {
  position: absolute;
  top: calc(50%);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  height: 1px;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .work-slider .owl-nav {
    top: calc(50% - 13px);
  }
}
.work-slider .owl-prev,
.work-slider .owl-next {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  border: none;
  background: linear-gradient(180deg, #9cb522 0%, rgba(198, 20, 41, 0) 110%), #5f7003 !important;
}
@media (max-width: 768px) {
  .work-slider .owl-prev,
  .work-slider .owl-next {
    width: 24px;
    height: 24px;
  }
}
.work-slider .owl-prev img {
  margin-right: 2px;
}
@media (max-width: 768px) {
  .work-slider .owl-prev img {
    width: 16px;
  }
}
.work-slider .owl-next img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-left: 2px;
}
@media (max-width: 768px) {
  .work-slider .owl-next img {
    width: 16px;
  }
}
.work-slider .owl-dots {
  display: none;
}
.work-slider__item-text {
  width: 48%;
  padding: 20px 30px 20px 40px;
  border: 3px solid #9f9f9f;
  margin-left: 20px;
}
@media (max-width: 1200px) {
  .work-slider__item-text {
    width: calc(100% - 324px);
    padding: 15px 15px 20px 25px;
  }
}
@media (max-width: 768px) {
  .work-slider__item-text {
    width: 100%;
    padding: 15px;
	margin: 10px 0;
  }
}
.work-slider__item-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 34px;
  margin: 0 0 15px;
  
}
@media (max-width: 768px) {
  .work-slider__item-title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}
.work-slider__item-description {
  font-size: 17px;
  line-height: 30px;
  margin: 0 0 25px;
}
@media (max-width: 768px) {
  .work-slider__item-description {
    font-size: 15px;
    line-height: 26px;

  }
}
.work-slider__item-description--active {
  display: block;
}
.work-slider__item-title--hide {
  display: none;
  color: #c61429;
  /* Mobale */
}
@media (max-width: 768px) {
  .work-slider__item-title--hide {
    display: block;
  }
}
.work-slider__cost {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 15px;
}

.cost_desc {
	font-size:13px;
}


.work-slider__cost-icon {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  margin-right: 15px;
  background: #4aa7ff;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 1px 0 0 1px;
}
.work-slider__cost-text p:first-child {
  font-weight: 600;
  font-size: 17px;
  color: #23201f;
  display: block;
  margin: 0;
}
.work-slider__cost-text p:last-child {
  font-size: 14px;
  color: #706967;
  margin: 5px 0 0 0;
  display: block;
  text-transform: lowercase;
}
.work-slider__buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: wrap;
}
.work-slider__button {
  height: 54px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
}
.work-slider__button_solid {
  color: #fff;
 width: 152px;
  margin-right: 20px;
}
@media (max-width: 1200px) {
  .work-slider__button_solid {
    max-width: 125px;
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .work-slider__button_solid {
    width: 100%;
    max-width: 100%;
    margin: 0 0 15px;
  }
}
.work-slider__button_border {
  color: #c61429;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border: 1px solid #c61429;
  background: none;
  width: 203px;
}
@media (max-width: 1200px) {
  .work-slider__button_border {
    width: 167px;
  }
}
@media (max-width: 768px) {
  .work-slider__button_border {
    width: 100%;
    max-width: 100%;
  }
}
.work-slider__count {
  text-align: center;
  color: #fff;
  opacity: 0.8;
  font-weight: 400;
  margin: 45px 0 0;
  padding: 0;
}
@media (max-width: 1200px) {
  .work-slider__count {
    margin: 38px 0 0;
  }
}
@media (max-width: 768px) {
  .work-slider__count {
    font-size: 15px;
    line-height: 26px;
    margin: 15px 0 0;
  }
}
.work-slider .slick-arrow {
  position: absolute;
  bottom: -17px;
  width: 52px;
  height: 52px;
  border-radius: 25px;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  border: none;
  background: linear-gradient(180deg, #a3afbc 0%, rgba(198, 20, 41, 0) 110%), #3f474f !important;
  z-index: 2;
  cursor: pointer;
}
@media (max-width: 768px) {
  .work-slider .slick-arrow img {
    width: 16px;
  }
}
@media (max-width: 768px) {
  .work-slider .slick-arrow {
    width: 24px;
    height: 24px;
    bottom: 2px;
  }
}
.work-slider .slick-prev {
  left: calc(50% - 485px);
}
@media (max-width: 1200px) {
  .work-slider .slick-prev {
    left: calc(50% - 344px);
  }
}
@media (max-width: 768px) {
  .work-slider .slick-prev {
    left: calc(50% - 160px);
    padding-right: 7px;
  }
}
@media (max-width: 379px) {
  .work-slider .slick-prev {
    left: calc(50% - 100px);
  }
}
.work-slider .slick-next {
  right: calc(50% - 485px);
}
.work-slider .slick-next img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 1200px) {
  .work-slider .slick-next {
    right: calc(50% - 344px);
  }
}
@media (max-width: 768px) {
  .work-slider .slick-next {
    right: calc(50% - 160px);
    padding-left: 7px;
  }
}
@media (max-width: 379px) {
  .work-slider .slick-next {
    right: calc(50% - 100px);
  }
}

.ways-use {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.ways-use__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .ways-use__inner {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .ways-use__inner {
    max-width: 380px;
    padding: 0 30px;
  }
}
.ways-use__title {
  width: 100%;
  max-width: 810px;
  margin: 0 auto 40px;
  color: #fff;
  text-align: center;
}
.ways-use__title span {
  color: #fd2a42;
}
@media (max-width: 1200px) {
  .ways-use__title {
    margin-bottom: 30px;
  }
}
.ways-use__list {
  margin: -15px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .ways-use__list {
    margin: -10px;
  }
}
@media (max-width: 379px) {
  .ways-use__list {
    margin: 0;
  }
}
.ways-use__item {
  margin: 15px;
  box-shadow: 0px 30px 50px rgba(35, 32, 31, 0.5);
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .ways-use__item:first-child, .ways-use__item:last-child {
    width: 452px;
  }
}
@media (max-width: 768px) {
  .ways-use__item:first-child, .ways-use__item:last-child {
    width: 321px;
  }
}
@media (max-width: 379px) {
  .ways-use__item:first-child, .ways-use__item:last-child {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .ways-use__item:nth-child(6) {
    display: none;
  }
}
@media (max-width: 1200px) {
  .ways-use__item {
    width: 216px;
    margin: 10px;
  }
}
@media (max-width: 768px) {
  .ways-use__item {
    width: 150px;
  }
}
@media (max-width: 379px) {
  .ways-use__item {
    width: 46.5%;
    margin: 10px 0;
  }
}

.quiz {
  width: 100%;
  max-width: 1920px;
  margin: auto 1px;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .quiz {
    margin-bottom: 0px !Important;
	margin-top: 0px !important;
  }
}

.textures {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.textures__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px 113px;
  margin: 0 auto;
  padding-bottom:0px;
}
@media (max-width: 1200px) {
  .textures__inner {
    max-width: 768px;
    padding: 0 40px 85px;
  }
}
@media (max-width: 768px) {
  .textures__inner {
    max-width: 100%;
    padding: 0 0px 0px;
  }
}
.textures__title {
  width: 100%;
  margin: 0 auto 20px;
  color: #23201f;
}
.textures__title span {
  display: block;
  color: #c61429;
}
@media (max-width: 768px) {
  .textures__title {
    margin-bottom: 10px;
  }
}
.textures__descriptions {
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 23px;
}
@media (max-width: 768px) {
  .textures__descriptions {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 30px;
  }
}
.textures__offer-button {
  font-size: 15px;
  color: #fff;
  border-radius: 5px;
  border: none;
  width: 320px;
  height: 68px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding-top: 2px;
  margin-bottom: 15px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .textures__offer-button {
    height: 56px;
    width: 100%;
    max-width: 320px;
  }
}
.textures .texture-tabs {
  position: relative;
  margin-bottom: 25px;
}
@media (max-width: 1200px) {
  .textures .texture-tabs {
    margin-bottom: 15px;
  }
}
.textures .texture-tabs__nav {
  width: 100%;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.textures .texture-tabs__nav::-webkit-scrollbar {
  width: 0;
}
@media (max-width: 1200px) {
  .textures .texture-tabs__nav {
    width: calc(100% + 40px);
  }
}
@media (max-width: 768px) {
  .textures .texture-tabs__nav {
    width: calc(100% + 30px);
  }
}
.textures .texture-tabs__nav-item {
  cursor: pointer;
  font-size: 15px;
  line-height: 34px;
  padding: 6px 20px;
  border-radius: 5px;
  border: none;
  margin: 0 20px 0 0;
  background: #fff;
  color: #706967;
  text-transform: uppercase;
  outline: none;
  transition: 0.3s;
}
.textures .texture-tabs__nav-item_active {
  background: #c61429;
  color: #fff;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .textures .texture-tabs__nav-item {
    padding: 6px 10px;
  }
}
@media (max-width: 768px) {
  .textures .texture-tabs__nav-item {
    margin-right: 10px;
    padding: 4px 6px;
    font-size: 14px;
    line-height: 34px;
    transition: none;
  }
}
.textures .texture-tabs__wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .textures .texture-tabs__wrapper {
    transition: none;
    overflow: hidden;
    padding-bottom: 53px;
  }
}
.textures .texture-tabs__wrapper_active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transition: 0.3s;
}
.textures .texture-tabs__wrapper_active .texture-tabs__more-wrapper {
  visibility: visible;
  opacity: 1;
}
.textures .texture-tabs__more-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #f4f4f4;
  visibility: hidden;
  opacity: 0;
  display: none;
}
@media (max-width: 768px) {
  .textures .texture-tabs__more-wrapper {
    display: block;
  }
}
.textures .texture-tabs__more {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  color: #c61429;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border: 1px solid #c61429;
  background: none;
  width: 100%;
  background: #f4f4f4;
  height: 54px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 13px;
}
.textures .texture-tabs__item-wrapper {
  width: calc(100% - 15px);
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  /* Xs */
}
@media (max-width: 1200px) {
  .textures .texture-tabs__item-wrapper {
    width: 100%;
  }
}
@media (max-width: 374px) {
  .textures .texture-tabs__item-wrapper {
    margin-left: 60px;
    margin-right: -20px;
  }
}
.textures .texture-tabs__item-row {
  margin: 0 -15px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  -webkit-box-align: start;
  align-items: flex-start;
}
.textures .texture-tabs__item-row img {
  border-radius: 5px;
  width: 90%;
  height: auto;
}
.textures .texture-tabs__item-row_2 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.textures .texture-tabs__item-row_2 .texture-tabs__item-col {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
}
@media (max-width: 1200px) {
  .textures .texture-tabs__item-row_2 .texture-tabs__item-col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row;
    width: calc(100% - 239px);
  }
}
@media (max-width: 768px) {
  .textures .texture-tabs__item-row_2 .texture-tabs__item-col {
    width: calc(100% - 116.6px);
  }
}
@media (max-width: 369px) {
  .textures .texture-tabs__item-row_2 .texture-tabs__item-col {
    width: calc(100% - 109.6px);
  }
}
.textures .texture-tabs__item {
  position: relative;
  line-height: 0;
  margin: 15px;
}
.textures .texture-tabs__item_s {
  width: 100%;
  max-width: 200px;
}
@media (max-width: 1200px) {
  .textures .texture-tabs__item_s {
    max-width: 209px;
    height: 209px;
  }
}
@media (max-width: 768px) {
  .textures .texture-tabs__item_s {
    width: 84.6px;
    height: 84.6px;
  }
}
@media (max-width: 369px) {
  .textures .texture-tabs__item_s {
    width: 100%;
    height: auto;
  }
}
.textures .texture-tabs__item_b {
  width: 370px;
  height: 370px;
}
@media (max-width: 1200px) {
  .textures .texture-tabs__item_b {
    width: 209px;
    height: 209px;
  }
}
@media (max-width: 768px) {
  .textures .texture-tabs__item_b {
    width: 84.6px;
    height: 84.6px;
  }
}
@media (max-width: 369px) {
  .textures .texture-tabs__item_b {
    width: 60.6px;
    height: 61.6px;
  }
}
.textures .texture-tabs__item p {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 5px 10px;
  color: #fff;
  text-align: center;
  background: rgba(35, 32, 31, 0.5);
  margin: 0;
  border-radius: 0 0 5px 5px;
  line-height: 30px;
}
@media (max-width: 768px) {
  .textures .texture-tabs__item p {
    font-size: 13px;
    line-height: 1.1;
    padding: 3px;
  }
}
.textures .texture-tabs__item img {
  width: 100%;
  height: auto;
}



/*YEARS*/
.years{
    margin: 150px 0;
}
.years__main{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.years__left{}
.years__title{}
.years__subtitle{
    margin-top: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 26px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #4D4948;
}
.years__info{
    margin: 45px 0 60px 0;
    display: flex;
    align-items: center;
}
.years__icon{
    display: block;
    margin-right: 40px;
}
.years__description{
    line-height: 29px;
    letter-spacing: 0.006em;
    color: #181817;
}
.years__list{
    display: flex;
    align-items: center;
}
.years__item{
    border-right: 1px solid #CBCBCD;
    padding-right: 50px;
    margin-right: 50px;
}
.years__item:last-child{
    margin-right: 0;
    padding-right: 0;
    border: unset;
}
.years__name{
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    color: #181817;
    margin-bottom: 5px;
}
.years__text{
    font-size: 16px;
    line-height: 26px;
    color: #4D4948;
}
.years__img{}












.services {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto 0px;
}
@media (max-width: 1200px) {
  .services {
    margin-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .services {
    margin-bottom: 60px;
  }
}
.services__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .services__inner {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .services__inner {
    max-width: 500px;
    padding: 0 30px;
  }
}
.services__title {
  width: 100%;
  margin: 0 auto 39px;
  color: #fff;
  padding-top: 80px;
}
@media (max-width: 1200px) {
  .services__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .services__title {
    margin-bottom: 20px;
  }
}
.services__title span {
  display: block;
  color: #ec8d0b;
}
.services__list {
  margin: 0px 0 0 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
}
@media (max-width: 1200px) {
  .services__list {
    margin: 0px 0 0 0;
  }
}
.services__item {
  width: 100%;
  max-width: 350px;
  margin: 15px 15px 25px;
}
@media (max-width: 1200px) {
  .services__item {
    max-width: 334px;
    margin: 10px 10px 30px;
  }
}
@media (max-width: 369px) {
  .services__item {
    max-width: 100%;
  }
}
.services__item img {
  border-radius: 15px;
  line-height: 0;
  margin-bottom: 25px;
  width: 100%;
}
@media (max-width: 1200px) {
  .services__item img {
    margin-bottom: 13px;
  }
}
.services__item-title {
  font-weight: 600;
  font-size: 23px;
  line-height: 34px;
  text-align: center;
  margin: 0 0 10px;
  color:#fff;
}
@media (max-width: 768px) {
  .services__item-title {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }
}
.services__item-description {
  font-size: 18px;
  line-height: 30px;
  padding: 0 10px;
  margin: 0;
  font-weight:600;
  color:#fff;
}
@media (max-width: 768px) {
  .services__item-description {
    font-size: 15px;
    line-height: 26px;
    text-align: left;
    padding: 0;
  }
}

.services__item--hide {
  display: none;
}

.services__button {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.open-form {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 0px;
  
  padding-left: 30px;
  padding-bottom: 60px;
 
}
@media (max-width: 1200px) {
  .open-form {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .open-form {
    padding: 30px;
  }
}
.open-form__wrapper {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 0 15px;
}
@media (max-width: 1200px) {
  .open-form__wrapper {
    max-width: 768px;
    padding: 15px;
  }
}
@media (max-width: 1200px) and (max-width: 768px) {
  .open-form__wrapper {
    padding: 0;
  }
}

.greenform {

    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
     margin-bottom: 80px;
}
@media (max-width: 1200px) and (max-width: 768px) {
  .greenform {
	   flex-direction: column;
  }
  .anketa {
	width: 100% !important;
	padding: 0 !important;
	margin-left:0 !important;

}
.formright {
	width: 100% !important;
	padding: 20px 0 0 0 !important;


}
}

.anketa {
	width: 50%;
    position: relative;
	margin-left:60px;
	z-index:1;
}

.formright {
	width: 50%;
    padding: 55px 0 0 40px;
	border: 3px solid #f5a525;
    background: #fff;
}


.open-form__wrapper_1 {
}
@media (max-width: 1200px) {
  .open-form__wrapper_1 {
    border-radius: 15px;
  }
}
.open-form__wrapper_2 {
}
@media (max-width: 1200px) {
  .open-form__wrapper_2 {
    border-radius: 15px;
  }
}
.open-form__inner {
  position: relative;

}
@media (max-width: 1200px) {
  .open-form__inner {
    padding: 57px 15px;
  }
}
@media (max-width: 768px) {
  .open-form__inner {
    padding: 20px;
  }
}
.open-form__inner_1 {
  margin: 15px -15px 0 15px;
}
@media (max-width: 1200px) {
  .open-form__inner_1 {
    border-radius: 15px;
    margin: 0;
  }
}
.open-form__inner_1:after {
  position: absolute;
  content: "";
  width: 867px;
  height: 867px;

  bottom: 0;
  right: -150px;
}
@media (max-width: 1500px) {
  .open-form__inner_1:after {
    width: 618px;

    right: -25px;
  }
}
@media (max-width: 1300px) {
  .open-form__inner_1:after {
    right: 60px;
  }
}
@media (max-width: 1200px) {
  .open-form__inner_1:after {
    display: none;
  }
}
.open-form__inner_1 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: end;
          justify-content: flex-end;
  background: #ffffff;
  box-shadow: 0px 40px 100px rgba(35, 32, 31, 0.1);
  padding-left: 30px;
    padding-top: 40px;
  margin: 15px 15px 0 -15px;
}
.open-form__inner_1:after {
  position: absolute;
  content: "";
  width: 574px;
  height: 856px;
  
  bottom: 0;
  right: 15px;
}
@media (max-width: 1200px) {
  .open-form__inner_1:after {
    display: none;
  }
}
@media (max-width: 1200px) {
  .open-form__inner_1 {
    border-radius: 15px;
    margin: 0;
  }
}



.open-form__inner_2 {
  margin: 15px -15px 0 15px;
}
@media (max-width: 1200px) {
  .open-form__inner_2 {
    border-radius: 15px;
    margin: 0;
  }
}
.open-form__inner_2:after {
  position: absolute;
  content: "";
  width: 867px;
  height: 867px;

  bottom: 0;
  right: -150px;
}
@media (max-width: 1500px) {
  .open-form__inner_2:after {
    width: 618px;

    right: -25px;
  }
}
@media (max-width: 1300px) {
  .open-form__inner_2:after {
    right: 60px;
  }
}
@media (max-width: 1200px) {
  .open-form__inner_2:after {
    display: none;
  }
}
.open-form__inner_2 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: end;
          justify-content: flex-end;
  background: linear-gradient(180deg, rgba(244, 244, 244, 0) 50%, rgba(112, 105, 103, 0.08) 100%), #ffffff;
  box-shadow: 0px 40px 100px rgba(35, 32, 31, 0.1);
  border-radius: 400px 15px 15px 15px;
  margin: 15px 15px 0 -15px;
}
.open-form__inner_2:after {
  position: absolute;
  content: "";
  width: 574px;
  height: 856px;
 
  bottom: 0;
  right: 15px;
}
@media (max-width: 1200px) {
  .open-form__inner_2:after {
    display: none;
  }
}
@media (max-width: 1200px) {
  .open-form__inner_2 {
    border-radius: 15px;
    margin: 0;
  }
}







.open-form__content {
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .open-form__content {
    margin: 0 auto;
    text-align: center;
  }
}
.open-form__title {
  width: 100%;
  margin-top: 30px;
  color: #fff;
  color: #23201f;
  font-weight: 700;
}
.open-form__title span {
  display: block;
  color: #f5a525;
  font-size: 30px;
    margin-bottom: 20px;
	    line-height: 40px;
}
.open-form__description {
  margin-bottom: 40px;
  line-height: 30px;
  font-weight: 600;
  font-size:23px;
  padding-left: 30px;
    padding-right: 30px;
}
@media (max-width: 768px) {
  .open-form__description {
    margin: 10px 0 20px;
    font-size: 15px;
	font-size:20px;
	padding:0px;
  }
  .bonus {
    
    display: none;
  }
}
@media (max-width: 1200px) {
  .open-form .form-element {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

.compare {
  width: 100%;
  max-width: 1920px;
  margin: 127px auto 130px;
}
@media (max-width: 1200px) {
  .compare {
    margin: 100px auto 97px;
  }
}
@media (max-width: 768px) {
  .compare {
    margin: 79px auto 80px;
  }
}
.compare__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .compare__inner {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .compare__inner {
    padding: 0 30px;
  }
}
.compare__title {
  width: 100%;
  margin: 0 auto 30px;
  color: #fff;
  text-align: center;
}
.compare__title span {
  background: linear-gradient(180deg, #f17180 0%, rgba(198, 20, 41, 0) 110%), #c61429;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.compare__table {
  display: -webkit-box;
  display: flex;
  background: #fff;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .compare__table {
    width: calc(100% + 30px);
  }
}
.compare__table-titles {
  width: 260px;
}
@media (max-width: 768px) {
  .compare__table-titles {
    width: 175px;
  }
}
.compare__table-characteristics {
  width: calc(100% - 260px);
}
@media (max-width: 1200px) {
  .compare__table-characteristics {
    width: 910px;
    overflow-x: scroll;
  }
}
.compare__table-row {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.compare__table-row:nth-child(odd) {
  background: #f4f4f4;
}
.compare__table-row:nth-child(odd) div:nth-child(3) {
  background: #c61429;
}
.compare__table-row:first-child {
  border-radius: 0 15px 0 0;
  color: #23201f;
  font-weight: 600;
  line-height: 26px;
}
.compare__table-row:first-child div:nth-child(3) {
  background: linear-gradient(180deg, #f17180 0%, rgba(198, 20, 41, 0) 110%), #c61429;
  color: #fff;
  font-weight: 500;
}
.compare__table-row:nth-child(even) div:nth-child(3) {
  background: #c61429;
  opacity: 0.9;
}
.compare__table-row:nth-child(n + 5) div:nth-child(3) img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media (max-width: 1200px) {
  .compare__table-row {
    width: 910px;
    background: #fff;
  }
}
@media (max-width: 768px) {
  .compare__table-row {
    width: 655px;
  }
}
.compare__table-title, .compare__table-characteristic {
  height: 92px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 15px;
}
.compare__table-characteristic .star-mob {
  display: none;
}
@media (max-width: 768px) {
  .compare__table-characteristic .star-mob {
    display: block;
  }
}
.compare__table-characteristic .star-dt {
  display: block;
}
@media (max-width: 768px) {
  .compare__table-characteristic .star-dt {
    display: none;
  }
}
.compare__table-title {
  padding: 0 30px;
  font-size: 17px;
  line-height: 26px;
  color: #23201f;
  border-right: 1px solid #eae9e8;
}
.compare__table-title:nth-child(odd) {
  background: #f4f4f4;
}
.compare__table-title:first-child {
  border-radius: 15px 0 0 0;
}
@media (max-width: 768px) {
  .compare__table-title {
    font-size: 15px;
    padding: 0 15px;
  }
}
.compare__table-characteristic {
  width: 20%;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid #eae9e8;
}
.compare__table-characteristic:last-child {
  border: none;
}

.what-else {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 0px;
}
@media (max-width: 1200px) {
  .what-else {
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .what-else {
    margin-bottom: 0px;
  }
}
.what-else__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px 0;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .what-else__inner {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .what-else__inner {
    max-width: 380px;
    padding: 0 10px;
  }
}
.what-else__items {
  margin: 0px;
  display: -webkit-box;
  display: flex;
 flex-wrap: wrap;
    padding-top: 50px;
    padding-bottom: 70px;
}
@media (max-width: 1200px) {
  .what-else__items {
        padding-top: 0px;
  }
}
.what-else__item {

  margin: 15px;
  position: relative;
}
.what-else__item chekbox {
  border-radius: 5px;
  width: 5%;
}
.what-else__item img {
  border-radius: 5px;
  width: 100%;
}



.what-else__item:first-child {
  display: -webkit-box;
  display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-content: flex-start;
}
@media (max-width: 1200px) {
  .what-else__item {
    margin: 10px;
    width: 100%;
    max-width: 334px;
  }
}
@media (max-width: 768px) {
  .what-else__item {
    width: 150px;
  }
  .what-else__item img {
  
    
}
}
@media (max-width: 768px) {
  .what-else__item {
    width: calc(50% - 20px);
  }
}
.what-else__item_big {
  width: 45%;
}


.what-else__item_big_kupit {
  width: 100%;
}





@media (max-width: 1200px) {
  .what-else__item_big {
    width: 100%;
    max-width: 100%;
  }
}
.what-else__item_big::last-child {
  -webkit-box-ordinal-group: 3;
          order: 2;
}
.what-else__item-description {
  position: absolute;
  bottom: 5px;
  left: 25px;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .what-else__item-description {
    font-size: 15px;
    left: 15px;
    bottom: 10px;
    margin: 0;
  }
}
.what-else__title {
  margin: 0 auto 15px;
  padding-right: 30px;
}

.style_h3 {
  
   font-size: 30px;
    font-weight: 400;
    color: #9ca1aa;
}

.what-else__title span {
  background: #4aa7ff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1200px) {
  .what-else__title {
    padding: 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .what-else__title {
   

  }
}
.what-else__subtitle {
  font-size: 23px;
  color: #fff;
    line-height: 1.4;
    margin-bottom: 1.875rem;
    position: relative;
    font-weight: 600;
	
  

}
.paragraf {
   color: #9ca1aa;
   font-size: 17px;
  line-height: 30px;
  opacity: 0.7;
  margin: 0;
  position: relative;
  font-weight: 400;

}
@media (max-width: 768px) {
  .what-else__subtitle br {
    display: none;
  }
}
@media (max-width: 1200px) {
  .what-else__subtitle {
    margin: 0 0 10px;
    
    width: 100%;
  }
}
@media (max-width: 768px) {
  .what-else__subtitle {
    font-size: 17px;
	line-height: 24px;
    margin-bottom: 5px;
  }
}

.work-step {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .work-step {
    padding-bottom: 95px;
  }
}
@media (max-width: 768px) {
  .work-step {
    padding-bottom: 80px;
  }
}
.work-step__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 35px 15px 1px;
}
@media (max-width: 1200px) {
  .work-step__inner {
    max-width: 768px;
    padding: 35px 40px 1px;
  }
}
@media (max-width: 768px) {
  .work-step__inner {
    max-width: 380px;
    padding: 0px 30px 1px;
  }
}
.work-step__title {
  width: 100%;
  margin: 0 auto 15px;
  color: #23201f;
  text-align: center;
}
.work-step__title span {
  color: #f5a525;
}
@media (max-width: 1200px) {
  .work-step__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .work-step__title {
    margin-bottom: 10px;
  }
}
.work-step__list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: -15px -15px 82px;
  -webkit-box-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .work-step__list {
    -webkit-box-pack: center;
            justify-content: center;
    margin-bottom: 85px;
  }
}
@media (max-width: 768px) {
  .work-step__list {
    margin: -10px -10px 0px;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}
.work-step__item {
  width: 100%;
  max-width: 270px;
  margin: 15px;
  text-align: center;
}
@media (max-width: 1200px) {
  .work-step__item {
    max-width: 200px;
    margin-bottom: -15px;
  }
}
@media (max-width: 768px) {
  .work-step__item {
    max-width: 150px;
    margin: 10px 10px 0;
  }
}
@media (max-width: 369px) {
  .work-step__item {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .work-step__item img {
    width: 100%;
  }
}
@media (max-width: 369px) {
  .work-step__item img {
    width: 50%;
  }
}
.work-step__item p {
  margin: 0;
  font-size: 17px;
  line-height: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .work-step__item p {
    font-size: 15px;
    line-height: 26px;
  }
}
.work-step__gift {
  width: 570px;
  padding: 0 47px;
}
@media (max-width: 1200px) {
  .work-step__gift {
    margin: 75px auto 0;
  }
}
@media (max-width: 768px) {
  .work-step__gift {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .work-step__gift {
    margin-top: 28px;
  }
}
.work-step__gift-inner {
  padding: 45px 50px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%), #f4f4f4;
  box-shadow: 0px 30px 50px rgba(112, 105, 103, 0.1);
  border-radius: 15px;
  position: relative;
  cursor: pointer;
}
.work-step__gift-inner p {
  font-size: 17px;
  line-height: 26px;
  margin: 0 0 20px;
  width: 100%;
  max-width: 240px;
}
.work-step__gift-inner p span {
  color: #c61429;
  font-weight: 600;
}
@media (max-width: 768px) {
  .work-step__gift-inner p {
    font-size: 15px;
  }
}
.work-step__gift-inner button {
  font-size: 13px;
  line-height: 18px;
  color: #fff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  width: 100%;
  max-width: 240px;
  height: 54px;
  border: none;
  padding-top: 2px;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .work-step__gift-inner button {
    max-width: 230px;
    font-size: 13px;
  }
}
.work-step__gift-inner:before {
  content: "";
  display: block;
  position: absolute;
  width: 271px;
  height: 321px;
  background: url("../img/work-step/gift.png") center center no-repeat;
  top: -35px;
  right: -72px;
}
@media (max-width: 768px) {
  .work-step__gift-inner:before {
    width: 100px;
    height: 321px;
    background: url(../img/work-step/gift.png) center center no-repeat;
    top: -60px;
    right: -14px;
    background-size: 186px auto;
  }
}
@media (max-width: 768px) {
  .work-step__gift-inner {
    padding: 20px;
  }
}

.cooperation {
  background: url("../img/cooperation-bg.png") center bottom no-repeat, #f4f4f4;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.cooperation2 {
  background: url("../img/cooperation-bg_2.png") center bottom no-repeat, #f4f4f4;
  width: 100%;
    max-width: 1920px;
       margin: 80px auto;
}
@media (max-width: 1200px) {
  .cooperation {
    background: url("../img/cooperation-bg-min.png") center bottom no-repeat, #f4f4f4;
  }
  .cooperation2 {
    background: url("../img/cooperation-bg-min_2.png") center bottom no-repeat, #f4f4f4;
  }
}

@media (max-width: 768px) {
  .cooperation {
    background: url("../img/cooperation-bg-min.png") center bottom no-repeat, #f4f4f4;
  }
  .cooperation2 {
    background: none;
	width: 100%;
  max-width: 1920px;
  
  }
  
  .bonus {
  margin-right:50px
  }
}

@media (max-width: 380px) {
  
  .cooperation2__inner {
    background: none;
	
  
  }
  
  .bonus {
  margin-right:50px
  }
}

.cooperation__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 128px 15px 140px;
}
.cooperation2__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 15px 140px;
}

@media (max-width: 1200px) {
  .cooperation__inner {
    max-width: 768px;
    padding: 103px 40px 657px;
    text-align: center;
  }
  .cooperation2__inner {
    max-width: 768px;
    padding: 103px 40px 657px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .cooperation__inner {
    max-width: 380px;
    padding: 82px 30px 657px;
  }
  .cooperation2__inner {
    max-width: 380px;
    padding: 82px 30px 657px;
	background:none
  }
}

@media (max-width: 380px) {
  .cooperation__inner {
    padding-bottom: 407px;
    background: url("../img/cooperation-bg-min-mob.png") center bottom no-repeat, #f4f4f4;
  }
  .cooperation2__inner {
    padding-bottom: 407px;
    background: none;
  }
}

.cooperation__title {
  width: 100%;
  max-width: 540px;
  margin: 0 0 17px;
  color: #23201f;
}
.cooperation2__title {
  width: 100%;
  max-width: 540px;
  margin: 0 0 17px;
  color: #23201f;
}

.cooperation__title span {
  color: #f5a525;
}
.cooperation2__title span {
  color: #f5a525;
}

@media (max-width: 1200px) {
  .cooperation__title {
    max-width: 520px;
    margin: 0 auto 17px;
    text-align: center;
  }
  .cooperation2__title {
    max-width: 520px;
    margin: 0 auto 17px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .cooperation__title {
    margin-bottom: 13px;
  }
  .cooperation2__title {
    margin-bottom: 13px;
  }
}

.cooperation__description {
  font-size: 17px;
  line-height: 35px;
  width: 100%;
  max-width: 500px;
  margin: 0 0 35px;
}
.cooperation2__description {
  font-size: 17px;
  line-height: 35px;
  width: 100%;
  max-width: 500px;
  margin: 0 0 35px;
}

@media (max-width: 1200px) {
  .cooperation__description {
    max-width: 500px;
    margin: 0 auto 35px;
    text-align: center;
  }
  .cooperation2__description {
    max-width: 500px;
    margin: 0 auto 35px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .cooperation__description {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 25px;
  }
  .cooperation2__description {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 25px;
  }
}
.cooperation__button {
  font-size: 13px;
  line-height: 18px;
  color: #fff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  width: 100%;
  max-width: 370px;
  height: 54px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.footer {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: #1d7588;
  padding-bottom: 45px;
  overflow: hidden;
}
.footer__inner {
  width: 100%;
  
  margin-bottom: 35px;
}
@media (max-width: 1200px) {
  .footer__inner {
    margin-bottom: 37px;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    margin-bottom: 25px;
  }
}
.footer__line {
  display: -webkit-box;
    display: flex
;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    align-items: center;
}
@media (max-width: 1200px) {
  .footer__line {
    position: relative;
    padding: 0;
    max-width: 768px;
    padding: 30px 40px;
    margin: 0 auto;
    height: 180px;
    display: block;
  }
}
@media (max-width: 768px) {
  .footer__line {
        padding: 30px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
  }
  .footer__logo {
	  margin-bottom:20px;
  }
}
@media (max-width: 369px) {
  .footer__line {
	padding:0px;
  }
}
.footer__logo {
  width: 150px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .footer__logo {
        width: 134px;
    position: relative;
	margin-top: 20px;
    
  }
}
.footer__logo-img {
  margin-right: 15px;
  width: 134px;
  height: auto;
}
.footer__logo-text {
  font-size: 13px;
  color: #fff;
  margin: 20px 0 0;
  padding: 0;
  line-height: 20px;
}
.footer__logo-text span {
  font-weight: 600;
}
@media (max-width: 1200px) {
  .footer__logo-text {
   
  }
}
.footer__contact {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  padding-left: 65px;
  width: calc(100% - 360px);
}
@media (max-width: 1200px) {
  .footer__contact {
    width: auto;
  }
}
.footer__tel {
  text-align: right;
}
.footer__tel p {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  margin: 2px 0 0;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .footer__tel p {
    font-size: 14px;
    
  }
}
.footer__tel p img {
  margin-right: 10px;
  line-height: 0;
  margin: 0 10px 1px 0;
}
.footer__tel p a {
  color: #fff !important;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
}
.footer__tel button {
  background: none;
  border: none;
  border-bottom: 1px dashed #fff;
  padding: 0 0 3px;
  margin: 0;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .footer__tel {
    position: absolute;
    left: 236px;
    top: 34px;
  }
}
@media (max-width: 768px) {
  .footer__tel {
    left: auto;
    right: 30px;
	margin-right: 0 !important;
    top: 35px;
  }
}
.footer__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 40px;
  
    
    
}

.footer__email_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 40px;
}

.footer__email a {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  margin: 2px 0 0;
  letter-spacing: 0.04em;
  color: #fff !important;
  text-decoration: none;
}

.footer__email_price a {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  margin: 2px 0 0;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer__email a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .footer__email_price a {
    font-size: 14px;
  }
}

.footer__email img {
  margin-right: 10px;
  line-height: 0;
  margin: 1px 10px 0 0;
}

.footer__email_price img {
  margin-right: 10px;
  line-height: 0;
  margin: 1px 10px 0 0;
}

@media (max-width: 1200px) {
  .footer__email {
    position: absolute;
    left: 236px;
    top: 117px;
    margin-left: 0;
  }
}

@media (max-width: 1200px) {
  .footer__email_price {
    position: absolute;
    left: auto;
    top: 180px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer__email {
    left: auto;
    top: 148px;
	
  }
}

@media (max-width: 768px) {
  .footer__email_price {
    left: auto;
    right: 30px;
    top: 70px;
  }
}

.footer__instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 40px;
}

.footer__facebook {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 40px;
}

.footer__instagram_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 40px;
}

.footer__facebook_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 40px;
}


@media (max-width: 768px) {


  }
}

.footer__instagram img {
  margin-right: 10px;
  line-height: 0;
  margin: 1px 10px 0 0;
}
.footer__facebook img {
  margin-right: 10px;
  line-height: 0;
  margin: 1px 10px 0 0;
}
.footer__instagram_price img {
  margin-right: 10px;
  line-height: 0;
  margin: 1px 10px 0 0;
}
.footer__facebook_price img {
  margin-right: 10px;
  line-height: 0;
  margin: 1px 10px 0 0;
}

@media (max-width: 1200px) {
  .footer__instagram {
    position: absolute;
    left: 236px;
    top: 117px;
    margin-left: 0;
  }
  .footer__facebook {
    position: absolute;
    left: 236px;
    top: 117px;
    margin-left: 0;
  }
}

@media (max-width: 1200px) {
  .footer__instagram_price {
    position: absolute;
    left: 236px;
    top: 117px;
    margin-left: 0;
  }
  .footer__facebook_price {
    position: absolute;
    left: 236px;
    top: 117px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer__instagram {
    left: auto;
    right: 30px;
    top: 118px;
  }
  .footer__facebook {
    left: auto;
    right: 60px;
    top: 118px;
  }
  .footer__instagram img {
	width: 30px;
    margin-top: 25px;
}
 .footer__facebook img {
	width: 30px;
    margin-top: 25px;
}
}

@media (max-width: 768px) {
  .footer__instagram_price {
    left: auto;
    right: 30px;
    top: 90px;
  }
  .footer__facebook_price {
    left: auto;
    right: 30px;
    top: 90px;
  }
  .footer__instagram_price img {
	width: 30px;
    margin-top: 25px;
}
 .footer__facebook_price img {
	width: 30px;
    margin-top: 25px;
}
}
.footer__button-partner {
  height: 46px;
  padding: 0 25px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.07em;
  border-radius: 5px;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-left: 40px;
}
@media (max-width: 1200px) {
  .footer__button-partner {
    margin-left: 0;
    position: absolute;
    left: 40px;
    top: 104px;
    padding: 0 10px;
  }
}
@media (max-width: 1200px) {
  .footer__button-partner {
    left: 40px;
  }
}
.footer__button-scroll {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  outline: none;
  cursor: pointer;
  padding: 0;
  border: none;
  background: rgba(244, 244, 244, 0.1);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  transition: 0.3s;
  margin-left: 65px;
}
.footer__button-scroll span {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: rgba(244, 244, 244, 0.15);
  box-shadow: 0px 30px 50px rgba(112, 105, 103, 0.1);
}
@media (max-width: 768px) {
  .footer__button-scroll span {
    background: #666666;
  }
}
.footer__button-scroll:hover {
  transition: 0.3s;
  background: rgba(244, 244, 244, 0.2);
}
@media (max-width: 768px) {
  .footer__button-scroll:hover {
    background: #aaaaaa;
  }
}
@media (max-width: 1200px) {
  .footer__button-scroll {
    position: absolute;
    top: 30px;
    right: 40px;
  }
}
@media (max-width: 768px) {
  .footer__button-scroll {
    top: -95px;
    right: calc(50% - 40px);
    background: #939393;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
  }
}

.faq {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .faq {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .faq {
    padding: 0 30px;
  }
}
.faq__title {
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
  text-transform: inherit;
}
.faq__questions {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
          align-items: flex-start;
}
.faq__question-col {
  width: 100%;
  max-width: 570px;
}
@media (max-width: 1200px) {
  .faq__question-col {
    max-width: 100%;
  }
}
.faq__question {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.faq__question_active .faq__item-ansver {
  max-height: 2000px;
  transition: max-height 0.4s ease-in;
  padding: 10px 20px;
  visibility: visible;
  opacity: 1;
}
.faq__question-button {
  font-size: 15px;
  line-height: 26px;
  padding: 10px 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.faq__question-button::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/faq-arrow-icon.png") center center/contain no-repeat;
}
.faq__question-button span {
  width: calc(100% - 64px);
  text-align: left;
}
.faq__item-ansver {
  max-height: 0px;
  overflow: hidden;
  padding: 0 20px;
  visibility: hidden;
  color: #b7b3b2;
  font-size: 15px;
  line-height: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0;
}

.contact-inputs {
  width: 100%;
  max-width: 360px;
  position: relative;
}
.contact-inputs__description {
  top: -25px;
  font-size: 15px;
  color: green;
  text-align: center;
  margin: 0 0 15px;
}
.contact-inputs p {
  color: #706967;
  font-size: 13px;
  line-height: 20px;
}
.contact-inputs__preloader {
  height: 2px;
  width: 100%;
  position: relative;
  display: none;
  background: #e2e2e2;
  position: absolute;
  top: -15px;
}
.contact-inputs__preloader:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 50px;
  height: 2px;
  -webkit-animation: preloader 3s infinite;
  animation: preloader 3s infinite;
  background: #c61429;
}
.contact-inputs .error_name,
.contact-inputs .error_tel,
.contact-inputs .error_email,
.contact-inputs .error_city,
.contact-inputs .error_message,
.contact-inputs .error_soc {
  font-size: 13px;
  color: #940818;
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: -19px;
}

.contact-input {
  width: 100%;
  height: 54px;
  color: #706967;
  font: 17px "Raleway", sans-serif;
  padding: 0 15px 0 77px;
  border: none;
  border-radius: 5px;
  outline: none;
}
.contact-input_name {
  background: url("../img/input-user-icon.svg") center left 1px no-repeat, #f4f4f4;
}
.contact-input_tel {
  background: url("../img/input-tel-icon.svg") center left 1px no-repeat, #f4f4f4;
}
.contact-input_text {
  background: url("../img/input-message-icon.svg") center left 1px no-repeat, #f4f4f4;
}
.contact-input_city {
  background: url("../img/input-loon-icon.svg") center left 1px no-repeat, #f4f4f4;
}
.contact-input_email {
  background: url("../img/input-soc-icon.svg") center left 1px no-repeat, #f4f4f4;
}
.contact-input_file {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  width: 10px;
}
.contact-input_textarea {
  height: 78px;
  background: url("../img/input-soc-icon.svg") center left 1px no-repeat, #f4f4f4;
  padding: 15px 15px 15px 77px;
  resize: none;
}
.contact-input__wrapper {
  margin-bottom: 25px;
  position: relative;
}
.contact-input__wrapper label {
  display: block;
  width: 100%;
}
.contact-input__wrapper_file {
  width: 100%;
  margin-bottom: 30px;
}
.contact-input__file-button {
  height: 44px;
  width: 215px !important;
  display: -webkit-box !important;
  display: flex !important;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border: 1px solid rgba(112, 105, 103, 0.2);
  border-radius: 5px;
  outline: none;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(112, 105, 103, 0.5);
  font-weight: 600;
  padding: 1px 0 0 0;
  cursor: pointer;
}
.contact-input__file-button img {
  margin-right: 12px;
}
.contact-input__submit-button {
  font-size: 20px;
  color: #000;

  border-radius: 5px;
  border: none;
  width: 100%;
  height: 60px;
 
  font-weight: 700;
 
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-pack: center;
          justify-content: center;
}
.contact-input__submit-button img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-left: 10px;
}
@media (max-width: 768px) {
  .contact-input__submit-button {
    height: 56px;
  }
}

.modal {
  width: 100%;
  position: absolute;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 250px 15px;
  overflow-y: scroll;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #f4f4f4;
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 360px) {
  .modal {
    padding-top: 100px;
  }
}
.modal_active {
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
  position: fixed;
}
.modal_active .modal__inner {
  transition: 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
  position: relative;
}
.modal__inner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 50px 40px;
  position: relative;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(244, 244, 244, 0) 50%, rgba(129, 88, 76, 0.08) 100%), #ffffff;
  box-shadow: 0px 40px 100px rgba(35, 32, 31, 0.1);
  transition: 0.3s;
  text-align: center;
}
@media (max-width: 480px) {
  .modal__inner {
    padding: 50px 15px;
  }
}
@media (max-width: 360px) {
  .modal__inner {
    padding: 50px 15px;
  }
}
.modal__title {
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 57px;
  letter-spacing: -0.06em;
  font-family: "Tenor Sans", sans-serif;
}
.modal__title span {
  color: #c61429;
  display: block;
}
@media (max-width: 768px) {
  .modal__title {
    font-size: 28px;
    line-height: 40px;
  }
}
.modal__description {
  font-size: 17px;
  line-height: 30px;
  color: rgba(112, 105, 103, 0.9);
  margin: 0 0 20px;
}
.modal__description span {
  display: block;
}
.modal__close {
  position: absolute;
  right: 15px;
  top: 15px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  outline: none;
  border: none;
  background: none;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  cursor: pointer;
  opacity: 1;
  touch-action: manipulation;
}
.modal__close:hover {
  opacity: 0.6;
  transition: 0.3s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.modal .form-element {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.diler {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: #848484;
  padding: 0px;
}

.diler__line {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: flex-end;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  -webkit-box-align: center;
          align-items: center;
}

.diler-text {
  font-size: 18px;
  color: #fff;
  margin: 2px 0 0;
  padding: 0;
  line-height: 16px;
}

.footer__contact {
  -webkit-box-align: center;
    padding-left: 0px;
    max-width: 840px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
  .diler__line {
    position: relative;
    padding: 0;
    max-width: 768px;
    padding: 30px 40px;
    margin: 0 auto;
    height: 180px;
    display: block;
  }
}
@media (max-width: 320px) {
  .main-offer .info-icon {
    bottom: 20px;
    right: 14px;
  }
}
#button-up:hover {
  cursor: pointer;
  background: #999999;
  color: #ffffff;
  transition: .3s;
}

#button-up {
  width: 45px;
  height: 45px;
  background: #fbb218;
  border-radius: 50%;
  position: fixed;
  left: 3px;
  bottom: 5px;
  color: #fff;
  text-align: center;
  font-size: 30px;
  padding: 0px;
  transition: .3s;
  display: -webkit-box;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.review {
  display: none;
}
.review__title {
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 57px;
  letter-spacing: -0.06em;
  font-family: "Tenor Sans", sans-serif;
  color: #c61429;
  text-align: left;
}
.review__description {
  font-size: 17px;
  line-height: 30px;
  color: #23201f;
  margin: 0 0 20px;
  text-align: left;
}
.review__date {
  text-align: left;
  color: #706967;
  opacity: 0.9;
}

@-webkit-keyframes preloader {
  0% {
    left: 0;
  }
  50% {
    left: calc(100% - 50px);
  }
  100% {
    left: 0%;
  }
}

@keyframes preloader {
  0% {
    left: 0;
  }
  50% {
    left: calc(100% - 50px);
  }
  100% {
    left: 0%;
  }
}
@-webkit-keyframes zoomBg {
  1% {
    background-size: 105%;
  }
  49% {
    background-size: 115%;
  }
  51% {
    background-size: 115%;
  }
  99% {
    background-size: 105%;
  }
}
@keyframes zoomBg {
  1% {
    background-size: 105%;
  }
  49% {
    background-size: 115%;
  }
  51% {
    background-size: 115%;
  }
  99% {
    background-size: 105%;
  }
}
@-webkit-keyframes zoomBg2 {
  1% {
    background-size: 140%;
  }
  49% {
    background-size: 150%;
  }
  51% {
    background-size: 150%;
  }
  99% {
    background-size: 140%;
  }
}
@keyframes zoomBg2 {
  1% {
    background-size: 140%;
  }
  49% {
    background-size: 150%;
  }
  51% {
    background-size: 150%;
  }
  99% {
    background-size: 140%;
  }
}
@-webkit-keyframes zoomBg3 {
  1% {
    background-size: 130%;
  }
  49% {
    background-size: 140%;
  }
  51% {
    background-size: 140%;
  }
  99% {
    background-size: 130%;
  }
}
@keyframes zoomBg3 {
  1% {
    background-size: 130%;
  }
  49% {
    background-size: 140%;
  }
  51% {
    background-size: 140%;
  }
  99% {
    background-size: 130%;
  }
}
@-webkit-keyframes zoomBg4 {
  1% {
    background-size: 212%;
  }
  49% {
    background-size: 222%;
  }
  51% {
    background-size: 222%;
  }
  99% {
    background-size: 212%;
  }
}
@keyframes zoomBg4 {
  1% {
    background-size: 212%;
  }
  49% {
    background-size: 222%;
  }
  51% {
    background-size: 222%;
  }
  99% {
    background-size: 212%;
  }
}




.osnovaniye {
  height: 100%;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .osnovaniye {
  padding: 50px 10px;
  }
}

.slick-slider {
  min-width: 0;
}

.slick-list {
  overflow: hidden;
}

.slick-track {
  display: flex;
  align-items: flex-start;
}

.slider {
  position: relative;
  padding: 0px 60px;
}

@media (max-width: 767px) {
  .slider {
  padding: 0px 5px;
  }
  .slider .slick-arrow {
	  display:none !important;
  }
}

.slider .slick-arrow {
  position: absolute;
  top: 50%;
  margin: -20px 0px 0px 0px;
  z-index: 10;
  font-size: 0;
  width: 30px;
  height: 30px;
}
.slider .slick-arrow.slick-prev {
  left: 0;
  background: url("../img/partnery/arrow-left.svg") 0 0 / 100% no-repeat;
  border: 2px solid #ccc;
  background-color: #fff;
}
.slider .slick-arrow.slick-next {
  right: 0;
  background: url("../img/partnery/arrow-right.svg") 0 0 / 100% no-repeat;
  border: 2px solid #ccc;
  background-color: #fff;
}
.slider .slick-arrow.slick-disabled {
  opacity: 0.2;
}

.moving_slayda {
  padding: 0px 15px;
}
.moving_slayda img {
  max-width: 100%;
height: 150px;
    border: 1px solid #ccc;
}

/*спойлер */

.spoiler_content {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}



.read-more-state {
    display: none;
}

.sp_hide {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: opacity 0.4s ease-in-out;
}

.read-more-state:checked~.spoiler_content .sp_hide {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
}



.read-more-state~.read-more-trigger:before {
    content: 'Показать всё';
}

.read-more-state:checked~.read-more-trigger:before {
    content: 'Скрыть текст';
}
.read-more-trigger {

    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    color: #fff;
    font-size: 13px;
	text-transform: uppercase;
	text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.07em;
    line-height: 2;
    border: none;
    border-radius: .25em;
    margin-bottom: 15px;
    background: linear-gradient(180deg, #f5a525, #f4ab25), #f5a525;
}
.more {
	text-align: center;
    color: #ccc;
    position: absolute;
    bottom: 0;
    width: 485px;
    padding: 5px 0px;
    color: #fff;
    text-align: center;
    background: rgb(252 178 22);
    margin: 0;
    border-radius: 0 0 5px 5px;
    line-height: 20px;
    font-size: 18px;
}
}

.more_2 {
	text-align:right;
	color: #ccc;
}

/*QUIZ*/
.kviz{
   
}
.kviz__title{
    text-align: center;
}
.kviz__inner{
    border: 1px solid #CBCBCD;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.kviz__right{
    width: 33%;
    height: 640px;
    position: relative;
    padding-top: 55px;
}
.kviz__right__title{
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 38px;
    text-align: center;
    letter-spacing: -0.024em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.kviz__right__subtitle{
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.006em;
    color: #FFFFFF;
    opacity: 0.8;
}
.kviz__right__img{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.kviz__right__img.mobile{
    display: none;
}
.kviz__main{
    padding: 64px 61px 40px 60px;
    width: 67%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
}
.kviz__main.hide{
    display: none;
}
.progress{
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 4px;
    background: #F2F2F7;
}
.progress:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 25%;
    background: #CBCBCD;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.progress.w2:before{
    width: 50%;
}
.progress.w3:before{
    width: 75%;
}
.progress.w4:before{
    width: 100%;
}
.kviz__stages{}
.kviz__stage{
    display: none;
}
.kviz__stage.active{
    display: block;
}
.kviz__name{
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.01em;
    color: #181817;
}
.type__list{
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
.type__item{
    width: 196px;
    margin-right: 26px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.type__item:nth-of-type(3){
    margin-right: 0;
}
.type__box{
    border: 1px solid #CBCBCD;
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.type__img{
    display: block;
    width: 145px;
    margin: 0 auto;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.type__circle{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-right: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.type__circle span{
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid #CBCBCD;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.type__circle svg{
    display: block;
    position: relative;
    z-index: 1;
}
.type__name{
    margin-top: 15px;
    
}
.type__item.active .type__box{
    border: 1px solid #181817;
}
.type__item.active .type__circle span{
    border: 1px solid #181817;
    background: #181817;
}
.type__item.active .type__name{
    
}

.kviz__panel{
    display: flex;
    align-items: center;
}
.kviz__next{
    width: 200px;
}
.kviz__next.hide{
    display: none;
}
.kviz__prev{
    width: 200px;
    margin-right: 20px;
    border: 1px solid #685347;
    color: #685347;
    height: 61px;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.kviz__prev.show{
    display: flex;
}
.kviz__prev:hover{
    background: #181817;
    color: white;
}
.kviz__prev:active{
    opacity: 0.6;
}
.kviz__submit{
    display: none;
    border: unset;
    padding: 0 48px;
    height: 61px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.kviz__submit.show{
    display: flex;
}


.size{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.size .size__field{
    display: none;
}
.size__fields{}
.size__field{
    margin-bottom: 30px;
    position: relative;
}
.size__field:before{
    content: "cm";
    position: absolute;
    right: 15px;
    bottom: 17px;
    color: #181817;
}
.size__field:last-child{
    margin-bottom: 0;
}
.size__label{
    letter-spacing: 0.006em;
    color: #181817;
    margin-bottom: 10px;
}
.size__input{
    border: 1px solid #CBCBCD;
    border-radius: 4px;
    box-sizing: border-box;
    width: 206px;
    height: 52px;
    padding-left: 15px;
    color: #181817;
}
.size__input.error{
    border: 1px solid red;
}
.size__input::-webkit-input-placeholder { 
    color: #CBCBCD;
}
.size__input:-moz-placeholder {
    color: #CBCBCD;
}
.size__input::-moz-placeholder {
    color: #CBCBCD;
}
.size__input:-ms-input-placeholder { 
    color: #CBCBCD;
}
.size__images{
    width: 64%;
}
.size__image{
    width: 100%;
    display: none;
}
.size.type1 .size__image.image1{
    display: block;
}
.size.type2 .size__image.image2{
    display: block;
}
.size.type3 .size__image.image3{
    display: block;
}
.size.type4 .size__image.image4{
    display: block;
}
.size.type1 .size__field.field1{
    display: block;
}
.size.type2 .size__field.field1,
.size.type2 .size__field.field2{
    display: block;
}
.size.type3 .size__field{
    display: block !important;
}
.size.type4 .size__field.field1,
.size.type4 .size__field.field2{
    display: block;
}


.kviz__subtitle{
    margin: 10px 0 40px 0;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.006em;
    color: #4D4948;
}
.extra{
    display: flex;
    justify-content: space-between;
}
.extra__item{
    width: 30%;
    cursor: pointer;
}
.extra__box{
    height: 120px;
    width: 100%;
}
.extra__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.extra__ok{
    margin: 0 auto;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
}
.extra__ok span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 1px solid #CBCBCD;
}
.extra__ok svg{
    display: block;
}
.extra__name{
    margin-top: 18px;
    color: #676565;
}
.extra__item.active .extra__ok span{
    background: #181817;
    border: 1px solid #181817;
}
.extra__item.active .extra__name{
    color: #181817;
}



.callback .size__field:before{
    content: unset;
}
.callback .size__input{
    width: 347px;
}
.kviz__thanks{
    display: none;
    background: #181817;
    color: #FFFFFF;
    width: 67%;
    padding: 64px 0 0 60px;
}
.kviz__thanks.show{
    display: block;
}
.thanks__title{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.thanks__subtitle{
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.006em;
    width: 60%;
}

.go_top{
    width: 45px;
    height: 45px;
    background: #181817;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 0;
    display: none;
}
.go_top svg{
    display: block;
    width: 25px;
}
.go_top.show{
    display: flex;
}

.btn{
    background: linear-gradient(180deg, #f1c569, #ffad00), #1d7588;
    transition: 1s;
	border-radius:5px;
    box-shadow: 0px 2px 0px #5b687b;
    font-style: normal;
	text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    user-select: none;
}
.btn:hover{
   
    color: white;
}
.btn:active{
    
    color: white;
    opacity: 0.6;
}
.virtual__btn{}
.virtual__img{}

/* newquiz */




.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.table-wrap {
        position: relative;
    display: flex;
    justify-content: center;
}

.mytable {
border: 2px solid #f8a802;
border-collapse: collapse;
font-family: "Raleway";
font-size: 18px;
color: #000;
}
.mytable td, tr {
       padding:10px;
	   border: 2px solid #f8a802;
	   border-collapse: collapse;
	   font-family: "Raleway";
       font-size: 18px;
	   font-weight:600;
       color: 666;
}
.mytable_dh {

border-collapse: collapse;
}
.mytable_dh tr {
       padding:10px;
	   border: 2px dashed #afafaf;
	   
}

.answer {
font-size:18px;	
}

#fixed-div_4 {
    
    position: fixed;
	text-align:center;
	
    top: 200px;
    right: 2px;
    
    z-index: 9999;
	
}

.img-fluid, .img-thumbnail {
    max-width: 100%;
    height: auto;
	}
.good {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: 600;
}


.galki {
	
background: #ffb202;
    color: #000;
    font-size: 17px;
    font-weight: 600;
	position: relative;
    padding: 10px 30px;
   
	
}
.footer__adres {
	margin-right: 30px;
    text-align: center;
}



div#quad { 
  background-color: #000; 
  font-size: 0; width: 90%; 
  margin: 0 auto;
  box-shadow: 0 0 12px rgba(0,0,0,0.8);
}
div#quad figure { 
  margin: 0; width: 50%; 
  height: auto; transition: 1s; 
  display: inline-block; 
  position: relative; overflow: hidden; 
}
div#quad figure:hover { cursor: pointer; z-index: 4; }
div#quad figure img { width: 100%; height: auto;     border: 1px solid #fff;}
div#quad figure:nth-child(1) { transform-origin: top left; }
div#quad figure:nth-child(2) { transform-origin: top right; }
div#quad figure:nth-child(3) { transform-origin: bottom left; }
div#quad figure:nth-child(4) { transform-origin: bottom right; }
div#quad figure figcaption { 
  margin: 0; opacity: 0; 
  background: rgba(0,0,0,0.3); 
  color: #fff; padding: .3rem; 
  font-size: 1.2rem; 
  position: absolute; 
  bottom: 0; width: 100%;
	transition: 1s 1s opacity; 
}
.expanded { transform: scale(2); z-index: 5;  }
div#quad figure.expanded figcaption { opacity: 1; }
div.full figure:not(.expanded) { pointer-events: none; }





.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination button {
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  outline: 1px solid #494a4f;
  border-radius: 1px;
  border: none;
}

.hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.pagination button.active {
  background-color: #f8a802;
  color: white;
}

section {
  
 
  display: grid;
 
}

.content {
 
  display: grid;
  gap: 20px;
}

.modal {
  width: 100%;
  position: absolute;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 60px 15px;
  overflow-y: scroll;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #f4f4f4;
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

/* Из файла: style.css, строка: 5006 */
@media (max-width: 360px) {
  .modal {
    padding: 0;
  }
}

/* Из файла: style.css, строка: 5010 */
.modal_active {
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
  position: fixed;
  display: block;
}

/* Из файла: style.css, строка: 5016 */
.modal_active .modal__inner {
  transition: 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
  position: relative;
}

/* Из файла: style.css, строка: 5022 */
.modal__inner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 50px 40px;
  position: relative;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(244, 244, 244, 0) 50%, rgba(129, 88, 76, 0.08) 100%), #ffffff;
  box-shadow: 0px 40px 100px rgba(35, 32, 31, 0.1);
  transition: 0.3s;
  text-align: center;
}

@media (max-width: 480px) {
  .modal__inner {
    padding: 50px 15px;
  }
}
@media (max-width: 360px) {
  .modal__inner {
    padding: 50px 15px;
  }
}

/* Из файла: style.css, строка: 5044 */
.modal__title {
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 57px;
  letter-spacing: -0.06em;
  font-family: "Tenor Sans", sans-serif;
}

/* Из файла: style.css, строка: 5053 */
.modal__title span {
  color: #c61429;
  display: block;
}

@media (max-width: 768px) {
  .modal__title {
    font-size: 28px;
    line-height: 40px;
  }
}

/* Из файла: style.css, строка: 5063 */
.modal__description {
  font-size: 17px;
  line-height: 30px;
  color: rgba(112, 105, 103, 0.9);
  margin: 0 0 20px;
}

/* Из файла: style.css, строка: 5069 */
.modal__description span {
  display: block;
}

/* Из файла: style.css, строка: 5072 */
.modal__close {
  position: absolute;
  right: 15px;
  top: 15px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  outline: none;
  border: none;
  background: none;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  cursor: pointer;
  opacity: 1;
  touch-action: manipulation;
}

/* Из файла: style.css, строка: 5092 */
.modal__close:hover {
  opacity: 0.6;
  transition: 0.3s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* Из файла: style.css, строка: 5098 */
.modal .form-element {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.cifra {
    width: 50px;
    height: 50px;
    line-height: 45px;
    color: #fff;
    margin: 1em;
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
	background: #fdb00e;
}

.dublebut {
	
	    display: flex;
}






.tabs {
        min-width: 320px;
        max-width: 800px;
        padding: 0px;
        margin: 0 auto;
}
/* Стили секций с содержанием */
.tabs>section {
        display: none;
        padding: 15px;
        background: #fff;
 border: 1px solid #ddd;
}
.tabs>section>p {
        margin: 0 0 5px;
        line-height: 1.5;
        color: #383838;
 /* прикрутим анимацию */
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fadeIn;
        animation-name: fadeIn;
}
/* Описываем анимацию свойства opacity */
 
@-webkit-keyframes fadeIn {
        from {
                opacity: 0;
        }
        to {
                opacity: 1;
        }
}
@keyframes fadeIn {
        from {
                opacity: 0;
        }
        to {
                opacity: 1;
        }
}
/* Прячем чекбоксы */
.tabs>input {
        display: none;
        position: absolute;
}
/* Стили переключателей вкладок (табов) */
.tabs>label {
        display: inline-block;
        margin: 0 0 -1px;
        padding: 15px 25px;
        font-weight: 600;
        text-align: center;
        color: #aaa;
 border: 0px solid #ddd;
 border-width: 1px 1px 1px 1px;
        background: #f1f1f1;
 border-radius: 3px 3px 0 0;
}

/* Изменения стиля переключателей вкладок при наведении */
 
.tabs>label:hover {
        color: #888;
 cursor: pointer;
}
/* Стили для активной вкладки */
.tabs>input:checked+label {
        color: #fff;
 border-top: 1px solid #009933;
 border-bottom: 1px solid #009933;
 background: #009933;
}
/* Активация секций с помощью псевдокласса :checked */
#tab1:checked~#content-tab1, #tab2:checked~#content-tab2, #tab3:checked~#content-tab3, #tab4:checked~#content-tab4 {
 display: block;
}

