html {
  font-size: 10px;
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

*,
*:before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  max-width: 1290px;
  margin: 0 auto;
}

.tabs__caption li:before {
  display: none;
}

.banner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background: url(../img/alfaopt\ feedback.png);
  width: 100%;
  background-size: cover;
  height: 450px;
  background-position: top center;
  border-radius: 1.5rem;
}

.banner-text {
  font-size: 2rem;
  color: #131313;
  text-align: left;
  max-width: 50%;
  margin: auto 5rem;
}

.banner-text h2 {
  line-height: 1.5;
  font-size: 3rem;
  font-weight: 400;
  color: #242424;
  margin-bottom: 1rem;
  font-weight: 600;
}

.banner-text p {
  font-size: 1.8rem;
  color: #131313;
  margin-top: 0;
  line-height: 1.7;
  max-width: 80%;
}

/* Блок описание */

.description {
  margin-top: 80px;
}

.description h3 {
  font-size: 3rem;
  color: #222;
  text-align: justify;
  max-width: 80%;
  margin: 0 auto;
  line-height: 1.5;
}

.card-attention {
  padding: 3rem;
  border-radius: 1rem;
  background-color: #c50026;
  margin-top: 15px;
  margin-bottom: 50px;
}

.card-attention p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

.description-cards {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.description-card {
  background-color: #f2f2f2;
  border-radius: 15px;
  padding: 30px 25px 20px;
  height: 120px;
  cursor: pointer;
}

.description-card-text h3 {
  font-size: 2rem;
  margin: 0;
}

.description-card-img {
  display: flex;
  justify-content: flex-end;
}

.description-card-img img {
  width: 40px;
  height: 100%;
}

.description-card:hover {
  transform: scale(1.03);
  transition: 0.25s;
}

.banner-mob {
  display: none;
}

.delivery {
  margin-top: 120px;
}

.delivery img {
  width: 100%;
  border-radius: 15px;
  margin-top: 15px;
}

.visible-mob {
  display: none;
}

.delivery h2 {
  font-size: 3rem;
  color: #222;
  text-align: justify;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  line-height: 1.5;
}

.delivery h5 {
  font-size: 2rem;
  color: #222;
}

/* Accordion */
.accordion {
  width: 100%;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-body {
  display: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  background: #f0eeee;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 1.5rem;
}

.accordion-body__contents {
  margin-top: 1rem;
  border-radius: 15px;
  padding: 40px 20px;
  background: #fff;
  border: 1px solid #efefef;
  color: #242424;
}

.accordion-body__contents p {
  font-size: 1.6rem;
  line-height: 1.6;
}

.accordion-header:hover {
  background: #de002b;
  color: #fff;
  position: relative;
  z-index: 5;
}

.accordion-header h4 {
  font-size: 2rem;
  margin: 0;
}

.accordion-header-ico {
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion-header-ico-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.accordion__item > .accordion-header:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  position: relative;
  transition: 0.3s all;
  transform: rotate(0deg);
  font-size: 1.6rem;
}

.accordion__item.active > .accordion-header:after {
  transform: rotate(-180deg);
}

.accordion__item.active .accordion-header {
  background: #de002b;
  color: #fff;
}

.accordion__item .accordion__item .accordion-header {
  background: #f7d407;
  color: #242424;
}
