* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 750px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

.menu {
  position: fixed;
  z-index: 0;
  top: 80px;
  width: 100%;
  left: 0;
  padding-top: 16px;
  padding: 16px 0;
  background-color: #507fe1;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  opacity: 0;
}

.menu_active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.menu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.menu__link {
  text-decoration: none;
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
}

.menu-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  border: none;
  border-right: 1px solid rgba(81, 11, 186, 0.1);
  border-left: 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: #89a9ed;
  margin: 2px 0;
}

.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 500;
}

.navbar-wrap {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 500;
}

.navbar-wrap a {
  text-decoration: none;
}

.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 {
  display: block;
  font-size: 14px;
  color: #7b7b79;
  text-decoration: none;
}

.navbar .logo__text {
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'Proxima Nova Semibold', sans-serif;
  margin-bottom: 5px;
}

.navbar .logo__description {
  display: block;
  color: #7b7b79;
}

@media (max-width: 991px) {
  .navbar__mobile, .navbar__landline {
    display: none;
  }
}

@media (max-width: 991px) {
  .logo {
    display: none;
  }
  .menu__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu__link {
    margin-bottom: 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;
  font-size: 14px;
}

img {
  max-width: 100%;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 30px;
  font-family: 'Proxima Nova Semibold';
  text-align: center;
  text-transform: uppercase;
}

.section__title {
  margin-bottom: 100px;
}

.button-o {
  border: 2px solid #507fe1;
  text-transform: uppercase;
  font-size: 12px;
  padding: 17px 22px;
  background-color: transparent;
  font-family: 'Proxima Nova Semibold';
  color: #507fe1;
}

.button-o:hover {
  cursor: pointer;
}

.button {
  text-decoration: none;
  padding: 25px 45px;
  text-transform: uppercase;
  border: none;
  background-color: #507fe1;
  color: white;
  font-family: 'Proxima Nova Semibold';
}

.button:hover {
  cursor: pointer;
}

.button-fitting {
  color: #507fe1;
  background-color: #fff;
}

.button-add {
  background-color: #7c9fe8;
  color: #fff;
}

.button-like {
  height: 30px;
  background-color: #507fe1;
  border: none;
  width: 30px;
}

.button-like__img {
  width: 20px;
  height: 20px;
}

.input {
  height: 80px;
  border: 1px solid #dddddd;
  padding: 20px;
  font-size: 18px;
}

.bg-secondary {
  background: #f1f1f1;
}

input[type='checkbox'] {
  display: none;
}

input[type='checkbox']:checked + label:before {
  background-color: #507fe1;
}

.select {
  width: 100%;
  height: 80px;
  border: 1px solid #dddddd;
  position: relative;
}

.select:after {
  content: "";
  position: absolute;
  top: 40%;
  -webkit-transform: transliteY(-20%);
          transform: transliteY(-20%);
  right: 20px;
  width: 20px;
  height: 20px;
  background-image: url("../image/offer2/down-arrow.png");
  background-repeat: no-repeat;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}

.checkbox-label:hover {
  cursor: pointer;
}

.checkbox-label:before {
  content: '';
  width: 30px;
  height: 30px;
  border: 1px solid #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;
  }
}

.hero {
  background: #f1f1f1 url("../image/header/2.png") no-repeat center right;
  background-size: contain;
  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-position: top left;
  }
}

@media (max-width: 768px) {
  .hero {
    background: #f1f1f1 url("../image/hero/2.PNG") no-repeat center;
  }
}

.offer {
  padding: 129px 0;
}

.offer-block {
  background: #fff url("../image/") no-repeat center right;
  background-size: contain;
  -webkit-box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  padding: 80px;
  margin-top: -200px;
}

.offer-block_calc-bg {
  background: #fff url("../image/offer2/2.png") no-repeat center right;
  background-size: contain;
}

.offer-block_price-bg {
  background: #fff url("../image/offer2/3.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;
  font-family: 'Proxima Nova Semibold', sans-serif;
  max-width: 820px;
}

