.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.mb-5 {
  margin-bottom: 50px !important;
}

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

html {
  font-family: "Montserrat", sans-serif;
  color: #000;
}

p, .text1, .text2, .text3, .text4, .text5, .text6 {
  margin: 20px 0px;
}

p {
  font-size: 16px;
  line-height: 1.2;
}

.text1 {
  font-size: 96px;
  line-height: 0.8;
}
@media screen and (min-width: 1024px) {
  .text1 {
    font-size: 128px;
    line-height: 0.8;
  }
}

.text2 {
  font-size: 36px;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  .text2 {
    font-size: 42px;
    line-height: 1.2;
  }
}

.text3 {
  font-size: 22px;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  .text3 {
    font-size: 26px;
    line-height: 1.2;
  }
}

.text4 {
  font-size: 20px;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  .text4 {
    font-size: 22px;
    line-height: 1.2;
  }
}

.text5 {
  font-size: 18px;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  .text5 {
    font-size: 20px;
    line-height: 1.2;
  }
}

.text6 {
  font-size: 16px;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  .text6 {
    font-size: 18px;
    line-height: 1.2;
  }
}

.text7 {
  font-size: 16px;
  line-height: 1.2;
}

p.medium {
  font-size: 14px;
  line-height: 16.8px;
  margin: 20px 0px;
}

p.small {
  font-size: 12px;
  line-height: 14.4px;
  margin: 20px 0px;
}

.bold {
  font-weight: 600;
}

.text-align--left {
  text-align: left;
}
.text-align--center {
  text-align: center;
}
.text-align--right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.main-title {
  text-align: center;
}
@media (min-width: 768px) {
  .main-title {
    text-align: left;
  }
}

.text-yellow {
  color: #FED011;
}

.highlight {
  color: #C90000;
}

.highlight-yellow {
  color: #FED011;
}

a {
  color: black;
  text-decoration: none;
}

.available-packs p {
  text-align: center;
  font-weight: 700;
  color: black;
}

.button-primary {
  padding: 5px 15px;
  color: black !important;
  background: linear-gradient(180deg, #FED011 0%, #FFE062 100%);
  border: none;
  border-radius: 5px;
}

.comments__header {
  position: relative;
  padding: 40px 0;
  background: #FFE062;
}
.comments__header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 3px;
  background-color: #C90000;
}
.comments__header p {
  position: relative;
  display: inline;
  padding: 0 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 37px;
  color: #C90000;
  z-index: 10;
  background: #FFE062;
}
.comments #commentPushBlock {
  padding: 20px 0px 0px 0px;
}
.comments #comments-container {
  padding: 0px 0px 20px 0px;
}
.comments__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .comments__content {
    gap: 0px;
  }
}
.comments__content .comment {
  display: flex;
  flex-direction: column;
  justify-items: flex-end;
  gap: 20px;
}
@media (min-width: 768px) {
  .comments__content .comment {
    gap: 0px;
  }
}
.comments__content .comment__content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.comments__content .comment__content .imageMask {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #821a6f;
}
.comments__content .comment__content .imageMask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.comments__content .comment__content__text p {
  margin: 0;
  font-family: "Fira Sans";
  font-style: normal;
  font-size: 15px;
  line-height: 18px;
}
.comments__content .comment__content__text .author {
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}
.comments__content .comment__content__text .date {
  margin: 5px 0;
  font-weight: 600;
  color: #9a9a9a;
}
.comments__content .comment__content__text .text {
  font-weight: 400;
  color: #000;
}
.comments__content .comment__socials {
  display: flex;
  align-items: center;
  margin-left: auto;
  border-top: 1px solid #3e3e3e;
  padding-left: 30px;
  gap: 20px;
}
.comments__content .comment__socials a {
  color: black;
  text-decoration: none;
}
.comments__content .comment__socials p {
  margin: 10px 0px;
}
.comments__content .comment__socials .like,
.comments__content .comment__socials .dislike {
  display: flex;
  gap: 5px;
}
.comments__content .comment__socials .like p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  color: #C90000;
}
.comments__content .comment__socials .dislike p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  color: #FED011;
}
.comments__content .comment__socials .answer p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
}
.comments__content .comment--answer {
  position: relative;
  padding-left: 60px;
}
.comments__content .comment--answer::before {
  content: url("../img/answerArrow.svg");
  position: absolute;
  top: 40px;
  left: 10px;
  width: 40px;
  height: 40px;
  transform: translate(0%, -50%);
}

.form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px 0px;
  padding: 20px;
  border: 10px solid #821a6f;
  background-color: #c4c4c4;
  border-radius: 25px;
}
@media (min-width: 768px) {
  .form {
    flex-direction: row;
  }
}
.form__left {
  width: 100%;
}
@media (min-width: 768px) {
  .form__left {
    width: 50%;
  }
}
.form__left img {
  width: 80%;
  margin: 0 auto;
}
.form__right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .form__right {
    width: 50%;
  }
}
.form__right img {
  margin-bottom: 20px;
}
.form__right p {
  margin: 0;
}
.form__right .old-price {
  font-weight: 700;
  font-size: 23px;
  line-height: 27px;
  text-decoration: line-through;
}
@media (min-width: 768px) {
  .form__right .old-price {
    font-size: 25px;
    line-height: 30px;
  }
}
.form__right .new-price {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
}
@media (min-width: 768px) {
  .form__right .new-price {
    font-size: 35px;
    line-height: 42px;
  }
}
.form__right form {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form__right form input {
  width: 100%;
  margin: 10px 0px;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border: none;
}
.form__right form button {
  padding: 10px 40px;
  margin: 20px 0px;
  background-color: #c23024;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  border: none;
  color: white;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  cursor: pointer;
}

.form-comment {
  font-family: "Montserrat", sans-serif;
  margin: 40px 0px;
}
.form-comment__top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.form-comment__top input {
  width: 50%;
  background: #f5f5f5;
  border: 1px solid #9a9da1;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .form-comment__top input {
    width: auto;
  }
}
.form-comment__top input::-moz-placeholder {
  color: #9a9da1;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}
.form-comment__top input:-ms-input-placeholder {
  color: #9a9da1;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}
.form-comment__top input::placeholder {
  color: #9a9da1;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}
.form-comment__top #formImage {
  display: none;
}
.form-comment__top .file-label {
  width: 50%;
  padding: 14px 12px;
  font-size: 10px;
  line-height: 16px;
  background: #ffffff;
  border: 1px solid #9a9da1;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .form-comment__top .file-label {
    width: auto;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 20px;
    text-align: left;
  }
}
.form-comment__textarea {
  width: 100%;
}
.form-comment__textarea textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  background: #f5f5f5;
  border: 1px solid #9a9da1;
  padding: 10px 20px;
}
.form-comment__textarea textarea::-moz-placeholder {
  color: #9a9da1;
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
}
.form-comment__textarea textarea:-ms-input-placeholder {
  color: #9a9da1;
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
}
.form-comment__textarea textarea::placeholder {
  color: #9a9da1;
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
}
.form-comment__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .form-comment__footer {
    flex-direction: row;
  }
}
.form-comment__footer p {
  font-weight: 700;
  font-size: 9.2884px;
  line-height: 150%;
  text-transform: uppercase;
  color: #9a9da1;
  text-align: center;
}
@media (min-width: 768px) {
  .form-comment__footer p {
    text-align: left;
  }
}
.form-comment__footer button {
  padding: 10px 20px;
  background: #3e3e3e;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  border: none;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}

.modal-pack {
  width: 80%;
  position: fixed;
  display: flex;
  align-items: center;
  gap: 10px;
  right: 50%;
  top: 10px;
  transform: translateX(50%);
  border-radius: 20px;
  box-shadow: 2px 2px 8px 0px rgb(66, 68, 90);
  padding: 10px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .modal-pack {
    width: 320px;
    right: 10px;
    top: 10px;
    transform: translateX(0%);
  }
}
.modal-pack a {
  text-decoration: none;
  color: black;
}
.modal-pack__left {
  width: 30%;
}
.modal-pack__right {
  width: 70%;
  padding-top: 10px;
}
.modal-pack__right .info {
  font-size: 14px;
  line-height: 16px;
  margin: 5px 0px;
}
.modal-pack__right .info .highlight {
  color: #C90000;
  font-weight: 700;
}
.modal-pack__right .time-ago {
  font-size: 12px;
  line-height: 14px;
  color: #9a9a9a;
  margin: 5px 0px;
}
.modal-pack .close {
  position: absolute;
  top: 5px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}

.container {
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    width: 90%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1080px;
  }
}

