:root {
  --green: #637353;
  --green-dark:#3E5428;
  --green-light:#028800;
  --white: #fff;
  --black: #000;
  --font-family-base: "Poppins", sans-serif;
  --font-family-alt: "Barlin", sans-serif;
  --transition: 0.3s;
}

html {
  font-size: 62.5%;
  min-height: 100vh;
}
@media (max-width: 500px) {
  html {
    font-size: 2.2vw;
  }
}

.container {
  max-width: 120rem;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

section {
  padding: 5rem 0;
  position: relative;
}
@media (max-width: 767px) {
  section {
    padding: 2rem 0;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  /*   border: 2px solid red; */
}

body {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  border-style: none;
}

ul {
  list-style: none;
  text-decoration: none;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
  -webkit-appearance: button;
  outline: none;
  border: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Barlin";
  src: url("../fonts/Barlin-Sans-FB-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: var(--font-family-base), sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  cursor: default;
  background: var(--white);
  color: var(--black);
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (max-width: 800px) {
  body {
    font-size: 1.4rem;
  }
}

h1 {
  font-family: var(--font-family-alt);
  font-size: 4.2rem;
  line-height: 5.2rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 2.4rem;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  h1 {
    font-size: 2.4rem;
    line-height: 3.2rem;
    margin-bottom: 1.2rem;
  }
}

h2, h3, h4, h5 {
  font-weight: bold;
  color: var(--clr5);
}

b {
  font-weight: bold;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--black);
  transition: all 0.3s;
  cursor: pointer;
  font-weight: 600;
  appearance: none;
  padding: 2.2rem 3.2rem;
  font-size: 1.8rem;
  line-height: 3.4rem;
  line-height: inherit;
  text-transform: uppercase;
  border-radius: 2rem;
  background: var(--white);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.16);
}
@media (max-width: 680px) {
  .btn {
    padding: 1rem;
    font-size: 1.4rem;
    line-height: 3rem;
  }
}
@media (hover: hover) {
  .btn:hover {
    background: var(--green);
    color: var(--white);
  }
}
@media (hover: none) {
  .btn:active {
    background: var(--green);
    color: var(--white);
  }
}
.btn--green {
  background: var(--green);
  color: var(--white);
}
@media (hover: hover) {
  .btn--green:hover {
    background: var(--white);
    color: var(--black);
  }
}
@media (hover: none) {
  .btn--green:active {
    background: var(--white);
    color: var(--black);
  }
}
.btn--cookies {
  font-size: 1.6rem;
  line-height: 2rem;
  padding: 1rem 2.4rem;
  text-transform: none;
  font-weight: 400;
}
@media (max-width: 767px) {
  .btn--cookies {
    width: 100%;
  }
}

.menu {
  display: flex;
  gap: 0.8rem;
}
.menu__link {
  text-decoration: none;
  align-items: center;
  padding: 0.4rem 1.6rem;
  background: #F9F9F9;
  opacity: 0.7;
  border-radius: 1.2rem;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}
.menu__link::before {
  content: "";
  display: flex;
  background: var(--black);
  border-radius: 50%;
  height: 6px;
  width: 0;
  transition: width 0.1s;
}
.menu__link:hover, .menu__link--active {
  opacity: 1;
}
.menu__link:hover::before, .menu__link--active::before {
  width: 6px;
}
.menu.open {
  bottom: 0;
}

@media (max-width: 800px) {
  .header__menu {
    position: fixed;
    right: 0;
    left: 0;
    bottom: -100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 10;
    gap: 1rem;
    overflow: auto;
    text-align: center;
    padding: 10rem 1rem 5.5rem;
    background: var(--white);
    transition: all var(--transition);
  }
  .header__menu::-webkit-scrollbar {
    display: none;
  }
  .header__menu .menu__link {
    display: inline-flex;
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 1.4rem 1.6rem;
    background: transparent;
    border: 1px solid #EDEDED;
    width: 100%;
    border-radius: 20rem;
  }
  .header__menu .menu__link::before {
    display: none;
  }
  .header__menu .menu__link:after {
    content: "";
    position: absolute;
    right: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/menu-arrow.svg) no-repeat;
    width: 16px;
    height: 12px;
  }
  .header__menu .menu__link--active, .header__menu .menu__link:hover {
    font-weight: 600;
  }
  .header__menu .menu__link:hover:after {
    right: 2rem;
  }
}
.menu-toggle {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  z-index: 12;
  background: none;
  cursor: pointer;
  display: none;
  background: #F9F9F9;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.menu-toggle__item {
  display: block;
  height: 2px;
  width: 18px;
  background: #AEAEAE;
  border-radius: 5rem;
  transition: transform 0.15s;
}
.menu-toggle.open .menu-toggle__item {
  position: absolute;
}
.menu-toggle.open .menu-toggle__item:nth-child(1), .menu-toggle.open .menu-toggle__item:nth-child(3) {
  top: 1.6rem;
}
.menu-toggle.open .menu-toggle__item:nth-child(1) {
  transform: rotate(-135deg);
}
.menu-toggle.open .menu-toggle__item:nth-child(3) {
  transform: rotate(-45deg);
}
.menu-toggle.open .menu-toggle__item:nth-child(2) {
  display: none;
}
@media (max-width: 800px) {
  .menu-toggle {
    display: flex;
  }
}

body.overflow {
  overflow-y: hidden;
}

.header {
  padding: 2.4rem 0 1.2rem;
  position: relative;
  z-index: 20;
}
@media (max-width: 800px) {
  .header {
    padding-top: 1.6rem;
  }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 2.8rem;
  line-height: 3rem;
  font-family: var(--font-family-alt);
  color: var(--green-dark);
  position: relative;
  z-index: 12;
}
@media (max-width: 840px) {
  .logo {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .logo img {
    width: 5rem;
  }
}

.hero {
  padding: 2.4rem 1rem;
}
@media (max-width: 800px) {
  .hero {
    padding-top: 0;
  }
}
.hero .container {
  background: url(../img/hero-bg.webp) no-repeat top center/cover;
  overflow: hidden;
  border-radius: 4.8rem;
  padding: 12rem 2rem 4rem 8rem;
  min-height: 45rem;
}
@media (max-width: 1200px) {
  .hero .container {
    padding: 10rem 4rem 4rem 4rem;
  }
}
@media (max-width: 800px) {
  .hero .container {
    padding: 2.4rem 2.4rem 30rem;
    min-height: auto;
  }
}
.hero__text {
  max-width: 60rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  .hero__text {
    max-width: 50rem;
  }
}
@media (max-width: 800px) {
  .hero__text {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .hero__text {
    text-align: left;
  }
}
.hero__title {
  font-size: 5.6rem;
  line-height: 5.6rem;
  color: var(--white);
}
@media (max-width: 800px) {
  .hero__title {
    font-size: 2.6rem;
    line-height: 3.2rem;
    margin-bottom: 1rem;
  }
}
.hero__description {
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: var(--white);
}
@media (max-width: 800px) {
  .hero__description {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
.hero__image {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1200px) {
  .hero__image {
    width: 53vw;
  }
}
@media (max-width: 800px) {
  .hero__image {
    width: 40rem;
  }
}

.main-section {
  padding: 2.4rem 1rem 3.4rem;
}
.main-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F7F7F7;
  border-radius: 4.8rem;
  min-height: 29rem;
  padding: 8rem 9.5vw;
}
@media (max-width: 1024px) {
  .main-section .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-width: 767px) {
  .main-section .container {
    min-height: 11rem;
    padding: 4rem 2.4rem;
    border-radius: 2.4rem;
  }
}
.main-section h1 {
  font-size: 5.6rem;
  line-height: 6rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main-section h1 {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
}
.main-section h1:not(:last-child) {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .main-section h1:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.main-section__info {
  display: flex;
  align-items: center;
  gap: 4vw;
}
@media (max-width: 767px) {
  .main-section__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.main-section__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.roteiros .btn {
  margin-top: 3.2rem;
}
@media (max-width: 540px) {
  .roteiros .btn {
    margin-top: 1.6rem;
    width: 100%;
  }
}

.info-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .info-card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .info-card {
    gap: 1rem;
  }
}
.info-card__item {
  position: relative;
  border-radius: 3.2rem;
  padding: 2.4rem;
  background: linear-gradient(180deg, rgba(46, 46, 46, 0) 0%, rgba(46, 46, 46, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 34.8rem;
  overflow: hidden;
}
.info-card__item:after {
  content: "";
  background: linear-gradient(180deg, rgba(46, 46, 46, 0) 0%, rgba(46, 46, 46, 0.9) 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 22rem;
  left: 0;
}
.info-card__item--1 {
  background: url(../img/info-card-image1.webp) no-repeat top center/cover;
}
.info-card__item--2 {
  background: url(../img/info-card-image2.webp) no-repeat top center/cover;
}
.info-card__item--3 {
  background: url(../img/info-card-image3.webp) no-repeat top center/cover;
}
.info-card__item--4 {
  background: url(../img/info-card-image4.webp) no-repeat top center/cover;
}
@media (max-width: 540px) {
  .info-card__item {
    min-height: 24rem;
  }
}
.info-card__arrow {
  margin-left: auto;
  transition: all 0.3s;
}
.info-card__arrow:hover {
  transform: rotate(30deg);
}
.info-card__description {
  position: relative;
  z-index: 2;
  font-size: 2.8rem;
  line-height: 3.2rem;
  color: var(--white);
}
@media (max-width: 1024px) {
  .info-card__description {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}

.form-section {
  padding-left: 1rem;
  padding-right: 1rem;
}
.form-section .container {
  display: flex;
  align-items: center;
  border-radius: 4.8rem;
  padding: 1.6rem;
  background: #F7F7F7;
}
.form-section .container--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 680px) {
  .form-section .container {
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
    border-radius: 2.4rem;
  }
}
.form-section__image {
  border-radius: 3.2rem;
}
@media (max-width: 680px) {
  .form-section__image {
    border-radius: 1.6rem;
    width: 100%;
  }
}
.form-section__social {
  position: relative;
  width: 100%;
}
@media (max-width: 540px) {
  .form-section__social {
    width: 100%;
  }
}
.form-section__info {
  padding: 2rem 8rem 2rem 4.8rem;
  width: 100%;
}
@media (max-width: 1130px) {
  .form-section__info {
    padding: 4rem;
  }
}
@media (max-width: 1024px) {
  .form-section__info {
    padding: 2rem;
  }
}
@media (max-width: 680px) {
  .form-section__info {
    width: 100%;
    min-width: auto;
    padding: 2rem 0 1.6rem;
  }
  .form-section__info br {
    display: none;
  }
}
.form-section__info h1 {
  font-size: 4.8rem;
  line-height: 5.2rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .form-section__info h1 {
    font-size: 3.6rem;
    line-height: 4.2rem;
  }
}
@media (max-width: 680px) {
  .form-section__info h1 {
    font-size: 2.4rem;
    line-height: 2.6rem;
    margin-bottom: 0.5rem;
  }
}
.form-section__info .description {
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 4.8rem;
  color: #7B7B7B;
}
@media (max-width: 1024px) {
  .form-section__info .description {
    font-size: 2rem;
    line-height: 2.6rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 680px) {
  .form-section__info .description {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 1.6rem;
  }
}

.social {
  position: absolute;
  bottom: 2.4rem;
  left: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
@media (max-width: 540px) {
  .social {
    bottom: 1.2rem;
    left: 1.2rem;
    gap: 0.8rem;
  }
}
.social__item {
  width: 42px;
  height: 42px;
  border: 0.2rem solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s;
}
@media (max-width: 540px) {
  .social__item {
    transform: scale(0.9);
  }
}
.social__item:hover {
  border-color: transparent;
}
.social__item--insta .social__link:hover {
  background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
}
.social__item--facebook .social__link:hover {
  background: #1877F2;
}
.social__item--twitter .social__link:hover {
  background: var(--black);
}
.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.promove__title {
  font-size: 3.2rem;
  font-family: var(--font-family-base);
  text-transform: none;
  color: var(--black);
  text-align: center;
  margin-bottom: 8rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 98rem;
}
@media (max-width: 800px) {
  .promove__title {
    font-size: 2rem;
    line-height: 2.6rem;
    margin-bottom: 3rem;
  }
}
.promove__title span {
  color: var(--green-light);
}
.promove-list {
  display: flex;
}
@media (max-width: 767px) {
  .promove-list {
    flex-direction: column;
  }
}
.promove-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  padding: 3.4rem 1rem;
  font-size: 2.2rem;
  line-height: 3rem;
  background: #F7F7F7;
  border-radius: 3.2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .promove-list__item {
    font-size: 1.6rem;
    padding: 2rem 2.5rem;
    justify-content: flex-start;
  }
}

.disconnect {
  padding-left: 1rem;
  padding-right: 1rem;
}
.disconnect .container {
  padding: 1.6rem;
  position: relative;
  border-radius: 4.8rem;
  background: url(../img/disconnect-bg.webp) no-repeat top center/cover;
}
@media (max-width: 750px) {
  .disconnect .container {
    padding-bottom: 0;
    overflow: hidden;
  }
}
.disconnect__title {
  display: flex;
  flex-direction: column;
  font-size: 4.8rem;
  padding: 8.2rem 6.4rem;
  border-radius: 3.2rem;
  background: var(--white);
  max-width: 57rem;
  text-align: left;
  height: 100%;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 1040px) {
  .disconnect__title {
    font-size: 4rem;
    padding: 8rem 3rem;
    max-width: 50rem;
  }
}
@media (max-width: 870px) {
  .disconnect__title {
    font-size: 4rem;
    line-height: 4.8rem;
    padding: 5rem 3rem;
    max-width: 43rem;
  }
}
@media (max-width: 750px) {
  .disconnect__title {
    font-size: 2.6rem;
    line-height: 3rem;
    padding: 1.6rem;
    max-width: 100%;
    text-align: center;
  }
  .disconnect__title br {
    display: none;
  }
}
@media (max-width: 540px) {
  .disconnect__title {
    text-align: left;
  }
  .disconnect__title br {
    display: block;
  }
}
.disconnect__image {
  position: absolute;
  right: 5vw;
  bottom: 0;
}
@media (max-width: 960px) {
  .disconnect__image {
    width: 35vw;
  }
}
@media (max-width: 750px) {
  .disconnect__image {
    position: static;
    width: 32rem;
    margin: -2rem auto 0;
  }
}
@media (max-width: 540px) {
  .disconnect__image {
    width: 26rem;
    margin-right: -1rem;
  }
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.form__input {
  background: var(--white);
  min-height: 6.4rem;
  border-radius: 2rem;
  border: none;
  outline: none;
  padding: 1.8rem 2.4rem;
  font-size: 1.6rem;
  width: 100%;
  resize: none;
  overflow: hidden;
}
@media (max-width: 680px) {
  .form__input {
    min-height: 4.8rem;
    padding: 1.6rem;
  }
}
.form__input--textarea {
  min-height: 9.6rem;
}
.form__title {
  font-weight: 400;
  margin-bottom: 2.4rem;
  color: #0A0A0A;
  font-size: 1.4rem;
}
.form__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
}
.form__fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .form__fields {
    grid-template-columns: repeat(1, 1fr);
  }
}
.form__field--big {
  grid-column: span 2/span 2;
}
@media (max-width: 767px) {
  .form__field--big {
    grid-column: span 1/span 1;
  }
}

.protect-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 800px) {
  .protect-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.protect-list__item {
  background: #F7F7F7;
  border-radius: 6.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem;
  font-size: 4.2rem;
  line-height: 4.8rem;
  color: var(--white);
}
@media (max-width: 800px) {
  .protect-list__item {
    font-size: 2.4rem;
    line-height: 3.6rem;
    padding: 3rem;
  }
}
.protect-list__item--1 {
  background: var(--green);
}
@media (max-width: 800px) {
  .protect-list__item--1 {
    background: #F7F7F7;
    color: var(--green);
  }
}
.protect-list__item--2 {
  background: url(../img/protect1.webp) no-repeat top center/cover;
}
@media (max-width: 800px) {
  .protect-list__item--3 {
    background: url(../img/protect2.webp) no-repeat top center/cover;
  }
  .protect-list__item--3 * {
    fill: var(--white);
    width: 22px;
  }
}
.protect-list__item--4 {
  background: url(../img/protect2.webp) no-repeat top center/cover;
}
@media (max-width: 800px) {
  .protect-list__item--4 {
    background: var(--green);
  }
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 1.25vw;
}
.gallery-list img {
  border-radius: 3.2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .gallery-list img {
    border-radius: 2.4rem;
  }
}

.policy__anotate {
  padding: 3rem 0 8rem;
  font-size: 2.6rem;
  line-height: 3.6rem;
}
@media (max-width: 767px) {
  .policy__anotate {
    font-size: 1.4rem;
    line-height: 2rem;
    padding: 1rem 0 3rem;
  }
}
.policy__anotate p:not(:last-child) {
  margin-bottom: 2.4rem;
}
.policy__item {
  font-size: 2.4rem;
  line-height: 3.2rem;
}
@media (max-width: 767px) {
  .policy__item {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.policy__title {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-family-alt);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3.2rem;
  line-height: 4.2rem;
  color: var(--green-dark);
  padding: 2.4rem 0 3.2rem;
}
@media (max-width: 767px) {
  .policy__title {
    flex-direction: column;
    align-items: flex-start;
    font-size: 2rem;
    line-height: 2.4rem;
    gap: 0.8rem;
    padding: 1.2rem 0;
  }
}
.policy__number {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  border: 0.1rem solid var(--green-dark);
  border-radius: 50%;
  font-size: 2.4rem;
  font-family: var(--font-family-base);
}
@media (max-width: 767px) {
  .policy__number {
    width: 32px;
    height: 32px;
    font-size: 1.6rem;
  }
}
.policy__list {
  margin-left: 2.5rem;
}
.policy__list li {
  list-style-type: disc;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .policy__list li {
    margin-bottom: 0.8rem;
  }
}

.cookies {
  position: fixed;
  z-index: 15;
  display: none;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
  justify-content: space-around;
  bottom: -100%;
  border-radius: 3.2rem;
  padding: 2.4rem 4.8rem;
  transition: all 0.3s;
  background: #FFFFFF;
}
.cookies__description {
  max-width: 45vw;
  font-size: 1.6rem;
  line-height: 2.4rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.cookies__description a {
  color: var(--clr4);
}
.cookies__description a:hover {
  text-decoration: underline;
}
.cookies__buttons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.cookies.show {
  bottom: 0;
  display: flex;
}
.cookies.hide {
  bottom: -100%;
  visibility: hidden;
  display: none;
}
@media (max-width: 767px) {
  .cookies {
    padding: 2.4rem 1rem;
    flex-direction: column;
    align-items: center;
  }
  .cookies__description {
    max-width: 100%;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .cookies__buttons {
    justify-content: center;
    width: 100%;
  }
}

.footer {
  background: #F7F7F7;
  padding: 2.4rem 0 3.2rem;
  color: #99A1AF;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 4rem;
}
@media (max-width: 890px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 890px) {
  .footer__logo {
    margin-bottom: 2rem;
  }
}
.footer .form-section {
  padding: 0;
  width: 57rem;
}
@media (max-width: 890px) {
  .footer .form-section {
    width: 100%;
  }
}
.footer .form-section__info {
  padding: 0;
}
.footer .form-section__info h1 {
  font-size: 3.2rem;
  line-height: 4.2rem;
  margin-bottom: 0.4rem;
}
@media (max-width: 890px) {
  .footer .form-section__info h1 {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
.footer .form-section__info .description {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 890px) {
  .footer .form-section__info .description {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.footer .form-section__info .form {
  flex-direction: row;
  align-items: center;
}
@media (max-width: 890px) {
  .footer .form-section__info .form {
    flex-direction: column;
  }
}
.footer .form-section__info .form__input {
  flex: 1;
}
.footer .form-section__info .form__input, .footer .form-section__info .form__btn {
  min-height: 4.8rem;
  padding: 1.2rem 2.4rem;
}
@media (max-width: 890px) {
  .footer .form-section__info .form__input, .footer .form-section__info .form__btn {
    width: 100%;
  }
}
.footer .form-section__info .form__btn {
  font-size: 1.4rem;
}
.footer__bottom {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: space-between;
  border-top: 0.1rem solid #ADADAD;
  padding-top: 3rem;
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.footer__menu {
  gap: 0;
}
@media (max-width: 767px) {
  .footer__menu {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
}
.footer__menu .menu__link {
  background: #F7F7F7;
  border: 0.2rem solid #E1E1E1;
  border-radius: 20rem;
}
@media (max-width: 767px) {
  .footer__menu .menu__link {
    width: 100%;
    justify-content: center;
  }
}