@font-face {
  font-family: 'FuturaPT';
  src: url("../fonts/FuturaPT/FuturaPT-Book.eot");
  src: url("../fonts/FuturaPT/FuturaPT-Book.eot?#iefix") format("embedded-opentype");
  src: url("../fonts/FuturaPT/FuturaPT-Book.woff") format("woff");
  src: url("../fonts/FuturaPT/FuturaPT-Book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FuturaPT';
  src: url("../fonts/FuturaPT/FuturaPT-Medium.eot");
  src: url("../fonts/FuturaPT/FuturaPT-Medium.eot?#iefix") format("embedded-opentype");
  src: url("../fonts/FuturaPT/FuturaPT-Medium.woff") format("woff");
  src: url("../fonts/FuturaPT/FuturaPT-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'FuturaPT';
  src: url("../fonts/FuturaPT/FuturaPT-Heavy.eot");
  src: url("../fonts/FuturaPT/FuturaPT-Heavy.eot?#iefix") format("embedded-opentype");
  src: url("../fonts/FuturaPT/FuturaPT-Heavy.woff") format("woff");
  src: url("../fonts/FuturaPT/FuturaPT-Heavy.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'FuturaPT';
  src: url("../fonts/FuturaPT/FuturaPT-Bold.eot");
  src: url("../fonts/FuturaPT/FuturaPT-Bold.eot?#iefix") format("embedded-opentype");
  src: url("../fonts/FuturaPT/FuturaPT-Bold.woff") format("woff");
  src: url("../fonts/FuturaPT/FuturaPT-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/*
 * ========================
 * BASE
 * ========================
 */
html,
body {
  height: 100%;
}

body {
  font: normal 18px/27px "FuturaPT", sans-serif;
  color: #21292F;
  background-color: #ffffff;
  overflow-x: hidden;
  min-width: 320px;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: baseline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
  line-height: 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

button:hover {
  cursor: pointer;
}

a:focus,
button:focus,
img:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

.hidden {
  display: none;
}

.label {
  font-size: 16px;
  line-height: 24px;
}

.label--required {
  position: relative;
}

.label--required::after {
  content: '*';
  position: absolute;
  top: -3px;
  right: -6px;
  font-size: 12px;
  color: #B40C0C;
}

.input {
  display: inline-block;
  width: 100%;
  height: 51px;
  padding: 0 20px;
  border: none;
  border-bottom: 1px solid transparent;
  color: #ffffff;
  background-color: #21292F;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.input:focus {
  border-bottom-color: #4BBF5E;
}

.input--w-50 {
  width: -webkit-calc(50% - 11px);
  width: calc(50% - 11px);
}

@media (max-width: 768px) {
  .input {
    height: 35px;
  }
}

.textarea {
  width: 100%;
  height: 120px;
  padding: 20px;
  border: none;
  border-bottom: 1px solid transparent;
  color: #ffffff;
  background-color: #21292F;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.textarea:focus {
  border-bottom-color: #4BBF5E;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

input[type="text"]:focus::-webkit-input-placeholder {
  color: transparent;
}

input[type="text"]:focus::-moz-placeholder {
  color: transparent;
}

input[type="text"]:focus:-moz-placeholder {
  color: transparent;
}

input[type="text"]:focus:-ms-input-placeholder {
  color: transparent;
}

input[type="email"]:focus::-webkit-input-placeholder {
  color: transparent;
}

input[type="email"]:focus::-moz-placeholder {
  color: transparent;
}

input[type="email"]:focus:-moz-placeholder {
  color: transparent;
}

input[type="email"]:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.scroll-hidden {
  overflow: hidden;
  padding-right: 17px;
}

.body-no-scroll {
  overflow: hidden;
  position: relative;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: red;
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    color: red;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: red;
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: red;
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    color: red;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: red;
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

/*
 * ========================
 * GRID
 * ========================
 */
.wrapper {
  width: 100%;
  max-width: 1440px;
  padding-left: 40px;
  padding-right: 40px;
  margin: auto;
}

@media (max-width: 1200px) {
  .wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*
 * ========================
 * BUTTON
 * ========================
 */
.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  padding: 0 45px;
  border: none;
  font: 600 20px/1 "FuturaPT", sans-serif;
  color: #ffffff;
  background-color: #4BBF5E;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn:hover {
  cursor: pointer;
  opacity: .8;
}

.btn--white {
  background-color: #ffffff;
  color: #21292F;
}

@media (max-width: 768px) {
  .btn__text {
    font-size: 20px;
  }

  .btn__icon {
    width: 40px;
    height: 22px;
    margin-left: 18px;
  }
}

@media (max-width: 560px) {
  .btn__text {
    font-size: 16px;
  }

  .btn__icon {
    width: 35px;
  }
}

/*
 * ========================
 * HEADER
 * ========================
 */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background-color: rgba(33, 41, 47, 0.5);
}

.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  height: 78px;
  background-color: rgba(0, 0, 0, 0.9);
}

.header--fixed::before {
  display: none;
}

.header--fixed .header__logo {
  width: 121px;
  height: 61px;
}

.header--fixed .header__info {
  height: 0;
  visibility: hidden;
  opacity: 0;
}

.header--fixed .header__inner {
  height: 78px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header--fixed .header__nav-item {
  margin-top: 0;
}

.header__city-mob, .header__phone-mob, .header__mail-mob, .header__switch {
  display: none;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.header__logo {
  width: 229px;
  height: 115px;
}

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__nav-item {
  position: relative;
  margin-top: 20px;
}

.header__nav-item:not(:last-child) {
  margin-right: 87px;
}

.header__nav-link {
  font-size: 20px;
  line-height: 1.3em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__nav-link.active {
  opacity: .5;
}

.header__nav-link:hover:not(.active) {
  opacity: .8;
}

.header__info {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  font-size: 16px;
}

.header__info-separator {
  padding: 0 15px;
}

.header__phone-icon {
  width: 16px;
  height: 16px;
  margin-right: 3px;
  fill: #ffffff;
}

@media (max-width: 1400px) {
  .header__logo {
    width: 180px;
    height: auto;
  }

  .header__nav-item:not(:last-child) {
    margin-right: 60px;
  }
}

@media (max-width: 1200px) {
  .header__logo {
    width: 150px;
    margin-right: 0;
  }

  .header__nav-item:not(:last-child) {
    margin-right: 20px;
  }
}

@media (max-width: 992px) {
  .header__nav-item {
    margin-top: 10px;
  }

  .header__nav-link {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 50px;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.3);
  }

  .header::before {
    display: none;
  }

  .header--fixed {
    background-color: rgba(0, 0, 0, 0.9);
  }

  .header__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 62%;
    margin-left: auto;
  }

  .header__logo {
    display: none;
  }

  .header__switch {
    position: relative;
    display: block;
    cursor: pointer;
    z-index: 11;
  }

  .header__switch-icon {
    position: relative;
    width: 32px;
    height: 19px;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  .header__switch span {
    position: absolute;
    top: -webkit-calc(50% - 2px);
    top: calc(50% - 2px);
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
  }

  .header__switch span::before, .header__switch span::after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    -webkit-transition-duration: 0.3s, 0.3s;
    -o-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
  }

  .header__switch span::before {
    top: -8px;
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, -webkit-transform;
    -o-transition-property: top, transform;
    transition-property: top, transform;
    transition-property: top, transform, -webkit-transform;
  }

  .header__switch span::after {
    bottom: -8px;
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, -webkit-transform;
    -o-transition-property: bottom, transform;
    transition-property: bottom, transform;
    transition-property: bottom, transform, -webkit-transform;
  }

  .header__switch--open .header__switch-title {
    opacity: 0;
  }

  .header__switch--open span {
    background: none;
  }

  .header__switch--open span::before, .header__switch--open span::after {
    -webkit-transition-delay: 0s, 0.3s;
    -o-transition-delay: 0s, 0.3s;
    transition-delay: 0s, 0.3s;
    background-color: #ffffff;
  }

  .header__switch--open span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .header__switch--open span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .header__inner {
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: #21292F;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .header__inner--open {
    height: 100% !important;
    opacity: 1;
    visibility: visible;
  }

  .header__nav {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    width: 100%;
    margin-bottom: 44px;
    margin-right: auto;
  }

  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .header__nav-item {
    padding: 0;
  }

  .header__nav-item:not(:last-child) {
    margin-bottom: 10px;
  }

  .header__nav-link {
    font-size: 20px;
  }

  .header__info {
    display: none;
  }

  .header__city-mob, .header__phone-mob, .header__mail-mob {
    display: block;
  }

  .header__city-mob {
    font-size: 16px;
    color: #ffffff;
  }

  .header__phone-mob svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
  }

  .header__mail-mob svg {
    width: 20px;
    height: 14px;
  }
}

@media screen and (max-width: 578px) {
  .header__switch {
    right: 15px;
  }
}

@media (max-width: 560px) {
  .header__content {
    width: 100%;
    margin-left: 0;
  }
}

/*
 * ========================
 * FOOTER
 * ========================
 */
.footer {
  padding: 17px 0 20px;
  color: #ffffff;
  background-color: #21292F;
}

.footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .footer .link {
    margin-top: 10px;
  }
}

/*
 * ========================
 * HEADLINE
 * ========================
 */
.headline {
  text-align: center;
  color: #21292F;
}

.headline__title {
  position: relative;
  display: inline-block;
  padding: 0 52px;
  text-transform: uppercase;
}

.headline__title::before, .headline__title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 41px;
  height: 14px;
  background: url("../img/decor-sm-black.png") center no-repeat;
}

.headline__title::before {
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.headline__title::after {
  right: 0;
  -webkit-transform: translateY(-50%) scale(-1, 1);
  -ms-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
}

.headline--white {
  color: #ffffff;
}

.headline--white .headline__title::before, .headline--white .headline__title::after {
  background-image: url("../img/decor-sm-white.png");
}

@media (max-width: 992px) {
  .headline__title {
    font-size: 35px;
  }

  .headline__title::before, .headline__title::after {
    width: 39px;
    height: 12px;
  }
}

@media (max-width: 992px) {
  .headline__title {
    font-size: 25px;
  }

  .headline__title::before, .headline__title::after {
    display: none;
  }
}

/*
 * ========================
 * TYPOGRAPHY
 * ========================
 */
.h1 {
  font: 700 55px/1.6em "FuturaPT", sans-serif;
  color: #ffffff;
}

.h2 {
  font: normal 35px/45px "FuturaPT", sans-serif;
}

.h2--white {
  color: #ffffff;
}

.h2--black {
  color: #000000;
}

.h3 {
  font: normal 25px/1.28em "FuturaPT", sans-serif;
}

.h4 {
  font: 600 22px/1.18em "FuturaPT", sans-serif;
}

@media (max-width: 1400px) {
  .h1 {
    line-height: 1.5em;
    font-size: 48px;
  }
}

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

  .h3 {
    font-size: 20px;
  }

  .h4 {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .h1 {
    font-size: 29px;
  }

  .h2 {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .h1 {
    font-size: 19px;
    line-height: 1.684em;
  }

  .h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

.link {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link:hover::before {
  -webkit-transform: translateX(-101%);
  -ms-transform: translateX(-101%);
  transform: translateX(-101%);
}

.link--green {
  color: #4BBF5E;
}

.link--green::before {
  background-color: #4BBF5E;
}

.link--black {
  color: #000000;
}

.link--black::before {
  background-color: #000000;
}

.link--white {
  color: #ffffff;
}

.link--white::before {
  background-color: #ffffff;
}

.checkbox input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
  z-index: -999;
}

.checkbox input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  padding-left: 42px;
  font-size: 16px;
  line-height: 24px;
  min-height: 27px;
  color: #000000;
}

.checkbox input[type=checkbox] + label:hover {
  cursor: pointer;
}

.checkbox input[type=checkbox] + label::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 24px;
  width: 24px;
  background-color: #21292F;
}

.checkbox input[type=checkbox] + label::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 4px;
  width: 12px;
  height: 4px;
  border-bottom: 2px solid #4BBF5E;
  border-left: 2px solid #4BBF5E;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.checkbox input[type=checkbox]:checked + label::after {
  opacity: 1;
  background-color: transparent;
}

/*
 * ========================
 * CONTACTS
 * ========================
 */
.contacts {
  background-color: #EDF0F3;
}

.contacts__inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 40px 0 230px;
  background: url("../img/map.png") left center no-repeat;
  background-size: contain;
}

.contacts__inner::after {
  content: '';
  position: absolute;
  bottom: 25%;
  left: 16%;
  width: 138px;
  height: 102px;
  background: url("../img/logo-location.svg") center no-repeat;
  background-size: cover;
}

.contacts__info {
  color: #000000;
  max-width: 327px;
  margin-right: auto;
}

.contacts__info-descr {
  margin-top: 30px;
}

.contacts__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-left: 30px;
}

.contacts__card {
  width: 100%;
  max-width: 340px;
  background-color: #ffffff;
  padding: 42px 30px 50px 50px;
  margin-top: 31px;
}

.contacts__card + .contacts__card {
  margin-left: 30px;
}

.contacts__card-subtitle {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 32px;
}

.contacts__card-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 104px;
  height: 1px;
  background-color: #DFE2E1;
}

.contacts__card-phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 27px;
}

