@import url("https://fonts.googleapis.com/css?family=Exo+2:300,400,500,600,700,800,900&display=swap&subset=cyrillic");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,800,900&display=swap&subset=cyrillic");
h1 {
  font-size: 30px;
  font-weight: 400;
  font-family: "Exo 2", sans-serif;
}

h2 {
  font-size: 26px;
  font-weight: 400;
  font-family: "Exo 2", sans-serif;
}

h3 {
  font-size: 24px;
  font-weight: 400;
  font-family: "Exo 2", sans-serif;
}

h4 {
  font-size: 22px;
  font-weight: 400;
  font-family: "Exo 2", sans-serif;
}

h5 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Exo 2", sans-serif;
}

h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Exo 2", sans-serif;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background-color: #202020;
  padding: 20px 0;
}

.header.transparent {
  background-color: transparent;
}

@media (max-width: 991px) {
  .header {
    padding: 10px 0;
  }
}

.header-wr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 575px) {
  .header-wr {
    align-items: flex-start;
  }
}

.logo {
  display: flex;
  align-items: flex-end;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.logo:hover {
  text-decoration: none;
  color: #fff;
}

.logo:hover .logo__text .colored {
  text-shadow: 0px 0px 25px #ffd057;
}

.logo__img {
  margin-right: 13px;
}

@media (max-width: 575px) {
  .logo__text {
    display: none;
  }
}

.logo__text .colored {
  font-weight: 500;
  font-size: 18px;
  color: #ffd057;
  text-shadow: 0px 0px 14px rgba(255, 208, 87, 0.3);
  margin-right: 4px;
  margin-top: 3px;
  line-height: 1;
  transition: text-shadow 0.3s;
}

.logo__text .bold {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.right-block {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .right-block {
    flex-direction: column;
    justify-content: center;
  }
}

.right-block .phone {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
  margin-right: 40px;
}

@media (max-width: 991px) {
  .right-block .phone {
    margin-right: 0;
    margin-bottom: 4px;
    font-size: 16px;
  }
}

.right-block .phone:hover {
  text-decoration: none;
  color: #ffd057;
  text-shadow: 0px 0px 14px rgba(255, 208, 87, 0.3);
}

.right-block .whatsapp {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 18px 20px;
  padding-left: 55px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s;
  position: relative;
}

@media (max-width: 991px) {
  .right-block .whatsapp {
    padding: 10px 12px;
    padding-left: 40px;
    font-size: 13px;
  }
}

.right-block .whatsapp:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-image: url(../images/icons/whatsapp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 991px) {
  .right-block .whatsapp:before {
    left: 0;
    width: 45px;
    height: 45px;
  }
}

.right-block .whatsapp:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
}

body {
  padding: 0;
  margin: 0;
  font-family: "Exo 2", sans-serif;
  color: rgba(36, 36, 36, 0.8);
  font-size: 16px;
  padding-top: 90px;
  background-color: #fff;
}

.icon-link {
  display: block;
  color: inherit;
  padding-left: 25px;
  position: relative;
  font-weight: 400;
  line-height: 1.3;
  transition: 0.2s;
}

.icon-link:hover {
  text-decoration: none;
}

.icon-link:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-position: left;
  background-repeat: no-repeat;
}

.icon-link.phone::before {
  background-image: url(../images/icons/phone.svg);
}

.icon-link.phone.dark:before {
  background-image: url(../images/icons/phone-dark.svg);
}

.icon-link.email::before {
  background-image: url(../images/icons/email.svg);
}

.icon-link.email.dark:before {
  background-image: url(../images/icons/email-dark.svg);
}

.icon-link.location::before {
  background-image: url(../images/icons/location.svg);
}

.icon-link.location.dark:before {
  background-image: url(../images/icons/location-dark.svg);
}

.icon-link.time::before {
  background-image: url(../images/icons/clock.svg);
}

.colored {
  color: #ffd057;
  text-shadow: 0px 0px 14px rgba(255, 208, 87, 0.3);
}

.section-title {
  font-size: 40px;
  line-height: 1.2;
  color: #242424;
  font-weight: 700;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 30px;
  }
}

