@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

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

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
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;
}

body {
  font-family: "Unbounded", sans-serif;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #F4F3F7;
}

[class*=__container] {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.h2 {
  color: #111;
  font-size: 34px;
  font-weight: 600;
  line-height: 124%;
  text-transform: uppercase;
  word-break: break-all;
}
@media (max-width: 767px) {
  .h2 {
    font-size: 32px;
  }
}

.h3 {
  color: #111;
  font-size: 24px;
  font-weight: 600;
  line-height: 124%;
  word-break: break-all;
  text-transform: uppercase;
}

[class*=__text] {
  color: #434343;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
[class*=__text] a {
  color: #434343;
}

.main {
  flex: 1 1 auto;
}

section {
  scroll-margin-top: 100px;
}

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

.header {
  position: fixed;
  width: 100%;
  z-index: 60;
  background: #F4F3F7;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 20px;
}
.header__logo {
  position: relative;
  z-index: 40;
  color: #1A9E9E;
  font-size: 24px;
  font-weight: 600;
  line-height: 116%;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 991px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #000;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 991px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 0 0;
    background: #fff;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}
@media (max-width: 991px) {
  .menu__list {
    flex-direction: column;
  }
}
.menu__item-sub {
  color: #434343;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.menu__item-sub img {
  transition: transform 0.3s ease-in-out;
}
.menu__item-sub_active img {
  transform: rotate(-180deg);
}
.menu__link {
  color: #434343;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.menu__link_sub {
  color: #000;
}
@media (max-width: 991px) {
  .menu__link_sub {
    color: #000;
  }
}
.menu__list-sub {
  padding: 8px 14px;
  position: absolute;
  top: 100%;
  left: 50px;
  border-radius: 8px;
  background: #DAEFEF;
  max-width: 315px;
  padding: 24px;
  width: 100%;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  z-index: 70;
  display: none;
}
@media (max-width: 991px) {
  .menu__list-sub {
    position: static;
    top: 0;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
    background: none;
    padding: 0;
    border-radius: 0;
    text-align: center;
    display: none;
  }
}
.menu__list-sub_active {
  display: grid;
}

.footer {
  padding: 24px 0;
}
.footer__content {
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer__content {
    flex-direction: column;
    gap: 24px;
  }
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .footer__menu {
    flex-direction: column;
    gap: 4px;
  }
}
.footer__link {
  color: #434343;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.footer__text {
  border-top: 2px solid #1A9E9E;
  color: #100B20;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  padding: 24px 0 0;
}

.home {
  margin: 81px 0 0;
  padding: 80px 0 0;
}
@media (max-width: 767px) {
  .home {
    padding: 40px 0 0;
  }
}
.home__content {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
@media (max-width: 991px) {
  .home__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.home__title {
  color: #111;
  font-size: 42px;
  font-weight: 600;
  line-height: 116%;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.home__form {
  border-radius: 24px;
  background: rgba(26, 158, 158, 0.16);
  padding: 42px 24px;
  min-width: 430px;
}
@media (max-width: 991px) {
  .home__form {
    min-width: 100%;
  }
}
.home__form_contact {
  max-width: 540px;
  width: 100%;
}
@media (max-width: 767px) {
  .home__form_contact {
    max-width: 100%;
  }
}
.home__subtitle {
  text-align: center;
  margin-bottom: 24px;
}
.home__subtitle_contact {
  font-size: 32px;
  color: #fff;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.form_contact {
  width: 100%;
}
.form__inp {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 116%;
  text-transform: capitalize;
  border-radius: 12px;
  background: rgba(26, 158, 158, 0.16);
  width: 100%;
  padding: 16px 30px;
}
.form__inp::-moz-placeholder {
  color: #000;
}
.form__inp::placeholder {
  color: #000;
}
.form__inp_contact {
  color: #FFF;
}
.form__inp_contact::-moz-placeholder {
  color: #FFF;
}
.form__inp_contact::placeholder {
  color: #FFF;
}
.form__btn {
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 116%;
  text-transform: capitalize;
  padding: 16px 0;
  border-radius: 12px;
  background: #1A9E9E;
}

.services {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .services {
    padding: 40px 0;
  }
}
.services__contetn {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .services__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .services__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services__row_second {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .services__row_second {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services__card {
  display: flex;
  gap: 16px;
}
.services__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.choose_faq {
  margin: 81px 0 0;
  padding: 80px 0 0;
}
@media (max-width: 767px) {
  .choose_faq {
    padding: 40px 0 0;
  }
}
.choose__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.choose__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .choose__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.choose__card {
  border-radius: 8px;
  background: rgba(26, 158, 158, 0.16);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.choose__card_last {
  grid-column: span 2;
}
@media (max-width: 991px) {
  .choose__card_last {
    grid-column: span 1;
  }
}

.delivery {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .delivery {
    padding: 40px 0;
  }
}
.delivery__content {
  display: flex;
  gap: 40px;
  padding: 60px 28px;
  border-radius: 24px;
  background: #051F1F;
}
@media (max-width: 991px) {
  .delivery__content {
    border-radius: 24px;
    background: #051F1F;
    padding: 40px 24px;
    flex-direction: column;
  }
}
.delivery__img {
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .delivery__img {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .delivery__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.delivery__title {
  color: #fff;
  margin-bottom: 16px;
}
.delivery__text {
  color: #fff;
}

.contact {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .contact {
    padding: 40px 0;
  }
}
.contact__content {
  display: flex;
  gap: 40px;
  border-radius: 24px;
  background: #051F1F;
  padding: 60px 28px;
}
@media (max-width: 767px) {
  .contact__content {
    flex-direction: column;
    padding: 40px 24px;
  }
}
.contact__column {
  max-width: 500px;
  width: 100%;
}
.contact__title {
  color: #fff;
  margin-bottom: 16px;
}
.contact__text {
  color: #fff;
}
.contact__text a {
  color: #fff;
}

.info {
  margin: 81px 0 0;
  padding: 80px 0 0;
}
@media (max-width: 767px) {
  .info {
    padding: 40px 0 0;
  }
}
.info__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.info .home__title {
  margin: 0;
}
@media (max-width: 767px) {
  .info .home__title {
    font-size: 32px;
    word-break: break-all;
  }
}
.info__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.privacy {
  margin: 81px 0 0;
  padding: 40px 0 0;
}
.privacy__title {
  margin-bottom: 40px;
}

.p-80 {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-80 {
    padding: 40px 0;
  }
}

.thank {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
}
.thank__link {
  display: flex;
  padding: 16px 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 8px;
  background: #1D3232;
  padding: 32px;
  z-index: 1000;
  max-width: 850px;
  width: 100%;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #111;
  font-size: 24px;
  font-weight: 600;
  line-height: 124%;
  text-transform: uppercase;
}
.cookies__text {
  color: #434343;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
@media (max-width: 575px) {
  .cookies__btns {
    flex-direction: column;
  }
}
.cookies__btn {
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 116%;
  text-transform: capitalize;
  border-radius: 12px;
  background: #1A9E9E;
  padding: 16px 0;
  width: 100%;
  border: 1px solid #1A9E9E;
}
.cookies__btn-sub {
  width: 100%;
  border: 1px solid #1A9E9E;
  color: #1A9E9E;
  background: #1D3232;
}