.contacts__card-phone-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
  background-color: #EDF0F3;
}

.contacts__card-phone-icon svg {
  fill: none;
  width: 21px;
  height: 21px;
}

.contacts__card-phone-number {
  font-size: 22px;
  line-height: 32px;
}

.contacts__card-email {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
}

.contacts__card-email-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
  background-color: #EDF0F3;
}

.contacts__card-email-icon svg {
  width: 19px;
  height: 14px;
  fill: #21292F;
}

@media (max-width: 1200px) {
  .contacts__inner::after {
    bottom: 30%;
    left: 17%;
    width: 118px;
    height: 82px;
  }
}

@media (max-width: 992px) {
  .contacts__inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .contacts__inner::after {
    display: none;
  }

  .contacts__list {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .contacts__inner {
    padding-bottom: 80px;
    background-image: none;
  }
}

@media (max-width: 560px) {
  .contacts__inner {
    padding: 50px 0;
  }

  .contacts__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contacts__card + .contacts__card {
    margin-left: 0;
  }
}

/*
 * ========================
 * PROMO
 * ========================
 */
.promo {
  overflow-x: hidden;
}

.promo__inner {
  position: relative;
  padding: 251px 0 519px;
}

.promo__inner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 1086px;
  width: 32vw;
  height: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/promo-banner-1.png");
}

