.hero {
  margin-inline: auto;
  padding: 200px 0px;
  padding-inline: 20px;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8)), url(../img/hero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--section-bg-color);
}

@media screen and (min-width: 768px) {
  .hero {
    width: 100%;
  }
}

@media screen and (min-width: 1280px) {
  .hero {
    width: 100%;
  }
}

.hero-title {
  margin-bottom: 20px;
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--second-text-color);
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .hero-title {
    font-size: 44px;
  }
}

.hero-text {
  margin-bottom: 140px;
  font-family: var(--subtitle-font-family);
  font-size: 24px;
  color: var(--second-text-color);
}

@media screen and (min-width: 768px) {
  .hero-text {
    font-size: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .hero-text {
    font-size: 40px;
  }
}

.hero-subtitle {
  margin-bottom: 40px;
  font-family: var(--title-font-family);
  font-size: 23px;
  font-weight: 400;
  color: var(--second-text-color);
}

@media screen and (min-width: 768px) {
  .hero-subtitle {
    font-size: 26px;
  }
}

@media screen and (min-width: 1280px) {
  .hero-subtitle {
    font-size: 30px;
  }
}

.hero-button {
  width: 240px;
  padding: 20px 0;
  background-color: var(--active-text-color);
  border: none;
  border-radius: 5px;

  font-family: var(--title-font-family);
  font-size: 15px;
  color: var(--second-text-color);
  text-transform: uppercase;

  box-shadow: 0 4px 6px rgba(225, 225, 225, 0.2);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

@media (hover: hover) {
  .hero-button:hover {
    transform: scale(1.1);
  }
}

.hero-button:active {
  transform: scale(0.95);
}

.hero-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.features {
  padding-top: 100px;
  padding-inline: 20px;
}

@media screen and (min-width: 1280px) {
  .features {
    padding-top: 150px;
  }
}

.features-title {
  margin-bottom: 40px;
  font-family: var(--title-font-family);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--second-text-color);
  text-transform: uppercase;
  text-align: left;

  border-bottom: 1px solid var(--second-text-color);
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .features-title {
    margin-bottom: 60px;
    font-size: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .features-title {
    margin-bottom: 80px;
    font-size: 44px;
  }
}

.features-list {
  list-style-type: none;
}

@media screen and (min-width: 768px) {
  .features-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media screen and (min-width: 1280px) {
  .features-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

.features-item {
  list-style-type: none;
  width: 100%;
  padding: 30px 20px;
  margin: 0 auto;
  margin-bottom: 20px;
  background-color: #1d1d1b;
  border-radius: 7px;
  -webkit-transition: -webkit-box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (min-width: 768px) {
  .features-item {
    width: 354px;
    padding: 40px 20px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1280px) {
  .features-item {
    width: 280px;
    padding: 40px 20px;
    margin-bottom: 0;
  }
}

.features-item:hover,
.features-item:focus {
  -webkit-box-shadow:
    1px 4px 6px 0px rgba(0, 0, 0, 0.1607843137),
    0px 4px 4px 0px rgba(0, 0, 0, 0.0588235294),
    0px 1px 1px 0px rgba(0, 0, 0, 0.1215686275);
  box-shadow:
    1px 4px 6px 0px rgba(0, 0, 0, 0.1607843137),
    0px 4px 4px 0px rgba(0, 0, 0, 0.0588235294),
    0px 1px 1px 0px rgba(0, 0, 0, 0.1215686275);
}

.features-icon-thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  margin-bottom: 30px;
  border-radius: 50%;
  background-color: var(--section-bg-color);
}

@media screen and (min-width: 768px) {
  .features-icon-thumb {
    width: 55px;
    height: 55px;
  }
}

@media screen and (min-width: 1280px) {
  .features-icon-thumb {
    width: 70px;
    height: 70px;
  }
}

.features-icon {
  fill: var(--second-text-color);
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 768px) {
  .features-icon {
    width: 25px;
    height: 25px;
  }
}

@media screen and (min-width: 1280px) {
  .features-icon {
    width: 35px;
    height: 35px;
  }
}

.features-item-title {
  margin-bottom: 20px;
  font-family: var(--title-font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: var(--second-text-color);
}

@media screen and (min-width: 768px) {
  .features-item-title {
    font-size: 17px;
  }
}

@media screen and (min-width: 1280px) {
  .features-item-title {
    font-size: 20px;
  }
}

.features-text {
  font-family: var(--primary-font-family);
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  color: var(--second-text-color);
}

@media screen and (min-width: 768px) {
  .features-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .features-text {
    font-size: 17px;
  }
}

.benefits {
  padding-top: 100px;
  padding-bottom: 50px;
  padding-inline: 20px;
}

.benefits-title {
  margin-bottom: 40px;
  font-family: var(--title-font-family);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--second-text-color);
  text-transform: uppercase;
  text-align: left;

  border-bottom: 1px solid var(--second-text-color);
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .benefits-title {
    margin-bottom: 60px;
    font-size: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .benefits-title {
    margin-bottom: 80px;
    font-size: 44px;
  }
}

/* Верхня частина - обгортка (з'являється на планшетній та десктопній версіях */

@media screen and (min-width: 768px) {
  .benefits-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .benefits-wrapper {
    gap: 30px;
    width: 1240px;
  }
}

/* Верхня частина - права сторона */

.benefits-right-side {
  width: 100%;
  height: 250px;
  padding: 40px 0;
  margin: 0 auto;
  margin-bottom: 10px;
  border-radius: 7px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8)), url(../img/salary.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #c4c4c4;
  transition: box-shadow 250ms;
}

@media screen and (min-width: 768px) {
  .benefits-right-side {
    width: 354px;
    height: 275px;
  }
}

@media screen and (min-width: 1280px) {
  .benefits-right-side {
    width: 605px;
    height: 300px;
  }
}

.benefits-right-side:hover,
.benefits-left-side:focus {
  -webkit-box-shadow:
    1px 6px 6px 0px rgba(0, 0, 0, 0.1607843137),
    0px 4px 4px 0px rgba(0, 0, 0, 0.0588235294),
    1px 6px 6px 0px rgba(0, 0, 0, 0.1215686275);
  box-shadow:
    1px 6px 6px 0px rgba(0, 0, 0, 0.1607843137),
    0px 4px 4px 0px rgba(0, 0, 0, 0.0588235294),
    1px 6px 6px 0px rgba(0, 0, 0, 0.1215686275);
}

/* Верхня частина - ліва сторона */

@media screen and (min-width: 768px) {
  .benefits-left-side {
    width: 354px;
    height: 275px;
  }
}

@media screen and (min-width: 1280px) {
  .benefits-left-side {
    width: 605px;
    height: 300px;
    padding: 30px 0;
  }
}

.benefits-subtitle {
  margin-bottom: 40px;
  font-family: var(--primary-font-family);
  font-size: 20px;
  font-weight: 400;
  color: var(--second-text-color);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .benefits-subtitle {
    padding: 70px 0;
    margin-bottom: 0;
    font-size: 22px;
  }
}

@media screen and (min-width: 1280px) {
  .benefits-subtitle {
    font-size: 25px;
  }
}

/* Нижня частина (чотири item) */

.benefits-list {
  list-style-type: none;
}

@media screen and (min-width: 768px) {
  .benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media screen and (min-width: 1280px) {
  .benefits-list {
    display: flex;
    justify-content: center;
    gap: 40px;
  }
}

.benefits-item {
  width: 100%;
  height: 250px;
  padding: 40px 0;
  margin-bottom: 10px;
  border-radius: 7px;
  transition: box-shadow 250ms;
}

@media screen and (min-width: 768px) {
  .benefits-item {
    width: 354px;
    height: 275px;
    padding: 45px 0 0;
    border-radius: 7px;
  }
}

@media screen and (min-width: 1280px) {
  .benefits-item {
    width: 280px;
    height: 300px;
    padding: 45px 0 0;
    border-radius: 7px;
  }
}

.benefits-item:hover,
.benefits-item:focus {
  -webkit-box-shadow:
    1px 6px 6px 0px rgba(0, 0, 0, 0.1607843137),
    0px 4px 4px 0px rgba(0, 0, 0, 0.0588235294),
    1px 6px 6px 0px rgba(0, 0, 0, 0.1215686275);
  box-shadow:
    1px 6px 6px 0px rgba(0, 0, 0, 0.1607843137),
    0px 4px 4px 0px rgba(0, 0, 0, 0.0588235294),
    1px 6px 6px 0px rgba(0, 0, 0, 0.1215686275);
}

.benefits-item:nth-child(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8)), url(../img/money.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #c4c4c4;
}

.benefits-item:nth-child(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8)), url(../img/tax.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #c4c4c4;
}

.benefits-item:nth-child(3) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8)), url(../img/business.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #c4c4c4;
}

.benefits-item:nth-child(4) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8)), url(../img/people.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #c4c4c4;
}

