:root {
  --swiper-pagination-bullet-horizontal-gap: 10px;
}
html {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat",sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: #FFF;
}

*,
*:after,
*:before {
  box-sizing: inherit;
}

.btn:focus-visible {
  outline: 2px solid #FF9900;
  outline-offset: 2px;
}

a {
  color: inherit;
  text-decoration: none;
}

*:focus {
  outline: none;
}

img {
  width: 100%;
  width: 100%;
  max-width: 100%;
}

.btn {
  display: block;
  width: fit-content;
  height: fit-content;
  padding: 25px 39px;
  background-color: #FF9900;
  border-radius: 16px;
  font-weight: 700;
  font-size: 23px;
  line-height: 28px;
  text-align: center;
  color: #FFF;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

/* helpers */
.flex {
  display: flex;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  margin: 0 auto;
  max-width: 1800px;
  padding: 0 15px;
}

.visually-hidden {
  position: fixed;
  transform: scale(0);
}

/* Section */
section {
  margin: 0;
  padding: 0;
}

.section__title {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 48px;
  line-height: 59px;
  color: #000;
}


/* Header */
.header {
  position: relative;
  max-width: 1920px;
  max-height: 100px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 0px 0px 32px 32px;
  background-color: #FFF;
  box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.1);
  /* overflow: hidden; */
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  min-width: 225px;
}

.header__search {
  padding: 0;
}

.search__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.search__btn rect {
  fill: #000;
  transition: fill 0.3s;
}

.search__btn path {
  stroke: #000;
  transition: stroke 0.3s;
}

.search__btn:focus rect {
  fill: #000;
}

.search__btn:focus path {
  stroke: #000;
}

.search__btn:focus {
  outline: 2px solid #FF9900;
  outline-offset: 2px;
}

.search__btn:hover {
  outline: none;
}

.search__btn:hover rect {
  fill: #FF9900;
}

.search__btn:hover path {
  stroke: #FF9900;
}

.search__btn:active {
  outline: none;
}

.search__btn:active rect{
  fill: #FF9900;
}

.search__btn:active path{
  stroke: #FF9900;
}

.search__btn > svg {
  pointer-events: none;
}

.search__form {
  position:absolute;
  top: 20%;
  right: 0;
  display: flex;
  width: 100%;
  max-width: 0;
  box-sizing: border-box;
  padding: 18px 13px;
  padding-left: 32px;
  border-radius: 24px;
  background-color: #FFF;
  transform: scale(0);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.12);
  transition: max-width 0.5s, transform 0.5s;
  overflow: hidden;
}

.search__form--active {
  transform: scale(1);
  max-width: 539px;
  overflow:visible;
  transition: max-width 0.5s, transform 0.5s;
}

.search__input{
  padding-bottom: 5px;
  margin-right: 14px;
  border: none;
  border-bottom: 1px solid #CACACA;
  outline: none;
  width: 100%;
}

.search__input::placeholder {
  color: #CACACA;
}

.search__btn-go {
  padding: 0;
  margin-right: 20px;
}

.search__btn-clear {
  padding: 0;
}

.search__btn-clear svg rect {
  fill: #CACACA;
}

.search__input:focus-visible {
  outline: 2px solid #FF9900;
  outline-offset: 2px;
}

.search__btn-clear:focus {
  outline: 2px solid #FF9900;
  outline-offset: 5px;
}



.search__btn-clear:focus rect{
  fill: #CACACA;
}

.search__btn-clear:hover > svg rect {
  fill: #FF9900;
}

.search__btn-clear:hover > svg circle {
  stroke: #FF9900;
}

.search__btn-clear:hover, .search__btn-clear:active {
  outline: none;
}

.search__btn-clear:active > svg rect {
  fill: #000;
}

.search__btn-clear:active> svg circle {
  stroke: #000;
}

.nav {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  padding-right: 260px;
}

.nav__list {
  flex-wrap: wrap;
  padding-left: 20px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 30px;
  height: 23px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;

}

.nav__burger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #000;
  pointer-events: none;
}

.nav__burger span:not(:last-child) {
  margin-bottom: 7px;
}

.nav__item:not(:last-child) {
  margin-right: 85px;
}

