* {
  box-sizing: border-box;
}

.container {
  max-width: 1170px;
  margin: auto;
}

@media (max-width: 1199px) {
  .container {
    max-width: 962px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 750px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
@font-face {
  font-family: "Proxima Nova Semibold";
  src: url("../fonts/ProximaNova-Semibold.eot");
  src: url("../fonts/ProximaNova-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Semibold.woff") format("woff"), url("../fonts/ProximaNova-Semibold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova Light";
  src: url("../fonts/ProximaNova-Light.eot");
  src: url("../fonts/ProximaNova-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Light.woff") format("woff"), url("../fonts/ProximaNova-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Proxima Nova Light", sans-serif;
  color: #262626;
}

img {
  max-width: 100%;
}

.section {
  padding: 100px 0;
}
.section-title {
  font-size: 30px;
  font-family: "Proxima Nova Semibold", sans-serif;
  text-align: center;
  text-transform: uppercase;
}
.section__title {
  margin-bottom: 100px;
}

.button-o {
  border: 2px solid #508fe1;
  padding: 17px 22px;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Proxima Nova Semibold", sans-serif;
  color: #508fe1;
  background-color: white;
  text-decoration: none;
}

.button {
  border: none;
  text-transform: uppercase;
  padding: 25px 45px;
  background-color: #508fe1;
  color: #ffffff;
  text-decoration: none;
  font-family: "Proxima Nova Semibold", sans-serif;
}
.button:hover {
  cursor: pointer;
}
.button-fitting {
  color: #508fe1;
  background-color: #ffffff;
}
.button-add {
  background-color: #7cabe8;
  padding: 10px;
  color: #ffffff;
}
.button-like {
  background-color: #508fe1;
  height: 30px;
  width: 30px;
  border: none;
  padding-top: 5px;
}

.bg-secondary {
  background-color: #f1f1f1;
  padding-left: 30px;
}

.input {
  height: 80px;
  padding: 30px;
  border: 1px solid #dddddd;
  border-radius: 0;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked + label:before {
  background-color: #508fe1;
}

.select {
  height: 80px;
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 0;
  position: relative;
}
.select:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 20px;
  height: 20px;
  background: url("../img/carret.png") no-repeat center;
  background-size: 100%;
}
.select:hover {
  cursor: pointer;
}
.select_checked {
  line-height: 80px;
  padding-left: 30px;
}
.select__dropdown {
  position: absolute;
  top: 80px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #dddddd;
  margin: 0;
  list-style: none;
  padding: 0;
  display: none;
}
.select__dropdown_open {
  display: block;
}
.select__option {
  padding: 20px;
}
.select__option:hover {
  background-color: #f1f1f1;
}

.checkbox-label {
  display: flex;
  align-items: center;
  margin-right: 42px;
}
.checkbox-label:hover {
  cursor: pointer;
}
.checkbox-label:before {
  content: "";
  width: 30px;
  height: 30px;
  border: solid 1px #dddddd;
  margin-right: 20px;
}

@media (max-width: 576px) {
  .button {
    font-size: 10px;
  }
  .button-o {
    font-size: 10px;
  }
  .section {
    padding: 60px 0;
  }
  .section__title {
    font-size: 24px;
  }
}
.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}
.navbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__mobile, .navbar__landline {
  text-align: right;
}
.navbar__phone {
  display: block;
  margin-bottom: 5px;
  font-size: 19px;
  font-family: "Proxima Nova Semibold", sans-serif;
  text-decoration: none;
  color: #262626;
}
.navbar__small-text {
  font-size: 14px;
  color: #7b7b79;
  text-decoration: none;
}

.menu {
  position: fixed;
  z-index: 1;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 16px 0;
  background-color: #508fe1;
  color: #fff;
  transition: 0.2s;
  transform: translateY(-200%);
  opacity: 0;
}
.menu_active {
  transform: translateY(0);
  opacity: 1;
}
.menu__nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.menu__link {
  text-decoration: none;
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
}
.menu-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  border-left: 1px solid rgba(81, 11, 186, 0.1);
  border-right: 1px solid rgba(81, 11, 186, 0.1);
  height: 80px;
  width: 70px;
}
.menu-button:hover {
  cursor: pointer;
}
.menu-button:focus {
  outline: none;
}
.menu-button__line {
  display: block;
  width: 20px;
  height: 3px;
  background-color: #89a9eb;
  margin: 2px 0;
}

.logo__text {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Proxima Nova Semibold", sans-serif;
}
.logo__description {
  display: block;
  font-size: 14px;
  color: #7b7b79;
}

@media (max-width: 991px) {
  .navbar__mobile, .navbar__landline {
    display: none;
  }
}
@media (max-width: 576px) {
  .logo {
    display: none;
  }
  .menu {
    top: 60px;
  }
  .menu-button {
    height: 60px;
  }
  .menu__nav {
    flex-direction: column;
  }
  .menu__link {
    margin-bottom: 20px;
  }
}
.hero {
  background: #f1f1f1 url("../img/hero/hero-bg.jpg") no-repeat center top;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 270px;
  margin-top: 80px;
}
.hero__title {
  font-size: 30px;
  margin-bottom: 40px;
}
.hero__subtitle {
  display: block;
  margin-bottom: 67px;
  font-size: 30px;
  font-family: "Proxima Nova Semibold", sans-serif;
}

@media (max-width: 991px) {
  .hero {
    background-size: 100%;
    background-position: top right;
  }
}
.offer {
  padding: 129px 0;
}
.offer-block {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  padding: 80px;
  margin-top: -200px;
}
.offer-block_calc-bg {
  background: #fff url("../img/offer/offer-bg-calc.png") no-repeat center right;
  background-size: contain;
}
.offer-block_price-bg {
  background: #fff url("../img/offer/offer-bg-price.png") no-repeat center right;
  background-size: contain;
}
.offer__title {
  font-size: 25px;
  text-transform: uppercase;
  font-family: "Proxima Nova Semibold", sans-serif;
  margin-bottom: 20px;
}
.offer__subtitle {
  display: block;
  font-size: 21px;
  margin-bottom: 48px;
  max-width: 820px;
}

.form__row {
  display: flex;
  align-items: center;
  max-width: 900px;
  margin-bottom: 30px;
}
.form__row:last-child {
  margin-bottom: 0;
}
.form__label {
  display: block;
  font-size: 17px;
  margin-bottom: 20px;
}
.form__group {
  flex-basis: 33.33%;
}
.form__input {
  width: 100%;
  border-right-width: none;
}
.form__input:last-child {
  border-right-width: 1px;
}
.form__button {
  height: 80px;
  width: 100%;
}
.form__policy {
  display: inline-block;
  margin-left: 45px;
  font-size: 17px;
}

@media (max-width: 1199px) {
  .offer-block {
    background-position: center right -170px;
  }
}
@media (max-width: 991px) {
  .offer-block {
    background: none;
    background-color: #fff;
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .offer__title {
    font-size: 18px;
  }
  .offer__subtitle {
    font-size: 16px;
  }
  .form__row {
    flex-direction: column;
  }
  .form__row-checkbox {
    flex-direction: row;
  }
  .form__group {
    flex-basis: 100%;
    width: 100%;
  }
  .form__input {
    margin-bottom: 20px;
  }
  .form__policy {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 400px) {
  .form__row-checkbox {
    flex-direction: column;
    align-items: flex-start;
  }
  .form__checkbox {
    margin-bottom: 20px;
  }
}
.features-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.features-block__item {
  flex-basis: 33.33%;
  text-align: center;
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .features-block__item {
    flex-basis: 50%;
  }
}
@media (max-width: 768px) {
  .features-block__item {
    flex-basis: 100%;
    margin-bottom: 50px;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 24px;
  }
}
.catalog {
  background-color: #fdfdfd;
}
.catalog-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.catalog-card {
  max-width: 570px;
  position: relative;
  overflow: hidden;
  box-shadow: 7px 5px 21px rgba(0, 0, 0, 0.1);
}
.catalog-card:hover .catalog-card__buttons {
  transform: translateY(0);
  opacity: 1;
}
.catalog-card__buttons {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.2s;
  opacity: 0;
  transform: translateY(100%);
}
.catalog-card__button {
  font-size: 11px;
  border: none;
  text-transform: uppercase;
  padding: 10px;
  height: 30px;
  cursor: pointer;
}
.catalog-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  background-color: rgba(80, 143, 225, 0.6);
}
.catalog-card__image {
  display: block;
}
.catalog__link {
  text-align: center;
  margin-top: 60px;
}
.catalog__link-more {
  display: inline-block;
  margin-bottom: 24px;
}
.catalog__description {
  display: block;
}
.catalog__card {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .catalog-block {
    justify-content: center;
  }
  .catalog-card {
    max-width: 962px;
  }
}
.blog__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}
.blog__title {
  font-size: 24px;
  font-family: "Proxima Nova Semibold", sans-serif;
}
.blog__link-more {
  color: #508fe1;
  font-size: 16px;
}
.blog-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog-list__image {
  height: 200px;
  overflow: hidden;
}
.blog-list__text {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}
.blog-list__card {
  margin-bottom: 40px;
}
.blog-card {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1199px) {
  .blog-list {
    justify-content: space-around;
  }
  .blog-list__card {
    margin-right: 30px;
    margin-left: 30px;
  }
}
.price-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.price-block__card {
  margin-bottom: 10px;
}
.price-card {
  background-color: #fff;
  position: relative;
}
.price-card__text {
  padding: 20px;
  font-size: 15px;
}
.price-card__title {
  margin: 0;
}
.price-card__cost {
  font-family: "Proxima Nova Semibold", sans-serif;
}
.price-card__pricetag {
  display: flex;
  justify-content: space-between;
}
.price-card__button {
  text-align: center;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  height: 80px;
  padding: 20px;
  padding-top: 0;
}
.price-card:hover .price-card__button {
  z-index: 99;
  bottom: -80px;
}

@media (max-width: 1199px) {
  .price-block {
    justify-content: center;
  }
  .price-block__card {
    margin: 20px;
  }
}
@media (max-width: 400px) {
  .price-block__card {
    margin: 10px;
  }
}
.step {
  position: relative;
  text-align: center;
}
.step__title {
  font-size: 18px;
}
.step:last-child:before {
  display: none;
}
.step:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(126, 123, 120, 0.5);
  display: block;
  position: absolute;
  top: 25%;
  right: -63%;
}
.step__text {
  max-width: 160px;
  margin: auto;
  margin-bottom: 30px;
}
.steps {
  background-color: #f8f8f8;
}
.steps-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .step {
    width: 33%;
  }
  .step:before {
    display: none;
  }
}
@media (max-width: 768px) {
  .step {
    width: 100%;
  }
}
.before-slider-wrap {
  max-width: 640px;
  margin: auto;
  position: relative;
  z-index: 99;
}
.before-slider-arrows {
  position: absolute;
  z-index: -1;
  display: flex;
  justify-content: space-between;
  top: 50%;
  width: 100%;
  transform: translateY(-100%);
}
.before-slider__dots {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.before-slider__dots li {
  width: 10px;
  height: 10px;
  background-color: #d1d1d1;
  border-radius: 50%;
  margin: 5px;
}
.before-slider__dots li.slick-active {
  background-color: #5b7fda;
}
.before-slider__dots button {
  display: none;
}

.arrow {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.arrow:focus {
  outline: none;
}
.arrow-left {
  transform: translateX(-200%);
}
.arrow-right {
  transform: translateX(200%);
}

.reviews {
  background-color: #f5f6f8;
}
.reviews-slider {
  display: flex;
  justify-content: space-between;
}
.reviews-slider__item {
  text-align: center;
  margin: 10px;
}
.reviews-slider__image {
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #6a99a9;
  border-radius: 60%;
  margin: 20px auto;
}
.reviews-slider__text {
  position: relative;
  font-size: 15px;
  font-style: italic;
  min-width: 370px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
}
.reviews-slider__text:after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  height: 10px;
  border: 20px solid transparent;
  border-top: 20px solid #fff;
}

.factory-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.factory-block__text {
  margin-left: 70px;
  flex-basis: 50%;
  font-size: 20px;
}
.factory-block__image {
  margin: 20px 0;
}

.contacts {
  background-color: #f6f7f9;
}
.contacts-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contacts-block__item {
  text-align: center;
}
.contacts__image {
  margin-bottom: 25px;
}
.contacts__text {
  font-size: 16px;
}
.contacts__link {
  text-decoration: none;
  color: #262626;
}
.contacts__address {
  font-style: normal;
}

@media (max-width: 768px) {
  .contacts-block__item {
    width: 100%;
    margin-bottom: 30px;
  }
  .contacts-block__address {
    max-width: 200px;
    margin: auto;
  }
}
.questions__title {
  font-size: 30px;
  font-family: "Proxima Nova Semibold", sans-serif;
}
.questions__link {
  font-size: 24px;
  color: #508fe1;
}
.questions-block {
  max-width: 800px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.footer {
  padding: 40px 0;
  background-color: #262626;
  color: #fff;
}
.footer-block {
  display: flex;
  justify-content: space-between;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer__title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Proxima Nova Semibold", sans-serif;
}
.footer__subtitle {
  display: block;
  margin-bottom: 48px;
}
.footer__copy {
  color: #767676;
}
.footer__pay-logo {
  margin: 15px;
}
.footer__contacts {
  text-align: right;
}
.footer__phone {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
  font-family: "Proxima Nova Semibold", sans-serif;
}
.footer__mail {
  display: block;
  margin-bottom: 20px;
}
.footer-social__link {
  margin-left: 15px;
}

@media (max-width: 768px) {
  .footer-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__contacts {
    margin-top: 30px;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */