@charset "UTF-8";
body {
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

header {
  width: 100%;
  height: 70px;
  background: #5b5b5d;
  position: fixed;
  z-index: 1000;
  transition-duration: 1s;
  
}

.contain {
  max-width: 1170px;
  margin: 0 auto;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1150px) {
  .header__body {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media (max-width: 768px) {
  .header__body {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: logo 2s ease;
          animation: logo 2s ease;
}

@-webkit-keyframes logo {
  0% {
    margin-left: -500px;
  }
  100% {
    margin-left: 0px;
  }
}

@keyframes logo {
  0% {
    margin-left: -500px;
  }
  100% {
    margin-left: 0px;
  }
}
.menu-header__icon {
  display: none;
  position: relative;
  top: 24px;
  right: 20px;
  width: 30px;
  height: 18px;
  cursor: pointer;
  z-index: 10;
}

.menu-header__icon span {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

@media (max-width: 768px) {
  .menu-header__menu {
    position: fixed;
    width: 80%;
    height: auto;
    left: -110%;
    top: 0;
    background: #5b5b5d;
    z-index: 4;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    padding: 75px 10px 20px 10px;
  }

  .menu-header__menu.active {
    left: 0;
  }
}
.menu-header__icon span:first-child {
  top: 0;
}

.menu-header__icon span:last-child {
  top: auto;
  bottom: 0;
}

.menu-header__icon.active span {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.menu-header__icon.active span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}

.menu-header__icon.active span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 8px;
}

@media (max-width: 768px) {
  .menu-header__icon {
    display: block;
  }
}
.header__logo img {
  max-height: 70px;
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .header__logo img {
    margin: 0px 0px 0px 20px;
  }
}
.header__text {
  color: red;
  font-size: 18px;
  margin: 8px 0px 0px 25px;
  font-weight: 600;
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .header__text {
    margin: 8px 0px 0px 10px;
  }
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 70px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .header__list {
    line-height: 20px;
  }
}
.header__list li {
  -webkit-animation: menu 1s ease 1.2s forwards;
          animation: menu 1s ease 1.2s forwards;
  opacity: 0;
}

.header__list li:nth-child(2) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.header__list li:nth-child(3) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.header__list li:nth-child(4) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

@-webkit-keyframes menu {
  0% {
    margin-top: -200px;
  }
  100% {
    opacity: 1;
  }
}

@keyframes menu {
  0% {
    margin-top: -200px;
  }
  100% {
    opacity: 1;
  }
}
.header__list a {
  text-decoration: none;
  color: white;
}

@media (max-width: 815px) {
  .header__list {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .header__list {
    display: block;
  }
}
a.header__link span {
  position: relative;
  line-height: 40px;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a.header__link span:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  height: 1px;
  width: 0%;
  background-color: red;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a.header__link span:hover:after {
  left: 0%;
  width: 100%;
}

a.header__link:hover {
  color: red;
}

.header__link {
  margin: 0px 0px 0px 50px;
}

@media (max-width: 1193px) {
  .header__link {
    margin: 0px 0px 0px 30px;
  }
}
@media (max-width: 768px) {
  .header__link {
    margin: 0px 0px 0px 0px;
    font-size: 20px;
    line-height: 0px;
  }
}
a.header__link_number {
  color: red;
  text-decoration: underline;
  margin: 0px 0px 0px 120px;
}

@media (max-width: 1193px) {
  a.header__link_number {
    margin: 0px 0px 0px 50px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  a.header__link_number {
    margin: 0px 0px 0px 0px;
    font-size: 20px;
    line-height: 40px;
  }
}
main {
  width: 100%;
  height: 100%;
  padding: 100px 0px 50px 0px;
  -webkit-box-shadow: inset 0 -7px 15px -10px black;
          box-shadow: inset 0 -7px 15px -10px black;
  background: url("../img/bacground.jpg")   fixed no-repeat;
  background-size: cover;
}


@media (max-width: 700px) {
  main {
    height: auto;
  }
}
.vrs__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
  -webkit-animation: vrs 6s ease;
          animation: vrs 6s ease;
}

@-webkit-keyframes vrs {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes vrs {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.vrs__title h1 {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin: 2 0px 0px 0px 0px;
}

@media (max-width: 970px) {
  .vrs__title h1 {
    font-size: 28px;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 470px) {
  .vrs__title h1 {
    font-size: 24px;
    max-width: 300px;
  }
}
.vrs__subtitle h2 {
  font-size: 25px;
  text-align: start;
  margin: 70px 0px 10px 0px;
}

@media (max-width: 1180px) {
  .vrs__subtitle h2 {
    padding: 0px 20px;
  }
}
.block__item {
  margin: 10px 0px 0px 0px;
}

.block__title {
  font-size: 21px;
  position: relative;
  cursor: pointer;
  margin-left: 50px;
}

.block__title-2 {
  font-size: 21px;
  margin-left: 50px;
}

.block__text p2 {
  font-size: 18px;
}

.block__text {
  font-size: 18px;
  display: none;
  max-width: 750px;
  margin-left: 30px;
}

.block__title:before,
.block__title:after {
  content: "";
  height: 1px;
  width: 10px;
  position: absolute;
  top: 12px;
  left: 0px;
  background-color: #fff;
  margin: 0px 0px 0px -30px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.block__title:before {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  left: 0;
}

.block__title:after {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  left: 8px;
}

.block__title.active:before {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  left: 0;
}

.block__title.active:after {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  left: 8px;
}

.block__title.active:before,
.block__title.active:after {
  background-color: red;
}

.button {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
  display: inline-block;
  margin: 60px 0px 0px 0px;
}

@media (max-width: 780px) {
  .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.button::before,
.button::after {
  content: "";
  width: 90px;
  height: 90px;
  border: 3px solid red;
  position: absolute;
  top: -10px;
  left: 50%;
  z-index: 1;
  margin: 0px 0px 0px -40px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.button:before {
  -webkit-animation: rotate 20s infinite linear;
          animation: rotate 20s infinite linear;
}

.button:after {
  -webkit-animation: rotate 25s infinite linear;
          animation: rotate 25s infinite linear;
}

.button__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 20px;
  border-radius: 50px;
  font-size: 30px;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  top: 0;
  overflow: hidden;
  height: 70px;
}

@media (max-width: 400px) {
  .button__text {
    font-size: 21px;
  }
}
a.button {
  text-decoration: none;
}

.button__text:before,
.button__text:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: #eee;
}

.button__text:before {
  left: 0;
  z-index: 2;
}

.button__text:after {
  right: 0;
  z-index: 0;
}

.button__text span {
  position: relative;
  z-index: 2;
}

.button:hover:before,
.button:hover:after {
  left: 100%;
  opacity: 0;
}

.button:hover .button__text {
  top: -10px;
  color: white;
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
  -webkit-box-shadow: 0 5px 0 #460101;
          box-shadow: 0 5px 0 #460101;
}

.button:hover .button__text:before,
.button:hover .button__text:after {
  background-color: #de2a1b;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.button:active .button__text {
  top: -7px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -webkit-box-shadow: 0 2px 0 #0c5b52;
          box-shadow: 0 2px 0 #0c5b52;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.decor {
  position: relative;
  max-width: 400px;
  margin: 50px auto 0;
  background: black;
  border-radius: 30px;
}

.form-inner {
  padding-bottom: 50px;
}

.form-inner input {
  display: block;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 10px;
  background: #e9eff6;
  line-height: 40px;
  border-width: 0;
  border-radius: 20px;
  font-family: "Roboto", sans-serif;
}

.form-inner input[type=submit] {
  margin-top: 30px;
  background: #de2a1b;
  color: white;
  font-size: 14px;
}

.form-inner textarea {
  display: block;
  width: 100%;
  padding: 10px 20px 0px 20px;
  margin-bottom: 10px;
  background-color: #e9eff6;
  border-radius: 20px;
  font-family: "Roboto", sans-serif;
  min-height: 100px;
  max-height: 250px;
}

.input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.form-inner h3 {
  text-align: center;
  margin-top: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: white;
  padding-bottom: 50px;
}

.form-inner p2 {
  display: block;
  font-size: 17px;
  color: #cdc6c6;
  text-align: center;
  margin: 0px 0px 15px 0px;
}

.wrapper__title {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin: 50px 0px 30px 0px;
}

.slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0px 0px 50px 0px;
}

.slide__item {
  margin: 0px 0px 50px 0px;
}

.slide__item-2 {
  margin: 50px 0px 0px 0px;
}
@media (max-width: 768px) {
  .slide__item-2 {
    margin: 0px 0px 0px 0px;
  }
}

.slide__icon {
  text-align: center;
  margin: 0px 0px 20px 0px;
}

.slide__icon i {
  border: 2px solid #979797;
  padding: 15px 15px;
  border-radius: 50%;
  color: #5a5a5a;
}

.slide__icon i2 {
  border: 2px solid #979797;
  padding: 15px 20px;
  border-radius: 50%;
  color: #5a5a5a;
}

.slide__icon i3 {
  border: 2px solid #979797;
  padding: 15px 15px;
  border-radius: 50%;
  color: #5a5a5a;
}

.slide__icon i4 {
  border: 2px solid #979797;
  padding: 15px 13px;
  border-radius: 50%;
  color: #5a5a5a;
}

.slide__icon i5 {
  border: 2px solid #979797;
  padding: 15px 20px;
  border-radius: 50%;
  color: #5a5a5a;
}

.slide__title {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  font-size: 16px;
}

@media (max-width: 768px) {
  .slide__title {
    max-width: none;
    margin: 0;
  }
}
.slide__title span {
  color: red;
}

/* Слайдер */
/* Слайдер запущен */
/* Слайдер с точками */
/* Ограничивающая оболочка */
.slick-list {
  overflow: hidden;
}

/* Лента слайдов */
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* Слайд */
/* Слайд активный (показывается) */
/* Слайд основной */
/* Слайд по центру */
/* Клонированный слайд */
/* Стрелка */
.slide .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  font-size: 0;
  width: 30px;
  height: 60px;
  margin-top: -30px;
}

@media (max-width: 768px) {
  .slide .slick-arrow {
    width: 20px;
    height: 40px;
  }
}
/* Стрелка влево */
.slide .slick-arrow.slick-prev {
  left: 15px;
  background: url("../img/sl-arrow_l.svg") 0 0/100% no-repeat;
}

/* Стрелка вправо */
.slide .slick-arrow.slick-next {
  right: 15px;
  background: url("../img/sl-arrow_r.svg") 0 0/100% no-repeat;
}

/* Стрелка не активная */
.slick-arrow.slick-disabled {
  opacity: 0.2;
}

/* Точки (булиты) */
.slide .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  bottom: -40px;
  position: absolute;
}
@media (max-width: 768px) {
  .slide .slick-dots {
    left: 30%;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

.slide .slick-dots button {
  font-size: 0;
  background-color: black;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin: 0 7px;
}

.slide .slick-dots li.slick-active button {
  background-color: transparent;
  border: 1px solid black;
}

/* Активная точка */
/* Элемент точки */
/* Конкретный слайдер */
.slide {
  position: relative;
  padding: 0 60px;
  cursor: grab;
}
  .slide:active{
    cursor: grabbing;
  }

.contacts {
  width: 100%;
}

.adres {
  padding-bottom: 50px;
}

.adres a {
  color: black;
  padding: 10px 10px;
  text-decoration: none;
  background-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(50%, transparent), color-stop(50%, red), to(red));
  background-image: linear-gradient(to left, transparent, transparent 50%, red 50%, red);
  background-position: 100% 0;
  background-size: 200% 100%;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  font-size: 20px;
  border: 2px solid red;
  border-radius: 15px;
}

.adres a:hover {
  background-position: 0 0;
  color: #fff;
}

.end {
  width: 100%;
  height: 70px;
  background-color: #5b5d5d;
  top: 0;
}

.end a {
  line-height: 70px;
}

.end p {
  font-size: 25px;
  font-weight: 600;
  color: red;
}

.end p2 {
  font-size: 20px;
  font-weight: 600;
  color: red;
}

.logomenu {
  height: 70px;
}

.header_hidden {
  transform: translateY(-100%);
  transition-duration: 1s;
}

.contacts {
  margin-top: 70px;
}

.contacts__title {
  text-align: center;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 600;
}
.contacts__bottom {
  display: flex;
  justify-content:space-around;
  margin-top: 15px;
  flex-wrap:wrap;
}
.contacts__column {
  margin-top: 10px;
}
.contacts__bottom-item {
  display: flex;
  padding:20px;
  flex-direction: column;
  height: 100%;
}
.contacts__bottom-title {
  text-align: center;

  font-size: 24px;
  color:#3e3f3f;
  border-bottom: 2px solid rgb(52, 50, 50);
}
.contacts__bottom-text {
  font-size: 25px;
}
.contacts__bottom-text-2 {
  font-size: 20px;
}

.contacts__map{
  margin: 20px;
  width: 1050px;
}

p5{
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}