.benefits-text {
  margin-bottom: 20px;
  font-family: var(--title-font-family);
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  color: var(--second-text-color);
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .benefits-text {
    font-size: 22px;
  }
}

@media screen and (min-width: 1280px) {
  .benefits-text {
    font-size: 25px;
  }
}

.benefits-subtext {
  margin-bottom: 10px;
  font-family: var(--primary-font-family);
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  color: var(--second-text-color);
}

@media screen and (min-width: 768px) {
  .benefits-subtext {
    font-size: 17px;
  }
}

@media screen and (min-width: 1280px) {
  .benefits-subtext {
    font-size: 18px;
  }
}

.benefits-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 200px;
  padding: 20px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .benefits-link {
    padding: 25px 20px;
  }
}

@media screen and (min-width: 1280px) {
  .benefits-link {
    padding: 30px 20px;
  }
}

.benefits-link-text {
  font-family: var(--primary-font-family);
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  color: var(--second-text-color);

  -webkit-transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (min-width: 768px) {
  .benefits-link-text {
    font-size: 19px;
  }
}

@media screen and (min-width: 1280px) {
  .benefits-link-text {
    font-size: 20px;
  }
}

.benefits-link:hover .benefits-link-text {
  color: var(--active-text-color);
}

.benefits-icon {
  width: 60px;
  height: 60px;
  fill: #ffffff;

  -webkit-transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-link:hover .benefits-icon {
  fill: var(--active-text-color);
}

.desk {
  padding: 80px 0 30px 0;
  background: #ffffff;
  padding-inline: 20px;
}

@media screen and (min-width: 768px) {
  .desk {
    font-size: 19px;
  }
}

@media screen and (min-width: 1280px) {
  .desk {
    padding: 100px 0 60px 0;
  }
}

.desk-title {
  margin-bottom: 15px;
  font-family: var(--title-font-family);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--primary-text-color);
  text-transform: uppercase;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .desk-title {
    margin-bottom: 20px;
    font-size: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .desk-title {
    margin-bottom: 30px;
    font-size: 44px;
  }
}

.desk-subtitle {
  font-family: var(--subtitle-font-family);
  font-weight: 400;
  font-size: 25px;
  color: var(--primary-text-color);
  text-align: center;
  margin-bottom: 70px;
}

@media screen and (min-width: 768px) {
  .desk-subtitle {
    margin-bottom: 75px;
    font-size: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .desk-subtitle {
    margin-bottom: 80px;
    font-size: 35px;
  }
}

/* Обгортка - з'являється на десктопній версії */

@media screen and (min-width: 1280px) {
  .desk-wrapper {
    display: flex;
    justify-content: center;
    width: 1240px;
    margin: 0 auto;
  }
}

/* Ліва частина */

@media screen and (min-width: 768px) {
  .desk-left-side {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1280px) {
  .desk-left-side {
    width: 590px;
  }
}

.company-name {
  margin-bottom: 10px;
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--primary-text-color);
  text-transform: uppercase;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .company-name {
    font-size: 23px;
  }
}

@media screen and (min-width: 1280px) {
  .company-name {
    font-size: 30px;
  }
}

.desk-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .desk-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1280px) {
  .desk-logo {
    width: 170px;
    height: 170px;
    margin-bottom: 0;
  }
}

/* Права частина */

@media screen and (min-width: 1280px) {
  .desk-right-side {
    width: 650px;
    padding-right: 120px;
  }
}

.desk-text {
  font-family: var(--primary-font-family);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: var(--primary-text-color);
}

@media screen and (min-width: 768px) {
  .desk-text {
    font-size: 22px;
  }
}

@media screen and (min-width: 1280px) {
  .desk-text {
    margin-bottom: 50px;
    font-size: 25px;
  }
}

.desk-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 40px 60px 40px 80px;
}

@media screen and (min-width: 768px) {
  .desk-link {
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .desk-link {
    padding: 40px 40px 40px 110px;
  }
}

.desk-link-text {
  font-family: var(--primary-font-family);
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  color: var(--primary-text-color);
  text-transform: uppercase;

  -webkit-transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (min-width: 768px) {
  .desk-link-text {
    font-size: 20px;
  }
}

@media screen and (min-width: 1280px) {
  .desk-link-text {
    font-size: 25px;
  }
}

.desk-link:hover .desk-link-text {
  color: var(--active-text-color);
}

.desk-icon {
  width: 50px;
  height: 50px;
  fill: var(--primary-text-color);

  -webkit-transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (min-width: 768px) {
  .desk-icon {
    width: 60px;
    height: 60px;
  }
}

@media screen and (min-width: 1280px) {
  .desk-icon {
    width: 70px;
    height: 70px;
  }
}

.desk-link:hover .desk-icon {
  fill: var(--active-text-color);
}

.reviews {
  padding: 50px 0;
  padding-inline: 20px;
}

@media screen and (min-width: 768px) {
  .reviews {
    padding: 70px 0;
  }
}

@media screen and (min-width: 1280px) {
  .reviews {
    padding: 100px 0;
  }
}

.reviews-title {
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-family: var(--title-font-family);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--second-text-color);
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid var(--second-text-color);
}

@media screen and (min-width: 768px) {
  .reviews-title {
    font-size: 40px;
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1280px) {
  .reviews-title {
    font-size: 44px;
    margin-bottom: 80px;
  }
}

/* Слайдер (локальные стили), основные в папке ScrollSlider(файл - style.css) */

.container2 {
  max-width: 230px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .container2 {
    max-width: 470px;
  }
}

@media screen and (min-width: 1280px) {
  .container2 {
    max-width: 710px;
  }
}

.scroll-slider {
  position: relative;
}

/* Кнопки слайдера */

.scroll-slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  justify-content: center;
  align-items: center;

  width: 50px;
  height: 50px;

  background-color: #1d1d1b;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.scroll-slider-button.prev {
  left: -60px;
}

.scroll-slider-button.next {
  right: -60px;
}

@media (hover: hover) {
  .scroll-slider-button:hover {
    transform: translateY(-50%) scale(1.1);
    background-color: #e0e0e0;
  }

  .scroll-slider-button:hover .slider-button-icon {
    fill: var(--active-text-color);
  }
}

.scroll-slider-button:active {
  transform: translateY(-50%) scale(0.95);
}

.scroll-slider-button:active .slider-button-icon {
  fill: var(--active-text-color);
}

.scroll-slider-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.slider-button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  fill: var(--second-text-color);
}

/* Список отзывов в слайдере */

.reviews-list {
  display: flex;
  gap: 10px;
  list-style-type: none;
}

.reviews-item {
  position: relative;

  width: 230px;
  height: 400px;
  background-color: #1d1d1b;
  border-radius: 6px;
}

.reviews-item-name {
  padding: 20px 20px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--second-text-color);
}

.reviews-item-text {
  width: 230px;
  height: 220px;
  overflow: auto;
  font-family: var(--primary-font-family);
  font-size: 17px;
  font-weight: 400;
  color: var(--second-text-color);
  padding: 20px;
}

.reviews-item-text::-webkit-scrollbar {
  width: 4px;
}

.reviews-item-text::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-item-text::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.reviews-item-text::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 1);
}

