@import url("https://fonts.googleapis.com/css?family=Manrope:200,300,regular,500,600,700,800");
html {
  scroll-behavior: smooth;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

body._lock {
  overflow: hidden;
  touch-action: none;
}
.container {
  max-width: 83.75rem;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
}

body {
  color: #2c2e35;
  line-height: 1;
  font-family: "Manrope";
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Manrope";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

h1,
.title {
  font-size: 60px;
  line-height: 1.3;
  font-weight: 800;
  color: #28382b;
}
@media (max-width: 62em) {
  h1,
  .title {
    font-size: 40px;
  }
}
@media (max-width: 48em) {
  h1,
  .title {
    font-size: 32px;
  }
}
@media (max-width: 30em) {
  h1,
  .title {
    font-size: 24px;
  }
}

h2,
.title--second {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: #28382b;
}
@media (max-width: 62em) {
  h2,
  .title--second {
    font-size: 32px;
  }
}
@media (max-width: 48em) {
  h2,
  .title--second {
    font-size: 24px;
  }
}
@media (max-width: 30em) {
  h2,
  .title--second {
    font-size: 20px;
  }
}

h3,
.title--third {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: #28382b;
}
@media (max-width: 62em) {
  h3,
  .title--third {
    font-size: 24px;
  }
}
@media (max-width: 48em) {
  h3,
  .title--third {
    font-size: 20px;
  }
}
@media (max-width: 30em) {
  h3,
  .title--third {
    font-size: 18px;
  }
}

p {
  font-weight: 300;
  line-height: 1.4;
  font-size: 20px;
}
@media (max-width: 62em) {
  p {
    font-size: 18px;
  }
}
@media (max-width: 48em) {
  p {
    font-size: 16px;
  }
}

.accordion {
  margin-bottom: 30px;
}

.accordion__item {
  position: relative;
  background-color: #f0f2ef;
  border-radius: 24px;
}
.accordion__item:not(:last-of-type) {
  margin-bottom: 16px;
}

.accordion__title {
  width: 100%;
  text-align: left;
  font-size: 20px;
  background-color: transparent;
  position: relative;
  padding: 16px 80px 16px 24px;
}
@media (max-width: 48em) {
  .accordion__title {
    padding-right: 48px;
  }
}
.accordion__title::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 15px;
  width: 32px;
  height: 32px;
  background-image: url("../img/icons/accordion-arrow.svg");
  background-repeat: no-repeat;
  transition: 0.3s transform;
}
.accordion__title_active::after {
  transform: translateY(-50%) rotateX(180deg);
}

.accordion._init .accordion__title {
  cursor: pointer;
}

.accordion._init .accordion__title::after {
  transform: rotateX(-180deg);
}

.accordion._init .accordion__title._active::after {
  transform: rotate(0deg);
}

.accordion__text {
  padding: 0px 48px 6px 24px;
  text-align: left;
  line-height: 1.6;
  font-size: 16px;
  transform: translateY(-10px);
}

section {
  padding: 86px 0;
}
@media (max-width: 62em) {
  section {
    padding: 64px 0;
  }
}
@media (max-width: 48em) {
  section {
    padding: 32px 0;
  }
}

.header {
  padding: 22px 0;
  font-size: 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 3;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 46, 53, 0.25);
  backdrop-filter: blur(24px);
}
.header__logo {
  position: relative;
  z-index: 3;
  flex: auto 0 1;
}
.header__logo img {
  max-width: 100%;
}
@media (max-width: 78.4375em) {
  .header__logo img {
    max-width: 200px;
  }
}
@media (max-width: 62em) {
  .header__logo {
    margin-right: auto;
  }
}
.header .container {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 78.4375em) {
  .header .container {
    gap: 24px;
  }
}
@media (max-width: 62em) {
  .header .container {
    justify-content: stretch;
  }
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 3;
}
.header__buttons button {
  padding: 18px 50px !important;
  background-color: #c87f4a !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.header__buttons button:hover {
  background-color: #fff !important;
  color: #c87f4a !important;
}
@media (max-width: 62em) {
  .header__buttons {
    gap: 12px;
  }
}
@media (max-width: 48em) {
  .header__buttons {
    display: none;
  }
}
@media (max-width: 78.4375em) {
  .header .button {
    padding: 18px;
  }
}

.nav {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.nav._active .nav__inner {
  background-color: #c87f4a;
  top: 0px;
  padding: 100px 0 30px;
}
@media (max-width: 48em) {
  .nav._active .nav__inner {
    padding: 90px 30px;
  }
}
.nav__inner {
  transition: top 0.3s;
}
@media (max-width: 62em) {
  .nav__inner {
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 4;
    position: fixed;
    top: -100%;
    overflow: auto;
    z-index: 2;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 78.4375em) {
  .nav__list {
    gap: 24px;
  }
}
@media (max-width: 62em) {
  .nav__list {
    flex-direction: column;
    font-size: 24px;
  }
}
.nav__list button {
  padding: 18px 50px !important;
  background-color: #c87f4a !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.nav__list button:hover {
  background-color: #fff !important;
  color: #c87f4a !important;
}
.nav__list .hidden-element {
  display: none;
}
@media (max-width: 48em) {
  .nav__list .hidden-element {
    display: block;
  }
  .nav__list .hidden-element .button {
    font-size: 24px !important;
    display: inline-block;
    max-width: none;
  }
}
.nav__link {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
}
.nav__link:hover, .nav__link.active {
  color: #c87f4a;
}
.nav__link.active {
  font-weight: 700;
}

.burger {
  display: none;
  z-index: 6;
}
.burger._active span {
  height: 0;
}
.burger._active span::before {
  top: calc(50% - 0.0625rem);
  transform: rotate(45deg);
}
.burger._active span::after {
  top: calc(50% - 0.0625rem);
  transform: rotate(-45deg);
}
.burger span {
  display: block;
  background-color: #fff;
  height: 2px;
  width: 100%;
}
.burger span::after, .burger span::before {
  content: "";
  background-color: #fff;
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  transition: top 0.3s, transform 0.3s;
}
.burger span::after {
  top: 0;
  left: 0;
}
.burger span::before {
  bottom: 0;
  left: 0;
}
@media (max-width: 62em) {
  .burger {
    display: block;
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
}

.hero {
  min-height: 900px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 62em) {
  .hero {
    min-height: 700px;
    padding-top: 16px;
  }
}
@media (max-width: 48em) {
  .hero {
    min-height: 500px;
  }
}
.hero .container {
  flex-basis: 100%;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 655px;
  color: #fff;
  padding-left: 65px;
}
@media (max-width: 48em) {
  .hero__inner {
    padding-left: 0;
  }
}
.hero h1 {
  position: relative;
  text-transform: uppercase;
  z-index: 1;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 62em) {
  .hero h1 {
    transform: translate(0);
    text-align: left;
  }
}
.hero p {
  position: relative;
  z-index: 1;
  font-size: 28px;
  margin-bottom: 48px;
  max-width: 490px;
}
@media (max-width: 62em) {
  .hero p {
    font-size: 22px;
  }
}
@media (max-width: 48em) {
  .hero p {
    font-size: 20px;
  }
}
@media (max-width: 30em) {
  .hero p {
    font-size: 18px;
  }
}
@media (max-width: 62em) {
  .hero p {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .hero p {
    margin-bottom: 24px;
  }
}
.hero button {
  padding: 18px 50px !important;
  background-color: #c87f4a !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.hero button:hover {
  background-color: #fff !important;
  color: #c87f4a !important;
}

.blog {
  padding-top: 200px;
  max-width: 1230px;
  margin: 0 auto;
}
@media (max-width: 62em) {
  .blog {
    padding-top: 164px;
  }
}
@media (max-width: 48em) {
  .blog {
    padding-top: 128px;
  }
}
.blog p {
  line-height: 1.5;
}
.blog > img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
.blog__back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c87f4a;
  font-weight: 600;
  margin-bottom: 38px;
}
.blog__back::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  transform: rotate(-180deg);
  background-repeat: no-repeat;
  background-image: url("../../img/icons/right-arrow.svg");
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(53%) sepia(99%) saturate(249%) hue-rotate(343deg) brightness(85%) contrast(101%);
}
.blog__heading {
  margin-bottom: 86px;
}
@media (max-width: 62em) {
  .blog__heading {
    margin-bottom: 64px;
  }
}
@media (max-width: 48em) {
  .blog__heading {
    margin-bottom: 32px;
  }
}
@media (max-width: 30em) {
  .blog__heading {
    margin-bottom: 24px;
  }
}
.blog__heading .title {
  font-weight: 500;
  margin-bottom: 20px;
}
.blog__heading p {
  font-size: 24px;
}
.blog__content {
  padding-top: 86px;
}
.blog__content img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  margin-bottom: 48px;
}
@media (max-width: 62em) {
  .blog__content img {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .blog__content img {
    margin-bottom: 24px;
  }
}
@media (max-width: 62em) {
  .blog__content {
    padding: 64px 0;
  }
}
@media (max-width: 48em) {
  .blog__content {
    padding: 32px 0;
  }
}
.blog__text {
  margin-bottom: 48px;
}
.blog__text:last-of-type {
  margin-bottom: 0;
}
.blog__text p {
  font-size: 18px;
}
.blog__text h2 {
  margin-bottom: 24px;
}
@media (max-width: 48em) {
  .blog__text h2 {
    margin-bottom: 18px;
  }
}
@media (max-width: 62em) {
  .blog__text {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .blog__text {
    margin-bottom: 24px;
  }
}

.button {
  padding: 18px 50px;
  background-color: #fff;
  color: #c87f4a;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #c87f4a;
  color: #fff;
}
.button--orange {
  background-color: #c87f4a;
  color: #fff;
}
.button--orange:hover {
  background-color: #fff;
  color: #c87f4a;
}
.button--arrow {
  display: flex;
  align-items: center;
  gap: 8px;
}
.button--arrow:hover:after {
  filter: brightness(0) saturate(100%) invert(55%) sepia(60%) saturate(448%) hue-rotate(343deg) brightness(89%) contrast(85%);
}
.button--arrow:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url("../../img/icons/right-arrow.svg");
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(100%) sepia(10%) saturate(7475%) hue-rotate(183deg) brightness(109%) contrast(110%);
}

.tips .container > p {
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.7;
}
@media (max-width: 62em) {
  .tips .container > p {
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  .tips .container > p {
    font-size: 18px;
  }
}
.tips .container .title--second {
  margin-bottom: 60px;
}
@media (max-width: 62em) {
  .tips .container .title--second {
    margin-bottom: 48px;
  }
}
@media (max-width: 48em) {
  .tips .container .title--second {
    margin-bottom: 32px;
  }
}
@media (max-width: 30em) {
  .tips .container .title--second {
    margin-bottom: 24px;
  }
}
.tips__list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 48em) {
  .tips__list {
    gap: 24px 16px;
    grid-template-columns: 1fr;
  }
}
.tips__item {
  background-color: #28382b;
  color: #fff;
}
.tips__item img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 62em) {
  .tips__item img {
    max-height: 250px;
  }
}
.tips__title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}
.tips__text {
  padding: 32px;
}
@media (max-width: 62em) {
  .tips__text {
    padding: 24px;
  }
}
@media (max-width: 48em) {
  .tips__text {
    padding: 16px;
  }
}
.tips__text p {
  margin-bottom: 36px;
  font-size: 16px;
}
@media (max-width: 48em) {
  .tips__text p {
    margin-bottom: 16px;
  }
}
.tips__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.tips__link:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url("../../img/icons/right-arrow.svg");
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(100%) sepia(10%) saturate(7475%) hue-rotate(183deg) brightness(109%) contrast(110%);
}