.nav__link {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
}

.nav__link:focus {
  padding-bottom: 0;
  outline: 2px solid #FF9900;
  outline-offset: 5px;
  border-bottom: none;
}

.nav__link:hover {
  border-bottom: 2px solid #FF9900;
}

.nav__link:active {
  padding-bottom: 7px;
  outline: none;
  border-bottom: 2px solid #E1670E;
  color: #E1670E;
}

/* Main */
.main {
  padding-top: 50px;
  margin-bottom: 100px;
}

/* Slider */

.main > .slider {
  margin-bottom: 50px;
}

.slider .slider__container {
  display: block;
  width: 100%;
  max-width: 1800px;
}

.swiper > .swiper-wrapper {
  position: absolute;
  z-index: -1;
}

.slider__slide {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 620px;
  border-radius: 32px;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider__slide-1 {
  background-image: url('../image/slider__img-1-1920.jpg');
}

.slider__slide-2 {
  background-image: url('../image/slider__img-2-1920.jpg');
}

.slider__slide-3 {
  background-image: url('../image/slider__img-3-1920.jpg');
}

.slider__info {
  display: flex;
  flex-direction: column;
  max-width: 1010px;
  padding: 100px 80px;
}

.slider__title {
  margin: 0;
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 70px;
  line-height: 85px;
  letter-spacing: 0.8px;
  color: #FFF;
}

.slider__text {
  margin: 0;
  margin-bottom: 90px;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFF;
}

.slider__btn:focus {
  background-color: #FFB84D;
}

.slider__btn:hover {
  background-color: #FFB84D;
}

.slider__btn:active {
  background-color: #E1670E;
}

.slider > .container > .slider__container > .slider__pagination {
  bottom: 30px;
  display: flex;
  justify-content: center;
}


.slider__pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #CACACA;
  cursor: pointer;
}

.slider__pagination .swiper-pagination-bullet-active {
  background-color: #FFF;
}

.slider__pagination .swiper-pagination-bullet:not(:last-child) {
  margin-right: 20px;
}

.swiper-pagination-bullet:focus-visible {
  outline: 2px solid #FF9900;
  outline-offset: 5px;
  opacity: 1;
}

/* About */

.main > .about {
  margin-bottom: 100px;
}

.about__cards {
  display: flex;
  flex-flow: nowrap;
}

.about__title {
  margin-bottom: 20px;
}

.about__text {
  margin: 0;
  margin-bottom: 50px;
  max-width: 1235px;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #000;
}

.about__card {
  display: flex;
  align-items: center;
  border-radius: 32px;
  padding: 65px 100px 63px 60px;
}

.about__big-card {
  display: flex;
  align-items: flex-end;
  min-width: calc((100% - 32px) / 2 );
  margin-right: 32px;
  padding: 0;
  background-image: url('../image/about__card.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.about__info-rect {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 32px;
}

.about__info-text {
  max-width: 433px;
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  color: #FFF;
}

.about__btn {
  border: 3px solid #FF9900;
  background-color: transparent;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  padding: 18px 34px;
  transition: background 0.3s, color 0.3s;
}

.about__btn:hover, .about__btn:focus {
  background-color: #FF9900;
  color: #FFF;
}

.about__btn:active {
  border-color: #E1670E;
  background-color: #E1670E;
}

.about__card-small:not(:last-child) {
  margin-bottom: 32px;
}

.about__card-small {
  position: relative;
  border: 1px solid #CACACA;
}

.about__card-icon:before {
  content: "";
  position: absolute;
  width: 190px;
  height: 165px;
  z-index: 100;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-transform: translateY(-25%);
}

.about__card-icon-1:before {
  background-image: url('../image/about-card-first.jpg');
}

.about__card-icon-2:before {
  background-image: url('../image/about-card-second.jpg');
}

.about__card-inner {
  padding-left: 240px;
}

.about__card-title {
  margin: 0;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #000;
}

.about__card-text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
}

/* working */
.main > .working {
  margin-bottom: 112px;
}

.working__title {
  margin-bottom: 48px;
}

.working__steps {
  display: flex;
  margin-bottom: 48px;
}

