@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
html {
  font-size: 62.5%;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  scroll-padding-top: 14rem;
  scroll-behavior: smooth;
}
@media (max-width: 991px) {
  html {
    scroll-padding-top: 8.6rem;
  }
}

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

body {
  margin: 0;
  padding: 0;
  min-width: 360px;
  background-color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
}

button, a, svg {
  transition: all 0.2s ease-in;
}

img {
  max-width: 100%;
}

button {
  cursor: pointer;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

p {
  margin-top: 0;
}

h1, h2, h3 {
  margin-top: 0;
}

.container {
  max-width: 137.5rem;
}

.g-transparent {
  background-color: transparent;
}

.header {
  position: fixed;
  z-index: 22;
  left: 0;
  right: 0;
  background: #fff;
}

.logo-link {
  display: block;
}

.section:not(.section-content-shown) .section-title-above,
.section:not(.section-content-shown) .banner-text,
.section:not(.section-content-shown) .section-what-we-do-text,
.section:not(.section-content-shown) .section-services-main-link-wrap,
.section:not(.section-content-shown) .advantages-inner,
.section:not(.section-content-shown) .offer-title-above,
.section:not(.section-content-shown) .section-product-main-title,
footer:not(.section-content-shown) .section-title-above,
footer:not(.section-content-shown) .banner-text,
footer:not(.section-content-shown) .section-what-we-do-text,
footer:not(.section-content-shown) .section-services-main-link-wrap,
footer:not(.section-content-shown) .advantages-inner,
footer:not(.section-content-shown) .offer-title-above,
footer:not(.section-content-shown) .section-product-main-title {
  opacity: 0;
  transform: translateY(20px);
}
.section:not(.section-content-shown) .section-title-main,
.section:not(.section-content-shown) .banner-title,
.section:not(.section-content-shown) .footer-text,
.section:not(.section-content-shown) .section-what-we-do-link,
.section:not(.section-content-shown) .offer-title-main,
.section:not(.section-content-shown) .offer-text,
.section:not(.section-content-shown) .section-product-main-text,
footer:not(.section-content-shown) .section-title-main,
footer:not(.section-content-shown) .banner-title,
footer:not(.section-content-shown) .footer-text,
footer:not(.section-content-shown) .section-what-we-do-link,
footer:not(.section-content-shown) .offer-title-main,
footer:not(.section-content-shown) .offer-text,
footer:not(.section-content-shown) .section-product-main-text {
  opacity: 0;
  transform: translateX(-20px);
}

.content {
  padding-top: 14rem;
}
@media (max-width: 991px) {
  .content {
    padding-top: 8.6rem;
  }
}

.header-top {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E0E0E0;
  transition: all 0.2s ease-in;
}
.header-top > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-top {
    display: none;
  }
}
.header-top.hide-top-bar {
  height: 0;
  padding: 0;
  overflow: hidden;
}

.icon-container {
  display: flex;
  align-items: center;
}

.basic-icon {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  max-width: 2rem;
  margin-right: 0.5rem;
}

.location-text {
  color: #070E13;
  font-size: 1.6rem;
  font-weight: 400;
  margin-right: auto;
}

.header-top-right {
  display: flex;
  align-items: center;
}

.header-mail {
  display: flex;
  align-items: center;
  color: #828282;
}

.header-tel {
  display: flex;
  align-items: center;
  color: #070E13;
}
@media (max-width: 991px) {
  .header-tel {
    font-weight: 600;
  }
}

.header-mail:hover, .header-mail:focus,
.header-tel:hover,
.header-tel:focus {
  color: #C00;
}

@media (min-width: 992px) {
  .header-top-right-link:not(:first-child) {
    padding-left: 1.7rem;
    margin-left: 1.7rem;
    border-left: 1px solid #E0E0E0;
  }
}

.header-main {
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #E0E0E0;
}
.header-main > .container {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .header-main > .container {
    overflow: hidden;
  }
}

.logo {
  max-width: 172px;
}

.logo-link:hover, .logo-link:focus {
  opacity: 0.7;
}

