@import '../vendor/normalize.css';
@import '../vendor/fonts.css';
.page {
  max-width: 1440px;
  min-width: 320px;
  font-family: Inter, Arial, sans-serif;
  display: block;
  margin: 0 auto;
}
.page__header {
  margin: 10px 10px 60px 10px;
}
@media screen and (max-width: 1130px) {
  .page__header {
    margin-bottom: 70px;
  }
}
.page__footer {
  margin: 120px 10px 10px 10px;
}
@media screen and (max-width: 1130px) {
  .page__footer {
    margin-top: 70px;
  }
}

.header {
  background-color: #222222;
  border-radius: 20px;
  min-height: 640px;
  width: calc(100% - 20px);
  max-width: 1420px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .header {
    min-height: 602px;
  }
}
@media screen and (max-width: 608px) {
  .header {
    border-radius: 10px;
  }
}
.header__container {
  padding: 30px 82px 0 160px;
  max-width: 650px;
  display: block;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .header__container {
    padding: 30px 43px 0 50px;
    min-height: 192px;
    max-width: 360px;
  }
}
@media screen and (max-width: 608px) {
  .header__container {
    padding: 20px;
    min-height: 522px;
    max-width: calc(100% - 40px);
  }
}
.header__logo {
  width: 40px;
  height: 40px;
  background-image: url(../images/logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0;
}
.header__title {
  font-size: 60px;
  line-height: 69px;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  width: 100%;
  margin: 0;
  padding: 60px 0 28px 0;
}
@media screen and (max-width: 1000px) {
  .header__title {
    font-size: 33px;
    line-height: 37px;
    padding: 50px 0 20px 0;
  }
}
@media screen and (max-width: 608px) {
  .header__title {
    font-size: 24px;
    line-height: 29px;
    padding-bottom: 14px;
  }
}
.header__image {
  background-image: url(../images/lines.png);
  position: relative;
  top: 40px;
  max-width: 311px;
  width: 100%;
  height: 630px;
  background-size: contain;
  background-position: center;
  box-shadow: 0px 4px 80px 0px #00000040;
  border-radius: 47px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
  .header__image {
    max-width: 250px;
    height: 502px;
    top: 120px;
    border-radius: 39px;
  }
}
@media screen and (max-width: 608px) {
  .header__image {
    max-width: 260px;
    height: 522px;
    position: absolute;
    top: 262px;
    left: calc(50vw - 141px);
  }
}
.header__text {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #FFFFFF;
  opacity: 0.7;
  display: block;
  padding-bottom: 108px;
  max-width: 450px;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .header__text {
    font-size: 15px;
    line-height: 20px;
    padding-bottom: 250px;
    max-width: 360px;
  }
}
@media screen and (max-width: 608px) {
  .header__text {
    font-size: 12px;
    line-height: 15px;
    padding-bottom: 50px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.header__button {
  width: 240px;
  height: 54px;
  border-radius: 8px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #222222;
  align-items: center;
  margin: 0;
  opacity: 1;
  transition: opacity 0.3s ease-in;
  text-decoration: none;
}
@media screen and (max-width: 1000px) {
  .header__button {
    height: 48px;
    font-size: 14px;
  }
}
@media screen and (max-width: 608px) {
  .header__button {
    margin: 572px auto 0 auto;
    width: 260px;
    height: 44px;
  }
}
.header__button:hover {
  cursor: pointer;
  opacity: 0.93;
}

.cards {
  padding: 0;
  margin: 0 auto;
  display: flex;
  max-width: 1100px;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .cards {
    max-width: 708px;
    gap: 10px;
    padding: 0;
  }
}
@media screen and (max-width: 608px) {
  .cards {
    max-width: 320px;
    gap: 0;
    flex-direction: column;
  }
}
.cards__item {
  border-radius: 20px;
  background-color: #F8F8F8;
  max-width: 540px;
  min-height: 308px;
  display: block;
  margin: 0;
  padding: 40px;
  box-sizing: border-box;
  margin-left: 20px;
}
.cards__item:first-child {
  margin-left: 0;
}
@media screen and (max-width: 1000px) {
  .cards__item {
    max-width: 349px;
    min-height: 284px;
    padding: 30px;
    margin-left: 10px;
  }
  .cards__item:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 608px) {
  .cards__item {
    max-width: 300px;
    padding: 20px;
    margin-left: 0;
  }
}
.cards__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  color: #111111;
  opacity: 0.6;
  display: block;
  padding-bottom: 20px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .cards__subtitle {
    font-size: 15px;
    padding-bottom: 12px;
  }
}
.cards__title {
  display: block;
  margin: 0;
  width: 100%;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  line-height: 38px;
  color: #111111;
  padding-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .cards__title {
    font-size: 26px;
    line-height: 31px;
    padding-bottom: 50px;
  }
}
.cards__title_one-line {
  padding-bottom: 78px;
}
@media screen and (max-width: 1000px) {
  .cards__title_one-line {
    padding-bottom: 50px;
  }
}
.cards__title_many-lines {
  padding-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .cards__title_many-lines {
    padding-bottom: 19px;
  }
}
.cards__text {
  display: block;
  margin: 0;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #111111;
  line-height: 24px;
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .cards__text {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width: 608px) {
  .cards__text {
    font-size: 15px;
  }
}
.cards__swipe {
  display: none;
}
@media screen and (max-width: 608px) {
  .cards__swipe {
    display: block;
    width: 16px;
    margin: 10px auto 0 auto;
    position: relative;
  }
}
.cards__dot {
  display: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #D9D9D9;
  margin: 0 2px;
}
.cards__dot_active {
  background-color: #212121;
}
@media screen and (max-width: 608px) {
  .cards__dot {
    display: inline-block;
  }
}

.content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.gallery {
  display: block;
  width: 100%;
  padding-bottom: 120px;
  padding-top: 80px;
  margin: 0;
  height: 709px;
}
@media screen and (max-width: 1000px) {
  .gallery {
    padding-bottom: 70px;
    padding-top: 70px;
    height: 461px;
  }
}
@media screen and (max-width: 608px) {
  .gallery {
    height: 522px;
    padding-bottom: 94px;
    padding-top: 67px;
  }
}
.gallery__photos {
  display: grid;
  max-width: 1100px;
  grid-template-columns: repeat(3, 1fr);
  width: calc(100% - 340px);
  min-height: 709px;
  gap: 25px;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .gallery__photos {
    max-width: 708px;
    width: calc(100% - 60px);
    gap: 15px;
    min-height: 461px;
  }
}
@media screen and (max-width: 608px) {
  .gallery__photos {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin-left: 0;
  }
}
.gallery__photo {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  box-shadow: 0 4px 80px 0 #00000040;
  border-radius: 52px;
}
@media screen and (max-width: 1000px) {
  .gallery__photo {
    border-radius: 36px;
  }
}
@media screen and (max-width: 608px) {
  .gallery__photo {
    max-width: 260px;
    height: 522px;
  }
}
@media screen and (max-width: 608px) {
  .gallery__item {
    display: block;
    max-width: 260px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 608px) {
  .gallery__swipe {
    margin: 7px auto 0 auto;
  }
}

.title {
  display: block;
  max-width: 1103px;
  width: 100%;
  min-height: 204px;
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  color: #111111;
  line-height: 68px;
  margin: 0 auto;
  padding: 120px 0;
}
@media screen and (max-width: 1130px) {
  .title {
    font-size: 33px;
    line-height: 37px;
    max-width: 648px;
    padding: 70px 0;
    min-height: 111px;
  }
}
@media screen and (max-width: 608px) {
  .title {
    font-size: 26px;
    line-height: 31px;
    max-width: calc(100% - 60px);
    padding: 67px 0;
  }
}
.title_padding_bottom {
  padding-bottom: 40px;
}
@media screen and (max-width: 1130px) {
  .title_padding_bottom {
    padding-bottom: 0;
  }
}

.form {
  display: block;
  max-width: 1100px;
  width: 100%;
  min-height: 628px;
  border-radius: 10px;
  background-color: #F8F8F8;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .form {
    max-width: calc(100% - 60px);
    min-height: 611px;
  }
}
@media screen and (max-width: 608px) {
  .form {
    max-width: calc(100% - 20px);
  }
}
.form__title {
  padding: 60px 0 20px 0;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  line-height: 38px;
  color: #111111;
  display: block;
  max-width: 500px;
  min-height: 76px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .form__title {
    padding: 30px 0 24px 0;
    font-size: 26px;
    line-height: 31px;
    min-height: 31px;
  }
}
@media screen and (max-width: 608px) {
  .form__title {
    max-width: calc(100% - 60px);
    padding: 20px 0;
  }
}
.form__subtitle {
  display: block;
  margin: 0 auto;
  padding-bottom: 100px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #111111;
  line-height: 24px;
  opacity: 0.6;
  max-width: 500px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .form__subtitle {
    font-size: 15px;
    line-height: 20px;
  }
}
@media screen and (max-width: 608px) {
  .form__subtitle {
    padding-bottom: 80px;
    max-width: calc(100% - 60px);
  }
}
.form__wrapper {
  display: block;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  min-height: 204px;
}
@media screen and (max-width: 1000px) {
  .form__wrapper {
    max-width: 470px;
  }
}
@media screen and (max-width: 608px) {
  .form__wrapper {
    max-width: calc(100% - 40px);
  }
}
.form__container {
  display: flex;
  max-width: 980px;
  width: 100%;
  height: 100%;
  gap: 20px 40px;
  padding: 0;
  margin: 0;
  border: none;
  flex-wrap: wrap;
  flex-direction: row;
}
@media screen and (max-width: 1000px) {
  .form__container {
    max-width: 708px;
    gap: 20px;
  }
}
@media screen and (max-width: 608px) {
  .form__container {
    margin: 0 auto;
  }
}
.form__input {
  display: block;
  max-width: 470px;
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
  border: none;
  padding: 15px 20px;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  color: #111111;
  opacity: 1;
}
.form__input:focus {
  outline: none;
}
.form__input:hover {
  cursor: pointer;
}
.form__input::-moz-placeholder {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #111111;
  line-height: 24px;
  opacity: 0.3;
}
.form__input:-ms-input-placeholder {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #111111;
  line-height: 24px;
  opacity: 0.3;
}
.form__input::placeholder {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #111111;
  line-height: 24px;
  opacity: 0.3;
}
.form__input::-webkit-input-placeholder {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #111111;
  line-height: 24px;
  opacity: 0.3;
}
.form__input::-moz-placeholder {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #111111;
  line-height: 24px;
  opacity: 0.3;
}
.form__input::-ms-input-placeholder {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #111111;
  line-height: 24px;
  opacity: 0.3;
}
@media screen and (max-width: 608px) {
  .form__input::-moz-placeholder {
    font-size: 12px;
  }
  .form__input:-ms-input-placeholder {
    font-size: 12px;
  }
  .form__input::placeholder {
    font-size: 12px;
  }
  .form__input::-webkit-input-placeholder {
    font-size: 12px;
  }
  .form__input::-moz-placeholder {
    font-size: 12px;
  }
  .form__input::-ms-input-placeholder {
    font-size: 12px;
  }
}
.form__input_type_textarea {
  max-width: 980px;
  width: 100%;
  min-height: 130px;
  resize: none;
}
@media screen and (max-width: 1000px) {
  .form__input_type_textarea {
    max-width: 470px;
  }
}
.form__button {
  display: block;
  width: 194px;
  height: 54px;
  border-radius: 8px;
  border: none;
  background-color: #222222;
  background-repeat: no-repeat;
  margin: 30px 60px 60px 787px;
  color: #FFFFFF;
  padding: 15px 30px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  opacity: 1;
  transition: opacity 0.3s ease-in;
  text-decoration: none;
}
@media screen and (max-width: 1165px) {
  .form__button {
    margin: 30px 60px 60px 700px;
  }
}
@media screen and (max-width: 1000px) {
  .form__button {
    width: 470px;
    height: 48px;
    margin: 50px auto 30px auto;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 608px) {
  .form__button {
    width: 260px;
    height: 44px;
    margin: 50px auto 20px auto;
    font-size: 12px;
  }
}
.form__button:hover {
  cursor: pointer;
  opacity: 0.85;
}

.footer {
  background-color: #222222;
  border-radius: 20px;
  height: 470px;
  width: calc(100% - 20px);
  max-width: 1420px;
  display: flex;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .footer {
    height: 400px;
  }
}
@media screen and (max-width: 608px) {
  .footer {
    height: 266px;
  }
}
.footer__container {
  padding: 60px 259px 60px 160px;
  max-width: 540px;
  display: block;
  min-height: 350px;
}
@media screen and (max-width: 1130px) {
  .footer__container {
    max-width: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .footer__container {
    padding: 50px 79px 50px 50px;
    min-height: 300px;
  }
}
@media screen and (max-width: 608px) {
  .footer__container {
    padding: 20px;
    min-height: 226px;
    margin: 0 auto;
  }
}
.footer__title {
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  line-height: 38px;
  color: #FFFFFF;
  display: block;
  max-width: 460px;
  width: 100%;
  margin: 0;
  padding: 0 0 20px 0;
}
@media screen and (max-width: 608px) {
  .footer__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    padding-bottom: 14px;
  }
}
.footer__text {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #FFFFFF;
  opacity: 0.7;
  display: block;
  padding-bottom: 174px;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 1130px) {
  .footer__text {
    padding-bottom: 130px;
  }
}
@media screen and (max-width: 608px) {
  .footer__text {
    padding-bottom: 95px;
    font-size: 12px;
    line-height: 15px;
  }
}
.footer__button {
  width: 470px;
  height: 54px;
  border-radius: 8px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #222222;
  align-items: center;
  margin: 0;
  opacity: 1;
  transition: opacity 0.3s ease-in;
  text-decoration: none;
}
@media screen and (max-width: 1130px) {
  .footer__button {
    width: 240px;
    height: 48px;
  }
}
@media screen and (max-width: 608px) {
  .footer__button {
    width: 260px;
    height: 44px;
    font-size: 12px;
    line-height: 24px;
  }
}
.footer__button:hover {
  cursor: pointer;
  opacity: 0.93;
}
.footer__image {
  background-image: url(../images/like.png);
  position: relative;
  bottom: 30px;
  max-width: 311px;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: top center;
  box-shadow: 0px 4px 80px 0px #00000040;
  border-radius: 47px 47px 0 0;
}
@media screen and (max-width: 1000px) {
  .footer__image {
    max-width: 250px;
    height: 430px;
    border-radius: 39px 39px 0 0;
  }
}
@media screen and (max-width: 608px) {
  .footer__image {
    display: none;
  }
}/*# sourceMappingURL=index.css.map */