:root {
  color-scheme: light dark;
}

@media (prefers-color-scheme: light) {
  body {
    background: #fff;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: #fff;
  }
}

@font-face {
  font-family: "Roboto";
  src: local("Roboto"), local("Roboto"), url("https://access-avocado.com/main-lp/fonts/Roboto-Light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-m";
  src: local("Roboto-m"), local("Roboto-m"), url("https://access-avocado.com/main-lp/fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  box-sizing: border-box;
  height: 100%;
}

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

* {
  max-height: 100000px;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}

body {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
  min-width: 320px;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: #363736;
  background: #9ECA52;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

li {
  line-height: 1;
}

img {
  display: block;
}

a {
  cursor: pointer;
}

.footer a[href^="tel"] {
  pointer-events: none;
  color: inherit;
  text-decoration: inherit;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* ===== HEADER ===== */

header {
  padding: 16px 80px;
  align-items: center;
  background: #9ECA52;
}


.logo img {
  width: 128px;
  height: 32px;
}


.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.nav a {
  color: #363736;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  font-family: "Roboto-m", sans-serif;
  line-height: 110%;
  text-decoration: none;
  /* 22px */
}

/* ===== BUTTONS ===== */

.btn {
  padding: 10px 22px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn--primary {
  background: #fff500;
  color: #363736;
  margin-top: 32px;
  display: flex;
  padding: 16px 66px;
  justify-content: center;
  align-items: center;
  color: #363736;
  font-family: "Roboto-m";
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  max-width: 277px;
  border-radius: 30px;
  place-self: center;
}

.btn--outline {
  border: 2px solid #fff500;
  color: #363736;
}

/* ===== HERO ===== */
.hero {
  background-color: white;
}

.hero__inner {
  max-width: 920px;
  margin: 0 auto;

}

.hero__title {
  color: #363736;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  padding-top: 16px;
  margin-bottom: 56px;
}

.features {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
}

.feature {
  text-align: center;
}

.feature__icon {
  font-size: 40px;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature__icon img {
  width: 96px;
  height: 96px;
}

/* ===== STEPS ===== */

.steps {
  margin-top: 32px;
  text-align: center;
  list-style-position: inside;
  color: #9eca52;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 16px;
  list-style: none;
  padding: 0;
  counter-reset: step;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #363736;
  padding: 0 24px;
}

.steps li::before {
  content: counter(step);
  counter-increment: step;
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #D4ECB4;
  color: #363736;
}

/* .steps li{
  color: #363736;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 110%;
}
.steps li::marker{
  display: flex;
width: 32px;
height: 32px;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 26.47px;
background: #D4ECB4;
} */

.footer {
  background: #9eca52;
  padding: 40px 0;
  margin-top: 80px;
}

.footer__inner {
  text-align: center;
  flex-direction: column;
}

.footer__inner h3 {
  color: #363736;
  font-family: "Roboto-m";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 30.8px */
  margin-bottom: 10px;
  margin-top: 32px;
}

.footer__inner p {
  color: #363736;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  padding-bottom: 20px;
  /* 17.6px */
}

.footer__links {
  margin-top: 16px;
}

.footer__links a {
  margin: 0 12px;
  color: #363736;
  text-decoration: none;
}

/* ===== BURGER ===== */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 3px;
  background: #363736;
}

.icon-close {
  display: none;
}

.burger.is-active .icon-burger {
  display: none;
}

.burger.is-active .icon-close {
  display: flex;
}

/* ===== MOBILE MENU ===== */

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #9eca52;
  padding: 20px;
  gap: 16px;
}

.mobile-menu a {
  text-decoration: none;
  color: #363736;
  font-weight: 600;
}

.mobile-menu--open {
  display: flex;
  height: 100%;
  align-items: center;
  /* flex-direction: column-reverse; */
  gap: 20px;
  padding-top: 40px;
}

.footer {
  width: 100%;
  max-width: 100%;
  padding: 0 8px;
  margin: 0 auto;
  text-align: center;
  font-size: 11px;
}

.footer_p {
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.footer__link {
  cursor: pointer;
  /* color: #000; */
  /* text-align: justify; */
  /* font-family: "SF Pro Display"; */
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* text-decoration-line: underline; */
  /* text-decoration-style: solid; */
  /* text-decoration-skip-ink: none; */
  /* text-decoration-thickness: auto; */
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: 0 12px;
  color: #363736;
  text-decoration: none;

}

body.menu-open .footer_p {
  opacity: 0;
}
body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    height: 100%;
}


/***LOADER****/
.loader {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.85);
  animation: loaderFadeIn 0.2s;
}

@keyframes loaderFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/***MESSAGE****/
.message {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  /* display: flex;*/
  justify-content: center;
  align-items: center;
  background: rgba(30, 30, 30, 0.30);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* Для Safari и Chrome */
}

.message__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 314px;
  padding: 40px 16px 32px;
  font-family: "Roboto Flex", sans-serif;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 15px;
  will-change: transform;
  animation-name: fadeInDown;
  animation-duration: 0.8s;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.message__content--pin-unsuccess {
  padding: 40px 24px;
}

.message__title {
  color: #1E1E1E;
  text-align: center;
  font-family: "Roboto Flex", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  /* 24px */
  padding-bottom: 20px;
}

.message__title--mode {
  margin-bottom: 0;
  padding-bottom: 0;
}

.message__text {
  color: #1E1E1E;
  text-align: center;
  font-family: "Roboto Flex", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 16px */
  padding-bottom: 20px;
}

.message__text--mode {
  margin-bottom: 0;
  width: 220px;
  padding-bottom: 0;
}

.message__btn {
  width: 100%;
  margin: 0;
  background: #00D959;
  pointer-events: auto;
}

.message__close {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 24px;
  height: 24px;
  font-size: 0;
  color: rgba(0, 0, 0, 0);
}

.message__close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #1E1E1E;
  transform: translateX(-50%) rotate(-45deg);
}

.message__close::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #1E1E1E;
  transform: translateX(-50%) rotate(45deg);
}

.message__close:hover.message__close::before,
.message__close:hover.message__close::after {
  background-color: #056add;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media screen and (max-width: 1440px) and (max-height: 900px) {
  header {
    padding: 16px 20px;
  }

  .nav a {
    font-size: 18px;
  }

  .hero__title {
    font-size: 23px;
    margin-bottom: 7px;
  }

  .feature__icon img {
    width: 71px;
    height: 80px;
  }

  .features {
    margin-bottom: 29px;
  }

  .footer__inner h3 {
    font-size: 26px;
    margin-top: 0px;
  }

  .footer__inner p {
    padding-bottom: 9px;
  }
}

@media screen and (orientation: landscape) and (max-width: 1025px) and (max-height: 700px) {
  .feature__icon img {
    width: 56px;
    height: 56px;
  }

  .footer__inner h3 {
    margin-bottom: 3px;
  }

  .nav a {
    font-size: 13px;
  }

  .nav {
    gap: 20px;
  }
}

@media screen and (max-width: 800px) and (orientation: portrait) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hero__inner {
    max-width: 720px;
  }

  header {
    padding: 16px 24px;
  }

  .hero__title {
    font-size: 16px;
    margin-bottom: 46px;
    justify-self: center;
  }

  .footer_p {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .hero__title {
    padding: 16px 24px 30px;
    margin-bottom: 0;
  }

  .feature__icon img {
    width: 48px;
    height: 48px;
  }

  .features {
    gap: 10px;
    margin-bottom: 20px;
    max-width: 70%;
    margin: 0 auto;
  }

  .footer__inner {
    padding: 0 24px;
  }

  .footer__inner h3 {
    font-size: 20px;
    margin-top: 0px;
  }

  .footer__inner p {
    font-size: 14px;
  }

  .btn--primary {
    font-size: 21px;
    margin: 15px auto;
  }

  .footer__inner h3 {
    font-size: 21px;
    margin-top: 0px;
  }
}

@media screen and (max-width: 415px) and (max-height: 640px) {
  .logo img {
    width: 90px;
    height: 32px;
  }

  .icon-burger {
    width: 70%;
    height: 70%;
  }

  .burger {
    align-items: center;
  }

  header {
    padding: 5px 24px;
  }

  .hero__title {
    padding: 7px 24px 7px;
    margin-bottom: 0;
    font-size: 15px;
  }

  .feature__icon img {
    width: 40px;
    height: 45px;
  }

  .feature__icon p {
    font-size: 14px;
  }

  .features {
    gap: 10px;
    margin-bottom: 20px;
    max-width: 77%;
  }

  .btn--primary {
    margin-top: 16px;
    padding: 12px 66px;
    font-size: 20px;
  }

  .steps li {
    gap: 9px;
    margin-bottom: 5px;
    padding: 0 24px;
    font-size: 14px;
  }

  .footer__inner h3 {
    font-size: 19px;
    margin-top: 0px;
  }

  .footer__inner p {
    font-size: 13px;
  }

  .steps {
    margin-bottom: 9px;
  }
}

@media screen and (max-width: 394px) {}

@media screen and (max-width: 375px) {
  .footer__inner h3 {
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 5px;
  }

  .footer__inner {
    padding: 0 15px;
  }

  .steps li {
    gap: 9px;
    margin-bottom: 5px;
    padding: 0 20px;
    font-size: 14px;
  }

  .features {
    gap: 10px;
    margin-bottom: 10px;
    max-width: 77%;
  }

  .btn--primary {
    margin-top: 11px;
    padding: 12px 66px;
    font-size: 20px;
  }

  .footer__link {
    font-size: 11px;
  }
}

@media screen and (max-width: 361px) {}

@media screen and (max-width: 350px) {
  .notice-contaner__title {
    font-size: 10px;
  }
}

@media screen and (orientation: landscape) and (min-width: 480px) and (max-width: 960px) and (max-height: 500px) {
  .nav a {
    font-size: 9px;
  }

  .nav {
    gap: 15px;
  }

  .logo img {
    width: 79px;
    height: 19px;
  }

  header {
    padding: 9px 13px;
  }

  .hero__title {
    font-size: 13px;
    margin-bottom: 7px;
    justify-self: center;
    padding-top: 8px;
    display: flex;
    justify-content: center;
  }

  .feature__icon img {
    width: 35px;
    height: 39px;
  }

  .feature p {
    font-size: 12px;
  }

  .features {
    margin-bottom: 0px;
  }

  .btn--primary {

    padding: 7px 65px;
    font-size: 16px;
    margin: 6px auto;
  }

  .btn--outline {
    padding: 5px 20px;
  }

  .steps li::before {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .steps li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 3px;
    padding: 0px 34px;
    font-size: 12px;
  }

  .steps {
    margin-top: 2px;
    margin-bottom: 3px;
    padding: 0;
  }

  .footer__inner h3 {
    font-size: 14px;
    margin-top: 0px;
  }

  .footer__inner p {
    padding-bottom: 3px;
    font-size: 11px;
  }

  .footer__link {
    font-size: 9px;
  }

  .footer_p {
    font-weight: bold;
    position: relative;
  }
}

@media screen and (orientation: landscape) and (min-width: 480px) and (max-width: 950px) and (max-height: 310px) {}