.promo__inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 273px;
  width: 80vw;
  height: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/promo-banner-2.png");
}

.promo__info {
  position: relative;
  max-width: 918px;
  color: #ffffff;
  z-index: 1;
}

.promo__logo-xs {
  display: none;
}

.promo__h1 {
  position: relative;
}

.promo__h1::before, .promo__h1::after {
  content: '';
  position: absolute;
  left: 272px;
  height: 83px;
  background-color: #21292F;
  z-index: -1;
}

.promo__h1::before {
  top: 2px;
  width: 486px;
}

.promo__h1::after {
  top: 185px;
  width: 646px;
}

.promo__h1 span {
  display: inline-block;
  color: #21292F;
  padding-left: 20px;
}

.promo__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 83px;
  max-width: 355px;
  margin-top: 5px;
  background-color: #ffffff;
}

.promo__btn-text {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-calc(100% - 83px);
  width: calc(100% - 83px);
  font: 600 22px/1 "FuturaPT", sans-serif;
  color: #21292F;
}

.promo__btn-icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 83px;
  background-color: #4BBF5E;
}

.promo__btn-icon svg {
  width: 13px;
  height: 20px;
  fill: #ffffff;
}

@media (max-width: 1445px) {
  .promo__inner {
    padding: 190px 0 460px;
  }

  .promo__inner::before {
    right: 1047px;
  }
}

@media (max-width: 1400px) {
  .promo__inner::before {
    right: auto;
    left: -40px;
    width: 280px;
    background-position: right top;
  }

  .promo__inner::after {
    left: auto;
    right: -40px;
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
    background-position: right top;
  }

  .promo__info {
    max-width: 800px;
  }

  .promo__h1::before, .promo__h1::after {
    left: 240px;
    height: 70px;
  }

  .promo__h1::before {
    top: 2px;
    width: 400px;
  }

  .promo__h1::after {
    top: 151px;
    width: 560px;
  }

  .promo__btn {
    max-width: 304px;
    height: 65px;
  }

  .promo__btn-text {
    width: -webkit-calc(100% - 65px);
    width: calc(100% - 65px);
  }

  .promo__btn-icon {
    width: 65px;
  }
}

@media (max-width: 1200px) {
  .promo__inner::before {
    left: -30px;
    width: 230px;
  }

  .promo__inner::after {
    right: -30px;
    width: -webkit-calc(100% - 170px);
    width: calc(100% - 170px);
  }

  .promo__info {
    max-width: 665px;
  }

  .promo__h1::before, .promo__h1::after {
    left: 200px;
    height: 55px;
  }

  .promo__h1::before {
    top: 4px;
    width: 340px;
  }

  .promo__h1::after {
    top: 130px;
    width: 465px;
  }

  .promo__btn {
    max-width: 254px;
    height: 55px;
  }

  .promo__btn-text {
    width: -webkit-calc(100% - 55px);
    width: calc(100% - 55px);
    font-size: 20px;
  }

  .promo__btn-icon {
    width: 55px;
  }
}