.section-desc {
  font-size: 16px;
  line-height: 1.2;
  color: rgba(36, 36, 36, 0.8);
  margin-bottom: 65px;
  max-width: 540px;
}

@media (max-width: 991px) {
  .section-desc {
    margin-bottom: 40px;
  }
}

.hero {
  background-color: #202020;
  color: #fff;
  position: relative;
  padding: 150px 0;
  margin-top: -90px;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 991px) {
  .hero {
    padding: 100px 0;
  }
}

.hero:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/noise.png);
  opacity: 0.05;
}

.hero__title {
  font-weight: 700;
  font-size: 65px;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .hero__title {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .hero__title {
    font-size: 40px;
  }
}

.hero__desc {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.hero .btn {
  width: 230px;
  padding: 21px;
  line-height: 1;
  font-weight: 500;
  border-radius: 100px;
  box-shadow: 0px 0px 14px rgba(255, 208, 87, 0.3);
}

.hero .ticker-block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 240px;
  line-height: 1.2;
  font-weight: 700;
  color: #1b1b1b;
  z-index: -1;
}

.advantages .magnet {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  background-color: #FFD057;
  margin-right: 30px;
}

@media (max-width: 991px) {
  .advantages .magnet {
    display: none;
  }
}

.advantages .magnet__img {
  width: 100%;
  max-width: 523px;
  background-image: url(../images/magnet.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.advantages .magnet__img:before {
  content: "";
  display: block;
  padding-top: 101%;
}

.advantages .section-title {
  margin-bottom: 2.5em;
  max-width: 570px;
}

@media (max-width: 991px) {
  .advantages .section-title {
    margin-bottom: 1.5em;
  }
}

.advantages__wr {
  padding-top: 50px;
  padding-bottom: 150px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 991px) {
  .advantages__wr {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .advantages__wr {
    max-width: 540px;
  }
}

.advantage {
  width: 100%;
  max-width: 540px;
  line-height: 1.2;
  position: relative;
  transition: left 0.2s;
  left: 0;
  transition-timing-function: ease-in;
}

.advantage:not(:last-child) {
  margin-bottom: 40px;
}

.advantage__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #242424;
  transition: color 0.2s;
}

.advantage__title.colored {
  color: #FFD057;
}

.advantage__text {
  font-size: 18px;
  color: rgba(36, 36, 36, 0.8);
}

.partners {
  padding: 22px 0;
  background-color: #232323;
  color: #fff;
}

.partners .section-title {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  margin-bottom: 0;
  padding-top: 19px;
}

@media (max-width: 991px) {
  .partners .section-title {
    padding-top: 0;
    margin-bottom: 40px;
  }
}

.partners .partners-list {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.partners .partners-list .partner {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  margin: 15px;
  width: 130px;
  height: 55px;
}

.portfolio {
  padding-top: 70px;
}

@media (max-width: 991px) {
  .portfolio {
    padding-top: 50px;
  }
}

.portfolio .section-title {
  color: rgba(36, 36, 36, 0.8);
  margin-bottom: 20px;
  font-weight: 600;
}

.portfolio-row {
  background-color: #202020;
  background-image: url(../images/noize-min.png);
  background-position: center;
  background-size: auto;
}

.portfolio-item {
  display: block;
  position: relative;
  overflow: hidden;
  max-height: 640px;
}

.portfolio-item:hover .portfolio-item__img {
  right: 25px;
}

@media (max-width: 991px) {
  .portfolio-item:hover .portfolio-item__img {
    right: 15px;
  }
}

.portfolio-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}

@media (max-width: 991px) {
  .portfolio-item:before {
    padding-top: 80%;
  }
}

.portfolio-item__img {
  position: absolute;
  width: calc(100% - 50px);
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border: 12px solid #3a3a3a;
  border-radius: 22px;
  transition: right 0.3s;
}

@media (max-width: 991px) {
  .portfolio-item__img {
    width: calc(100% - 30px);
    right: 15px;
  }
}

.portfolio-item__img:before {
  content: "";
  display: block;
  padding-top: 70%;
}

.contacts {
  padding-top: 60px;
  padding-bottom: 20px;
  background-color: #202020;
  color: #fff;
  background-image: url(../images/noize-min.png);
  background-position: center;
  background-size: auto;
}

@media (max-width: 991px) {
  .contacts {
    text-align: center;
  }
}

.contacts .section-title {
  color: inherit;
  margin-bottom: 1.4em;
  font-weight: 600;
}

.contacts .contacts-block {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.contacts .contacts-block > a {
  display: block;
  margin-bottom: 8px;
  color: inherit;
}

.contacts .btn {
  min-height: 60px;
  margin-bottom: 15px;
  border-radius: 0;
  font-weight: 600;
  color: #252525;
  box-shadow: 0px 0px 20px rgba(255, 208, 87, 0.4);
}

.order-form {
  display: flex;
  max-width: 825px;
}

@media (max-width: 991px) {
  .order-form {
    flex-direction: column;
    max-width: 550px;
    margin-right: auto;
    margin-left: auto;
  }
}

.order-form > * {
  flex: 1;
}

.order-form > *:not(:last-child) {
  margin-right: 15px;
}

@media (max-width: 991px) {
  .order-form > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.portfolio-block {
  background-color: #ddd;
}

.portfolio-block img {
  width: 100%;
  max-width: 1920px;
  height: auto;
}

.exp-label {
  position: relative;
  display: block;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 22px 21px 10px 21px;
  margin-bottom: 15px;
}

.exp-label.focus {
  border-color: #FFD057;
}

.exp-label.focus .exp-label__text {
  color: #FFD057;
}

.exp-label.filled .exp-label__text {
  font-size: 12px;
  top: 10px;
}

.exp-label__text {
  position: absolute;
  top: 23px;
  left: 21px;
  transition: 0.3s;
  line-height: 1;
  color: #a0a0a0;
}

.exp-label__input {
  width: 100%;
  border: none;
  background-color: transparent;
  font-weight: 300;
}

.exp-label__input:focus {
  outline: none;
}

.checkbox {
  display: flex;
  cursor: pointer;
}

.checkbox:not(:last-child) {
  margin-bottom: 15px;
}

.checkbox__input {
  display: none;
}

.checkbox__input:checked ~ .checkbox__box {
  background-color: #FFD057;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDEwIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDRMNCA3TDkgMS41IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+Cg==);
  background-position: center;
  background-repeat: no-repeat;
  border-color: #FFD057;
}

.checkbox__input:checked ~ .checkbox__text {
  color: #7b7b7b;
}

.checkbox__box {
  width: 17px;
  min-width: 17px;
  height: 17px;
  border: 1px solid #cccccc;
  margin-right: 10px;
}

.checkbox__text {
  flex: 1;
  color: #a0a0a0;
}

.error-input {
  border-color: red;
  position: relative;
}

.error-input .input-message {
  font-size: 12px;
  color: red;
  position: absolute;
  top: 100%;
  left: 0;
}

.success-input {
  border-color: green;
  position: relative;
}

.success-input .input-message {
  font-size: 12px;
  color: green;
  position: absolute;
  top: 100%;
  left: 0;
}

.overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.footer {
  background-color: #202020;
  color: #c8c8c8;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 30px 0;
  background-image: url(../images/noize-min.png);
}

@media (max-width: 991px) {
  .footer {
    text-align: center;
  }
}

.footer .vk {
  display: block;
  width: 27px;
  height: 27px;
  background-image: url(../images/icons/vk.png);
  background-position: center;
  background-size: contain;
}

@media (max-width: 991px) {
  .footer .vk {
    margin-top: 15px;
  }
}

.footer-wr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  .footer-wr {
    flex-direction: column;
    align-items: center;
  }
}

.close {
  position: absolute;
  right: 15px;
  top: 15px;
}

.close-icon {
  display: block;
  cursor: pointer;
  position: relative;
  width: 20px;
  height: 20px;
}

.close-icon::before, .close-icon::after {
  background-color: #241b13;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  transform-origin: center;
  transition: 0.2s;
  border-radius: 2px;
}

.close-icon:before {
  top: 0;
  transform: rotate(45deg);
  top: calc(50% - 1px);
}

.close-icon:after {
  bottom: 0;
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}