.contacts {
  padding: 40px 0;
}
.contacts__inner {
  max-width: 769px;
  background-color: #c87f4a;
  margin: 0 auto;
  padding: 48px 100px;
  color: #fff;
}
@media (max-width: 48em) {
  .contacts__inner {
    padding: 24px;
  }
}
.contacts__inner .title--second {
  color: #fff;
  margin-bottom: 48px;
  font-weight: 600;
  font-size: 48px;
  text-align: center;
}
@media (max-width: 62em) {
  .contacts__inner .title--second {
    font-size: 32px;
  }
}
@media (max-width: 48em) {
  .contacts__inner .title--second {
    font-size: 24px;
  }
}
@media (max-width: 30em) {
  .contacts__inner .title--second {
    font-size: 20px;
  }
}
@media (max-width: 62em) {
  .contacts__inner .title--second {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .contacts__inner .title--second {
    margin-bottom: 24px;
  }
}
.contacts__inner textarea {
  width: 100%;
  max-width: 100%;
  height: 170px;
  font-size: 18px;
  margin-bottom: 30px;
  resize: none;
  padding: 13px 19px;
}
.contacts__inner textarea:focus {
  outline: none;
}
.contacts__send {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 48px;
}
@media (max-width: 62em) {
  .contacts__send {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .contacts__send {
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
}
.contacts__send input {
  flex: 378px 1 1;
  padding: 15px 24px;
  font-size: 18px;
}
.contacts__send input::placeholder {
  font-size: 18px;
  font-weight: 500;
}
.contacts__send input:focus {
  outline: none;
}
.contacts__send button {
  background-color: #2c2e35;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contacts__send button:hover {
  background-color: #fff;
  color: #c87f4a;
}
.contacts__send button:hover:after {
  filter: brightness(0) saturate(100%) invert(86%) sepia(43%) saturate(4023%) hue-rotate(322deg) brightness(83%) contrast(86%);
}
.contacts__send button:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url("../../img/icons/right-arrow.svg");
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(100%) sepia(10%) saturate(7475%) hue-rotate(183deg) brightness(109%) contrast(110%);
}
.contacts p {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.contacts a {
  text-align: center;
  display: block;
}

.policy {
  padding: 128px 0;
}
@media (max-width: 62em) {
  .policy {
    padding: 64px 0;
  }
}
@media (max-width: 48em) {
  .policy {
    padding: 48px 0;
  }
}
@media (max-width: 30em) {
  .policy {
    padding: 32px 0;
  }
}
.policy h1 {
  text-align: center;
  margin-bottom: 48px;
}
.policy p,
.policy li {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.policy li:before {
  content: "- ";
}
.policy a {
  text-decoration: underline;
  transition: color 0.3s;
}
.policy h2 {
  margin-bottom: 16px;
}

.footer {
  background-color: #28382b;
  color: #fff;
}
.footer__logo {
  margin-bottom: 24px;
}
@media (max-width: 62em) {
  .footer__logo {
    margin-bottom: 18px;
  }
}
@media (max-width: 48em) {
  .footer__logo {
    margin-bottom: 16px;
  }
}
.footer__logo img {
  max-width: 100%;
}
.footer__nav a {
  display: block;
  transition: 0.3s color;
}
@media (max-width: 48em) {
  .footer__nav a {
    text-align: center;
  }
}
.footer__nav a:hover {
  color: #c87f4a;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 86px 0 48px;
  gap: 32px;
}
@media (max-width: 62em) {
  .footer__top {
    padding: 48px 0;
    justify-content: center;
  }
}
@media (max-width: 48em) {
  .footer__top {
    padding: 32px 0;
    flex-wrap: wrap;
  }
}
@media (max-width: 30em) {
  .footer__top {
    padding: 24px 0;
  }
}
.footer__buttons {
  flex: 370px 0 0;
}
.footer__buttons a {
  margin-right: 20px;
}
@media (max-width: 48em) {
  .footer__buttons a,
  .footer__buttons button {
    padding: 18px;
  }
}
@media (max-width: 48em) {
  .footer__buttons {
    flex-basis: auto;
  }
}
.footer__inner {
  padding: 25px 0;
  border-top: 1px solid #fff;
  gap: 16px;
  display: flex;
  justify-content: space-between;
}
.footer__inner a {
  transition: 0.3s color;
}
.footer__inner a:hover {
  color: #c87f4a;
}
.footer__inner p {
  text-align: center;
}
@media (max-width: 62em) {
  .footer__inner {
    justify-content: space-between;
  }
}
@media (max-width: 48em) {
  .footer__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 48px;
  font-weight: 600;
}
@media (max-width: 48em) {
  .footer__links {
    gap: 16px;
    flex-basis: 100%;
    justify-content: center;
  }
}
.footer__item {
  font-weight: 700;
}
.footer__buttons button {
  padding: 18px 50px !important;
  background-color: #c87f4a !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.footer__buttons button:hover {
  background-color: #fff !important;
  color: #c87f4a !important;
}
.footer a,
.footer p {
  font-size: 16px;
}

.gear {
  background-color: #28382b;
  color: #fff;
  padding: 86px 0;
}
.gear .container > p {
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: uppercase;
}
@media (max-width: 62em) {
  .gear .container > p {
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  .gear .container > p {
    font-size: 18px;
  }
}
.gear .container .title--second {
  margin-bottom: 60px;
  color: #fff;
}
@media (max-width: 62em) {
  .gear .container .title--second {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .gear .container .title--second {
    margin-bottom: 16px;
  }
}
@media (max-width: 62em) {
  .gear {
    padding: 64px 0;
  }
}
@media (max-width: 48em) {
  .gear {
    padding: 32px 0;
  }
}
.gear__list {
  display: flex;
  gap: 30px;
}
@media (max-width: 62em) {
  .gear__list {
    flex-wrap: wrap;
    gap: 32px 16px;
  }
}
.gear__item {
  flex: 1 1;
}
@media (max-width: 48em) {
  .gear__item {
    flex-basis: 300px;
  }
}
.gear__item img {
  max-width: 100%;
  width: 100%;
  margin-bottom: 24px;
  object-fit: cover;
}
@media (max-width: 62em) {
  .gear__item img {
    max-height: 250px;
  }
}
.gear__item .title--third {
  margin-bottom: 16px;
  color: #fff;
}
.gear__item p {
  font-size: 16px;
  margin-bottom: 24px;
}
.gear__link {
  color: #c87f4a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gear__link:hover:after {
  filter: brightness(0) saturate(100%) invert(55%) sepia(60%) saturate(448%) hue-rotate(343deg) brightness(89%) contrast(85%);
}
.gear__link:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url("../../img/icons/right-arrow.svg");
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(86%) sepia(43%) saturate(4023%) hue-rotate(322deg) brightness(83%) contrast(86%);
}

.how-works__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
@media (max-width: 78.4375em) {
  .how-works__inner {
    gap: 24px;
  }
}
@media (max-width: 62em) {
  .how-works__inner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.how-works__list {
  flex: 690px 1 0;
  display: grid;
  gap: 30px;
  counter-reset: howWorksList;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 62em) {
  .how-works__list {
    flex: auto 1 1;
  }
}
@media (max-width: 48em) {
  .how-works__list {
    gap: 16px;
    grid-template-columns: 1fr;
  }
}
.how-works__item {
  padding: 30px;
  background-color: #f0f2ef;
  counter-increment: howWorksList;
}
.how-works__item p {
  font-size: 16px;
}
@media (max-width: 48em) {
  .how-works__item {
    padding: 16px;
  }
}
.how-works__item:before {
  content: "-0" counter(howWorksList);
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 48px;
}
@media (max-width: 62em) {
  .how-works__item:before {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .how-works__item:before {
    margin-bottom: 24px;
  }
}
.how-works .title--third {
  margin-bottom: 24px;
}
.how-works__text .title--second {
  margin-bottom: 40px;
}
@media (max-width: 62em) {
  .how-works__text .title--second {
    margin-bottom: 30px;
  }
}
@media (max-width: 48em) {
  .how-works__text .title--second {
    margin-bottom: 20px;
  }
}
.how-works__text p {
  font-size: 22px;
  color: #5b6e68;
}
@media (max-width: 62em) {
  .how-works__text p {
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  .how-works__text p {
    font-size: 18px;
  }
}

.adventure {
  display: flex;
  align-items: center;
  gap: 84px;
  padding: 0 55px 0 0;
}
@media (max-width: 78.4375em) {
  .adventure {
    gap: 32px;
  }
}
@media (max-width: 62em) {
  .adventure {
    flex-wrap: wrap;
    padding-right: 0;
    gap: 0;
  }
}
.adventure__text {
  padding: 16px 0;
  flex: 650px 1 1;
}
@media (max-width: 62em) {
  .adventure__text {
    padding: 32px 16px;
  }
}
.adventure__text p {
  font-size: 22px;
  line-height: 1.5;
}
.adventure__text p:first-of-type {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 62em) {
  .adventure__text p:first-of-type {
    margin-bottom: 18px;
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  .adventure__text p:first-of-type {
    margin-bottom: 16px;
    font-size: 18px;
  }
}
.adventure__text .title--second {
  margin-bottom: 40px;
}
@media (max-width: 62em) {
  .adventure__text .title--second {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .adventure__text .title--second {
    margin-bottom: 24px;
  }
}
@media (max-width: 30em) {
  .adventure__text .title--second {
    margin-bottom: 18px;
  }
}
.adventure__img {
  flex: 653px 1 1;
}
.adventure__img img {
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 78.4375em) {
  .adventure__img img {
    max-height: 500px;
  }
}
@media (max-width: 48em) {
  .adventure__img img {
    max-height: 350px;
  }
}
@media (max-width: 30em) {
  .adventure__img img {
    max-height: 300px;
  }
}

.core {
  padding: 120px 0;
}
@media (max-width: 62em) {
  .core {
    padding: 64px 0;
  }
}
@media (max-width: 48em) {
  .core {
    padding: 32px 0;
  }
}
.core__inner {
  display: flex;
  gap: 16px 60px;
}
@media (max-width: 62em) {
  .core__inner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.core__text {
  display: flex;
  flex-direction: column;
  flex: 730px 1 1;
}
@media (max-width: 62em) {
  .core__text {
    flex-basis: 100%;
  }
}
.core__text p {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: auto;
}
.core__text p:first-of-type {
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 62em) {
  .core__text p:first-of-type {
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  .core__text p:first-of-type {
    font-size: 18px;
  }
}
.core__text .title--second {
  margin-bottom: 20px;
}
.core__list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 16px;
}
@media (max-width: 48em) {
  .core__list {
    gap: 10px;
  }
}
@media (max-width: 30em) {
  .core__list {
    grid-template-columns: 1fr;
  }
}
.core__item {
  background-color: #f0f2ef;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 48em) {
  .core__item {
    gap: 0;
  }
}
.core__item strong {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  line-height: 1.5;
}
.core__item span {
  display: block;
  line-height: 1.2;
}
.core__img {
  flex: 540px 1 1;
}
@media (max-width: 62em) {
  .core__img {
    flex-basis: auto;
  }
}
.core__img img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 62em) {
  .core__img img {
    max-height: 400px;
  }
}

.experts .container > p:first-of-type {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 24px;
}
@media (max-width: 62em) {
  .experts .container > p:first-of-type {
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  .experts .container > p:first-of-type {
    font-size: 18px;
  }
}
.experts .title--second {
  margin-bottom: 60px;
}
@media (max-width: 62em) {
  .experts .title--second {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .experts .title--second {
    margin-bottom: 24px;
  }
}
.experts__list {
  display: flex;
  gap: 30px;
}
@media (max-width: 62em) {
  .experts__list {
    gap: 32px 16px;
  }
}
@media (max-width: 48em) {
  .experts__list {
    flex-wrap: wrap;
  }
}
.experts__item {
  flex: 1 1;
}
@media (max-width: 48em) {
  .experts__item {
    flex-basis: 200px;
  }
}
.experts__item img {
  margin-bottom: 24px;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 62em) {
  .experts__item img {
    max-height: 300px;
  }
}
.experts__item .title--third {
  margin-bottom: 16px;
}
.experts__item p {
  font-size: 16px;
}

.quality {
  background-color: #5b6e68;
  color: #fff;
}
.quality .container > p {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 24px;
}
@media (max-width: 62em) {
  .quality .container > p {
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  .quality .container > p {
    font-size: 18px;
  }
}
.quality .title--second {
  margin-bottom: 60px;
  color: #fff;
}
@media (max-width: 62em) {
  .quality .title--second {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .quality .title--second {
    margin-bottom: 24px;
  }
}
.quality__list {
  display: flex;
  gap: 36px;
}
@media (max-width: 62em) {
  .quality__list {
    gap: 24px;
  }
}
@media (max-width: 48em) {
  .quality__list {
    flex-wrap: wrap;
  }
}
.quality__item {
  flex: 1 1;
  border-left: 1px solid #fff;
  padding: 40px 30px;
}
@media (max-width: 48em) {
  .quality__item {
    flex-basis: 200px;
    padding: 20px;
  }
}
.quality__item .title--third {
  margin-bottom: 24px;
  color: #fff;
}
@media (max-width: 62em) {
  .quality__item .title--third {
    margin-bottom: 16px;
  }
}
.quality__item p {
  font-size: 16px;
}

.product {
  display: flex;
  align-items: center;
  gap: 0 84px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 55px;
}
@media (max-width: 78.4375em) {
  .product {
    gap: 0 24px;
  }
}
@media (max-width: 62em) {
  .product {
    flex-wrap: wrap;
    padding-right: 0;
  }
}
.product__img {
  flex: 1 1;
}
@media (max-width: 62em) {
  .product__img {
    flex-basis: 100%;
    width: 100%;
  }
}
.product__img img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 62em) {
  .product__img img {
    max-height: 350px;
  }
}
.product__text {
  max-width: 648px;
  flex: 1 1;
}
@media (max-width: 62em) {
  .product__text {
    padding: 32px 16px;
    max-width: none;
  }
}
.product p {
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 62em) {
  .product p {
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  .product p {
    font-size: 18px;
  }
}
.product .title--second {
  margin-bottom: 40px;
}
@media (max-width: 62em) {
  .product .title--second {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .product .title--second {
    margin-bottom: 24px;
  }
}
.product .title--second + p {
  font-size: 22px;
  text-transform: none;
  margin-bottom: 40px;
}
@media (max-width: 62em) {
  .product .title--second + p {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .product .title--second + p {
    margin-bottom: 24px;
  }
}
.product__list {
  display: flex;
  gap: 0 46px;
  margin-bottom: 40px;
}
@media (max-width: 78.4375em) {
  .product__list {
    flex-wrap: wrap;
  }
}
@media (max-width: 62em) {
  .product__list {
    margin-bottom: 32px;
    flex-wrap: nowrap;
  }
}
@media (max-width: 48em) {
  .product__list {
    margin-bottom: 24px;
  }
}
@media (max-width: 30em) {
  .product__list {
    flex-wrap: wrap;
  }
}
.product__item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  align-items: center;
}
.product__item span,
.product__item strong {
  color: #5b6e68;
  display: block;
}
.product__item strong {
  margin-bottom: 4px;
  line-height: 1.5;
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 62em) {
  .product__item strong {
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  .product__item strong {
    font-size: 18px;
  }
}
.product--right {
  padding-left: 55px;
  padding-right: 0;
}
@media (max-width: 62em) {
  .product--right {
    padding-left: 0;
    flex-direction: column-reverse;
  }
}
.product button {
  padding: 18px 50px !important;
  background-color: #c87f4a !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.product button:hover:after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(10%) saturate(7475%) hue-rotate(183deg) brightness(109%) contrast(110%);
}

.rental {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px 84px;
}
@media (max-width: 62em) {
  .rental {
    flex-wrap: wrap;
  }
}
.rental__img {
  flex: 653px 0 1;
}
.rental__img img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 62em) {
  .rental__img img {
    max-height: 400px;
  }
}
.rental__text {
  flex: 600px 1 1;
  padding-right: 55px;
}
@media (max-width: 62em) {
  .rental__text {
    padding: 0 16px;
  }
}
.rental__text > p {
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 20px;
}
.rental .title--second {
  margin-bottom: 60px;
}
@media (max-width: 62em) {
  .rental .title--second {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .rental .title--second {
    margin-bottom: 24px;
  }
}
.rental__list {
  position: relative;
  counter-reset: rentalList;
}
.rental__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 19px;
  width: 2px;
  height: 75%;
  background: linear-gradient(180deg, #C87F4A 0%, #DFA87F 36.67%, rgba(240, 198, 166, 0) 100%);
}
@media (max-width: 62em) {
  .rental__list::before {
    height: 320px;
  }
}
@media (max-width: 30em) {
  .rental__list::before {
    height: 85%;
  }
}
.rental__list .title--third {
  margin-bottom: 20px;
  font-size: 22px;
  color: #c87f4a;
}
.rental__item {
  counter-increment: rentalList;
  display: flex;
  gap: 32px;
}
.rental__item p {
  line-height: 1.5;
  font-size: 16px;
}
@media (max-width: 48em) {
  .rental__item {
    gap: 16px;
  }
}
.rental__item::before {
  content: counter(rentalList);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #c87f4a;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  z-index: 2;
}
.rental__item:not(:last-of-type) {
  margin-bottom: 60px;
}
@media (max-width: 62em) {
  .rental__item:not(:last-of-type) {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .rental__item:not(:last-of-type) {
    margin-bottom: 24px;
  }
}
.rental__item:nth-child(2):before {
  background-color: #dfa87f;
}
.rental__item:nth-child(2) .title--third {
  opacity: 0.5;
}
.rental__item:nth-child(3)::before {
  background-color: #219653;
}
.rental__item:nth-child(3) .title--third {
  color: #219653;
}

.faq {
  max-width: 1230px;
  margin: 0 auto;
}
.faq .title--second {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 62em) {
  .faq .title--second {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .faq .title--second {
    margin-bottom: 24px;
  }
}