body {
  margin: 0;
}

html {
  position: relative;
  box-sizing: border-box;
  outline: none;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  min-width: 320px;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  padding: 0;
  background-color: gainsboro;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ol,
ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

figure,
fieldset,
input,
textarea {
  padding: 0;
  border: none;
  margin: 0;
}

button {
  display: block;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
}

.wrapper {
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 90px;
  height: 90px;
  background-image: url("./logo.png");
  background-size: 150px;
  background-repeat: no-repeat;
  background-position: center bottom -43px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.language {
  background-color: rgb(85, 82, 232);
  border-radius: 32px;
  padding: 16px;
}

.language__list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language__text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
}

.language__text_active {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}

.home {
  padding: 100px 0 150px 0;
  background-image: url("./home.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.home::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.home__wrapper {
  position: relative;
  z-index: 5;
}
.home__title {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 40px;
}

.home__text {
  width: 950px;
}

.home__description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
  margin-bottom: 16px;
}

.home__description span {
  font-weight: 500;
}

.description_mb {
  margin-bottom: 0 !important;
}

.about {
  padding: 100px 0;
}

.about__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about__img {
  background-image: url("./about.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  width: 426px;
  height: 550px;
}

.about__content {
  width: 710px;
}

.about__subtitle {
  color: rgb(85, 82, 232);
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 16px;
}

.about__title {
  color: rgb(0, 0, 0);
  font-size: 48px;
  font-weight: 700;
  line-height: 53px;
  margin-bottom: 32px;
}

.about__description {
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 16px;
}

.about__description_italic {
  font-style: italic;
  font-weight: 500;
  color: darkblue;
}
.about__description_italic span {
  display: block;
  text-transform: uppercase;
}

.features {
  padding: 100px 0;
  background-image: url("./features.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.features::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.features__wrapper {
  position: relative;
  z-index: 5;
}

.features__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 24px;
}

.features__title {
  color: rgb(255, 255, 255);
  font-size: 48px;
  font-weight: 700;
  line-height: 53px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 64px;
}

.features__list {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(2, 1fr);
}

.features__item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.features__number {
  color: rgb(85, 82, 232);
  font-size: 48px;
  font-weight: 700;
  line-height: 53px;
  text-align: center;
  margin-bottom: 10px;
}

.features__name {
  width: 400px;
  color: rgb(255, 255, 255);
  font-size: 28px;
  font-weight: 500;
  line-height: 39px;
  text-align: center;
  margin-bottom: 10px;
}

.features__description {
  width: 400px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.feedback {
  padding: 100px 0;
}

.feedback__wrapper {
}

.feedback__content {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}

.feedback__left {
}

.feedback__title {
  color: rgb(0, 0, 0);
  font-size: 48px;
  font-weight: 700;
  line-height: 53px;
  margin-bottom: 24px;
}

.feedback__description {
  width: 475px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 32px;
}

.feedback__right {
}

.feedback__subtitle {
  width: 475px;
  color: rgb(0, 0, 0);
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 24px;
}

.feedback__list {
}

.feedback__item {
  list-style-type: style;
  margin-left: 24px;
}

.feedback__text {
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 16px;
}

.form {
  width: 475px;
}

.form__content {
  display: grid;
  gap: 0 24px;
  width: 475px;
  grid-template-columns: repeat(2, 1fr);
}

.form__input {
  display: block;
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  width: 100%;
  height: 58px;
  padding: 10px 20px;
  background-color: gainsboro;
  border-bottom-color: rgb(85, 82, 232);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border: 2px rgb(85, 82, 232) solid;
  margin-bottom: 24px;
}

.form__button {
  width: 475px;
  height: 58px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  background-color: rgb(85, 82, 232);
  border-bottom-color: rgb(85, 82, 232);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}

.points {
  padding: 50px 0;
  background-image: url("./points.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.points::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.points__wrapper {
  position: relative;
  z-index: 5;
}

.points__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.points__item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.points__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgb(85, 82, 232);
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.points__icon {
  width: 40px;
  height: 40px;
  display: block;
}

.points__title {
  width: 360px;
  color: rgb(255, 255, 255);
  font-size: 28px;
  font-weight: 500;
  line-height: 39px;
  text-align: center;
  margin-bottom: 10px;
}

.points__description {
  width: 340px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.services {
  padding: 100px 0;
  background-image: url("./services.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.services::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.services__wrapper {
  position: relative;
  z-index: 5;
}

.services__services {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  line-height: 53px;
  margin-bottom: 32px;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.services__item {
  display: grid;
  align-items: center;
  grid-template-columns: 450px 550px;
  gap: 50px;
  justify-content: space-between;
  padding: 40px 48px;
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: 1px solid #ffffff;
  position: relative;
}

.services__item::before {
  display: block;
  position: absolute;
  right: 25px;
  bottom: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  width: 50px;
  height: 50px;
}
.services__item_a::before {
  background-image: url("./services1.svg");
}

.services__item_aa::before {
  background-image: url("./services2.svg");
}

.services__item_aaa::before {
  background-image: url("./services3.svg");
}

.services__item_aaaa::before {
  background-image: url("./services4.svg");
}

.services__left {
}

.services__title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 27px;
  font-style: italic;
  margin-bottom: 10px;
}

.services__subtitle {
  width: 400px;
  color: #ffffff;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
}

.services__text {
  list-style-type: style;
  margin-left: 24px;
}

.services__description {
  color: #ffffff;
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.contacts {
  background-image: url("./contacts.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding-bottom: 50px;
}
.span__in {
  font-style: normal !important;
  letter-spacing: 3px;
}

.contacts::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.contacts__wrapper {
  position: relative;
  z-index: 5;
}
.contacts__logo {
  width: 300px;
  height: 300px;
  background-image: url("./logo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom -30px;
}

.contacts__title {
  color: rgb(255, 255, 255);
  font-size: 28px;
  font-weight: 500;
  line-height: 39px;
  margin-bottom: 24px;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 400px;
  margin-bottom: 24px;
}

.contacts__item {
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}

.contacts__text span {
  font-style: italic;
}

.contacts__link {
  color: #ffffff;
}

@media (max-width: 767px) {
  .home {
    padding: 100px 0;
  }

  .thanks {
    font-size: 18px;
    line-height: 23px;
  }

  .home__text {
    grid-template-columns: repeat(1, 1fr);
    align-items: flex-start;
  }

  .home__description_blue {
    width: 320px;
    text-align: left;
  }

  .home__title {
    width: 320px;
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 32px;
  }

  .home__text {
    width: 320px;
  }

  .home__description {
    width: 320px;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 16px;
  }

  .description_mb {
    margin-bottom: 0 !important;
  }

  .about {
    padding: 50px 0;
  }

  .about__wrapper {
    flex-direction: column;
  }

  .about__img {
    width: 100%;
    height: 326px;
    margin-bottom: 16px;
  }

  .about__content {
    width: 320px;
  }

  .about__subtitle {
    font-size: 15px;
    line-height: 16px;
  }

  .about__title {
    font-size: 28px;
    line-height: 30px;
  }

  .about__description {
    font-size: 15px;
    line-height: 20px;
  }

  .features {
    padding: 50px 0;
  }

  .features__subtitle {
    width: 320px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .features__title {
    width: 320px;
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 32px;
  }

  .features__list {
    gap: 32px;
    grid-template-columns: repeat(1, 1fr);
  }

  .features__number {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 8px;
  }

  .features__name {
    width: 320px;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 8px;
  }

  .features__description {
    width: 320px;
    font-size: 15px;
    line-height: 20px;
  }

  .feedback {
    padding: 50px 0;
  }

  .feedback__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .feedback__title {
    width: 320px;
    font-size: 28px;
    line-height: 30px;
  }

  .feedback__description {
    width: 320px;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 24px;
  }

  .feedback__subtitle {
    width: 500px;
    color: rgb(85, 82, 232);
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 24px;
  }

  .feedback__list {
  }

  .feedback__subtitle {
    width: 280px;
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 16px;
  }

  .feedback__item {
    list-style-type: style;
    margin-left: 16px;
  }

  .feedback__text {
    width: 270px;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 16px;
  }

  .form {
    width: 100%;
  }

  .form__content {
    display: grid;
    gap: 0;
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 16px;
    margin-bottom: 0;
  }

  .form__input {
    font-size: 15px;
    line-height: 20px;
    width: 100%;
    height: 48px;
    padding: 10px 20px;
    margin-bottom: 16px;
  }

  .form__button {
    width: 100%;
    height: 58px;
    font-size: 15px;
    line-height: 20px;
  }

  .points__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }

  .points__circle {
  }

  .points__title {
    width: 320px;
    font-size: 24px;
    line-height: 30px;
  }

  .points__description {
    width: 250px;
    font-size: 15px;
    line-height: 20px;
  }

  .services {
    padding: 50px 0;
  }

  .services__services {
    font-size: 28px;
    line-height: 30px;
  }

  .services__item {
    grid-template-columns: repeat(1, 270px);
    gap: 24px;
    padding: 24px;
  }

  .services__title {
    font-weight: 500;
  }

  .services__subtitle {
    width: 270px;
    font-size: 15px;
    line-height: 20px;
  }

  .services__text {
    margin-left: 16px;
  }

  .header__logo {
  }

  .nav {
    display: none;
  }

  .language {
    background-color: rgb(85, 82, 232);
    border-radius: 16px;
    padding: 16px;
  }

  .language__list {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .language__text {
    font-size: 15px;
    line-height: 24px;
  }

  .br-mobile {
    display: none !important;
  }

  .contacts {
    padding-bottom: 50px;
  }

  .contacts__logo {
    width: 200px;
    height: 200px;
  }

  .contacts__list {
    width: 300px;
    gap: 5px;
    margin-bottom: 16px;
  }

  .contacts__d {
    font-size: 15px;
  }
  .contacts__title {
    margin-bottom: 16px;
  }
}
