* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  scrollbar-color: #fdce2a #f1f1f1;
  scrollbar-width: thin;
}
*::-webkit-scrollbar-thumb {
  background-color: #fdce2a;
}
*::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
*::-webkit-scrollbar-button {
  display: none;
  background-color: #fdce2a;
}
*::-webkit-scrollbar {
  width: 8px;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

a,
button {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  font-family: inherit;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Black.woff2") format("woff2"), url("../fonts/Gilroy-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Extrabold.woff2") format("woff2"), url("../fonts/Gilroy-Extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: HelveticaNeueCyr;
  font-display: swap;
  src: url("../fonts/HelveticaNeueCyr-Medium.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: HelveticaNeueCyr;
  font-display: swap;
  src: url("../fonts/HelveticaNeueCyr-Regular.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: TacticSansExd;
  font-display: swap;
  src: url("../fonts/TacticSansExd-Black.woff2") format("woff2"), url("../fonts/TacticSansExd-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: TacticSansExd;
  font-display: swap;
  src: url("../fonts/TacticSansExd-Medium.woff2") format("woff2"), url("../fonts/TacticSansExd-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: TacticSansExd;
  font-display: swap;
  src: url("../fonts/TacticSansExd-Bold.woff2") format("woff2"), url("../fonts/TacticSansExd-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/*------------------------------
Buttons
---------------------------*/
.button {
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(253, 206, 42);
  padding: 10px;
  height: 90px;
  color: rgb(47, 40, 46);
  font-family: Gilroy;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  gap: 10px;
  width: max-content;
  min-width: 214px;
  transition: all 0.3s ease 0s;
  border: 2px solid transparent;
}
@media (hover: hover) {
  .button:hover {
    border-color: #000;
  }
  .button:hover .button-icon {
    transform: translateX(3px);
  }
}
@media (max-width: 1420px) {
  .button {
    height: auto;
  }
}
@media (max-width: 600px) {
  .button {
    font-size: 16px;
    padding: 8px 10px;
  }
}

.button-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(47, 40, 46);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease 0s;
}
.button-icon svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
  color: #fff;
}
@media (max-width: 600px) {
  .button-icon {
    width: 30px;
    height: 30px;
  }
  .button-icon svg {
    width: 14px;
    height: 14px;
  }
}

/*------------------------------
Titles
---------------------------*/
.title {
  font-family: TacticSansExd;
  font-size: 2.5vw;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 1800px) {
  .title {
    font-size: 2vw;
  }
}

.title-grey {
  color: #959194;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100%;
  font-family: Gilroy;
  font-size: 16px;
  line-height: 140%;
  color: #2f282e;
}

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

main {
  flex: 1 1 auto;
}

.container {
  width: calc(100% - 140px);
  margin-inline: auto;
}

/*------------------------------
Menu
---------------------------*/
.menu {
  border-radius: 100px;
  background: rgb(234, 234, 234);
}
@media (max-width: 1200px) {
  .menu {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    margin-left: auto;
  }
}
@media (max-width: 1000px) {
  .menu {
    position: absolute;
    top: 60px;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .menu {
    top: 22px;
    right: 22px;
  }
}
.menu__icon {
  display: none;
}
@media (max-width: 1200px) {
  .menu__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 40px;
    height: 40px;
  }
  .menu__icon svg {
    width: 26px;
    height: 26px;
    color: #2f282e;
  }
}
.menu__body {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding: 12px;
}
@media (max-width: 1420px) {
  .menu__body {
    gap: 16px;
  }
}
@media (max-width: 1200px) {
  .menu__body {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: all 0.3s ease 0s;
    background: #fff;
    width: min(100% - 40px, 500px);
    height: 100dvh;
    border-radius: 30px 0 0 30px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    padding: 40px 24px;
  }
  .menu__body.active {
    transform: translateX(0);
  }
}
.menu__body-logo {
  display: none;
}
@media (max-width: 1200px) {
  .menu__body-logo {
    display: block;
    max-width: 200px;
    width: 100%;
  }
  .menu__body-logo svg {
    width: 100%;
    object-fit: contain;
  }
}
.menu__body-close {
  display: none;
}
@media (max-width: 1200px) {
  .menu__body-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #f1f1f1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu__body-close svg {
    width: 30px;
    height: 30px;
    z-index: 2;
    rotate: 45deg;
  }
}
.menu__list {
  max-width: 415px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  margin-left: 33px;
}
@media (max-width: 1600px) {
  .menu__list {
    gap: 14px;
    margin-left: 26px;
  }
}
@media (max-width: 1420px) {
  .menu__list {
    margin-left: 16px;
  }
}
@media (max-width: 1200px) {
  .menu__list {
    flex-direction: column;
    justify-content: start;
    gap: 20px;
  }
}
.menu__link {
  white-space: nowrap;
  color: rgb(29, 33, 44);
  font-family: Gilroy;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  transition: all 0.3s ease 0s;
}
@media (hover: hover) {
  .menu__link:hover {
    color: #fdce2a;
  }
}
@media (max-width: 1600px) {
  .menu__link {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .menu__link {
    font-size: 22px;
  }
}
.menu__tel a {
  color: rgb(29, 33, 44);
  font-family: Gilroy;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  white-space: nowrap;
  transition: all 0.3s ease 0s;
}
@media (hover: hover) {
  .menu__tel a:hover {
    color: #fdce2a;
  }
}
@media (max-width: 1600px) {
  .menu__tel a {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .menu__tel a {
    font-size: 24px;
  }
}
.menu__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1600px) {
  .menu__socials {
    gap: 6px;
  }
}
.menu__social {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2f282e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu__social svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  color: #fff;
  transition: all 0.3s ease 0s;
}
@media (hover: hover) {
  .menu__social:hover svg {
    color: #fdce2a;
  }
}
@media (min-width: 1201px) and (max-width: 1420px) {
  .menu__social {
    width: 36px;
    height: 36px;
  }
  .menu__social svg {
    width: 16px;
    height: 16px;
  }
}

/*------------------------------
Hero
---------------------------*/
.hero__body {
  margin: 30px;
  display: flex;
  height: calc(100vh - 60px);
  min-height: 700px;
  max-height: 1080px;
}
@media (max-width: 1600px) {
  .hero__body {
    margin: 20px;
  }
}
@media (max-width: 1000px) {
  .hero__body {
    flex-direction: column;
    gap: 0;
    height: auto;
  }
}
@media (max-width: 767px) {
  .hero__body {
    margin: 10px;
  }
}
.hero__image {
  flex: 0 0 46%;
  position: relative;
  overflow: hidden;
  border-radius: 35px;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1000px) {
  .hero__image {
    height: 400px;
    flex: 0 1 400px;
  }
  .hero__image img {
    object-position: center 30%;
  }
}
@media (max-width: 767px) {
  .hero__image {
    border-radius: 24px;
  }
}
.hero__logo {
  position: absolute;
  top: 30px;
  left: 0;
  border-radius: 0px 50px 50px 0px;
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 19px;
}
.hero__logo img {
  max-width: 189px;
}
@media (max-width: 767px) {
  .hero__logo {
    max-width: 140px;
    padding: 14px;
    display: flex;
    align-items: center;
    top: 13px;
    height: 40px;
  }
}
.hero__info {
  flex: 0 0 54%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 20px 20px 20px 112px;
  border-radius: 35px;
}
@media (max-width: 1800px) {
  .hero__info {
    padding: 20px 20px 20px 40px;
  }
}
@media (max-width: 1000px) {
  .hero__info {
    position: static;
    margin-top: -100px;
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .hero__info {
    padding: 32px 22px 32px;
    border-radius: 24px;
  }
}
.hero__title {
  margin-top: 60px;
  margin-left: 10px;
}
@media (max-width: 1800px) {
  .hero__title {
    margin-top: 30px;
  }
}
@media (max-width: 1000px) {
  .hero__title {
    font-size: 28px;
    text-wrap: balance;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    margin: 0;
    font-size: 20px;
  }
}
.hero__subtitle {
  max-width: 346px;
  color: rgb(47, 40, 46);
  font-family: TacticSansExd;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  margin-left: auto;
  background: #fff;
  margin-top: -20px;
  z-index: 2;
  padding-left: 10px;
}
@media (max-width: 1800px) {
  .hero__subtitle {
    max-width: unset;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 20px;
    text-wrap: balance;
  }
}
@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 14px;
    text-align: right;
  }
}
.hero__benefits {
  margin-bottom: 30px;
}
.hero__benefit {
  width: max-content;
  padding: 10px 30px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 50px;
  position: relative;
  color: rgb(29, 33, 44);
  font-family: Gilroy;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
}
.hero__benefit:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 1600px) {
  .hero__benefit {
    font-size: 16px;
    padding: 6px 20px;
  }
}
@media (max-width: 767px) {
  .hero__benefit {
    width: 100%;
    font-size: 14px;
    line-height: 120%;
  }
}
.hero__att {
  color: rgb(47, 40, 46);
  font-family: Gilroy;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 27px;
  max-width: 703px;
}
@media (max-width: 1800px) {
  .hero__att {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .hero__att {
    font-size: 14px;
  }
}
.hero__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .hero__buttons {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .hero__button {
    width: 100%;
  }
}