@import url("https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900");
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: 77.5rem;
  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: #121C1B;
  line-height: 1;
  font-family: "Inter";
  font-size: 18px;
  -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: "Inter";
  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;
}

.title {
  font-weight: 700;
}

h1,
.title {
  font-size: 90px;
  line-height: 1.3;
}
@media (max-width: 62em) {
  h1,
  .title {
    font-size: 64px;
  }
}
@media (max-width: 48em) {
  h1,
  .title {
    font-size: 40px;
  }
}
@media (max-width: 30.3125em) {
  h1,
  .title {
    font-size: 32px;
  }
}

h1 {
  letter-spacing: -0.025em;
}

h2,
.title--second {
  font-size: 58px;
  line-height: 1.2;
}
@media (max-width: 62em) {
  h2,
  .title--second {
    font-size: 32px;
  }
}
@media (max-width: 48em) {
  h2,
  .title--second {
    font-size: 30px;
  }
}
@media (max-width: 30.3125em) {
  h2,
  .title--second {
    font-size: 24px;
  }
}

h3,
.title--third {
  font-size: 38px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (max-width: 62em) {
  h3,
  .title--third {
    font-size: 32px;
  }
}
@media (max-width: 48em) {
  h3,
  .title--third {
    font-size: 24px;
  }
}
@media (max-width: 30.3125em) {
  h3,
  .title--third {
    font-size: 20px;
  }
}

h4,
.title--fourth {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}
@media (max-width: 62em) {
  h4,
  .title--fourth {
    font-size: 22px;
  }
}
@media (max-width: 48em) {
  h4,
  .title--fourth {
    font-size: 20px;
  }
}
@media (max-width: 30.3125em) {
  h4,
  .title--fourth {
    font-size: 18px;
  }
}

p {
  font-weight: 400;
  line-height: 1.5;
  font-size: 18px;
}

.arrow-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.arrow-link::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%) invert(97%) sepia(100%) saturate(14%) hue-rotate(288deg) brightness(105%) contrast(100%);
  background-image: url("../../img/icons/arrow.svg");
}

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

.accordion {
  margin-bottom: 30px;
}

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

.accordion__title {
  width: 100%;
  text-align: left;
  background-color: transparent;
  position: relative;
  padding: 32px;
}
@media (max-width: 48em) {
  .accordion__title {
    padding: 16px 48px 16px 16px;
  }
}
.accordion__title::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(5%) sepia(7%) saturate(3542%) hue-rotate(124deg) brightness(97%) contrast(88%);
  background-image: url("../img/icons/accordion-arrow.svg");
  background-repeat: no-repeat;
  transition: 0.3s transform;
}

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

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

.accordion._init .accordion__title._active::after {
  transform: translateY(50%) rotateX(0deg);
}