.reviews-item-text {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.9) transparent;
}

.reviews-foto-thumb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 75px;
  z-index: 2;

  width: 50px;
  height: 50px;
}

.reviews-foto {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 50%;
  border: 2px solid #1d1d1b;
}

/* Звезды в отзывах */

.reviews-star-list {
  position: absolute;
  inset-block-end: 0;
  display: flex;
  gap: 3px;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  background-color: #282828;
  width: 230px;
  height: 100px;
  border-radius: 6px;
}

.star-icon {
  fill: #ffffff;
  width: 20px;
  height: 20px;
}

.star-icon.active {
  fill: var(--active-text-color);
}

.questions {
  padding: 80px 0;
  background-color: #ffffff;
  padding-inline: 20px;
}

@media screen and (min-width: 768px) {
  .questions {
    padding: 110px 0;
  }
}

@media screen and (min-width: 1280px) {
  .questions {
    padding: 150px 20px;
  }
}

.questions-title {
  font-family: var(--title-font-family);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--primary-text-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .questions-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .questions-title {
    font-size: 35px;
    margin-bottom: 50px;
    text-align: left;
  }
}

.accent-color {
  color: var(--active-text-color);
}

/* Обгортка - з'являється на десктопній версії */

@media screen and (min-width: 1280px) {
  .wrapper {
    display: flex;
    gap: 100px;
    padding: 40px;
    border: 1px solid var(--primary-text-color);
    border-radius: 7px;
  }

  .questions-left-side {
    position: relative;
    width: 600px;
  }
}