.header__navigation {
  background: linear-gradient(270deg, #C90000 39.03%, #6F0000 96.56%);
  padding: 15px 0;
}
.header__navigation__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .header__navigation__wrapper {
    justify-content: space-between;
  }
}
.header__navigation__menu {
  display: none;
}
@media (min-width: 768px) {
  .header__navigation__menu {
    display: block;
  }
}
.header__navigation__menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  margin: 0;
  color: white;
  list-style-type: none;
}
.header__navigation__menu ul a {
  color: white;
  text-decoration: none;
}
.header__content {
  background: url("./../img/header-img-mobile.png") #C90000;
  background-position: 0% 0;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 120px;
  color: white;
}
@media (min-width: 768px) {
  .header__content {
    background: url("./../img/header-img.png") #C90000;
    background-position: 120% 0;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 0;
  }
}
.header__content__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .header__content__wrapper {
    width: 100%;
    flex-direction: row;
  }
}
.header__content__left {
  margin: 10px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.header__content__left > * {
  margin: 0;
}
.header__content__left a {
  padding: 10px 20px;
  text-decoration: none;
}
.header__content__left ul {
  padding: 0;
  list-style-type: none;
}
.header__content__right {
  margin-left: 0px;
}
@media (min-width: 768px) {
  .header__content__right {
    margin-left: -70px;
  }
}
.header__bottom {
  background: #F6F6F6;
}
.header__bottom__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.header__bottom__wrapper img {
  margin: 20px 10px;
}
@media (min-width: 768px) {
  .header__bottom__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.section1 {
  padding: 20px 0px;
}
.section1__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section1__title {
  margin: 0px;
  margin-bottom: 20px;
  text-align: center;
}
.section1__description {
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
}
.section1__items {
  margin: 10px 0px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .section1__items {
    flex-direction: row;
  }
}
.section1__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section1__item__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .section1__item__img {
    height: auto;
  }
}
.section1__item__img img {
  width: 100%;
  height: 100%;
}
.section1__item__content {
  text-align: center;
}

.section2 {
  padding: 20px;
  background: #FFE062;
}
.section2__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section2__left {
  display: none;
  width: 100%;
}
@media (min-width: 768px) {
  .section2__left {
    display: block;
  }
}
.section2__left img {
  margin-top: 0px;
}
@media (min-width: 1200px) {
  .section2__left img {
    margin-top: -120px;
  }
}
.section2__right {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .section2__right {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .section2__right {
    margin-bottom: 50px;
  }
}

.cta {
  padding: 20px 0px;
  background: linear-gradient(270deg, #C90000 39.03%, #6F0000 96.56%);
}
.cta__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 568px) {
  .cta__wrapper {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .cta__wrapper {
    flex-direction: row;
  }
}
.cta__logo {
  display: none;
}
@media (min-width: 768px) {
  .cta__logo {
    display: block;
  }
}
.cta__button a {
  padding: 10px 20px;
  text-decoration: none;
}

.section3 {
  padding: 20px 0px;
}
.section3__wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.section3__title {
  margin: 0;
  margin-bottom: 20px;
}

.section4 {
  padding: 20px 0px;
  background: #FFE062;
}
.section4__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section4__title h3 {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}
.section4__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .section4__items {
    gap: 40px;
  }
}
.section4__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .section4__item--left {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .section4__item--right {
    flex-direction: row-reverse;
  }
}
.section4__item__img {
  width: 100%;
}
@media (min-width: 768px) {
  .section4__item__img {
    width: 60%;
  }
}
.section4__item__img img {
  width: 100%;
}
.section4__item__content {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .section4__item__content {
    width: 40%;
    text-align: left;
  }
}

.infoSection {
  padding: 20px 0;
  background: #C90000;
  color: white;
  text-align: center;
}
.infoSection__wrapper h2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: white;
  text-align: center;
}
@media (min-width: 768px) {
  .infoSection__wrapper h2 {
    font-size: 26px;
    line-height: 32px;
  }
}

.section5 {
  padding: 20px 0px;
}
.section5__wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .section5__wrapper {
    flex-direction: row;
  }
}
.section5__left {
  width: 100%;
}
@media (min-width: 768px) {
  .section5__left {
    width: 60%;
  }
}
.section5__left h3 {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}
.section5__left a {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  text-decoration: none;
}
.section5__right {
  width: 100%;
}
@media (min-width: 768px) {
  .section5__right {
    width: 40%;
  }
}
.section5__right img {
  width: 100%;
}

.section6 {
  padding: 20px 0px;
  background: #FFE062;
}
.section6__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0px;
}
@media (min-width: 768px) {
  .section6__wrapper {
    gap: 20px;
  }
}
.section6 h3 {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}
.section6__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 0px;
}
@media (min-width: 768px) {
  .section6__items {
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
  }
}
.section6__item {
  width: 100%;
  max-width: 400px;
}
.section6__item__img img {
  width: 100%;
}
.section6__item__content {
  text-align: center;
  background-color: #C90000;
}
.section6__item__content p {
  margin: 0;
  margin-top: -2px;
  padding: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.section7 {
  padding: 20px 0;
}
.section7 h3 {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}
.section7__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .section7__box {
    flex-direction: row;
  }
}
.section7__box img {
  width: 100%;
}
.section7__box__left {
  width: 100%;
}
@media (min-width: 768px) {
  .section7__box__left {
    width: 50%;
  }
}
.section7__box__right {
  width: 100%;
}
@media (min-width: 768px) {
  .section7__box__right {
    width: 50%;
  }
}