.accordion__text {
  padding: 0px 32px 12px;
  text-align: left;
  max-width: 1136px;
  transform: translateY(-20px);
}
@media (max-width: 48em) {
  .accordion__text {
    padding: 0 16px 12px;
    transform: translateY(-10px);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  display: block;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 3;
}
@media (max-width: 48em) {
  .header {
    padding: 16px 0;
  }
}
.header__logo {
  position: relative;
  z-index: 3;
  flex: auto 0 1;
}
@media (max-width: 78.4375em) {
  .header__logo {
    margin-right: 0;
  }
}
.header__logo img {
  max-width: 100%;
}
@media (max-width: 78.4375em) {
  .header__logo img {
    max-width: 180px;
  }
}
@media (max-width: 62em) {
  .header__logo {
    margin-right: auto;
  }
}
.header .container {
  display: flex;
  align-items: center;
  max-width: 1340px;
  gap: 48px;
}
@media (max-width: 78.4375em) {
  .header .container {
    gap: 24px;
  }
}
@media (max-width: 62em) {
  .header .container {
    justify-content: stretch;
    gap: 16px;
  }
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 3;
  font-size: 16px;
}
@media (max-width: 78.4375em) {
  .header__buttons {
    gap: 12px;
  }
  .header__buttons button,
  .header__buttons a {
    padding: 18px !important;
  }
}
@media (max-width: 48em) {
  .header__buttons {
    display: none;
  }
}

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

.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: #2D2D2D;
  height: 2px;
  width: 100%;
}
.burger span::after, .burger span::before {
  content: "";
  background-color: #2D2D2D;
  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;
  text-align: center;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), linear-gradient(180deg, #FFFFFF 11.39%, #FFFFFF 11.39%, rgba(255, 255, 255, 0) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
@media (max-width: 62em) {
  .hero {
    min-height: 700px;
  }
}
@media (max-width: 48em) {
  .hero {
    min-height: 600px;
  }
}
.hero .title {
  margin-bottom: 20px;
}
.hero p {
  font-size: 28px;
  margin-bottom: 40px;
}
@media (max-width: 62em) {
  .hero p {
    font-size: 24px;
  }
}
@media (max-width: 48em) {
  .hero p {
    font-size: 22px;
  }
}
@media (max-width: 30.3125em) {
  .hero p {
    font-size: 20px;
  }
}

.contacts {
  text-align: center;
}
.contacts .title {
  margin-bottom: 50px;
}
@media (max-width: 62em) {
  .contacts .title {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .contacts .title {
    margin-bottom: 24px;
  }
}
.contacts input,
.contacts textarea {
  color: #bdbdbd;
  padding: 15px 24px;
  border-radius: 8px;
  border: 1px solid #f3f3f3;
}
.contacts input::placeholder,
.contacts textarea::placeholder {
  color: #bdbdbd;
}
.contacts input:focus,
.contacts textarea:focus {
  outline: none;
}
.contacts input {
  min-height: 56px;
}
.contacts textarea {
  resize: none;
  width: 100%;
  margin-bottom: 20px;
  color: #121C1B;
  min-height: 170px;
}
@media (max-width: 48em) {
  .contacts textarea {
    margin-bottom: 24px;
  }
}
.contacts__form {
  max-width: 570px;
  margin: 0 auto 40px;
}
.contacts__submit {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contacts__submit input {
  flex: 367px 1 1;
  color: #121C1B;
}
.contacts__submit button {
  padding: 20px 32px !important;
  font-weight: 500 !important;
  flex: 179px 1 0;
}
.contacts p {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.contacts p + a {
  font-size: 16px;
}

.explore {
  background-color: #f6f9f8;
  padding: 86px 0;
}
.explore h2 {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 62em) {
  .explore h2 {
    margin-bottom: 48px;
  }
}
@media (max-width: 48em) {
  .explore h2 {
    margin-bottom: 32px;
  }
}
@media (max-width: 30.3125em) {
  .explore h2 {
    margin-bottom: 24px;
  }
}
.explore__img img {
  border-radius: 8px 8px 0 0;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 30.3125em) {
  .explore__img img {
    max-height: 240px;
  }
}
.explore__list {
  display: flex;
  justify-content: space-between;
  gap: 24px 48px;
}
@media (max-width: 62em) {
  .explore__list {
    flex-wrap: wrap;
  }
}
.explore__item {
  flex: 1 1;
  background-color: #fff;
}
@media (max-width: 62em) {
  .explore__item {
    flex-basis: 100%;
  }
}
.explore__text {
  padding: 32px;
}
@media (max-width: 62em) {
  .explore__text {
    padding: 16px;
  }
}
.explore__text h3 {
  margin-bottom: 10px;
}
.explore__text p {
  margin-bottom: 32px;
}
@media (max-width: 62em) {
  .explore__text p {
    margin-bottom: 24px;
  }
}
@media (max-width: 48em) {
  .explore__text p {
    margin-bottom: 18px;
  }
}
.explore__text span {
  color: #518581;
  font-weight: 600;
  display: inline-block;
  line-height: 1.5;
}
.explore__text span::after {
  filter: brightness(0) saturate(100%) invert(48%) sepia(49%) saturate(272%) hue-rotate(126deg) brightness(90%) contrast(91%);
}

.fullscreen-background {
  min-height: 952px;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 32px 100px 100px 68px;
  display: flex;
  align-items: flex-end;
}
.fullscreen-background--right {
  justify-content: flex-end;
}
@media (max-width: 62em) {
  .fullscreen-background {
    padding: 32px 64px;
    min-height: 600px;
  }
}
@media (max-width: 48em) {
  .fullscreen-background {
    padding: 32px;
  }
}
@media (max-width: 30.3125em) {
  .fullscreen-background {
    padding: 16px;
    min-height: 400px;
  }
}
.fullscreen-background__text {
  background-color: #fff;
  border-radius: 8px;
  padding: 32px;
  max-width: 753px;
}
@media (max-width: 62em) {
  .fullscreen-background__text {
    max-width: none;
  }
}
.fullscreen-background__text a p {
  margin-bottom: 24px;
}
.fullscreen-background__text h2 {
  margin-bottom: 24px;
  color: #518581;
}
.fullscreen-background__text p {
  font-size: 22px;
}
@media (max-width: 62em) {
  .fullscreen-background__text p {
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  .fullscreen-background__text p {
    font-size: 18px;
  }
}
@media (max-width: 30.3125em) {
  .fullscreen-background__text p {
    font-size: 16px;
  }
}
.fullscreen-background__text span {
  color: #518581;
  font-weight: 600;
  line-height: 1.5;
  font-size: 16px;
}
.fullscreen-background__text span::after {
  filter: brightness(0) saturate(100%) invert(48%) sepia(49%) saturate(272%) hue-rotate(126deg) brightness(90%) contrast(91%);
}

.button {
  background-color: #518581 !important;
  font-weight: 600 !important;
  line-height: 1.5;
  font-size: 16px !important;
  text-align: center;
  display: inline-block;
  letter-spacing: normal !important;
  font-family: "Inter" !important;
  color: #fff;
  border: 1px solid #518581 !important;
  border-radius: 8px !important;
  padding: 18px 50px !important;
  margin: 0 !important;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.button:hover {
  background-color: rgba(81, 133, 129, 0.8) !important;
  border-color: rgba(81, 133, 129, 0.1) !important;
}
.button--light {
  background-color: rgba(81, 133, 129, 0.1) !important;
  border-color: rgba(81, 133, 129, 0.1) !important;
  color: #518581;
}
.button--light:hover {
  background-color: #518581 !important;
  color: #fff;
  border-color: #518581 !important;
}

.works {
  text-align: center;
}
.works h2 {
  margin-bottom: 20px;
}
.works h2 + p {
  margin-bottom: 60px;
}
@media (max-width: 62em) {
  .works h2 + p {
    margin-bottom: 48px;
  }
}
@media (max-width: 48em) {
  .works h2 + p {
    margin-bottom: 32px;
  }
}
@media (max-width: 30.3125em) {
  .works h2 + p {
    margin-bottom: 24px;
  }
}
.works--num h2 {
  margin-bottom: 60px;
}
@media (max-width: 62em) {
  .works--num h2 {
    margin-bottom: 48px;
  }
}
@media (max-width: 48em) {
  .works--num h2 {
    margin-bottom: 32px;
  }
}
@media (max-width: 30.3125em) {
  .works--num h2 {
    margin-bottom: 24px;
  }
}
.works__list {
  display: flex;
  gap: 24px 48px;
  margin-bottom: 27px;
  flex-wrap: wrap;
}
.works__list--num {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  counter-reset: num-list;
}
@media (max-width: 78.4375em) {
  .works__list--num {
    gap: 24px;
  }
}
@media (max-width: 62em) {
  .works__list--num {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 30.3125em) {
  .works__list--num {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 62em) {
  .works__list--num .works__item {
    padding: 16px;
  }
}
.works__list--num .works__item::before {
  counter-increment: num-list;
  content: "0" counter(num-list);
  font-size: 64px;
  color: #518581;
  margin-bottom: 32px;
  line-height: 1.3;
  display: block;
  font-weight: 600;
}
@media (max-width: 62em) {
  .works__list--num .works__item::before {
    font-size: 40px;
  }
}
@media (max-width: 48em) {
  .works__list--num .works__item::before {
    font-size: 32px;
  }
}
@media (max-width: 30.3125em) {
  .works__list--num .works__item::before {
    font-size: 24px;
  }
}
@media (max-width: 62em) {
  .works__list--num .works__item::before {
    margin-bottom: 24px;
  }
}
@media (max-width: 48em) {
  .works__list--num .works__item::before {
    margin-bottom: 18px;
  }
}
@media (max-width: 62em) {
  .works__list {
    margin-bottom: 48px;
  }
}
@media (max-width: 48em) {
  .works__list {
    margin-bottom: 32px;
  }
}
@media (max-width: 30.3125em) {
  .works__list {
    margin-bottom: 24px;
  }
}
.works__item {
  flex: 1 1;
  text-align: left;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #f3f3f3;
}
@media (max-width: 62em) {
  .works__item {
    padding: 24px;
    flex-basis: 300px;
  }
}
.works__item .works__img {
  margin-bottom: 32px;
  width: 62px;
  height: 62px;
  background-color: #f9f9f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.works__item h3 {
  margin-bottom: 10px;
}

.policy {
  padding: 128px 0;
}
@media (max-width: 62em) {
  .policy {
    padding: 124px 0;
  }
}
@media (max-width: 48em) {
  .policy {
    padding: 48px 0;
  }
}
@media (max-width: 30.3125em) {
  .policy {
    padding: 80px 0;
  }
}
.policy h1 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 38px;
  font-weight: 700;
  line-height: 49.4px;
  text-align: center;
  color: #518581;
}
.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;
  font-size: 32px;
  font-weight: 700;
  line-height: 49.4px;
  color: #518581;
}

.footer {
  background-color: #121C1B;
  color: #fff;
}
.footer__top {
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 78.4375em) {
  .footer__top .container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
.footer__logo {
  display: inline-block;
}
.footer__logo img {
  max-width: 100%;
}
.footer__left {
  flex: 630px 0 1;
}
@media (max-width: 78.4375em) {
  .footer__left {
    flex-basis: 100%;
  }
}
.footer__left a {
  display: block;
}
.footer__left a:first-of-type {
  margin-bottom: 24px;
}
.footer__buttons {
  display: flex;
  gap: 20px;
}
@media (max-width: 78.4375em) {
  .footer__buttons {
    flex-basis: 100%;
    justify-content: center;
  }
}
@media (max-width: 48em) {
  .footer__buttons {
    flex-wrap: wrap;
  }
}
.footer__buttons a {
  background-color: rgba(81, 133, 129, 0.1) !important;
  color: #fff !important;
  border-color: rgba(81, 133, 129, 0.1) !important;
}
.footer__buttons a:hover {
  background-color: #518581 !important;
}
.footer__buttons button:hover {
  color: #fff;
}
.footer__button {
  flex: auto 0 0;
}
.footer__bottom {
  padding: 25px 0;
  font-size: 16px;
}
.footer__bottom p {
  font-size: 16px;
  text-align: center;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
}
@media (max-width: 48em) {
  .footer__bottom .container {
    justify-content: center;
  }
}
.footer__list {
  display: flex;
  align-items: center;
  gap: 48px;
  font-weight: 700;
}
@media (max-width: 62em) {
  .footer__list {
    gap: 32px;
  }
}
@media (max-width: 48em) {
  .footer__list {
    gap: 24px;
    flex-basis: 100%;
    justify-content: center;
  }
}
@media (max-width: 30.3125em) {
  .footer__list {
    gap: 18px;
  }
}

.satisfied h2 {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 62em) {
  .satisfied h2 {
    margin-bottom: 48px;
  }
}
@media (max-width: 48em) {
  .satisfied h2 {
    margin-bottom: 32px;
  }
}
@media (max-width: 30.3125em) {
  .satisfied h2 {
    margin-bottom: 24px;
  }
}
.satisfied__list {
  display: flex;
  justify-content: space-between;
  gap: 24px 48px;
}
@media (max-width: 62em) {
  .satisfied__list {
    gap: 32px;
    flex-wrap: wrap;
  }
}
@media (max-width: 48em) {
  .satisfied__list {
    gap: 24px;
  }
}
.satisfied__item {
  display: flex;
  flex: 1 1;
  gap: 16px 32px;
}
@media (max-width: 62em) {
  .satisfied__item {
    flex-basis: 100%;
  }
}
@media (max-width: 30.3125em) {
  .satisfied__item {
    flex-wrap: wrap;
  }
}
.satisfied__item p {
  margin-bottom: 16px;
}
.satisfied__item span {
  display: inline-block;
  color: #518581;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.satisfied__item img {
  border-radius: 100%;
}

.fullscreen-text {
  min-height: 952px;
  padding: 110px 100px;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 1441px) {
  .fullscreen-text .fullscreen-text__content {
    max-width: 1440px;
    margin: 0 auto;
  }
}
@media (max-width: 62em) {
  .fullscreen-text {
    min-height: 600px;
    padding: 64px;
  }
}
@media (max-width: 48em) {
  .fullscreen-text {
    min-height: 400px;
    padding: 32px;
  }
}
.fullscreen-text__content {
  position: relative;
  z-index: 2;
  max-width: 690px;
}
.fullscreen-text__content .title--second {
  margin-bottom: 24px;
}
.fullscreen-text__content p {
  font-size: 22px;
  line-height: 1.4;
}
@media (max-width: 62em) {
  .fullscreen-text__content p {
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  .fullscreen-text__content p {
    font-size: 18px;
  }
}
@media (max-width: 30.3125em) {
  .fullscreen-text__content p {
    font-size: 16px;
  }
}
.fullscreen-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(81, 133, 129, 0.7);
}

.catalog {
  text-align: center;
  background-color: #f6f9f8;
}
.catalog .container > .title {
  margin-bottom: 20px;
}
.catalog .container > .title + p {
  font-size: 16px;
  margin-bottom: 60px;
}
@media (max-width: 62em) {
  .catalog .container > .title + p {
    margin-bottom: 48px;
  }
}
@media (max-width: 48em) {
  .catalog .container > .title + p {
    margin-bottom: 32px;
  }
}
@media (max-width: 30.3125em) {
  .catalog .container > .title + p {
    margin-bottom: 24px;
  }
}
.catalog__list {
  display: flex;
  gap: 24px 48px;
}
@media (max-width: 62em) {
  .catalog__list {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.catalog__item {
  text-align: left;
  flex: 1 1;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 62em) {
  .catalog__item {
    flex-basis: 300px;
  }
}
.catalog__item h3 {
  margin-bottom: 10px;
}
.catalog__item span {
  color: #518581;
  font-weight: 600;
  font-size: 16px;
}
.catalog__item span::after {
  filter: brightness(0) saturate(100%) invert(53%) sepia(6%) saturate(2556%) hue-rotate(126deg) brightness(88%) contrast(79%);
}
.catalog__img img {
  border-radius: 8px 8px 0 0;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
.catalog__text {
  padding: 32px;
}
@media (max-width: 62em) {
  .catalog__text {
    padding: 24px;
  }
}
@media (max-width: 48em) {
  .catalog__text {
    padding: 18px;
  }
}
.catalog__text p {
  margin-bottom: 32px;
}

.suit-info {
  display: flex;
  gap: 24px 56px;
  justify-content: space-between;
  padding: 0;
  padding-left: 100px;
}
@media (min-width: 1441px) {
  .suit-info {
    max-width: 1440px;
    margin: 0 auto;
  }
}
@media (max-width: 62em) {
  .suit-info {
    flex-wrap: wrap;
    object-fit: cover;
    padding-left: 64px;
  }
}
@media (max-width: 48em) {
  .suit-info {
    padding: 32px 0;
  }
}
.suit-info--left-img {
  padding: 0 100px 0 0;
}
@media (max-width: 62em) {
  .suit-info--left-img {
    flex-direction: column-reverse;
    padding: 32px 64px;
  }
}
@media (max-width: 48em) {
  .suit-info--left-img {
    padding: 32px 0;
  }
}
@media (max-width: 62em) {
  .suit-info__img {
    flex-basis: 100%;
  }
}
@media (max-width: 78.4375em) {
  .suit-info__img img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
  }
}
@media (max-width: 48em) {
  .suit-info__img img {
    max-height: 400px;
  }
}
.suit-info__text {
  padding-top: 116px;
}
@media (max-width: 62em) {
  .suit-info__text {
    flex-basis: 100%;
    padding-top: 64px;
  }
}
@media (max-width: 48em) {
  .suit-info__text {
    padding: 0 32px 0;
  }
}
.suit-info__text p {
  font-size: 22px;
}
@media (max-width: 62em) {
  .suit-info__text p {
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  .suit-info__text p {
    font-size: 18px;
  }
}
@media (max-width: 30.3125em) {
  .suit-info__text p {
    font-size: 16px;
  }
}
.suit-info__text .title {
  margin-bottom: 24px;
}
.suit-info__text .title + p {
  margin-bottom: 48px;
}
@media (max-width: 62em) {
  .suit-info__text .title + p {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .suit-info__text .title + p {
    margin-bottom: 24px;
  }
}
@media (max-width: 30.3125em) {
  .suit-info__text .title + p {
    margin-bottom: 18px;
  }
}
.suit-info__features {
  margin-bottom: 48px;
}
@media (max-width: 62em) {
  .suit-info__features {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .suit-info__features {
    margin-bottom: 24px;
  }
}
@media (max-width: 30.3125em) {
  .suit-info__features {
    margin-bottom: 18px;
  }
}
.suit-info__feature:not(:last-of-type) {
  margin-bottom: 24px;
}
.suit-info__feature p:first-of-type {
  font-weight: 700;
}
.suit-info button {
  background-color: rgba(81, 133, 129, 0.1) !important;
  color: #518581 !important;
  border-color: rgba(81, 133, 129, 0.1) !important;
}
.suit-info button:hover {
  color: white !important;
  background-color: #518581 !important;
}

.faq {
  background-color: #f6f9f8;
  text-align: center;
}
.faq .title--third {
  margin-bottom: 20px;
}
.faq .title--third + p {
  font-size: 16px;
  margin-bottom: 48px;
}
@media (max-width: 62em) {
  .faq .title--third + p {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .faq .title--third + p {
    margin-bottom: 24px;
  }
}
@media (max-width: 30.3125em) {
  .faq .title--third + p {
    margin-bottom: 18px;
  }
}

.collection {
  text-align: center;
}
.collection .title {
  margin-bottom: 60px;
}
@media (max-width: 62em) {
  .collection .title {
    margin-bottom: 48px;
  }
}
@media (max-width: 48em) {
  .collection .title {
    margin-bottom: 32px;
  }
}
@media (max-width: 30.3125em) {
  .collection .title {
    margin-bottom: 24px;
  }
}
.collection__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 78.4375em) {
  .collection__list {
    gap: 24px;
  }
}
@media (max-width: 62em) {
  .collection__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 48px;
  }
}
@media (max-width: 48em) {
  .collection__list {
    margin-bottom: 32px;
  }
}
@media (max-width: 30.3125em) {
  .collection__list {
    gap: 16px;
    margin-bottom: 24px;
  }
}
.collection__item img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 48em) {
  .collection__item img {
    max-height: 400px;
  }
}
@media (max-width: 30.3125em) {
  .collection__item img {
    max-height: 350px;
  }
}

.post {
  padding: 100px 0 0;
}
@media (max-width: 48em) {
  .post {
    padding-top: 64px;
  }
}
.post__heading {
  padding: 86px 0;
}
@media (max-width: 62em) {
  .post__heading {
    padding: 64px 0;
  }
}
@media (max-width: 48em) {
  .post__heading {
    padding: 32px 0;
  }
}
.post__heading a {
  color: #518581;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 24px;
}
@media (max-width: 30.3125em) {
  .post__heading a {
    margin-bottom: 18px;
  }
}
.post__heading a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../../../img/icons/arrow.svg");
  transform: rotate(-180deg);
  filter: brightness(0) saturate(100%) invert(48%) sepia(49%) saturate(272%) hue-rotate(126deg) brightness(90%) contrast(91%);
}
.post__heading .title {
  font-size: 64px;
  letter-spacing: -0.02em;
  color: #518581;
  margin-bottom: 20px;
}
@media (max-width: 62em) {
  .post__heading .title {
    font-size: 40px;
  }
}
@media (max-width: 48em) {
  .post__heading .title {
    font-size: 32px;
  }
}
@media (max-width: 30.3125em) {
  .post__heading .title {
    font-size: 24px;
  }
}
.post__heading p {
  font-size: 24px;
}
@media (max-width: 62em) {
  .post__heading p {
    font-size: 22px;
  }
}
@media (max-width: 48em) {
  .post__heading p {
    font-size: 20px;
  }
}
@media (max-width: 30.3125em) {
  .post__heading p {
    font-size: 18px;
  }
}
.post__background {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 62em) {
  .post__background {
    max-height: 450px;
  }
}
@media (max-width: 48em) {
  .post__background {
    max-height: 380px;
  }
}
@media (max-width: 30.3125em) {
  .post__background {
    max-height: 300px;
  }
}
.post__content {
  padding: 86px 0;
}
@media (max-width: 62em) {
  .post__content {
    padding: 64px 0;
  }
}
@media (max-width: 48em) {
  .post__content {
    padding: 32px 0;
  }
}
.post__content h2 {
  color: #518581;
  margin-bottom: 24px;
  font-size: 32px;
}
@media (max-width: 62em) {
  .post__content h2 {
    font-size: 30px;
  }
}
@media (max-width: 48em) {
  .post__content h2 {
    font-size: 24px;
  }
}
@media (max-width: 30.3125em) {
  .post__content h2 {
    font-size: 20px;
  }
}
@media (max-width: 62em) {
  .post__content h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 48em) {
  .post__content h2 {
    margin-bottom: 18px;
  }
}
.post__text:not(:last-of-type) {
  margin-bottom: 48px;
}
@media (max-width: 62em) {
  .post__text:not(:last-of-type) {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .post__text:not(:last-of-type) {
    margin-bottom: 24px;
  }
}
@media (max-width: 30.3125em) {
  .post__text:not(:last-of-type) {
    margin-bottom: 18px;
  }
}
.post__img {
  margin-bottom: 48px;
}
@media (max-width: 62em) {
  .post__img {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .post__img {
    margin-bottom: 24px;
  }
}
@media (max-width: 30.3125em) {
  .post__img {
    margin-bottom: 18px;
  }
}
.post__img p {
  margin-bottom: 48px;
}
@media (max-width: 62em) {
  .post__img p {
    margin-bottom: 32px;
  }
}
@media (max-width: 48em) {
  .post__img p {
    margin-bottom: 24px;
  }
}
@media (max-width: 30.3125em) {
  .post__img p {
    margin-bottom: 18px;
  }
}
.post__img img {
  border-radius: 8px;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 48em) {
  .post__img img {
    max-height: 380px;
  }
}
@media (max-width: 30.3125em) {
  .post__img img {
    max-height: 300px;
  }
}