@media (max-width: 992px) {
  .promo__inner::before {
    width: 210px;
  }

  .promo__inner::after {
    width: -webkit-calc(100% - 150px);
    width: calc(100% - 150px);
  }

  .promo__info {
    max-width: 600px;
  }

  .promo__h1::before, .promo__h1::after {
    left: 180px;
    height: 50px;
  }

  .promo__h1::before {
    top: 4px;
    width: 310px;
  }

  .promo__h1::after {
    top: 117px;
    width: 425px;
  }

  .promo__btn {
    max-width: 229px;
    height: 50px;
  }

  .promo__btn-text {
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
  }

  .promo__btn-icon {
    width: 50px;
  }
}

@media (max-width: 768px) {
  .promo__inner::before {
    width: 180px;
  }

  .promo__inner::after {
    width: -webkit-calc(100% - 120px);
    width: calc(100% - 120px);
  }

  .promo__info {
    max-width: 490px;
  }

  .promo__h1::before, .promo__h1::after {
    left: 150px;
    height: 42px;
  }

  .promo__h1::before {
    top: 2px;
    width: 240px;
  }

  .promo__h1::after {
    top: 92px;
    width: 330px;
  }

  .promo__btn {
    max-width: 194px;
    height: 45px;
  }

  .promo__btn-text {
    width: -webkit-calc(100% - 45px);
    width: calc(100% - 45px);
    font-size: 18px;
  }

  .promo__btn-icon {
    width: 45px;
  }
}

@media (max-width: 560px) {
  .promo {
    position: relative;
    height: 617px;
  }

  .promo .wrapper, .promo__inner, .promo__info {
    height: 100%;
  }

  .promo__inner {
    padding: 70px 0 0;
  }

  .promo__inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: -webkit-calc(100% + 60px);
    width: calc(100% + 60px);
    height: 340px;
    background-position: center top;
    background-image: url("../img/promo-banner-1-xs.png");
  }

  .promo__inner::after {
    content: '';
    position: absolute;
    top: 340px;
    left: -30px;
    width: -webkit-calc(100% + 60px);
    width: calc(100% + 60px);
    height: 277px;
    background-position: center;
    background-image: url("../img/promo-banner-2-01-xs.png");
  }

  .promo__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
  }

  .promo__logo-xs {
    display: block;
    width: 167px;
    height: auto;
    margin: 0 auto 30px;
    line-height: 0;
  }

  .promo__h1 {
    position: relative;
  }

  .promo__h1::before, .promo__h1::after {
    display: none;
  }

  .promo__h1 span {
    color: #ffffff;
    padding-left: 0;
  }

  .promo__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    width: 100%;
    max-width: 260px;
    margin: auto auto 0;
  }

  .promo__btn-text {
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
  }

  .promo__btn-icon {
    width: 60px;
  }

  .promo__btn-icon svg {
    width: 10px;
    height: 15px;
  }
}

/*
 * ========================
 * ABOUT
 * ========================
 */
.about {
  overflow-x: hidden;
}

.about__inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 84px 0;
}

.about__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: url("../img/about-bg.png") center no-repeat;
  background-size: cover;
  z-index: -1;
}

.about__banner {
  position: relative;
  left: -135px;
  max-width: 570px;
}

.about__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
}

.about__company {
  width: 100%;
  max-width: 264px;
  margin-right: 33px;
}

.about__company-text {
  padding: 20px 0;
}

.about__btn-mobile {
  display: none;
}

.about__descr {
  width: 100%;
  max-width: 542px;
}