.questions-text {
  font-family: var(--primary-font-family);
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-text-color);
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .questions-text {
    font-size: 22px;
    margin-bottom: 70px;
  }
}

@media screen and (min-width: 1280px) {
  .questions-text {
    font-size: 25px;
    text-align: left;
  }
}

.questions-logo {
  display: none;
}

@media screen and (min-width: 1280px) {
  .questions-logo {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;

    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--primary-text-color);
    text-transform: uppercase;
  }
}

.bottom-registration {
  padding: 0 20px 80px 20px;
  background-color: #ffffff;
  padding-inline: 20px;
  margin-top: -3px;
}

@media screen and (min-width: 768px) {
  .bottom-registration {
    padding-bottom: 110px;
  }
}

@media screen and (min-width: 1280px) {
  .bottom-registration {
    padding-bottom: 150px;
  }
}

.bottom-registration-title {
  font-family: var(--title-font-family);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--primary-text-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .bottom-registration-title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .bottom-registration-title {
    font-size: 35px;
    margin-bottom: 50px;
  }
}

.contacts-form-button {
  display: block;
  margin: 0 auto;
  margin-top: 50px;
  width: 240px;
  padding: 20px 0;
  background-color: var(--active-text-color);
  border: none;
  border-radius: 5px;

  font-family: var(--title-font-family);
  font-size: 15px;
  color: var(--second-text-color);
  text-transform: uppercase;

  box-shadow: 0 4px 6px rgba(225, 225, 225, 0.2);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

@media (hover: hover) {
  .contacts-form-button:hover {
    transform: scale(1.1);
  }
}

.contacts-form-button:active {
  transform: scale(0.95);
}

.contacts-form-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}