.section8 {
  padding: 20px 0;
}
.section8 h3 {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}
.section8 img {
  width: 100%;
}

.section9 {
  padding: 20px 0;
  background: #FFE062;
}
.section9__wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .section9__wrapper {
    flex-direction: row;
  }
}
.section9__left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .section9__left {
    width: 50%;
  }
}
.section9__right {
  width: 100%;
}
@media (min-width: 768px) {
  .section9__right {
    width: 50%;
  }
}

.section10 {
  padding: 20px 0;
}
.section10 h3 {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}
.section10__questions {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section10__question {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
}
@media (min-width: 768px) {
  .section10__question {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
.section10__question__img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .section10__question__img {
    width: 10%;
    justify-content: flex-start;
  }
}
.section10__question__content {
  width: 100%;
}
@media (min-width: 768px) {
  .section10__question__content {
    width: 90%;
  }
}

.section11 {
  padding: 20px 0;
  background: url("./../img/section11-1-mobile.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0%;
}
@media (min-width: 768px) {
  .section11 {
    background: url("./../img/section11-1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
  }
}
@media (min-width: 1040px) {
  .section11 {
    background: url("./../img/section11-1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
  }
}
.section11 h3 {
  font-size: 15px;
  width: 100%;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .section11 h3 {
    font-size: 26px;
    line-height: 32px;
  }
}
.section11__content {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  width: 100%;
  max-width: 600px;
}
.section11__content__imgBox {
  display: flex;
  justify-content: center;
  width: 100%;
}
.section11__content img {
  display: none;
}
@media (min-width: 768px) {
  .section11__content img {
    display: block;
  }
}

.section12 {
  padding: 20px 0;
}
.section12 h3 {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
}
.section12__opinions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .section12__opinions {
    flex-direction: row;
  }
}
.section12__opinions__col {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section12__opinion {
  padding: 20px;
  background: #F7F7F7;
  border-radius: 20px;
}
.section12__opinion__credentials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section12__opinion__credentials__info__name {
  display: flex;
  align-items: center;
  gap: 5px;
}
.section12__opinion__credentials__info__name p {
  margin: 0;
  font-weight: bold;
}
.section12__opinion__credentials__info__rating {
  margin-top: 5px;
}
.section12__opinion__content p {
  font-size: 14px;
  line-height: 16px;
}

.section13 {
  padding: 20px 0px;
  background-color: #EF6262;
}
.section13__wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.section13 p {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  text-align: center;
}
.section13__imgBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section13__imgBox .mobile {
  display: flex;
}
@media (min-width: 768px) {
  .section13__imgBox .mobile {
    display: none;
  }
}
.section13__imgBox .desktop {
  display: none;
}
@media (min-width: 768px) {
  .section13__imgBox .desktop {
    display: flex;
  }
}
.section13 form {
  display: flex;
  flex-direction: column;
}
.section13 form .inputContainer {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.section13 form .inputContainer label {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 24px;
}
.section13 form .inputContainer input {
  padding: 10px 20px;
  background: #F7F7F7;
  border: 3px solid #3e3e3e;
  border-radius: 7px;
  outline: none;
}
.section13 form .inputContainer input:valid:focus {
  border: 3px solid #0ED13D;
}
.section13 form .inputContainer input:invalid:focus {
  border: 3px solid #C90000;
}
.section13 form .inputContainer input::-moz-placeholder {
  color: #CEC9C9;
}
.section13 form .inputContainer input:-ms-input-placeholder {
  color: #CEC9C9;
}
.section13 form .inputContainer input::placeholder {
  color: #CEC9C9;
}
.section13 form button {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
  background: linear-gradient(180deg, #FED011 0%, #FFE062 100%);
  border: none;
  border-radius: 7px;
  color: black;
  text-transform: uppercase;
  cursor: pointer;
}
.section13 form button .arrow {
  width: 80px;
}

.footer {
  background-color: #FFE062;
  padding: 20px 0;
}
.footer__wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer__wrapper .col {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
}
.footer__wrapper .col img {
  margin: 20px 0;
  cursor: pointer;
}
.footer__wrapper .col p {
  margin: 10px 0;
  text-align: center;
  cursor: pointer;
}
.footer__wrapper .desktop {
  display: none;
}
@media (min-width: 768px) {
  .footer__wrapper .desktop {
    display: flex;
  }
}

.copyright p {
  margin: 0;
  padding: 20px;
  text-align: center;
}