.about__descr-text:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 1650px) {
  .about__banner {
    left: -80px;
  }
}

@media (max-width: 1500px) {
  .about__banner {
    left: -40px;
  }
}

@media (max-width: 992px) {
  .about__inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about__inner::before {
    left: -30px;
    width: -webkit-calc(100% + 60px);
    width: calc(100% + 60px);
  }

  .about__banner {
    display: none;
  }
}

@media (max-width: 768px) {
  .about__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about__company {
    max-width: 100%;
    margin-right: 0;
  }

  .about__company .btn {
    display: none;
  }

  .about__btn-mobile {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .about__descr {
    max-width: 100%;
  }

  .about__descr-text:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 560px) {
  .about__inner {
    padding: 50px 0;
  }
}

/*
 * ========================
 * SERVICES
 * ========================
 */
.services {
  position: relative;
  margin-top: -363px;
}

.services__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.services__info, .services__list {
  width: -webkit-calc(50% - 137px);
  width: calc(50% - 137px);
}

.services__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: url("../img/services-info.png") center no-repeat;
  background-size: cover;
  color: #ffffff;
}

.services__info-descr {
  width: 100%;
  max-width: 272px;
  padding: 62px 17px 62px 32px;
  background-color: rgba(0, 0, 0, 0.75);
}

.services__info-descr .h4 {
  line-height: 33px;
  margin-bottom: 20px;
}