.nav-wrapper {
  margin: 0 auto;
}
@media (max-width: 991px) {
  .nav-wrapper {
    position: fixed;
    left: 0;
    right: 30px;
    background: #fff;
    top: 8.6rem;
    padding: 2.5rem;
    border-top: 1px solid #E0E0E0;
    height: 100vh;
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 36px;
       column-gap: 36px;
}
@media (max-width: 991px) {
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

.nav-list-item {
  position: relative;
}
.nav-list-item .nav-list-item-wrap {
  display: flex;
  align-items: center;
}
.nav-list-item .nav-list-item-wrap a {
  color: #1D1D1D;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: normal;
  padding: 1rem 0;
}
.nav-list-item .nav-list-item-wrap a:hover, .nav-list-item .nav-list-item-wrap a:focus {
  color: #C00;
}
.nav-list-item .nav-list-item-wrap a:hover + button svg, .nav-list-item .nav-list-item-wrap a:focus + button svg {
  fill: #C00;
}
.nav-list-item .nav-list-item-wrap button {
  padding: 1rem;
  border: 0;
  background: unset;
}
.nav-list-item .nav-list-item-wrap button svg {
  fill: #1D1D1D;
}
.nav-list-item .nav-list-item-wrap button:hover, .nav-list-item .nav-list-item-wrap button:focus {
  fill: #C00;
}
@media (max-width: 991px) {
  .nav-list-item .nav-list-item-child {
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-in;
  }
}
@media (min-width: 992px) {
  .nav-list-item:hover .nav-list-item-child {
    visibility: visible;
    opacity: 1;
    transform: translateY(2.3rem);
    pointer-events: unset;
  }
}
.nav-list-item:hover .nav-list-item-wrap a {
  color: #C00;
}
.nav-list-item:hover .nav-list-item-wrap a + button svg {
  fill: #C00;
}
.nav-list-item .nav-list-item-child {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.2s;
  background: #FFF;
  padding-left: 1.5rem;
}
@media (min-width: 992px) {
  .nav-list-item .nav-list-item-child {
    visibility: hidden;
    opacity: 0;
    transform: translateY(1rem);
    pointer-events: none;
    width: -moz-max-content;
    width: max-content;
    align-items: flex-start;
    padding: 4.2rem 5rem 5rem;
    border-top: 3px solid #C00;
    position: absolute;
    filter: drop-shadow(0px 4px 12px rgba(171, 171, 171, 0.25));
    border-bottom-left-radius: 2.5rem;
    border-bottom-right-radius: 2.5rem;
  }
  .nav-list-item .nav-list-item-child::before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    height: 3.3rem;
    background: transparent;
    top: -3.3rem;
    left: 0;
  }
}
.nav-list-item .nav-list-item-child a:hover, .nav-list-item .nav-list-item-child a:focus {
  color: #C00;
}
@media (max-width: 991px) {
  .nav-list-item .nav-list-item-child a {
    color: #828282;
    font-size: 1.4rem;
    font-weight: 400;
  }
}

.btn {
  background-color: #C00;
  border: none;
  font-weight: 600;
  padding: 1.6rem 3rem;
  transition: background-color 0.2s ease-in;
  color: #fff;
  border-radius: 1.5rem;
}
@media (max-width: 768px) {
  .btn {
    font-size: 1.3rem;
  }
}
.btn:hover, .btn:focus {
  background-color: #070E13;
  border-color: #070E13;
}

@media (max-width: 991px) {
  .header-popup-btn {
    display: none;
  }
}

.burger-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 40px;
  height: 100%;
  padding: 10px;
  border: none;
  background: transparent;
  z-index: 11;
  margin-left: auto;
}
.burger-btn span {
  left: 0;
}
.burger-btn > span, .burger-btn > span::before, .burger-btn > span::after {
  display: block;
  position: absolute;
  width: 24px;
  height: 3px;
  border-radius: 10px;
  background-color: #070E13;
  transition-duration: 0.25s;
}
.burger-btn > span::before {
  content: "";
  top: -8px;
}
.burger-btn > span::after {
  content: "";
  top: 8px;
}
.burger-btn.open > span {
  transform: rotate(45deg);
}
.burger-btn.open > span::before {
  top: 0;
  transform: rotate(0);
}
.burger-btn.open > span::after {
  top: 0;
  transform: rotate(90deg);
}
@media (min-width: 992px) {
  .burger-btn {
    display: none;
  }
}

.js-open-menu {
  transform: translateX(0);
}

.js-transition-menu {
  transition: transform 0.3s ease-in-out;
}

.js-burger-close {
  display: block;
  position: relative;
  padding: 0;
  margin-bottom: 30px;
  width: 29px;
  height: 29px;
  border: none;
  background-color: transparent;
}

.js-burger-close:before, .js-burger-close:after {
  content: "";
  position: absolute;
  left: 45%;
  top: 0;
  height: 34px;
  width: 4px;
  background-color: #C00;
}

.js-burger-close:before {
  transform: rotate(45deg);
}

.js-burger-close:after {
  transform: rotate(-45deg);
}

@media (min-width: 992px) {
  .mobnav-widgets {
    display: none;
  }
}

.mobnav-popup-btn-wrap {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}

.mobnav-links {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.section-title {
  display: flex;
  flex-direction: column;
  line-height: normal;
}
.section-title .section-title-above {
  color: #C00;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 0.9s, opacity 0.9s;
}
@media (max-width: 592px) {
  .section-title .section-title-above {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.section-title .section-title-main {
  color: #030303;
  font-size: 5rem;
  font-weight: 600;
  transition: transform 0.9s, opacity 0.9s;
}
@media (max-width: 592px) {
  .section-title .section-title-main {
    font-size: 2.6rem;
  }
}

.embed-responsive {
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.embed-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media (max-width: 615px) {
  .embed-responsive::before {
    padding-top: 35rem;
  }
}

.embed-responsive-item {
  border: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.main-banner {
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-bottom-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  background: #000;
}

.section-main {
  position: relative;
  background: #F8F8F8;
}

.main-banner-wrap {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.main-banner-content {
  margin-top: 16vw;
  max-width: 60rem;
}

.banner-title {
  color: #FFF;
  font-size: 7rem;
  font-size: 3.65vw;
  font-weight: 600;
  margin-bottom: 3rem;
  line-height: normal;
  transition: transform 0.9s, opacity 0.9s;
}
@media (max-width: 991px) {
  .banner-title {
    font-size: 7vw;
  }
}
@media (max-width: 592px) {
  .banner-title {
    font-size: 9vw;
  }
}

.banner-text {
  color: #FFF;
  font-size: 1.8rem;
  font-size: 0.95vw;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 0;
  transition: transform 0.9s, opacity 0.9s;
}
@media (max-width: 991px) {
  .banner-text {
    font-size: 1.8vw;
  }
}
@media (max-width: 592px) {
  .banner-text {
    font-size: 3vw;
  }
}

.section-partners {
  padding-top: 5.2rem;
  padding-bottom: 5.2rem;
  background: #F8F8F8;
  border-bottom-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
}
@media (max-width: 592px) {
  .section-partners {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }
}

.partners-row {
  row-gap: 1rem;
}

.section-partners-title {
  color: #828282;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
}

.section-what-we-do {
  padding-top: 12rem;
  padding-bottom: 4.4rem;
}
@media (max-width: 768px) {
  .section-what-we-do {
    padding-top: 3.6rem;
    padding-bottom: 2rem;
  }
}

.section-what-we-do-text {
  color: #070E13;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 2.5rem;
  transition: all 1s;
}
@media (max-width: 592px) {
  .section-what-we-do-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.section-what-we-do-link {
  color: #070E13;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 0.7rem;
  border-bottom: 3px solid #C00;
}
.section-what-we-do-link:hover, .section-what-we-do-link:focus {
  color: #C00;
}
@media (max-width: 592px) {
  .section-what-we-do-link {
    font-size: 1.4rem;
  }
}

.section-advantages {
  padding-top: 4.4rem;
  padding-bottom: 10.6rem;
}
@media (max-width: 768px) {
  .section-advantages {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}

.advantages-row {
  row-gap: 1.5rem;
}
.advantages-row > div:nth-child(1) > .advantages-inner {
  transition-delay: 0;
}
.advantages-row > div:nth-child(2) > .advantages-inner {
  transition-delay: 0.2s;
}
.advantages-row > div:nth-child(3) > .advantages-inner {
  transition-delay: 0.4s;
}

.advantages-title {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 592px) {
  .advantages-title:not(.service-advantages-title) {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}
.advantages-title .advantages-icon {
  width: 6.5rem;
  min-width: 6.5rem;
  height: 6.5rem;
  max-width: 6.5rem;
  margin-right: 2.4rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.advantages-title .advantages-icon.advantages-1 {
  background-image: url("../images/advantages-1.png");
}
.advantages-title .advantages-icon.advantages-2 {
  background-image: url("../images/advantages-2.png");
}
.advantages-title .advantages-icon.advantages-3 {
  background-image: url("../images/advantages-3.png");
}
.advantages-title .advantages-icon.scouting-1 {
  background-image: url("../images/scouting-1.png");
}
.advantages-title .advantages-icon.scouting-2 {
  background-image: url("../images/scouting-2.png");
}
.advantages-title .advantages-icon.scouting-3 {
  background-image: url("../images/scouting-3.png");
}
.advantages-title .advantages-icon.research-1 {
  background-image: url("../images/research-1.png");
}
.advantages-title .advantages-icon.research-2 {
  background-image: url("../images/research-2.png");
}
.advantages-title .advantages-icon.research-3 {
  background-image: url("../images/research-3.png");
}
@media (max-width: 592px) {
  .advantages-title .advantages-icon {
    width: 4rem;
    min-width: 4rem;
    height: 4rem;
    max-width: 4rem;
    margin-right: 0;
  }
}
.advantages-title .advantages-title-text {
  color: #070E13;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 592px) {
  .advantages-title .advantages-title-text {
    font-size: 1.6rem;
  }
}

.advantages-text {
  color: #828282;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  margin-bottom: 0;
}
@media (max-width: 592px) {
  .advantages-text {
    font-size: 1.4rem;
  }
}

.advantages-inner {
  padding: 4.1rem 3rem;
  border: 2px solid #F2F2F2;
  border-radius: 1.5rem;
  height: 100%;
  transition-property: all;
  transition-duration: 0.9s;
}
@media (max-width: 592px) {
  .advantages-inner {
    padding: 2rem;
  }
}

.section-products {
  padding-top: 11rem;
  padding-bottom: 9.8rem;
  border-radius: 5rem;
  background: #F8F8F8;
}
@media (max-width: 768px) {
  .section-products {
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-radius: 3rem;
  }
}

.section-products .section-title {
  margin-bottom: 6.6rem;
}
@media (max-width: 768px) {
  .section-products .section-title {
    margin-bottom: 2.7rem;
  }
}

.section-products-list {
  margin-bottom: 3.6rem;
}
@media (max-width: 768px) {
  .section-products-list {
    margin-bottom: 2.7rem;
  }
}

.section-products-list-item {
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid #E0E0E0;
  row-gap: 1.5rem;
}
.section-products-list-item:last-child {
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 768px) {
  .section-products-list-item {
    flex-wrap: wrap;
  }
}
@media (max-width: 592px) {
  .section-products-list-item {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.section-products-list-item-number {
  color: #828282;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-right: 4.2rem;
}
@media (max-width: 592px) {
  .section-products-list-item-number {
    display: none;
  }
}

.section-products-product-name {
  color: #1D1D1D;
  margin-bottom: 0;
  font-size: 2.2rem;
  font-weight: 500;
}
@media (max-width: 592px) {
  .section-products-product-name {
    font-size: 1.6rem;
  }
}

.section-products-product-list {
  margin: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .section-products-product-list {
    order: 1;
    padding: 0;
  }
}

.section-products-product-list-item-link {
  display: inline-block;
  padding: 1rem;
  border-radius: 2rem;
  color: #828282;
  font-size: 1.5rem;
  font-weight: 400;
  border: 1px solid #E0E0E0;
  transition: all 0.2s ease-in;
}
.section-products-product-list-item-link:hover, .section-products-product-list-item-link:focus {
  color: #fff;
  border-color: #C00;
  background-color: #C00;
}
@media (max-width: 592px) {
  .section-products-product-list-item-link {
    padding: 0.7rem 1rem;
    font-size: 1.3rem;
  }
}

.section-products-list-link {
  display: flex;
  align-items: center;
  -moz-column-gap: 11px;
       column-gap: 11px;
  color: #070E13;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}
.section-products-list-link:hover, .section-products-list-link:focus {
  color: #C00;
}
@media (max-width: 768px) {
  .section-products-list-link {
    margin-left: auto;
  }
}
@media (max-width: 592px) {
  .section-products-list-link span {
    display: none;
  }
}

.section-products-popup-btn {
  display: block;
  margin: 0 auto;
}

.section-services {
  padding-top: 14rem;
  padding-bottom: 14rem;
}
@media (max-width: 768px) {
  .section-services {
    padding-top: 4rem;
    padding-bottom: 6.5rem;
  }
}

.services-row {
  row-gap: 1.5rem;
}

.section-services-main-link-wrap {
  position: relative;
  transition: all 1.3s;
}

.section-services-main-link {
  display: block;
  position: relative;
  z-index: 1;
}
.section-services-main-link:hover, .section-services-main-link:focus {
  opacity: 0.7;
}
.section-services-main-link img {
  border-radius: 1.5rem;
}

.section-services-item-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 9%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media (max-width: 592px) {
  .section-services-item-wrap {
    padding: 2.3rem;
  }
}

.section-services-title {
  display: flex;
  align-items: center;
  color: #FFF;
  font-size: 2.3rem;
  font-weight: 600;
  gap: 0.3rem;
  margin-bottoM: auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 592px) {
  .section-services-title {
    font-size: 2rem;
  }
}

.section-services-links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.section-services-link {
  display: inline-block;
  padding: 1rem;
  border-radius: 2rem;
  color: #070E13;
  font-size: 1.5rem;
  font-weight: 400;
  border: 1px solid #E0E0E0;
  transition: all 0.2s ease-in;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.section-services-link:hover, .section-services-link:focus {
  color: #fff;
  border-color: #C00;
  background-color: #C00;
}
@media (max-width: 592px) {
  .section-services-link {
    padding: 0.8rem 1rem;
    font-size: 1.3rem;
  }
}

.footer-top {
  border-top-left-radius: 5rem;
  border-top-right-radius: 5rem;
  background: #C00;
  padding-top: 12rem;
  padding-bottom: 10.6rem;
  margin-bottom: -5rem;
}
@media (max-width: 768px) {
  .footer-top {
    padding-top: 2.6rem;
    padding-bottom: 7rem;
  }
}

.footer-title .section-title-main {
  color: #fff;
  transition: transform 0.9s, opacity 0.9s;
}
@media (min-width: 992px) {
  .footer-title {
    max-width: 50%;
  }
}

.footer-main {
  border-top-left-radius: 5rem;
  border-top-right-radius: 5rem;
  padding-top: 6.3rem;
  padding-bottom: 8.2rem;
  background: #070E13;
}
@media (max-width: 768px) {
  .footer-main {
    padding-top: 2.7rem;
    padding-bottom: 3.7rem;
  }
}

.footer-main-container {
  display: flex;
}
@media (max-width: 991px) {
  .footer-main-container {
    flex-direction: column;
    row-gap: 3rem;
  }
}

@media (min-width: 992px) {
  .footer-text-wrap {
    max-width: 40%;
  }
}

.footer-text {
  margin: 0;
  color: #828282;
  font-size: 2rem;
  font-weight: 400;
  line-height: 145%;
}
@media (max-width: 592px) {
  .footer-text {
    font-size: 1.4rem;
  }
}

.footer-form,
.request-popup-form,
.product-popup-form {
  border-radius: 1.5rem;
  background: #FFF;
  padding: 3.8rem 1.9rem 6.2rem;
}
@media (min-width: 992px) {
  .footer-form:not(.request-popup-form):not(.product-popup-form),
  .request-popup-form:not(.request-popup-form):not(.product-popup-form),
  .product-popup-form:not(.request-popup-form):not(.product-popup-form) {
    margin-left: auto;
    margin-top: -25rem;
  }
}
@media (max-width: 592px) {
  .footer-form,
  .request-popup-form,
  .product-popup-form {
    padding: 2.3rem 1.9rem 3.6rem;
  }
}

.form-title {
  color: #070E13;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.8rem;
}
@media (max-width: 592px) {
  .form-title {
    font-size: 1.8rem;
    margin-bottom: 1.7rem;
  }
}

.form-input-row {
  display: flex;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  row-gap: 1.5rem;
}
.form-input-row.border-top {
  border-top: 1px solid #E0E0E0;
  padding-top: 2.2rem;
}

.form-input-holder {
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.7rem;
}

.form-file-holder {
  padding: 0 1.5rem;
}
.form-file-holder label {
  display: flex;
  align-items: center;
  color: #C00;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 145%;
  text-decoration-line: underline;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.form-file-holder label:hover, .form-file-holder label:focus {
  color: #000;
}
.form-file-holder label:hover svg, .form-file-holder label:focus svg {
  fill: #000;
}
.form-file-holder label svg {
  margin-right: 1rem;
  fill: #C00;
}

#input-file {
  visibility: hidden;
  height: 1px;
  width: 1px;
  display: block;
}

.form-label {
  color: #828282;
  font-size: 1.5rem;
  font-weight: 400;
}

.form-input {
  border-radius: 1.5rem;
  border: 1px solid #E0E0E0;
  min-height: 4.7rem;
  padding: 0 1.5rem;
  transition: all 0.2s ease-in;
}
.form-input:focus {
  border-color: #C00;
}

.form-textarea {
  padding-top: 1.5rem;
  min-height: 12.6rem;
}

.w-100 {
  width: 100%;
}

.footer-bottom {
  background: #070E13;
  padding-bottom: 6.7rem;
}

.footer-bottom-container {
  border-top: 1px solid #333;
  padding-top: 5.4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 32px;
}

.footer-bottom-logo-wrap {
  width: 20%;
}
@media (max-width: 768px) {
  .footer-bottom-logo-wrap {
    width: 50%;
    order: 0;
  }
}
@media (max-width: 592px) {
  .footer-bottom-logo-wrap img {
    max-width: 13rem;
  }
}

.footer-bottom-links-wrap {
  margin: 0 auto;
  width: 60%;
}
@media (max-width: 768px) {
  .footer-bottom-links-wrap {
    width: 100%;
    order: 1;
    padding: 2rem 0;
    border-bottom: 1px solid #333;
    border-top: 1px solid #333;
  }
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  -moz-column-gap: 3.6rem;
       column-gap: 3.6rem;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 1rem;
}

.footer-bottom-link,
.footer-bottom-links a {
  color: #FFF;
  font-weight: 400;
}
.footer-bottom-link:hover, .footer-bottom-link:focus,
.footer-bottom-links a:hover,
.footer-bottom-links a:focus {
  opacity: 0.5;
}

.footer-bottom-contacts-wrap {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-end;
  width: 20%;
}
@media (max-width: 768px) {
  .footer-bottom-contacts-wrap {
    width: 50%;
    order: 0;
    margin-left: auto;
  }
}

.footer-contacts-link {
  display: flex;
  align-items: center;
}
@media (max-width: 592px) {
  .footer-contacts-link {
    font-size: 1.4rem;
  }
}

.footer-tel {
  color: #FFF;
}
.footer-tel:hover, .footer-tel:focus {
  opacity: 0.7;
}

.footer-mail {
  color: #828282;
}
.footer-mail:hover, .footer-mail:focus {
  opacity: 0.7;
}

.footer-bottom-empty-item {
  width: 20%;
}
@media (max-width: 768px) {
  .footer-bottom-empty-item {
    display: none;
  }
}

.footer-bottom-copyright-wrap {
  width: 60%;
}
@media (max-width: 768px) {
  .footer-bottom-copyright-wrap {
    width: 50%;
    order: 1;
  }
}

.footer-bottom-copyright {
  color: #6B6B6B;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (min-width: 769px) {
  .footer-bottom-copyright {
    text-align: center;
  }
}

.footer-bottom-socials-wrap {
  width: 20%;
}
@media (max-width: 768px) {
  .footer-bottom-socials-wrap {
    width: 50%;
    order: 1;
  }
}

.footer-socials-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.footer-socials-link:hover, .footer-socials-link:focus {
  opacity: 0.7;
}

.asterisk-required {
  color: #C00;
}

.popup,
.product-popup,
.message-popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 10px 0;
  overflow: hidden;
  overflow-y: auto;
  visibility: hidden;
  transition: visibility 0.2s ease-in;
}
.popup__title,
.product-popup__title,
.message-popup__title {
  margin-bottom: 20px;
  color: #C00;
  text-align: center;
  max-width: 578px;
  margin: 0 auto;
  line-height: 55px;
}
.popup__title span,
.product-popup__title span,
.message-popup__title span {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .popup__title span,
  .product-popup__title span,
  .message-popup__title span {
    font-size: 26px !important;
    line-height: 30px !important;
  }
}
@media (max-width: 768px) {
  .popup__title,
  .product-popup__title,
  .message-popup__title {
    line-height: 30px !important;
  }
}
.popup__text,
.product-popup__text,
.message-popup__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 31px;
  margin-bottom: 45px;
  text-align: center;
  color: #201F1B;
}
@media (max-width: 768px) {
  .popup__text,
  .product-popup__text,
  .message-popup__text {
    font-size: 13px;
    line-height: 18px;
  }
}
.popup__form,
.product-popup__form,
.message-popup__form {
  display: flex;
  flex-direction: column;
}
.popup__form input, .popup__form button,
.product-popup__form input,
.product-popup__form button,
.message-popup__form input,
.message-popup__form button {
  width: 100%;
  max-width: 414px;
  margin: 0 auto;
}
.popup__form div,
.product-popup__form div,
.message-popup__form div {
  max-width: 414px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.popup__form button,
.product-popup__form button,
.message-popup__form button {
  margin-top: 10px;
  border-radius: 30px 0 30px 30px;
}
.popup__form label,
.product-popup__form label,
.message-popup__form label {
  position: absolute;
  font-weight: 600;
  font-size: 16px;
  left: 20px;
  top: 13px;
  color: #828595;
  transition: top 0.2s ease-in;
}
@media (max-width: 768px) {
  .popup__form label,
  .product-popup__form label,
  .message-popup__form label {
    font-size: 13px;
  }
}
.popup__form input,
.product-popup__form input,
.message-popup__form input {
  background: #FFFFFF;
  color: #000;
  box-shadow: 0px 7px 20px 8px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 19px;
  padding-bottom: 5px;
  padding-top: 33px;
  border: none;
  margin-bottom: 10px;
}
.popup__form input:focus + label,
.product-popup__form input:focus + label,
.message-popup__form input:focus + label {
  top: 0;
}

.popup-wrap,
.product-popup-wrap,
.message-popup-wrap {
  display: flex;
  flex-flow: column nowrap;
  flex-shrink: 0;
  flex-grow: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 850px;
  margin: auto;
}

.popup-content,
.product-popup-content,
.message-popup-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  max-width: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: auto;
  background-color: #fff;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.2s ease 0s, opacity 0.2s ease 0s;
}

.popup-content_active,
.product-popup-content_active,
.message-popup-content_active {
  transform: scale(1);
  opacity: 1;
}

.popup-description, .product-popup, .message-popup-description {
  height: 100%;
}

.popup-close-btn,
.product-popup-close-btn {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0;
  width: 22px;
  height: 22px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.popup-close-btn:before,
.popup-close-btn:after,
.product-popup-close-btn:before,
.product-popup-close-btn:after {
  content: "";
  position: absolute;
  left: 45%;
  top: 0;
  height: 22px;
  width: 1px;
  background-color: #000;
  transition: background-color 0.2s ease-in;
}

.popup-close-btn:before,
.product-popup-close-btn:before {
  transform: rotate(45deg);
}

.popup-close-btn:after,
.product-popup-close-btn:after {
  transform: rotate(-45deg);
}

.popup-close-btn:hover::before,
.popup-close-btn:hover::after,
.product-popup-close-btn:hover::before,
.product-popup-close-btn:hover::after {
  background-color: #C00;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.popup_active,
.product-popup_active,
.message-popup_active {
  visibility: visible;
}

.popup-overlay,
.product-popup-overlay,
.message-popup-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 14;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.popup-overlay_active,
.product-popup-overlay_active,
.message-popup-overlay_active {
  opacity: 0.7;
  pointer-events: auto;
}

.popup #contact-form textarea.form-control,
.product-popup #contact-form textarea.form-control {
  height: 100px;
}

.section-about {
  padding-top: 6.5rem;
  padding-bottom: 16rem;
}
@media (max-width: 768px) {
  .section-about {
    padding-top: 2.7rem;
    padding-bottom: 4rem;
  }
}

.about-row {
  row-gap: 2rem;
}

@media (min-width: 992px) {
  .about-inner {
    max-width: 60rem;
  }
}

.about-text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 150%;
  color: #070E13;
}
.about-text:last-child {
  margin-bottom: 0;
}
@media (max-width: 592px) {
  .about-text {
    font-size: 1.4rem;
  }
}

.offer-inner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 11.5rem 9rem;
  border-radius: 1.5rem;
  background-size: cover;
  background-image: url("../images/offer.png");
}
@media (max-width: 991px) {
  .offer-inner {
    padding: 3.8rem 2.5rem;
  }
}

.offer-title {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 0;
}

.offer-row {
  align-items: center;
  row-gap: 1rem;
}

.offer-title-above {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2rem;
  transition: transform 0.9s, opacity 0.9s;
}
@media (max-width: 592px) {
  .offer-title-above {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

.offer-title-main {
  color: #FFF;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 135%;
  transition: transform 0.9s, opacity 0.9s;
}
@media (max-width: 592px) {
  .offer-title-main {
    font-size: 2rem;
  }
}

.offer-text {
  margin: 0;
  color: #FFF;
  font-size: 2rem;
  font-weight: 400;
  line-height: 145%;
  transition: transform 0.9s, opacity 0.9s;
}
@media (max-width: 592px) {
  .offer-text {
    font-size: 1.4rem;
  }
}

.section-about-advantages {
  padding-top: 11rem;
  padding-bottom: 12rem;
}
@media (max-width: 768px) {
  .section-about-advantages {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.section-contact {
  padding-top: 5.3rem;
  padding-bottom: 12.3rem;
}
.section-contact .section-title {
  margin: 0;
}
@media (max-width: 768px) {
  .section-contact {
    padding-top: 2.6rem;
    padding-bottom: 4rem;
  }
}

.contacts-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

.contacts-widgets {
  width: 39rem;
  padding: 3.5rem;
  border-radius: 15px;
  border: 1px solid #E0E0E0;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  max-width: 100%;
}
.contacts-widgets .basic-icon {
  margin-right: 1rem;
}
@media (max-width: 991px) {
  .contacts-widgets {
    padding: 1.7rem;
  }
}

.contacts-tel {
  font-size: 1.8rem;
  font-weight: 600;
}
@media (max-width: 592px) {
  .contacts-tel {
    font-size: 1.6rem;
  }
}

.contacts-mail {
  font-size: 1.8rem;
}
@media (max-width: 592px) {
  .contacts-mail {
    font-size: 1.6rem;
  }
}

.contacts-location {
  font-size: 1.6rem;
}

.contacts-socials-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contacts-socials-link:hover, .contacts-socials-link:focus {
  opacity: 0.7;
}

.contacts-map iframe {
  border-radius: 1.5rem;
  border: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.contacts-row {
  row-gap: 2.6rem;
}

.section-product-main {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: cover;
  background-image: url("../images/product.png");
  padding-top: 10rem;
  padding-bottom: 10rem;
  border-bottom-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
}

.section-product-main-title {
  color: #FFF;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: transform 0.9s, opacity 0.9s;
}

.section-product-main-text {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 3.5rem;
  transition: transform 0.9s, opacity 0.9s;
}

.section-product-list {
  padding-top: 6.8rem;
  padding-bottom: 11rem;
}
@media (max-width: 768px) {
  .section-product-list {
    padding-top: 3.4rem;
    padding-bottom: 4.5rem;
  }
}

.section-product-list-items {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 4.4rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .section-product-list-items {
    margin-bottom: 3.4rem;
  }
}

.choose-product-btn {
  display: block;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid #E0E0E0;
  background-color: transparent;
  color: #070E13;
  font-size: 1.6rem;
  font-weight: 400;
}
.choose-product-btn.choose-btn-active {
  border-color: #C00;
  color: #C00;
}
.choose-product-btn:hover, .choose-product-btn:focus {
  border-color: #C00;
  background-color: #C00;
  color: #fff;
}
@media (max-width: 592px) {
  .choose-product-btn {
    padding: 0.8rem;
    font-size: 1.4rem;
  }
}

.section-products-main-list-item {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid #E0E0E0;
  transform-origin: top;
  transition: all 0.4s ease-in-out;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .section-products-main-list-item {
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
  }
}
.section-products-main-list-item:last-child:not(:first-child) {
  border-bottom: 0;
}
.section-products-main-list-item.animate {
  opacity: 0;
  animation: animate-in 0.4s ease forwards;
}
.section-products-main-list-item.moving {
  animation: moving 0.4s ease forwards;
}
.section-products-main-list-item:not(.active) {
  opacity: 0;
  height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

@keyframes animate-in {
  0% {
    opacity: 0;
    transform: translate3d(-50px, -25px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes moving {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
}
.section-products-product-name {
  margin: 0;
  color: #070E13;
  font-size: 2.2rem;
  font-weight: 600;
}
@media (min-width: 769px) {
  .section-products-product-name {
    flex: 0 0 25%;
  }
}
@media (max-width: 592px) {
  .section-products-product-name {
    font-size: 1.6rem;
  }
}

.section-products-products-description-wrap {
  display: flex;
  align-items: center;
  margin: 0;
}
@media (min-width: 769px) {
  .section-products-products-description-wrap {
    flex: 0 0 50%;
    margin: 0 auto;
  }
}
.section-products-products-description-wrap p {
  margin: 0;
  color: #828282;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 592px) {
  .section-products-products-description-wrap p {
    font-size: 1.4rem;
  }
}

.expand-btn {
  border: none;
  background: transparent;
}
.expand-btn svg {
  fill: #828282;
}
.expand-btn:hover svg, .expand-btn:focus svg {
  fill: #C00;
}
.expand-btn.expand-btn-active {
  transform: rotate(180deg);
}

.text-expandable {
  cursor: pointer;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.text-expandable:hover + .expand-btn svg {
  fill: #C00;
}

.product-popup-btn {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid #C00;
  background-color: #fff;
  color: #C00;
}
@media (min-width: 769px) {
  .product-popup-btn {
    flex: 0 0 15%;
  }
}
@media (max-width: 592px) {
  .product-popup-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
  }
  .product-popup-btn svg {
    width: 1.6rem;
    min-width: 1.6rem;
    max-width: 1.6rem;
    height: 2rem;
  }
}
.product-popup-btn svg {
  margin-right: 1rem;
  fill: #C00;
}
.product-popup-btn:hover, .product-popup-btn:focus {
  color: #fff;
  background-color: #C00;
  border-color: #C00;
}
.product-popup-btn:hover svg, .product-popup-btn:focus svg {
  fill: #fff;
}

.section-service-advantages {
  padding-top: 10rem;
  padding-bottom: 5.5rem;
}
.section-service-advantages .advantages-title {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-service-advantages {
    padding-top: 3.6rem;
    padding-bottom: 2rem;
  }
}

.section-service-about {
  padding-top: 5.5rem;
  padding-bottom: 12rem;
}
@media (max-width: 768px) {
  .section-service-about {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
}

.message-popup.popup-success .error-message {
  display: none;
}
.message-popup.popup-error .success-message {
  display: none;
}
.message-popup .message-popup-inner {
  padding: 4rem;
}
.message-popup .message-popup-content {
  max-width: 550px;
}
.message-popup .success,
.message-popup .error {
  color: #070E13;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.message-popup p {
  color: #070E13;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  margin-bottom: 4rem;
}
.message-popup .btn {
  margin: 0 auto;
  display: block;
  width: 17rem;
}

.section-subcategories-list {
  padding-top: 6.8rem;
  padding-bottom: 11rem;
}
.section-subcategories-list .row {
  row-gap: 2rem;
}

@media (min-width: 769px) {
	.section-subcategories-list .row {
		row-gap: 4rem;
	}
}

@media (max-width: 768px) {
  .section-subcategories-list {
    padding-top: 3.4rem;
    padding-bottom: 4.5rem;
  }
}

.subcategories-item {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  border-left: 1px solid grey;
  border-right: 1px solid grey;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.subcategories-img {
  display: block;
  margin: 0 auto 1.5rem;
}

.subcategories-description {
  margin-top: auto;
  margin-bottom: 2rem;
}

.subcategories-btn {
  margin: 0 auto;
  display: block;
}/*# sourceMappingURL=style.css.map */