@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap");
/*обнулення */
* {
  padding: 0;
  margin: 0;
  border: 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 {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

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

ul, li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

/*______обнуление*/
/*====================================================*/
/*в початковий шаблон для оболочки та контейнеру*/
/*знаходить в імені класу контеінер і застосовує стилі*/
[class*=__container] {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 15px;
}

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

.page {
  flex: 1 1 auto;
}

/*==============================================*/
:root{
  --main-orang-color: #F96;
}
.comm-title h2 {
  font-weight: 400;
  line-height: 52.8px; /* 110% */
}
@media (max-width: 767px) {
  .comm-title h2 {
    font-size: calc(28px + 34 * (100vw - 320px) / 1920);
  }
}
@media (min-width: 767px) {
  .comm-title h2 {
    font-size: calc(28px + 20 * 100vw / 1920);
  }
}

.comm-button {
  color: #1B1C1D;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px; /* 100% */
  border-radius: 6px;
  border: 2px solid #1B1C1D;
  background: var(--main-orang-color);
  box-shadow: 4px 4px 0px 0px #000;
  padding: 16px 30px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .comm-button:hover {
    background-color: rgb(177, 81, 33);
    transition: all 0.3s ease;
  }
}

span.decorline {
  position: relative;
}

span.decorline::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--main-orang-color);
}

span.yellow::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #ffc127;
}

.header__burger {
  display: none;
}

.menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.header__logo img{
  max-width: 200px;
}

@media (max-width: 768px) {
  .header__burger {
    position: relative;
    z-index: 3;
  }
  .header__logo {
    z-index: 52;
  }
  .header__burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
  }
  .header__burger span {
    position: absolute;
    left: 0;
    top: 9px;
    background-color: #000;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease 0s;
  }
  .header__burger:before,
  .header__burger:after {
    content: "";
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
  }
  .header__burger:before {
    top: 0;
  }
  .header__burger:after {
    bottom: 0;
  }
  .header__burger.active:before {
    transform: rotate(45deg);
    top: 9px;
  }
  .header__burger.active:after {
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header__burger.active span {
    transform: scale(0);
  }
  .header__body-menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: var(--Background-Secondary, #fff);
    padding: 160px 0px 0px 0px;
    transition: all 0.3s ease 0s;
  }
  .header__body-menu.active {
    left: 0;
  }
  .menu-list {
    display: block;
    text-align: center;
  }
  .menu-list li {
    margin-bottom: 32px;
    font-size: 20px;
  }
  body.lock {
    overflow: hidden;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  color: #1B1C1D;
}

.header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 5;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-link {
  color: #1B1C1D;
  font-size: 16px;
  font-weight: 500;
  line-height: 100px; /* 625% */
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .header-link:hover {
    color: var(--main-orang-color);
    transition: all 0.3s ease;
  }
}

.promo {
  padding-top: calc(130px + 45 * (100vw - 320px) / 1600);
}
.promo__title {
  max-width: 680px;
  margin: 0 auto;
  margin-bottom: 37px;
}
.promo__title h1 {
  color: #1B1C1D;
  text-align: center;
  font-weight: 700;
  line-height: 61.6px; /* 110% */
}
@media (max-width: 767px) {
  .promo__title h1 {
    font-size: calc(30px + 44.2 * (100vw - 320px) / 1920);
  }
}
@media (min-width: 767px) {
  .promo__title h1 {
    font-size: calc(30px + 26 * 100vw / 1920);
  }
}
.promo__title h1 span.decorline {
  position: relative;
}
.promo__title h1 span.decorline::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--main-orang-color);
}
.promo__label {
  text-align: center;
  font-weight: 400;
  line-height: 34px; /* 170% */
  max-width: 604px;
  margin: 0 auto;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .promo__label {
    font-size: calc(16px + 6.8 * (100vw - 320px) / 1920);
  }
}
@media (min-width: 767px) {
  .promo__label {
    font-size: calc(16px + 4 * 100vw / 1920);
  }
}
.promo__button {
  text-align: center;
  margin-bottom: 20px;
}
.promo__img {
  text-align: center;
  margin-bottom: 25px;
}
.promo__img img {
  max-width: 100%;
}
.promo__text {
  text-align: center;
  font-weight: 400;
  line-height: 34px; /* 170% */
  max-width: 977px;
  margin: 0 auto;
}
.promo__img img{
  max-width: 500px;
}
@media (max-width: 767px) {
  .promo__img img{
    max-width: 100%;
  }
  .promo__text {
    font-size: calc(16px + 6.8 * (100vw - 320px) / 1920);
  }
}
@media (min-width: 767px) {
  .promo__text {
    font-size: calc(16px + 4 * 100vw / 1920);
  }
}