.working__step:not(:last-child) {
  margin-right: 85px;
}

.working__step-btn {
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  background: #FFF;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.working__step-btn:focus {
  outline: 2px solid #FF9900;
  outline-offset: 5px;
}

.working__step-btn:hover {
  outline: none;
  color: #FF9900;
}

.working__step-btn:active {
  outline: none;
  color: #E1670E;
}

.working__step .working__step-btn--active {
  outline: none;
  color: #E1670E;
}

.working__wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  clear: both;
}

.working__item {
  display: flex;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #FFF;
  transition: opacity 0.3s, max-height 0.3s, visibility 0.3s;
}

.working__item--active {
  visibility: visible;
  opacity: 1;
  max-height: 1000px;
  transition: opacity 0.3s, max-height 0.3s, visibility 0.3s;

}

.working__info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  max-width: 50%;
  margin-right: 25px;
}

.working__info-title {
  margin: 0;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #000;
}

.working__text {
  margin: 0;
  max-width: 740px;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
}

.working__text:last-of-type {
  margin-bottom: 18px;
}

.working__inner {
  display: flex;
  justify-content: flex-start;
}

.working__btn-fill {
  margin-right: 32px;
  padding: 20px 38px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}

.working__btn-fill:hover, .working__btn-fill:focus {
  background-color: #FFB84D;
}

.working__btn-fill:active {
  background-color: #E1670E;
}

.working__btn {
  padding: 18px 37px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  border: 1px solid #000;
  background-color: transparent;
}

.working__btn:hover, .working__btn:focus {
  color: #FFF;
  border-color: #666;
  background-color: #666;
}

.working__btn:active {
  color: #FFF;
  border-color: #000;
  background-color: #000;
}

/* Faq */

.faq__title {
  margin-bottom: 32px;
}

.faq__item {
  margin-top: -1px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #CACACA;
  transition: border 0.3s;
}

.faq__item:first-child {
  border-top: 1px solid #CACACA;
}

.faq__question {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px 0;
  background-color: #FFF;
  border: none;
}

.faq__question-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: left;
  color: #000;
  cursor: pointer;
  transition: color 0.3s;
}

.faq__question:focus-visible {
  z-index: 2;
  outline: 2px solid #FF9900;
  outline-offset: 5px;
}

.faq__item:first-child:hover,
.faq__item:hover,
.faq__item:focus {
  border-color: #FF9900;
}

.faq__item--active,
.faq__item--active:hover,
.faq__item--active:focus,
.faq__item--active:hover:first-child,
.faq__item--active:focus:first-child {
  border-color: #CACACA;
}

.faq__item:hover .faq__question-title,
.faq__item:focus .faq__question-title {
  color: #FF9900;
}

.faq__item--active .faq__question-title, .faq__item--active:hover .faq__question-title, .faq__item--active:focus .faq__question-title {
  color: #000;
}

.faq__answer {
  opacity: 0;
  max-height: 0;
  pointer-events: none;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.faq__text {
  display: block;
  margin: 0;
  max-height: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 32px;
  transition: max-height 0.3s;
}

.faq__question-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #CACACA;
  transition: background 0.3s, transform 0.3s;
}

.faq__question-icon:before, .faq__question-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  transition: background-color 0.3s, transform 0.3s;
}

.faq__question-icon:before {
  width: 31px;
  height: 1px;
}

.faq__question-icon:after {
  width: 1px;
  height: 31px;
}

.faq__item:hover .faq__question-icon,
.faq__item:focus .faq__question-icon {
  background-color: #FF9900;
}

.faq__item:hover .faq__question-icon:before,
.faq__item:hover .faq__question-icon:after,
.faq__item:focus .faq__question-icon:before,
.faq__item:focus .faq__question-icon:after{
  background-color: #FFF;
}

.faq__item--active .faq__question-icon {
  background-color: #CACACA;
  transform: rotate(45deg);
}

.faq__item--active:hover > .faq__question > .faq__question-icon,
.faq__item--active:focus > .faq__question > .faq__question-icon {
  background-color: #CACACA;
}