.offer .form__policy {
  display: inline-block;
  font-size: 17px;
  margin-left: 45px;
}

.offer .form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 900px;
  margin-bottom: 30px;
}

.offer .form__row:last-child {
  margin-bottom: 0;
}

.offer .form__label {
  display: block;
  font-size: 17px;
  margin-bottom: 15px;
}

.offer .form__group {
  -ms-flex-preferred-size: 33.33%;
      flex-basis: 33.33%;
}

.offer .form__input {
  width: 100%;
  border-right-width: 0px;
}

.offer .form__input:last-child {
  border-right-width: 1px;
}

.offer .form__button {
  height: 80px;
  width: 100%;
}

@media (max-width: 1199px) {
  .offer-block {
    background-position: center right -120px;
  }
}

@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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form__row-checkbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .form__group {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
  .form__input {
    margin-bottom: 20px;
  }
  .form__policy {
    margin-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .form__row-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .form__checkbox {
    margin-bottom: 20px;
  }
}

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

.features-block__item {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  text-align: center;
  margin-bottom: 100px;
}

.features-block__text {
  font-family: 'Proxima Nova Semibold', sans-serif;
}

@media (max-width: 991px) {
  .features-block__item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (max-width: 768px) {
  .features-block__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 50px;
  }
}

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

.catalog__card {
  margin-bottom: 30px;
}

.catalog-card {
  max-width: 570px;
  position: relative;
  -webkit-box-shadow: 7px 5px 21px rgba(0, 0, 0, 0.1);
          box-shadow: 7px 5px 21px rgba(0, 0, 0, 0.1);
  overflow-y: hidden;
}

.catalog-card:hover .catalog-card__buttons {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.catalog-card__img {
  display: block;
  width: 570px;
  height: 130px;
}

.catalog-card__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: .2s;
  transition: .2s;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.catalog-card__button {
  border: none;
  font-size: 11px;
  padding: 10px;
  text-transform: uppercase;
  height: 30px;
}

.catalog-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ffffff;
  background-color: rgba(80, 127, 225, 0.6);
}

.catalog__link {
  margin-top: 60px;
  text-align: center;
}

.catalog__link-more {
  display: inline-block;
  margin-bottom: 24px;
}

.catalog__description {
  display: block;
}

@media (max-width: 1190px) {
  .catalog-card {
    max-width: 470px;
  }
  .catalog-block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.blog__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
}

.blog__title {
  font-size: 24px;
  font-family: 'Proxima Nova Semibold';
}

.blog__link-more {
  color: #507fe1;
  font-size: 16px;
}

.blog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-list__image {
  height: 200px;
  width: 270px;
  overflow: hidden;
}

.blog-list__text {
  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;
  min-height: 80px;
  font-family: 'Proxima Nova Semibold';
}

.blog-list__card {
  margin-bottom: 20px;
  margin-left: 20px;
}

.blog-card {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1190px) {
  .blog-list__image {
    width: auto;
  }
}

@media (max-width: 992px) {
  .blog__title {
    font-size: 18px;
  }
  .blog-list__image {
    width: 270px;
  }
}

@media (max-width: 768px) {
  .blog__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

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

.price-block__card {
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.price-card {
  position: relative;
  background-color: #fff;
}

.price-card__image img {
  width: 285px;
  height: 190px;
}

.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__button {
  text-align: center;
  position: absolute;
  z-index: -1;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  height: 80px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  padding-top: 0;
}

.price-card:hover .price-card__button {
  z-index: 99;
  bottom: -80px;
}

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

@media (max-width: 1199px) {
  .price-block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .price-block__card {
    margin: 20px;
  }
}

@media (max-width: 400px) {
  .price-block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .price-block__card {
    margin: 10px;
  }
}

.step {
  position: relative;
  text-align: center;
}

.step__title {
  font-size: 18px;
}

.step:last-child:before {
  display: none;
}

.step:before {
  display: block;
  content: '';
  width: 100%;
  height: 2px;
  background-color: rgba(126, 123, 120, 0.8);
  position: absolute;
  top: 27%;
  right: -63%;
}

.step__text {
  max-width: 160px;
  margin: auto;
  margin-bottom: 30px;
}

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

.step__img {
  width: 64px;
}

@media (max-width: 991px) {
  .step {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
  }
  .step:before {
    display: none;
  }
}

@media (max-width: 768px) {
  .step {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (max-width: 480px) {
  .step {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.before-slider-wrap {
  position: relative;
  max-width: 640px;
  margin: auto;
  z-index: 99;
}

.before-slider-arrows {
  z-index: -1;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.before-slider__dots {
  margin: auto;
  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;
  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:hover {
  cursor: pointer;
}

.before-slider__dots li.slick-active {
  background-color: #5b7fda;
}

.before-slider__dots button {
  display: none;
}

.before .arrow {
  background-color: transparent;
  border: none;
}

.before .arrow:focus {
  outline: none;
}

.before .arrow-img {
  width: 20px;
  height: 25px;
}

.before .arrow-left {
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
}

.before .arrow-right {
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
}

@media (max-width: 768px) {
  .before-slider-wrap {
    max-width: 500px;
  }
}

@media (max-width: 500px) {
  .before-slider-wrap {
    max-width: 450px;
  }
  .before-slider-arrows {
    display: none;
  }
}

.reviews {
  background-color: #f5f6f8;
}

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

.reviews-slider__image {
  display: block;
  border: 2px solid #6a99e9;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 20px auto;
}

.reviews-slider__item {
  text-align: center;
}

.reviews-slider__text {
  position: relative;
  font-size: 15px;
  font-style: italic;
  max-width: 370px;
  min-height: 160px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
}

.reviews-slider__text:after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  content: '';
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 10px;
  border: 10px solid transparent;
  border-top: 10px solid #fff;
}

@media (max-width: 768px) {
  .reviews-slider {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.factory-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.factory-block__image {
  margin: 20px 0;
}

.factory-block__text {
  margin-left: 70px;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  font-size: 20px;
}

.factory-block__strong-text {
  display: block;
}

@media (max-width: 1190px) {
  .factory-block {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media (max-width: 991px) {
  .factory-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .factory-block__text {
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .factory-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .factory-block__text {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-left: 0px;
  }
}

.contacts {
  background-color: #f6f7f9;
}

.contacts-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contacts-block__item {
  text-align: center;
}

.contacts__image {
  width: 50px;
  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__address {
    max-width: 200px;
    margin: auto;
  }
}

.questions-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 800px;
  margin: auto;
}

.questions__title {
  font-size: 30px;
  font-family: 'Proxima Nova Semibold', sans-serif;
}

.questions__link {
  font-size: 24px;
  color: #507fe1;
}

@media (max-width: 768px) {
  .questions-block {
    display: block;
    text-align: center;
  }
}

.footer {
  padding: 40px 0;
  background-color: #262626;
  color: white;
}

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

.footer a {
  color: white;
  text-decoration: none;
}

.footer__title {
  margin-top: 0px;
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'Proxima Nova Semibold', sans-serif;
  margin-bottom: 8px;
}

.footer__subtitle {
  display: block;
  margin-bottom: 48px;
}

.footer__copy {
  color: #767676;
}

.footer__pay-logo {
  width: 80px;
  margin: 15px;
}

.footer__contacts {
  text-align: right;
}

.footer__phone {
  display: block;
  font-family: 'Proxima Nova Semibold',sans-serif;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer__mail {
  display: block;
  margin-bottom: 20px;
}

.footer-social__link {
  margin-left: 10px;
}

@media (max-width: 991px) {
  .footer__pay-logo {
    width: 70px;
    margin: 5px;
  }
}

@media (max-width: 768px) {
  .footer-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footer__contacts {
    margin-top: 30px;
    text-align: center;
  }
  .footer__copy {
    position: relative;
    top: 250px;
    margin: 20px;
  }
}
/*# sourceMappingURL=main.css.map */