.services__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.services__card {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 50%;
  min-height: 177px;
  padding: 16px 14px 20px 25px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services__card:hover {
  -webkit-box-shadow: 3px 3px 40px rgba(0, 0, 0, 0.25);
  box-shadow: 3px 3px 40px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.services__card:nth-child(odd) {
  border-right: 1px solid #DFE2E1;
}

.services__card:not(:nth-child(-n+2)) {
  border-top: 1px solid #DFE2E1;
}

.services__card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.services__card-banner {
  height: 87px;
  line-height: 0;
}

.services__card-arrow {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  width: 20px;
  height: 14px;
  margin-top: auto;
}

.services__contacts {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  width: 100%;
  max-width: 274px;
  padding: 16px 30px 44px 40px;
  background-color: #21292F;
  color: #ffffff;
}

.services__contacts .h4 {
  margin-bottom: 16px;
}

.services__contacts-phone {
  margin-top: 30px;
}

.services__contacts-phone-icon {
  display: block;
  width: 37px;
  height: 37px;
  margin-bottom: 13px;
  fill: white;
}

.services__contacts-phone-text {
  font-weight: 600;
  font-size: 36px;
  line-height: 54px;
}

@media (max-width: 1200px) {
  .services__info, .services__list {
    width: -webkit-calc(50% - 106px);
    width: calc(50% - 106px);
  }

  .services__card {
    padding: 16px 15px 20px;
  }

  .services__contacts {
    max-width: 212px;
    padding: 16px 20px 38px;
  }

  .services__contacts-phone-text {
    font-size: 31px;
    line-height: 46px;
  }
}

@media (max-width: 992px) {
  .services__inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .services__list {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }

  .services__info {
    width: -webkit-calc(100% - 212px);
    width: calc(100% - 212px);
  }

  .services__contacts {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
}

@media (max-width: 560px) {
  .services {
    margin-top: -30px;
  }

  .services__info {
    width: 100%;
  }

  .services__contacts {
    max-width: 100%;
  }

  .services .wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .services__card {
    width: 100%;
  }

  .services__card .h4 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .services__info-descr {
    max-width: 100%;
  }
}

/*
 * ========================
 * QUESTIONS
 * ========================
 */
.questions {
  padding: 219px 0 38px;
}

.questions__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.questions__direction {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 50px;
}

.questions__card {
  width: 100%;
  max-width: 341px;
}

.questions__card:first-child {
  margin-top: -117px;
}

.questions__card-banner {
  max-height: 220px;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.questions__card-body {
  padding: 42px 40px 42px 50px;
  color: #ffffff;
}

.questions__card-body--dark {
  background-color: #21292F;
}

.questions__card-body--green {
  background-color: #4BBF5E;
}

.questions__card-post {
  position: relative;
  padding-bottom: 25px;
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 23px;
}

.questions__card-post::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 104px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.questions__card-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 18px;
  background-color: #ffffff;
}

.questions__card-icon svg {
  width: 19px;
  height: 14px;
  fill: #21292F;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.questions__card-icon:hover svg {
  fill: #4BBF5E;
}

.questions__form {
  width: 100%;
  max-width: 546px;
}

.questions__form .h2 {
  margin-bottom: 25px;
}

.questions__form .input,
    .questions__form .textarea,
    .questions__form .upload-file {
  margin-bottom: 20px;
}

.questions__form .checkbox {
  margin-bottom: 33px;
}

.questions__form .input--offset-r {
  margin-right: 17px;
}

.questions__form #ch-1-error {
  position: absolute;
  z-index: -1;
}

@media (max-width: 1200px) {
  .questions__direction, .questions__form {
    max-width: -webkit-calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .questions__direction {
    margin-right: 30px;
  }

  .questions__card-body {
    padding: 40px 30px 50px;
  }
}

@media (max-width: 992px) {
  .questions {
    padding: 80px 0;
  }

  .questions__inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .questions__direction, .questions__form {
    width: 100%;
    max-width: 100%;
  }

  .questions__direction {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 50px;
    margin-right: 0;
  }

  .questions__card:first-child {
    margin-top: 0;
    margin-right: 30px;
  }
}

@media (max-width: 560px) {
  .questions {
    padding: 50px 0;
  }

  .questions__direction {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .questions__card:first-child {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .questions .input,
      .questions .textarea,
      .questions .upload-file {
    margin-bottom: 15px;
  }

  .questions .input--offset-r {
    margin-right: 0;
  }

  .questions .input--w-50 {
    width: 100%;
  }

  .questions .checkbox {
    margin-bottom: 25px;
  }
}

/*
 * ========================
 * UPLOAD-FILE
 * ========================
 */
.upload-file {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.upload-file__btn {
  width: 100%;
  max-width: 263px;
  margin-right: 19px;
}

.upload-file__input {
  opacity: 0;
  position: absolute;
  z-index: -1;
  overflow: hidden;
  width: 0.4px;
  height: 0.4px;
}

.upload-file__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 263px;
  height: 51px;
  border: 2px solid #21292F;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.upload-file__label:hover {
  cursor: pointer;
}

.upload-file__icon {
  width: 24px;
  height: 23px;
  margin-right: 11px;
  fill: #21292F;
}

.upload-file__message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-calc(100% - 282px);
  width: calc(100% - 282px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.upload-file__message.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.upload-file__message-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  fill: #4BBF5E;
}

.upload-file__message-text {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  line-height: 20px;
  color: #4BBF5E;
}

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

  .upload-file__btn {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .upload-file__message {
    width: 100%;
  }
}

.btn-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background-color: #4BBF5E;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-up:hover {
  background-color: #5ec66f;
}

.btn-up__icon {
  width: 13px;
  height: 20px;
  margin: auto;
  fill: #ffffff;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 560px) {
  .btn-up {
    width: 45px;
    height: 45px;
  }
}

/*
 * ========================
 * MODAL-THANK
 * ========================
 */
.modal-thank {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 12;
  visibility: hidden;
  opacity: 0;
}

.modal-thank.open {
  visibility: visible;
  opacity: 1;
}

.modal-thank.open .modal-thank__box {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.modal-thank__box {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: auto;
  padding: 30px 30px 43px;
  text-align: center;
  background: url("../img/modal-thank-bg.png") center no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
}

.modal-thank__box .h2 {
  color: #ffffff;
  margin-bottom: 361px;
}

.modal-thank__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.modal-thank__close:hover {
  cursor: pointer;
  fill: #4BBF5E;
}

@media (max-width: 1200px) {
  .modal-thank__box {
    max-width: 700px;
  }

  .modal-thank__box .h2 {
    margin-bottom: 250px;
  }
}

@media (max-width: 992px) {
  .modal-thank__box {
    max-width: 600px;
  }

  .modal-thank__box .h2 {
    margin-bottom: 200px;
  }
}

@media (max-width: 768px) {
  .modal-thank__box {
    padding-top: 40px;
  }

  .modal-thank__box .h2 {
    margin-bottom: 150px;
  }

  .modal-thank__close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 560px) {
  .modal-thank__box .h2 {
    margin-bottom: 80px;
  }
}