.faq__item--active .faq__question-icon:before,
.faq__item--active .faq__question-icon:after,
.faq__item--active:hover > .faq__question > .faq__question-icon:before,
.faq__item--active:hover > .faq__question > .faq__question-icon:after,
.faq__item--active:focus > .faq__question > .faq__question-icon:before,
.faq__item--active:focus > .faq__question > .faq__question-icon:after{
  background-color: #000;
}

.faq__item--active .faq__question-icon {
  transform: rotate(45deg);
}

.faq__item--active > .faq__answer {
  opacity: 1;
  max-height: 2000px;
  overflow: hidden;
  transition:  max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.faq__item--active > .faq__answer .faq__text {
  display: block;
  max-height: 1000px;
  transition: max-height 0.3s;
}

/* Footer */
.footer {
  max-width: 1920px;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #000;
  color: #CACACA;
}

.footer__container {
  display: flex;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: calc(100% / 3);
}


.footer__logo{
  width: 224px;
  margin-bottom: 16px;
}

.footer__menu {
  margin-bottom: 90px;
}

.footer__link {
  font-weight: 600;
  font-size: 18px;
  line-height: 36px;
}

.footer__link:focus {
  outline: 2px solid #FF9900;
  outline-offset: 5px;
}

.footer__link:hover {
  color: #FF9900;
}

.footer__link:active {
  outline: none;
  color: #E1670E;
}

.footer__social {
  display: flex;
}

.footer__social-item:not(:last-child) {
  margin-right: 21px;
}

.footer__social-icon:focus > svg{
  outline: 2px solid #FF9900;
  outline-offset: 5px;
}

.footer__social-icon:hover > svg path {
  fill:#FF9900;
  transition: fill 0.3s;
}

.footer__social-icon:active > svg {
  outline: none;
}

.footer__social-icon:active > svg path {
  fill: #E1670E;
}

.footer__form {
  width: 590px;
  padding: 0 10px;

}

.form__title {
  margin: 0;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 48px;
  line-height: 59px;
}

.form__field {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 16px;
  border: none;
  outline: none;
  background-color: #414141;
  padding: 14px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #CACACA;
  transition: background 0.3s, color 0.3s;
}

.form__field:hover, .form__field:focus {
  background-color: #666;
}

.form__field:active {
  background-color: #666;
  color: #FFF;
}

.form__textarea {
  margin-bottom: 32px;
  min-height: 150px;
}

.footer__block {
  display: flex;
  align-items: center;
}

.footer__btn {
  margin-right: 22px;
  padding: 19px 52px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.footer__btn:hover, .footer__btn:focus {
  background-color: #FFB84D;
}

.footer__btn:active {
  background-color: #E1670E;
}

.form__checkbox:checked + .form__checkbox-icon:after {
  content: "";
  position: absolute;
  top: 17%;
  left: 35%;
  display: block;
  width: 4px;
  height: 7px;
  padding-left: 2px;
  border-right: 2px solid #97EE3F;
  border-bottom: 2px solid #97EE3F;
  transform: rotate(45deg);
}

.form__checkbox-icon {
  position: relative;
  display: flex;
  width: 14px;
  min-width: 14px;
  height: 14px;
  margin-right: 4px;
  border: 1px solid #CACACA;
  border-radius: 2px;
}

.form__label {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  cursor: pointer;
}

.form__checkbox:focus + .form__checkbox-icon {
  outline: 2px solid #FFB84D;
  outline-offset: 5px;
}

.form__checkbox:hover + .form__checkbox-icon {
  outline: none;
}

.form__checkbox:active + .form__checkbox-icon {
  outline: none;
}

.footer__text {
  margin: 0;
  padding: 0;
  padding-top: 71px;
  padding-left: 226px;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
}

@media (max-width: 1600px) {
  .footer__block {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__btn {
    margin-bottom: 12px;
  }
}

@media (max-width: 1440px) {
  .header__nav {
    padding-right: 110px;
  }

  .nav__item:not(:last-child) {
    margin-right: 45px;
  }


  /* About Us */
  .main > .about {
    margin-bottom: 80px;
  }

  .about__text {
    margin-bottom: 59px;
  }

  .about__cards {
    flex-direction: column;
    padding: 0;
  }

  .about__block {
    width: 100%;
    margin: 0;
  }

  .about__block:not(:last-child) {
    margin-right: 0;
  }

  .about__big-card {
    min-height: 640px;
    margin-bottom: 32px;
    margin-right: 0;
    background-image: url('../image/about__card-1024.jpg');
  }

  .about__card-small {
    padding: 64px 75px;
    padding-right: 118px;
  }

  .about__card-small:not(:last-child) {
    margin-bottom: 32px;
  }

  .footer__container {
    justify-content: space-between;
  }

  .footer__inner {
    width: auto;
  }

  .footer__inner:last-child {
    display: none;
  }

}

@media all and (max-width: 1024px) {

  .container {
    padding: 0 50px;
  }

  .main {
    padding-top: 40px;
    margin-bottom: 81px;
  }

  /* Header */
  .header {
    padding: 26px 0;
  }

  .header__container {
    width: 100%;
    justify-content: space-between;
  }

  .header__logo {
    max-width: 150px;
    min-width: auto;
  }

  .header__nav {
    order: -1;
    width: auto;
    padding: 0;
    margin: 0;
  }

  .nav__burger  {
    display: flex;
  }

  .nav__burger:focus {
    outline: 2px solid #FF9900;
    outline-offset: 5px;
  }

  .nav__burger:active {
    align-items: flex-end;
    outline: none;
  }

  .nav__burger:active > span {
    background-color: #E1670E;
  }

  .nav__burger:active > span:nth-child(2) {
    width: 25px;
    transition: width 0.3s;
  }

  .nav__burger:active > span:nth-child(3) {
    width: 18px;
    transition: width 0.3s;
  }

  .header__nav .nav__burger--active {
    position: absolute;
    left: 50px;
    top: 38px;
    z-index: 1010;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
  }

  .header__nav .nav__burger--active span {
    margin-bottom: 0;
  }

  .nav__burger--active span:nth-child(1){
    opacity:0;
  }

  .nav__burger--active span:nth-child(2){
    transform: rotate(45deg) translateX(2px);
    transition: transform 0.3s;
  }


  .nav__burger--active span:nth-child(3){
    transform: rotate(-45deg) translateX(2px);
    transition: transform 0.3s;
  }

  .header__nav .nav__burger--active:focus {
    outline: none
  }

  .header__nav .nav__burger--active:focus span, .nav__burger--active:active span, .nav__burger--active:hover span{
    background-color: #000;
  }

  .header__nav .nav__burger--active:active span {
    width: 30px;
  }

  .nav__list {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    flex-direction: column;
    background-color: #FFF;
    min-width: 420px;
    height: 100vh;
    padding: 50px;
    padding-top: 170px;
    border-radius: 0 0 32px 32px;
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(-400px);
    transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  .nav__list--open {
    visibility: visible;
    transform: none;
  }

  .nav__item {
    margin:0;
    margin-bottom: 60px;
  }

  .nav__link {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: #333;
  }

  /* Slider */
  .main > .slider {
    margin-bottom: 36px;
  }

  .slider__slide-1 {
    background-image: url('../image/slider__img-1-1024.jpg');
  }

  .slider__slide-2 {
    background-image: url('../image/slider__img-2-1024.jpg');
  }

  .slider__slide-3 {
    background-image: url('../image/slider__img-3-1024.jpg');
  }

  .slider__info {
    padding: 160px 77px;
  }

  .slider__title {
    font-size: 60px;
    line-height: 73px;
    margin-bottom: 16px;
  }

  .slider__text {
    margin-bottom: 60px;
    font-size: 20px;
    line-height: 24px;
  }

  /* Working */
  .main > .working {
    margin-bottom: 80px;
  }

  .working__title {
    margin-bottom: 50px;
  }

  .working__steps {
    margin-bottom: 50px;
  }

  .working__info {
    margin-right: 40px;
  }


  .working__text {
    max-width: 450px;
  }

  .working__text:last-of-type {
    margin-bottom: 26px;
  }

  /* Faq */

  .faq__question {
    padding: 30px 0;
  }

  .faq__question-title {
    margin-right: 46px;
    font-size: 20px;
  }

  /* Footer */
  .footer__inner {
    width: auto;
  }

  .footer__container {
    justify-content: space-between;
  }

  .footer__inner:nth-child(2) {
    max-width: 541px;
  }

  .footer__form {
    width: 100%;
    max-width: 541px;
    padding: 0;
  }

  .footer__block {
    margin-bottom: 0;
    align-items: center;
    flex-direction: row;
  }

  .footer__btn {
    max-width: 241px;
    padding: 19px 38px;
    margin-bottom: 0;
  }

}

@media all and (max-width: 768px) {
  /* Header */
  .header {
    padding: 10px 0px;
  }

  .main {
    padding-top: 37px;
    margin-bottom: 112px;
  }

  /* Slider */
  .slider__slide {
    min-height: 664px;
  }

  .slider__slide-1 {
    background-image: url('../image/slider__img-1-768.jpg');
  }

  .slider__slide-2 {
    background-image: url('../image/slider__img-2-768.jpg');
  }

  .slider__slide-3 {
    background-image: url('../image/slider__img-3-768.jpg');
  }

  .slider__info {
    padding: 160px 40px;
  }

  .slider__title{
    font-size: 50px;
    line-height: 61px;
  }

  .slider__text {
    font-size: 18px;
    line-height: 22px;
  }

  .main > .about {
    margin-bottom: 80px;
  }

  .about__info-rect {
    padding: 34px 40px;
  }

  .about__info-text {
    margin-right: 47px;
  }

  .about__text {
    margin-bottom: 54px;
  }

  .about__card {
    border-radius: 24px;
  }

  .about__big-card {
    min-height: 652px;
    background-image: url('../image/about__card-768.jpg');
  }

  .about__card-small {
    padding: 34px 40px;
  }

  .about__card-inner {
    padding-left: 130px;
  }

  .about__card-icon:before {
    top: 50%;
    transform: translateY(-50%);
    width: 114px;
    height: 99px;
  }

  /* Working */
  .main > .working {
    margin-bottom: 49px;
  }

  .working__title {
    margin-bottom: 49px;
  }

  .working__steps {
    justify-content: space-between;
  }

  .working__step:not(:last-child) {
    margin-right: 10px;
  }

  .working__item {
    flex-direction: column;
  }

  .working-step {
    margin-right: 0;
  }

  .working__img {
    order: -1;
    margin-bottom: 34px;
    padding-right: 0;
  }

  .working__info {
    margin-right: 0;
    max-width: 100%;
  }

  .working__text {
    max-width: 100%;
  }

  .working__text:last-of-type {
    margin-bottom: 26px;
  }

  /* Faq */
  .faq__question-title {
    font-size: 20px;
    line-height: 32px;
  }

  /* Footer */

  .footer__container {
    flex-direction: column;
  }

  .footer__inner:nth-child(2) {
    order:-1;
    margin-bottom: 50px;
  }

  .footer__btn {
    margin-bottom: 0;
  }

  .footer__menu {
    display: none;
  }
}

@media (max-width: 577px) {

  .container {
    padding: 0 25px;
  }

  .slider__slide {
    min-height: 308px;
    border-radius: 16px;
  }

  .slider__slide-1 {
    background-image: url('../image/slider__img-1-320.jpg');
  }

  .slider__slide-2 {
    background-image: url('../image/slider__img-2-320.jpg');
  }

  .slider__slide-3 {
    background-image: url('../image/slider__img-3-320.jpg');
  }

  .slider__info {
    align-items: center;
    padding: 60px 22px;
  }

  .slider__title {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
  }
  .slider__text {
    text-align: center;
  }

  .footer__form {
    width: auto;
  }

  .footer__block {
    align-items: center;
    flex-direction: column;
    padding-bottom: 12px;
    border-bottom: 1px solid #414141;
  }

  .footer__btn {
    margin-bottom: 12px;
    margin-right: 0;
  }

  .footer__inner {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .btn {
    padding: 10px 42px;
    border-width: 2px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 15px;
  }
  /* Header */
  .search__form {
    top: 0;
    padding: 23px 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .search__input {
    margin-right: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
  }

  .header {
    padding: 15px 0px;
  }

  .header__logo {
    max-width: 110px;
  }

  .main {
    padding-top: 31px;
    margin-bottom: 61px;
  }

  .section__title {
    font-size: 24px;
    line-height: 29px;
  }


  .nav__list {
    min-width: 320px;
    padding: 78px 15px;
    border-radius: 0 0 16px 16px;
  }

  .nav__burger--active {
    left: 15px;
    top: 23px;
  }

  .nav__item {
    margin-bottom: 32px;
  }

  .nav__link {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
  }


  /* slider */
  .main > .slider {
    margin-bottom: 60px;;
  }

  .slider__slide-1 {
    background-image: url('../image/slider__img-1-320.jpg');
  }

  .slider__slide-2 {
    background-image: url('../image/slider__img-2-320.jpg');
  }

  .slider__slide-3 {
    background-image: url('../image/slider__img-3-320.jpg');
  }

  .slider__title {
    margin-bottom: 9px;
    font-size: 6vw;
    line-height: 1.2;
  }

  .slider__text {
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 3.7vw;
    line-height: 1.3;
  }

  .slider__btn {
    padding: 3.7vw 9.1vw;
    font-size: 3.7vw;
    line-height: 15px;
    border-radius: 8px;
  }

  .slider > .container > .slider__container > .slider__pagination {
    bottom: 16px;
  }

  .slider__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  /* about us */
  .main > .about {
    margin-bottom: 36px;
  }

  .about__block {
    margin-bottom: 25px;
  }

  .about__text {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 28px;
  }

  .about__big-card:before {
    content: "";
    margin-bottom: 8px;
    min-width: 100%;
    min-height: 200px;
    background-image: url('../image/about__card-320.jpg');
    background-size: cover;
    background-repeat: no-repeat;
  }

  .about__big-card {
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 0;
    min-height: auto;
    background-image: none;
  }

  .about__info-rect {
    background: none;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .about__info-text {
    margin-right: 0;
    margin-bottom: 12px;
    color: #000;
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
  }

  .about__btn {
    color: #FF9900;
  }

  .about__card-small:not(:last-child) {
    margin-bottom: 31px;
  }

  .about__card-small {
    flex-direction: column;
    padding: 0;
    padding-top: 61px;
    border-radius: 0;
    border: none;
  }

  .about__card-icon:before {
    top: 0;
    transform: none;
    width: 64px;
    height: 55px;
  }

  .about__card-inner {
    padding-left: 0;
  }


  .about__card-title {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
  }

  .about__card-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
  }

  /* Working */

  .main > .working {
    margin-bottom: 68px;
  }

  .working__title {
    margin-bottom: 18px;
  }

  .working__steps {
    margin-bottom: 16px;
  }

  .working__step-btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
  }

  .working__info-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
  }

  .working__img {
    margin-bottom: 12px;
  }

  .working__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
  }

  .working__text:last-of-type {
    margin-bottom: 26px;
  }

  .working__btn-fill {
    margin-right: 10px;
    padding: 11px 44px;
  }

  .working__btn {
    padding: 10px 32px;
    border-width: 1px;
  }

  /* Faq */

  .faq__title {
    margin-bottom: 16px;
  }

  .faq__item {
    padding-right: 0;
  }

  .faq__question-title {
    margin-right: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
  }

  .faq__question-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .faq__question-icon:after {
    height: 19px;
  }

  .faq__question-icon:before {
    width: 19px;
  }

  .faq__text {
    font-size: 14px;
  }

  /* footer */

  .footer {
    padding: 33px 0;
  }

  .form__title {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
  }

  .form__field {
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
  }

  .form__textarea {
    margin-bottom: 26px;
  }

  .footer__btn {
    padding: 12px 28px;
  }

  .footer__block {
    padding-bottom: 14px;
  }

  .footer__logo {
    width: auto;
    margin-bottom: 13px;
  }

  .footer__logo img{
    max-width: 131px;
  }

  .footer__inner:nth-child(2) {
    margin-bottom: 17px;
  }

  .footer__social-icon > svg{
    max-width: 40px;
    height: auto;
  }

  .footer__social-item:not(:last-child) {
    margin-right: 14px;
  }
}