.combin {
  padding-top: calc(70px + 50 * (100vw - 320px) / 1600);
}
.combin__title {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 48px;
}
.combin__body {
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 768px) {
  .combin__body {
    flex-wrap: wrap;
  }
}
.combin__body-item {
  width: 257px;
  height: 200px;
  border-radius: 12px;
  border: 2px solid #1B1E21;
  box-shadow: 4px 4px 0px 0px #1B1E21;
  padding: 32px 22px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.combin__body-item-num {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 71.4px; /* 170% */
}
.combin__body-item-text {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px; /* 170% */
  max-width: 133px;
}

.obtain {
  padding-top: 109px;
  padding-bottom: 100px;
}
.obtain__container {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 100px;
       column-gap: 100px;
  align-items: center;
  row-gap: 40px;
}
@media (max-width: 768px) {
  .obtain__container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.obtain__img {
  max-width: 455px;
}
@media (max-width: 768px) {
  .obtain__img {
    order: 2;
  }
}
.obtain__img img {
  max-width: 100%;
}
.obtain__content {
  max-width: 530px;
}
@media (max-width: 768px) {
  .obtain__content {
    order: 1;
  }
}
.obtain__content-title {
  max-width: 455px;
  margin-bottom: 24px;
}
.obtain__content-text {
  font-weight: 400;
  line-height: 34px; /* 170% */
  max-width: 545px;
}
@media (max-width: 767px) {
  .obtain__content-text {
    font-size: calc(16px + 6.8 * (100vw - 320px) / 1920);
  }
}
@media (min-width: 767px) {
  .obtain__content-text {
    font-size: calc(16px + 4 * 100vw / 1920);
  }
}

.competitor {
  background: var(--main-orang-color);
  padding: 95px 0px;
}
.competitor__title {
  text-align: center;
  max-width: 711px;
  margin: 0 auto;
  margin-bottom: 23px;
}
.competitor__label {
  text-align: center;
  font-weight: 400;
  line-height: 34px; /* 170% */
  margin: 0 auto;
  max-width: 530px;
  margin-bottom: 55px;
}
a:hover{
  cursor: pointer;
}
.soon-button {
  background: #808080;
  min-width: 150px;
}
.soon_padding{
  width: 100%;
  display: block;
  height: 20px;
}
@media (max-width: 767px) {
  .competitor__label {
    font-size: calc(16px + 6.8 * (100vw - 320px) / 1920);
  }
}
@media (min-width: 767px) {
  .competitor__label {
    font-size: calc(16px + 4 * 100vw / 1920);
  }
}
.competitor__body {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 1130px) {
  .competitor__body {
    justify-content: center;
  }
}
.competitor__body-card {
  border-radius: 12px;
  border: 2px solid #1B1E21;
  background: #FFF;
  box-shadow: 4px 4px 0px 0px #000;
  padding: 32px;
  max-width: 450px;
}
.competitor__body-card-icon {
  padding: 22px;
  border-radius: 6px;
  border: 2px solid #1B1C1D;
  background: var(--main-orang-color);
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: 34px;
}
.what{
  margin-top: 20px;
  max-width: 275px;
}
.competitor__body-card-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26.4px; /* 120% */
  letter-spacing: -0.594px;
  margin-bottom: 20px;
}
.competitor__body-card-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px; /* 170% */
  margin-bottom: 24px;
}
.competitor__body-card-text:not(:last-child) {
  margin-bottom: 5px;
}
.competitor__body-card-text p:first-child {
  font-size: 16px;
  font-weight: 700;
  line-height: 27.2px;
  margin-bottom: 10px;
  padding-left: 20px;
}
.competitor__body-card-text p:last-child {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  position: relative;
  padding-left: 20px;
}
.competitor__body-card-text p:last-child::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 0;
  left: 0;
  background: url("../img/check.svg") 0 0 no-repeat;
  transform: translateY(6px);
}
.competitor__body-card-link {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 8px;
}
.competitor__body-card-link a {
  color: #EF793D;
  font-size: 16px;
  font-weight: 700;
  line-height: 27.2px; /* 170% */
}
.competitor__body-card-price {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px; /* 170% */
  margin-bottom: 24px;
}
.competitor__body-card-button {
  text-align: center;
}

.autor {
  padding-top: 65px;
  padding-bottom: 70px;
}
.autor__container {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .autor__container {
    flex-wrap: wrap;
  }
}
.autor__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px; /* 170% */
}
.autor__text p:not(:last-child) {
  margin-bottom: 20px;
}

.able {
  padding-top: 30px;
}
.able__container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .able__container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.able__content {
  max-width: 550px;
}
.able__content-title {
  margin-bottom: 20px;
}
.able__content-text {
  font-weight: 400;
  line-height: 34px; /* 170% */
}
@media (max-width: 767px) {
  .able__content-text {
    font-size: calc(16px + 6.8 * (100vw - 320px) / 1920);
  }
}
@media (min-width: 767px) {
  .able__content-text {
    font-size: calc(16px + 4 * 100vw / 1920);
  }
}
.able__img img {
  max-width: 100%;
}

.model {
  padding-top: 100px;
}
.model__container {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .model__container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.model__img, .obtain__img {
  border-radius: 12px;
  border: 2px solid #1B1E21;
  background: #FFF;
  box-shadow: 4px 4px 0px 0px #000;
  overflow: hidden;
  max-width: 45%;
}
@media (max-width: 768px) {
  .model__img {
    order: 2;
  }
  .model__img {
    max-width: 400px;
  }
}
.model__img img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .model__content {
    order: 1;
  }
}
.model__content-title {
  max-width: 360px;
  margin-bottom: 23px;
}
.model__content-text {
  max-width: 500px;
  font-weight: 400;
  line-height: 34px; /* 170% */
}
@media (max-width: 767px) {
  .model__content-text {
    font-size: calc(16px + 6.8 * (100vw - 320px) / 1920);
  }
}
@media (min-width: 767px) {
  .model__content-text {
    font-size: calc(16px + 4 * 100vw / 1920);
  }
}

.learn {
  padding-top: 100px;
}
.learn__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .learn__container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.learn__content-title {
  max-width: 430px;
  margin-bottom: 24px;
}
.learn__content-text {
  font-weight: 400;
  line-height: 34px; /* 170% */
  max-width: 535px;
}


.learn__img img {
  max-width: 450px;
}
@media (max-width: 767px) {
  .learn__content-text {
    font-size: calc(16px + 6.8 * (100vw - 320px) / 1920);
  }
}
@media (min-width: 767px) {
  .learn__content-text {
    font-size: calc(16px + 4 * 100vw / 1920);
  }
}
.boost {
  padding-top: 100px;
}
.boost__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .boost__container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.boost__img img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .boost__img {
    order: 2;
  }
}
@media (max-width: 768px) {
  .boost__content {
    order: 1;
  }
}
.boost__content-title {
  max-width: 465px;
  margin-bottom: 24px;
}
.boost__content-text {
  max-width: 570px;
  font-weight: 400;
  line-height: 34px; /* 170% */
}
@media (max-width: 767px) {
  .boost__content-text {
    font-size: calc(16px + 6.8 * (100vw - 320px) / 1920);
  }
}
@media (min-width: 767px) {
  .boost__content-text {
    font-size: calc(16px + 4 * 100vw / 1920);
  }
}

.analist {
  padding-top: 120px;
}
.analist__container {
  display: flex;
  gap: 22px;
}
@media (max-width: 996px) {
  .analist__container {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}
.analist__item {
  max-width: 563px;
}
@media (max-width: 996px) {
  .analist__item {
    max-width: 100%;
  }
}
.analist__item-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px; /* 120% */
  letter-spacing: -0.648px;
  margin-bottom: 30px;
}
.analist__item-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 34px; /* 170% */
}
.analist__item-text p {
  margin-bottom: 30px;
}
.analist__item-card {
  color: #3F444B;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px; /* 170% */
  max-width: 535px;
}
.analist__item-card p {
  margin-bottom: 0;
}
@media (max-width: 996px) {
  .analist__item-card {
    max-width: 100%;
  }
}
.analist__item-card p:first-child {
  font-family: "Times New Roman", Times, serif;
  color: var(--main-orang-color);
  font-size: 100px;
  font-weight: 900;
  line-height: 100px;
  font-style: oblique;
}
.analist__item-card p:last-child {
  margin-bottom: 30px;
}

.footer {
  background: #1B1C1D;
  padding: 80px 0px;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px; /* 170% */
}
.footer a {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px; /* 170% */
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .footer a:hover {
    color: var(--main-orang-color);
    text-decoration: underline;
    transition: all 0.3s ease;
  }
}
.footer__container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer__container {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 40px;
  }
}
.footer__logo {
  margin-bottom: 24px;
}
.footer__logo img{
  max-width: 175px;
}
.footer__rights {
  max-block-size: 100px;
}
.footer__icons {
  display: flex;
  gap: 20px;
  margin-top: 34px;
}
.footer__icons img {
  border-radius: 6px;
  background: #FFF;
  padding: 12px 12px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .footer__icons img:hover {
    background-color: var(--main-orang-color);
    transition: all 0.3s ease;
  }
}
.footer__item-data p {
  margin-bottom: 25px;
}
.footer__item-data p:first-child {
  color: rgba(255, 255, 255, 0.43);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px; /* 120% */
  letter-spacing: -0.432px;
  margin-bottom: 50px;
}
.footer__item-user p {
  margin-bottom: 25px;
}
.footer__item-user p:first-child {
  color: rgba(255, 255, 255, 0.43);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px; /* 120% */
  letter-spacing: -0.432px;
  margin-bottom: 50px;
}
.footer__item-company p {
  margin-bottom: 25px;
}
.footer__item-company p:first-child {
  color: rgba(255, 255, 255, 0.43);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px; /* 120% */
  letter-spacing: -0.432px;
  margin-bottom: 50px;
}

/* Стили поапов */

.wrapper_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 100vh;
}

.popup__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
  z-index: 9;
}

.popup__bg.active {
  opacity: 1;
  pointer-events: all;
  transition: 0.5s all;
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  width: 400px;
  padding: 25px;
  transition: 0.5s all;
  border: 5px solid var(--main-orang-color);
}

.popup.active {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.5s all;
}
.popup button{
  margin: 0 auto;
  display: block;
}
.close-popup {
  position: absolute;
  top: 4px;
  right: 8px;
  cursor: pointer;
  width: 15px;
}

.popup label {
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column-reverse;
}

.popup .label__text {
  font-size: 14px;
  font-weight: 500;
  color: rgb(0 0 0 / 87%);
  margin-bottom: 5px;
}
.popup .label__text span{
  color: red;
}
.popup input {
  height: 45px;
  font-size: 18px;
  border: none;
  outline: none;
  border-bottom: 1px solid #cfd0d3;
}

.popup input:focus {
  border-bottom: 1px solid #2982ff;
}

.popup input:focus + .label__text {
  color: var(--main-orang-color);
}

.popup textarea {
  resize: none;
  width: 100%;
  height: 150px;
  border: none;
  outline: none;
  border-bottom: 1px solid #cfd0d3;
  font-size: 18px;
  padding-top: 5px;
}

.popup textarea:focus {
  border-bottom: 1px solid #2982ff;
}

.popup textarea:focus + .label__text {
  color: #2982ff;
}
.disable{
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.not_found{
  padding-top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: bold;
}