@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400..500&display=swap");
@font-face {
  font-family: "Involve";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Involve-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Involve";
  font-weight: 700;
  font-style: italic;
  src: url("../fonts/Involve-BoldOblique.otf") format("opentype");
}
@font-face {
  font-family: "Involve";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Involve-SemiBold.otf") format("opentype");
}
@font-face {
  font-family: "Involve";
  font-weight: 600;
  font-style: italic;
  src: url("../fonts/Involve-SemiBoldOblique.otf") format("opentype");
}
@font-face {
  font-family: "Involve";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Involve-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Involve";
  font-weight: 500;
  font-style: italic;
  src: url("../fonts/Involve-MediumOblique.otf") format("opentype");
}
@font-face {
  font-family: "Involve";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Involve-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Involve";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/Involve-Oblique.otf") format("opentype");
}
* {
  box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  background-color: #f4e5d8;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
}
body._lock {
  overflow: hidden;
}

header {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

main {
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}

@media (min-width: 320px) {
  main {
    margin-top: 81px;
  }
}

@media (min-width: 1280px) {
  main {
    margin-top: 168px;
  }
}

@media (min-width: 1440px) {
  main {
    margin-top: 172px;
  }
}

ul {
  padding: 0;
  list-style-type: none;
}

button {
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
}

a {
  text-decoration: none;
}

hr {
  background-color: rgba(163, 90, 81, 0.2);
  border: none;
  height: 1px;
  width: 100%;
}

details {
  background-color: #fef7f1;
  border: 1px solid #fef7f1;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #371211;
}
details:nth-last-child(n+2) {
  margin-bottom: 8px;
}
details summary {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: "Involve", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  color: #371211;
}
details summary:after {
  content: url("../images/svg/plus.svg");
}
@media (hover: hover) {
  details:not([open]):hover {
    border-color: #a35a51;
  }
  details:not([open]):hover summary:after {
    content: url("../images/svg/plus_marsala.svg");
  }
}
details[open] {
  border-color: #a35a51;
}
details[open] summary:after {
  content: url("../images/svg/minus.svg");
}
@media (min-width: 320px) {
  details {
    font-size: 12px;
  }
  details summary {
    padding: 16px 16px 16px 16px;
    font-size: 14px;
  }
  details div {
    padding: 0px 16px 16px 16px;
  }
  details[open] summary {
    padding-bottom: 8px;
  }
}
@media (min-width: 768px) {
  details {
    font-size: 14px;
  }
  details summary {
    padding: 20px 20px;
    font-size: 16px;
  }
  details div {
    padding: 0px 20px 20px 20px;
  }
  details[open] summary {
    padding-bottom: 12px;
  }
}
@media (min-width: 1280px) {
  details {
    font-size: 16px;
  }
  details summary {
    font-size: 18px;
  }
}

@media (min-width: 320px) {
  .wrapper {
    padding: 0px 10px;
  }
}
@media (min-width: 360px) {
  .wrapper {
    padding: 0px 20px;
  }
}
@media (min-width: 768px) {
  .wrapper {
    padding: 0px 34px;
  }
}
@media (min-width: 1024px) {
  .wrapper {
    padding: 0px 42px;
  }
}
@media (min-width: 1280px) {
  .wrapper {
    padding: 0px 50px;
  }
}
@media (min-width: 1440px) {
  .wrapper {
    padding: 0px 70px;
  }
}

.title {
  font-family: "Involve", sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 110%;
  color: #371211;
}
@media (min-width: 320px) {
  .title {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .title {
    font-size: 42px;
  }
}
@media (min-width: 1280px) {
  .title {
    font-size: 58px;
  }
}
@media (min-width: 1800px) {
  .title {
    font-size: 80px;
  }
}

.button {
  display: inline-block;
  background-color: #a35a51;
  border-radius: 100px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #f4e5d8;
}
.button-container {
  display: flex;
}
@media (min-width: 320px) {
  .button-container:has(.aun-pagination) {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .button-container:has(.aun-pagination) {
    margin-top: 40px;
  }
}
@media (min-width: 1440px) {
  .button-container:has(.aun-pagination) {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .button-container {
    justify-content: center;
  }
}
@media (min-width: 320px) {
  .button {
    padding: 12px 30px;
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .button {
    padding: 16px 40px;
    font-size: 16px;
  }
}
@media (hover: hover), (pointer: coarse) {
  .button:hover, .button:active {
    cursor: pointer;
    background-color: #8a433b;
  }
}
@media (min-width: 320px) {
  .button._margin {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .button._margin {
    margin-top: 40px;
  }
}

.button-arrow {
  font-family: "Involve", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  color: #371211;
  position: relative;
}
@media (hover: hover), (pointer: coarse) {
  .button-arrow {
    cursor: pointer;
  }
  .button-arrow:hover, .button-arrow:active {
    color: #a35a51;
  }
  .button-arrow:hover:after, .button-arrow:active:after {
    background-image: url("../images/svg/arrow_left_marsala.svg");
  }
}
.button-arrow:after {
  content: "";
  background-image: url("../images/svg/arrow_left.svg");
  background-size: contain;
  display: inline-block;
  position: absolute;
}
.button-arrow._left:after {
  left: 0px;
  transform: scale(-1);
}
.button-arrow._right:after {
  right: 0px;
  top: 0;
  transform: translateY(4%);
}
@media (min-width: 320px) {
  .button-arrow {
    font-size: 12px;
  }
  .button-arrow:after {
    width: 16px;
    height: 16px;
  }
  .button-arrow._left {
    padding-left: 24px;
    padding-top: 1.5px;
    padding-bottom: 1.5px;
  }
  .button-arrow._right {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .button-arrow {
    font-size: 14px;
  }
  .button-arrow._left {
    padding-left: 32px;
    padding-top: 0.5px;
    padding-bottom: 0.5px;
  }
  .button-arrow._left:after {
    transform: translateY(4%) scale(-1);
  }
  .button-arrow._right {
    padding-top: 1.5px;
    padding-bottom: 1.5px;
    padding-right: 32px;
  }
  .button-arrow:after {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1440px) {
  .button-arrow {
    font-size: 16px;
  }
  .button-arrow._right {
    padding-top: 0.5px;
    padding-bottom: 0.5px;
  }
}

.breadcrumbs {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  font-family: "Involve", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #a35a51;
  text-transform: lowercase;
}
.breadcrumbs a {
  color: #371211;
}
.breadcrumbs a:focus {
  color: #a35a51;
}
@media (hover: hover) {
  .breadcrumbs a:hover {
    color: #a35a51;
  }
}
.breadcrumbs span {
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../images/svg/arrow_left.svg");
  background-size: 16px;
}
@media (min-width: 320px) {
  .breadcrumbs {
    margin-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .breadcrumbs {
    margin-bottom: 60px;
  }
}

.cookies {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: #fef7f1;
}
.cookies.hide {
  display: none;
}
.cookies__title {
  font-family: "Involve", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: #371211;
}
.cookies__button-accept {
  display: block;
  text-align: center;
  margin-bottom: 12px;
}
.cookies__button-about {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: #371211;
  text-align: center;
}
.cookies__button-about:hover, .cookies__button-about:focus {
  color: #a35a51;
}
@media (min-width: 320px) {
  .cookies {
    max-width: 320px;
    padding: 16px 16px;
  }
  .cookies__title {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) {
  .cookies {
    max-width: 308px;
    right: 34px;
    bottom: 20px;
  }
}
@media (min-width: 1280px) {
  .cookies {
    right: 50px;
  }
}
@media (min-width: 1440px) {
  .cookies {
    right: 70px;
    max-width: 420px;
    padding: 20px 20px;
  }
  .cookies__title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.page {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 320px) {
  .page {
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .page {
    gap: 40px;
  }
}
@media (min-width: 1280px) {
  .page {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .page__button-back {
    position: absolute;
    top: 0;
    left: 0;
  }
  .page__container {
    width: 66.67%;
  }
}
@media (min-width: 1800px) {
  .page__container {
    width: 50%;
  }
}

.faq h2 {
  font-family: "Involve", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  color: #371211;
  margin-bottom: 20px;
}
@media (min-width: 320px) {
  .faq h2 {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .faq h2 {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .faq h2 {
    font-size: 20px;
  }
}

.socials {
  display: -webkit-flex;
  display: flex;
  gap: 8px;
}
.socials .social {
  background-size: contain;
}
.socials .social._whatsapp {
  background-image: url("../images/svg/whatsapp.svg");
}
.socials .social._whatsapp:hover, .socials .social._whatsapp:active {
  background-image: url("../images/svg/whatsapp_active.svg");
}
.socials .social._viber {
  background-image: url("../images/svg/viber.svg");
}
.socials .social._viber:hover, .socials .social._viber:active {
  background-image: url("../images/svg/viber_active.svg");
}
.socials .social._inst {
  background-image: url("../images/svg/inst.svg");
}
.socials .social._inst:hover, .socials .social._inst:active {
  background-image: url("../images/svg/inst_active.svg");
}
@media (min-width: 320px) {
  .socials .social {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1280px) {
  .socials .social {
    width: 50px;
    height: 50px;
  }
}

.aun-pagination {
  display: inline-flex;
  gap: 12px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 8px 8px;
  background-color: #fef7f1;
  border-radius: 87px;
  border: 1px solid rgba(163, 90, 81, 0.2);
}
.aun-pagination__link {
  width: 30px;
  height: 30px;
}
.aun-pagination__link.prev, .aun-pagination__link.next {
  border-radius: 44px;
  background-color: #f4e5d8;
  color: #371211;
  font-weight: 700;
}
.aun-pagination__link.prev {
  margin-right: 8px;
}
.aun-pagination__link.next {
  margin-left: 8px;
}
.aun-pagination__link a.next, .aun-pagination__link a.prev {
  font-weight: 700;
}
.aun-pagination__link a:hover, .aun-pagination__link a:focus {
  border-radius: 40px;
  background-color: #a35a51;
  color: #fef7f1;
}
.aun-pagination__link a,
.aun-pagination__link span {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: #371211;
}
@media (min-width: 768px) {
  .aun-pagination__link {
    width: 40px;
    height: 40px;
  }
  .aun-pagination__link a,
  .aun-pagination__link span {
    font-size: 16px;
  }
}
.aun-pagination .current {
  border-radius: 40px;
  background-color: #a35a51;
  color: #fef7f1;
}

.form__success {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.form__success h2 {
  font-family: "Involve", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 120%;
  color: #371211;
}
.form__success p {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  color: #371211;
}
.form__success .button {
  width: 100%;
  text-align: center;
}
.form__success .button-container {
  margin-top: auto;
}
@media (min-width: 320px) {
  .form__success img {
    margin-bottom: 40px;
    width: 60px;
    height: 60px;
  }
  .form__success h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .form__success p {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .form__success-container {
    width: 60%;
  }
  .form__success h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .form__success p {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  .form__success-container {
    width: 70%;
  }
  .form__success img {
    margin-bottom: 60px;
    width: 80px;
    height: 80px;
  }
  .form__success h2 {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .form__success h2 {
    font-size: 38px;
  }
  .form__success p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .form__success {
    height: 442px;
  }
  .form__success h2 {
    font-size: 52px;
    margin-bottom: 24px;
  }
  .form__success p {
    font-size: 24px;
  }
}

.doc {
  position: relative;
  padding-left: 34px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #371211;
}
.doc::before {
  content: url("../images/svg/document.svg");
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}
.doc:hover, .doc:focus, .doc:active {
  color: #a35a51;
}
.doc:hover::before, .doc:focus::before, .doc:active::before {
  content: url("../images/svg/document_hover.svg");
}
@media (min-width: 320px) {
  .doc {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .doc {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  .doc {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */