@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

a,
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style-type: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*$maxWidth: 1920;*/
:root {
  --main-dark-color: #222;
  --main-light-color: #fff;
  --secondary-dark-color: rgba(34, 34, 34, 0.75);
  --secondary-light-color: #818181;
}

body {
  color: #0F0B13;
  font-family: "Roboto", sans-serif;
}

.title {
  font-family: "Roboto", sans-serif;
  color: #0F0B13;
  line-height: 120%;
  font-weight: 600;
  margin: 0;
  font-size: 48px;
}
@media (max-width: 1170px) {
  .title {
    font-size: calc(22px + 26 * (100vw - 375px) / 795);
  }
}

.title-secondary {
  font-family: "Roboto", sans-serif;
  color: #0F0B13;
  line-height: 125%;
  font-weight: 600;
  font-size: 34px;
}
@media (max-width: 1170px) {
  .title-secondary {
    font-size: calc(22px + 12 * (100vw - 375px) / 795);
  }
}

.title-tertiary {
  font-family: "Roboto", sans-serif;
  color: #0F0B13;
  line-height: 133%;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1170px) {
  .title-tertiary {
    font-size: calc(16px + 8 * (100vw - 375px) / 795);
  }
}
@media (max-width: 1024px) {
  .title-tertiary {
    line-height: 150%;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

h1 {
  text-align: center;
  letter-spacing: 3px;
  font-size: 36px;
  line-height: 48px;
  padding-bottom: 48px;
  color: white;
}

body {
  color: var(--main-dark-color);
  font-size: 2rem;
  line-height: normal;
  font-weight: 400;
  background-color: #1B1B1B;
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

body.no-scroll {
  overflow: hidden;
}

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

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

@media (max-width: 768px) {
  html {
    font-size: 60%;
  }
}
@media (max-width: 425px) {
  html {
    font-size: 50%;
  }
}
.header {
  position: relative;
  padding-top: 1.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000;
  color: var(--main-light-color);
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
  animation: showHeader 1s;
}
.header__content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  max-width: 68.5rem;
  animation: showPromo 1s;
}
.header__title {
  margin-bottom: 1rem;
}
.header__subtitle {
  color: var(--secondary-light-color);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.header__btn {
  text-transform: uppercase;
  font-size: 1.8rem;
  padding: 1.1rem 5.5rem;
  background-color: #2E4DEC;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .header__btn:hover {
    background-color: #0b28b8;
  }
}

.menu-btn {
  display: none;
  position: relative;
  width: 25px;
  height: 20px;
  z-index: 50;
  margin-left: auto;
}

.menu-btn::after,
.menu-btn::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  left: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-btn::after {
  top: 0;
}

.menu-btn::before {
  bottom: 0;
}

.menu-btn span {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.logo {
  display: block;
}
.logo__img {
  max-width: none;
}

.menu__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 10rem;
}
.menu__link {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}
.menu__link:before {
  content: "";
  background-color: var(--main-light-color);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s;
  opacity: 0;
}
@media (min-width: 768px) {
  .menu__link:hover::before {
    opacity: 1;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .menu__list {
    gap: 1rem 5rem;
  }
}
@media (max-width: 768px) {
  .header {
    padding-top: 3rem;
    background-image: none;
  }
  .header::after {
    content: "";
    position: absolute;
    height: 227px;
    width: 255px;
    background-image: url("../images/header-bg-small.jpg");
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
  }
  .header__btn {
    padding: 1.1rem 2rem;
  }
  .menu {
    transform: translateY(-300%);
    opacity: 0;
    position: absolute;
    background-color: black;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 100;
    transition: all 0.3s;
    height: 100vh;
    color: white;
  }
  .menu__list {
    padding-top: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .menu__link {
    display: block;
    padding: 2rem 0;
    font-size: 3rem;
    color: white;
  }
  .menu_active {
    transform: translateY(0);
    opacity: 1;
  }
  .menu-btn {
    display: block;
    z-index: 100;
  }
  .menu-btn_active span {
    display: none;
  }
  .menu-btn_active::after,
  .menu-btn_active::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .menu-btn_active::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .menu-btn_active::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.header__top img {
  width: 86px;
}
@media (max-width: 768px) {
  .header__top img {
    width: 72px;
  }
}

.footer {
  padding: 5rem 0;
  background-color: #000000;
  color: var(--main-light-color);
}
.footer__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem 3rem;
  flex-wrap: wrap;
}
.footer__item {
  min-width: 20rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  font-size: 2.6rem;
  font-weight: 600;
  gap: 2rem;
  margin-bottom: 1.8rem;
}
.footer__text {
  max-width: 26rem;
  font-weight: 300;
  font-size: 1.8rem;
}
.footer__item-title {
  margin-bottom: 1.8rem;
  font-size: 1.8rem;
  font-weight: 600;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__list-link {
  font-weight: 300;
  font-size: 1.8rem;
  position: relative;
  transition: all 0.3s;
}
.footer__list-link:before {
  content: "";
  background-color: var(--main-light-color);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s;
  opacity: 0;
}
@media (min-width: 768px) {
  .footer__list-link:hover::before {
    opacity: 1;
    width: 100%;
  }
}

@media (max-width: 425px) {
  .footer {
    padding: 6rem 0;
  }
}
.about {
  padding-top: 5rem;
}
.about__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.about__item {
  padding: 13rem 4rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  height: 60rem;
}
@media (max-width: 768px) {
  .about__item {
    padding: 5rem 4rem;
  }
}
.about__item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(27, 27, 27, 0.7);
  justify-content: center;
  height: 100%;
  border-radius: 1rem;
}
.about__item-title {
  color: white;
  padding: 12px;
  width: max-content;
}
.about__item-text {
  font-size: 2.2rem;
  margin: 0 auto;
  max-width: 45rem;
  font-weight: 300;
}
.about__item-text.element-animation {
  transition: all 1s;
}
.about__product {
  background-color: #F7F8FA;
  padding: 8rem 0;
}
.about__product-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  overflow: hidden;
}
.about__product-info.element-animation {
  transform: translateX(30px);
}
.about__product-info.element-show {
  transform: translateX(0);
}
.about__product-img {
  max-width: none;
}
.about__product-img.element-animation {
  transform: translateX(-30px);
}
.about__product-img.element-show {
  transform: translateX(0);
}
.about__product-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.about__product-text {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 70rem;
}
.about__product-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  text-align: center;
  gap: 2rem;
}
.about__product-value {
  text-wrap: nowrap;
  font-size: 3.6rem;
  font-weight: 600;
}
.about__product-name {
  color: var(--secondary-dark-color);
  font-weight: 300;
}
.about__product-name span {
  display: block;
}

@media (max-width: 1024px) {
  .about__items {
    grid-template-columns: 1fr;
  }
  .about__product-items {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}
@media (max-width: 768px) {
  .about__item {
    height: 48rem;
  }
  .about__item-title {
    margin: 5rem 0 1rem;
  }
  .about__product-inner {
    display: block;
    text-align: center;
  }
  .about__product-img {
    margin: 0 auto;
    max-width: 70%;
  }
  .about__product-items {
    text-align: center;
  }
}
.about__item-text p {
  display: flex;
  align-items: center;
  color: white;
  padding: 12px;
  height: 185px;
}

.new-products {
  padding-top: 5rem;
}
.new-products__title {
  margin-bottom: 1.6rem;
  text-align: center;
  color: white;
}
.new-products__subtitle {
  font-size: 1.6rem;
  color: var(--secondary-light-color);
  margin-bottom: 5rem;
  text-align: center;
}
.new-products__subtitle.element-show {
  transition: all 1s;
}
.new-products__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  justify-content: space-between;
  gap: 2rem;
  text-align: center;
}

.product {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #272727;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 5px 8px #141414;
  justify-content: space-between;
}
.product__img {
  margin-bottom: 3rem;
  border-radius: 1rem;
}
.product__inner {
  display: flex;
  flex-direction: column;
  align-items: start;
  color: white;
}
.product__info {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .product__info {
    flex-direction: column;
  }
}
.product__button {
  align-items: center;
  display: flex;
}
.product__button-btn {
  color: white;
  border: 1px solid #70F2A1;
  padding: 10px;
  border-radius: 10px;
}
.product__button__name {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 2rem;
  border-radius: 1rem;
  padding: 10px;
}
.product__button__price {
  color: white;
  padding: 8px;
  margin-bottom: 1rem;
  font-weight: 400;
}
.product__button__descr {
  margin-bottom: 2rem;
  font-size: 1.6rem;
}
.product__button__btn {
  margin: auto auto 0 auto;
  text-transform: uppercase;
  font-size: 1.6rem;
  padding: 8px;
  background-color: #2E4DEC;
  border-radius: 30px;
  font-weight: 600;
  max-width: 15rem;
  width: 100%;
  color: var(--main-light-color);
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .product__button__btn:hover {
    background-color: #0b28b8;
  }
}

@media (max-width: 1024px) {
  .new-products__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 430px) {
  .new-products__items {
    grid-template-columns: 1fr;
  }
  .product__inner {
    align-items: center;
    gap: 12px;
  }
  .product__button {
    justify-content: center;
    padding: 12px 0 12px 0;
  }
}
.reviews {
  padding: 5rem 0 10rem;
}
.reviews__title {
  text-align: center;
  margin-bottom: 5rem;
}
.reviews__items {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 2rem;
}
.reviews__item {
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 1.5rem;
}
.reviews__item-text {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  font-weight: 300;
}
.reviews__item-user {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.reviews__item-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.reviews__item-name {
  display: block;
  font-weight: 600;
}
.reviews__item-job {
  display: block;
  color: var(--secondary-light-color);
  font-size: 1.8rem;
}

@media (max-width: 1024px) {
  .reviews__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .reviews__items {
    grid-template-columns: 1fr;
  }
  .reviews__title {
    margin-bottom: 3rem;
  }
}
.hero__banner {
  height: auto;
}
@media (max-width: 430px) {
  .hero__banner {
    display: none;
  }
}
.hero__banner img {
  width: 100%;
}
.hero__mobile {
  display: none;
}
@media (max-width: 430px) {
  .hero__mobile {
    display: block;
    height: 100vh;
  }
}
.hero__mobile-img {
  height: 100%;
}

.card__product {
  display: flex;
}
.card__item {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 80px 0;
  gap: 60px;
  flex: 1 1;
}
@media (max-width: 1024px) {
  .card__item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 48px 0;
  }
}
@media (max-width: 768px) {
  .card__item {
    padding: 32px 0 0 0;
  }
}
.card__content {
  width: 50%;
}
@media (max-width: 768px) {
  .card__content {
    width: 100%;
  }
}
.card__content p {
  font-size: 14px;
  color: white;
  padding: 16px;
  border: 1px solid #70F2A1;
  border-radius: 16px;
  margin: 12px 0 12px 0;
  font-weight: 300;
}
.card__info {
  width: 50%;
}
@media (max-width: 768px) {
  .card__info {
    width: 100%;
  }
}
.card__info h2 {
  color: white;
}
.card__info h3 {
  color: white;
  padding: 12px 0 12px 0;
}
.card__image img {
  border-radius: 32px;
  width: 100%;
}
.card__text {
  color: white;
}
.card__text-list span {
  color: #70F2A1;
  font-weight: 400;
  display: block;
  text-align: right;
}
.card__text li {
  border-bottom: 1px solid #8c8c8c;
  padding: 18px 0 18px 0;
  display: flex;
  font-weight: 300;
  font-size: 18px;
  justify-content: space-between;
  gap: 80px;
}
.card__text-list:last-child {
  border: none;
}

.feedback__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

iframe {
  max-width: 100%;
  max-height: 100%;
  width: 720px;
  height: 415px;
  padding: 0 16px 0 16px;
}

.title {
  font-weight: 500;
}
.title_64 {
  font-size: 6.4rem;
}
.title_48 {
  font-size: 4.8rem;
}
.title_36 {
  font-size: 3.6rem;
}

@media (max-width: 768px) {
  .title_64 {
    font-size: 4rem;
  }
}
@media (max-width: 425px) {
  .title_48 {
    font-size: 4.4rem;
  }
  .title_36 {
    font-size: 3.4rem;
  }
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 32px;
}

.row {
  margin: -20px 0;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.row .col {
  padding: 0 20px;
  float: left;
  box-sizing: border-box;
}
.row .col.x-50 {
  width: 85%;
}
.row .col.x-100 {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

.content-wrapper {
  min-height: 100%;
  position: relative;
}

.get-in-touch {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  padding-top: 60px;
}
.get-in-touch .title {
  text-align: center;
  letter-spacing: 3px;
  font-size: 36px;
  line-height: 48px;
  padding-bottom: 48px;
  color: white;
}

.contact-form .form-field {
  position: relative;
  margin: 32px 0;
}
.contact-form .input-text {
  display: block;
  width: 100%;
  height: 36px;
  border-width: 0 0 2px 0;
  border-color: #000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  background-color: #1b1b1b;
  caret-color: white;
  color: white;
}
.contact-form .input-text:focus {
  outline: none;
}
.contact-form .input-text:focus + .label, .contact-form .input-text.not-empty + .label {
  transform: translateY(-24px);
}
.contact-form .label {
  position: absolute;
  left: 20px;
  bottom: 11px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: white;
  cursor: text;
  transition: transform 0.2s ease-in-out;
}
.contact-form .submit-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-family: Raleway, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

.note {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-family: Lusitana, serif;
  font-size: 16px;
  line-height: 21px;
}
.note .link {
  color: white;
  text-decoration: none;
}
.note .link:hover {
  text-decoration: underline;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: white !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: white;
}

.wpcf7 form.invalid .wpcf7-response-output {
  color: white;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  padding-top: 8px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 1em 0.5em 1em;
}

.wpcf7-spinner {
  display: none;
}
/*# sourceMappingURL=app.css.map */
