.desc {
  color: #21202b;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  line-height: 1;
  color: #21202b;
  font-weight: 400;
  text-transform: uppercase;
}
.title::before {
  content: "";
  display: flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ec1e2f;
}

.subtitle {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 888px;
}
@media (max-width: 768px) {
  .subtitle {
    font-size: 23px;
  }
}

.heading {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .heading {
    gap: 15px;
    margin-bottom: 20px;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ec1e2f;
  border-radius: 2px;
  width: 100%;
  max-width: 436px;
  padding: 17px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .button:hover {
    background: rgba(236, 30, 47, 0.7333333333);
  }
}
@media (hover: none) {
  .button:active {
    background: rgba(236, 30, 47, 0.7333333333);
    transform: scale(0.97);
  }
}
@media (max-width: 768px) {
  .button {
    font-size: 16px;
  }
}

.link {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: #21202b;
  transition: all 0.3s ease;
}
.link::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #21202b;
  height: 1px;
  width: 0%;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .link:hover {
    color: #ec1e2f;
  }
  .link:hover::before {
    width: 100%;
    background: #ec1e2f;
  }
}
@media (hover: none) {
  .link:active {
    color: #ec1e2f;
  }
  .link:active::before {
    width: 100%;
    background: #ec1e2f;
  }
}

.container {
  width: 100%;
  max-width: 1372px;
  padding-inline: 16px;
  margin-inline: auto;
}

.main {
  margin-top: 134px;
}
@media (max-width: 768px) {
  .main {
    margin-top: 72px;
  }
}

section {
  padding: 150px 0;
}
section.topmarzero {
  padding-top: 0;
}
section.bgredsec {
  background: rgba(236, 30, 47, 0.05);
}
@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  display: flex;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header__box {
  max-width: 1372px;
  padding-inline: 16px;
  margin-inline: auto;
  width: 100%;
}
.header__logo {
  display: flex;
  height: 41px;
  width: 100%;
  max-width: 181px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__top {
  padding: 18px 0px 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 768px) {
  .header__top {
    padding: 10px 0;
  }
}
.header__bottom {
  padding: 10px 0px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .header__bottom {
    padding: 5px 0;
  }
}
.header__call {
  color: #21202b;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .header__call {
    display: none;
  }
}
.header.scroll-down {
  top: -75px;
}
@media (max-width: 768px) {
  .header.scroll-down {
    top: 0;
  }
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.menu__bg {
  display: none;
}
@media (max-width: 768px) {
  .menu__bg {
    position: absolute;
    right: 16px;
    bottom: 60px;
    display: flex;
    width: auto;
    height: 260px;
    -o-object-fit: contain;
    object-fit: contain;
    opacity: 0.5;
    z-index: -1;
  }
}
@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    z-index: 1000;
    transition: all 0.3s ease;
    flex-direction: column;
    padding: 80px 16px 30px;
    overflow-x: hidden;
    overflow-y: auto;
    gap: 10px;
  }
}
.menu__nav {
  display: flex;
  gap: 28px;
}
@media (max-width: 768px) {
  .menu__nav {
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
    overflow-x: hidden;
    overflow-y: auto;
  }
}

.menu__nav a {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: #21202b;
  transition: all 0.3s ease;
}
.menu__nav a::before {
  background: #fff;
}
.menu__nav a:hover {
  color: #ec1e2f;
}
.menu__nav a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #21202b;
  height: 1px;
  width: 0%;
  transition: all 0.3s ease;
}
.menu__nav a:hover::before {
  width: 100%;
  background: #ec1e2f;
}
.menu__link {
  position: relative;
  color: #21202b;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .menu__link {
    font-size: 21px;
    font-weight: 500;
    padding: 12px;
    background: #f50028;
    border-radius: 10px;
    flex-grow: 1;
    text-align: center;
    border: 1px solid rgba(33, 32, 43, 0.4);
    background: #fff;
  }
  .menu__link::before {
    bottom: 3px;
    left: 0;
    transform: none;
  }
}
.menu__socbox {
  display: flex;
  gap: 10px;
}
.menu__socicon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid #21202b;
  background: #fff;
  transition: all 0.3s ease;
}
.menu__socicon svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
.menu__socicon svg path {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .menu__socicon:hover {
    border-color: #ec1e2f;
    transform: scale(1.2);
  }
  .menu__socicon:hover path {
    fill: #ec1e2f;
  }
}
@media (hover: none) {
  .menu__socicon:active {
    border-color: #ec1e2f;
    transform: scale(1.2);
  }
  .menu__socicon:active path {
    fill: #ec1e2f;
  }
}

.burger {
  display: none;
}
@media (max-width: 768px) {
  .burger {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgb(184, 11, 30);
    padding: 7px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    z-index: 1010;
  }
  .burger__line {
    display: flex;
    height: 3px;
    border-radius: 5px;
    width: 100%;
    background: #fff;
    transition: all 0.3s ease;
  }
}

.header.menu-active .burger__line:nth-child(1) {
  transform: translate(0px, 8px) rotate(45deg);
}
.header.menu-active .burger__line:nth-child(2) {
  opacity: 0;
}
.header.menu-active .burger__line:nth-child(3) {
  transform: translate(0px, -8px) rotate(-45deg);
}
.header.menu-active .menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0%);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 50px;
  background: #21202b;
  z-index: 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 25px;
  }
}
.footer__box {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 26px;
}
@media (max-width: 768px) {
  .footer__box {
    grid-template-columns: 100%;
    gap: 20px;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer__logo {
  max-width: 260px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__line {
  width: 100%;
  max-width: 480px;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(34, 103, 222, 0) 0%,
    #2267de 50%,
    rgba(34, 103, 222, 0) 100%
  );
}
.footer__socbox {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__socicon {
  background: #283838;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.footer__socicon svg {
  width: 16px;
  height: 16px;
}
@media (hover: hover) {
  .footer__socicon:hover {
    transform: scale(1.2);
  }
}
@media (hover: none) {
  .footer__socicon:active {
    transform: scale(1.2);
  }
}

.footer__nav a {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: #fff;
  transition: all 0.3s ease;
}
.footer__nav a::before {
  background: #fff;
}
.footer__nav a:hover {
  color: #ec1e2f;
}
.footer__nav a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #21202b;
  height: 1px;
  width: 0%;
  transition: all 0.3s ease;
}
.footer__nav a:hover::before {
  width: 100%;
  background: #ec1e2f;
}
.footer__link {
  color: #fff;
}
.footer__link::before {
  background: #fff;
}
.footer__col {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 13px;
}
@media (max-width: 768px) {
  .footer__col {
    gap: 10px;
  }
}
.footer__title {
  color: #ec1e2f;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .footer__title {
    font-size: 18px;
  }
}
.footer__title::before {
  width: 8px;
  height: 8px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer__link {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 150%;
}
.footer__right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .footer__right {
    grid-template-columns: 100%;
    gap: 20px;
  }
}
.footer__spiner {
  position: absolute;
  bottom: -140px;
  right: -180px;
  max-width: 440px;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: -1;
}
@media (max-width: 768px) {
  .footer__spiner {
    max-width: 220px;
    bottom: -70px;
    right: -70px;
  }
}
.footer__bottom {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 180px;
}
@media (max-width: 768px) {
  .footer__bottom {
    margin-top: 100px;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
.footer__copyright {
  color: #4f4f4f;
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
}

.hero {
  position: relative;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .hero {
    min-height: 1500px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 25px;
  }
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .hero__heading {
    gap: 20px;
    margin-bottom: 20px;
  }
}
.hero__title {
  color: #21202b;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
.hero__subtitle {
  font-weight: 600;
  font-size: 22px;
  width: 604px;
  line-height: 120%;
  text-align: center;
}

.hero__desc {
  max-width: 580px;
}
.hero__video {
  position: relative;
  width: 580px;
  height: 352px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
  z-index: 10;
  transition: all 0.5s ease;
}
.hero__btn {
  margin-inline: auto;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
  }
  .hero__subtitle {
    width: 100%;
    font-size: 16px;
  }
  .hero__desc {
    width: 100%;
  }
  .hero__video {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero__btn {
    max-width: calc(100% - 32px);
  }
}
.hero__video-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
@media (max-width: 768px) {
  .hero__video-box {
    gap: 20px;
  }
}
@media (min-width: 769px) {
  .hero__video-box.animated-1 .hero__video {
    width: 100%;
  }
}
.hero__video-box.animated-2 {
  position: sticky;
  top: 300px;
}
@media (max-width: 768px) {
  .hero__video-box.animated-2 {
    position: relative;
    top: unset;
  }
}
@media (min-width: 769px) {
  .hero__video-box.animated-2 .hero__video {
    height: 700px;
    margin-top: -300px;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  .hero__video-box.animated-2 .hero__video {
    max-width: 436px;
    width: 100%;
    height: 100%;
    height: 100%;
    margin-top: 0px;
  }
}

.cat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid rgba(33, 32, 43, 0.5);
  background: #fff;
  padding: 18px;
  gap: 10px;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}
@media (max-width: 768px) {
  .cat-card {
    aspect-ratio: 1;
    padding: 16px;
  }
}
.cat-card__svg {
  margin-left: auto;
  border-radius: 2px;
  transition: background 0.3s ease, padding 0.3s ease;
}
.cat-card__svg path {
  transition: stroke 0.3s ease;
}
.cat-card__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 768px) {
  .cat-card__content {
    gap: 6px;
  }
}
.cat-card__title {
  color: #21202b;
  font-size: 18px;
  font-weight: 300;
  line-height: 120%;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .cat-card__title {
    font-size: 16px;
  }
}
.cat-card__count {
  color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 768px) {
  .cat-card__count {
    font-size: 16px;
  }
}
.cat-card__img {
  max-width: 273px;
  width: 100%;
  height: auto;
  max-height: 200px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: auto;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .cat-card__img {
    max-width: 230px;
    max-height: 150px;
  }
}
@media (hover: hover) {
  .cat-card:hover {
    border-color: #ec1e2f;
  }
  .cat-card:hover .cat-card__title {
    color: #ec1e2f;
  }
  .cat-card:hover .cat-card__img {
    transform: scale(0.98);
  }
  .cat-card:hover .cat-card__svg {
    padding: 4px;
    background: #ec1e2f;
  }
  .cat-card:hover .cat-card__svg path {
    stroke: #fff;
  }
}

.swiper-prodshome .swiper-slide {
  height: auto;
}

.prodshome {
  overflow: hidden;
}

.feedback__heading {
  max-width: 550px;
}
@media (max-width: 768px) {
  .feedback__heading {
    max-width: 100%;
  }
}
.feedback__box {
  display: grid;
  grid-template-columns: 390px 1fr 285px;
  gap: 70px;
}
@media (max-width: 768px) {
  .feedback__box {
    grid-template-columns: 100%;
    gap: 25px;
  }
}
.feedback__img {
  width: 100%;
  height: 100%;
  max-height: 224px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
  -webkit-clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
}
@media (max-width: 768px) {
  .feedback__img {
    min-height: auto;
    height: 224px;
    order: -2;
  }
}
.feedback__right {
  display: grid;
  grid-template-columns: 25px 195px 25px;
  height: -moz-fit-content;
  height: fit-content;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .feedback__right {
    order: -1;
    grid-template-columns: 25px 1fr 25px;
    max-width: 280px;
  }
}
.feedback__right_desc {
  color: #21202b;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 436px;
  margin-left: auto;
  width: 100%;
}
.feedback-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .feedback-form {
    max-width: 100%;
  }
}

.feedback-form-input {
  color: #21202b;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(33, 32, 43, 0.8);
}

.feedback-form-submit {
  margin-top: auto;
}
@media (max-width: 768px) {
  .feedback-form-submit {
    max-width: 100%;
    margin-top: 20px;
  }
}

.abouthome__img {
  width: 100%;
  height: 436px;
  border-radius: 2px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .abouthome__img {
    height: 300px;
    margin-bottom: 20px;
  }
}
.abouthome__content {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 436px;
  margin-left: auto;
  margin-right: 340px;
}
@media (max-width: 768px) {
  .abouthome__content {
    max-width: 100%;
    margin-right: 0px;
  }
}
@media (max-width: 768px) {
  .abouthome__btn {
    max-width: 100%;
  }
}

.vidprez__video {
  height: auto;
  max-height: calc(100vh - 150px);
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
}

.advantages__box {
  display: grid;
  grid-template-columns: 1fr 650px;
  gap: 130px;
}
@media (max-width: 768px) {
  .advantages__box {
    grid-template-columns: 100%;
    gap: 0px;
  }
}
.advantages__right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .advantages__right {
    grid-template-columns: 100%;
  }
}

.adv-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  height: 100%;
  width: 100%;
  background: #ec1e2f;
  border-radius: 2px;
  padding: 20px;
}
@media (max-width: 768px) {
  .adv-card {
    min-height: 130px;
    padding: 15px;
    gap: 15px;
  }
}
.adv-card__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}
.adv-card__title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 768px) {
  .adv-card__title {
    font-size: 20px;
  }
}

.brnchshm__line {
  height: 1px;
  width: 100%;
  display: flex;
  background: #d9d9d9;
}
.brnchshm__subtitle {
  text-transform: capitalize;
  line-height: 1;
}
.brnchshm__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .brnchshm__box {
    gap: 20px;
  }
}
.brnchshm__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .brnchshm__content {
    gap: 8px;
  }
}
.brnchshm__name {
  color: rgba(33, 32, 43, 0.5);
  line-height: 1;
}
.brnchshm__adrs {
  color: #21202b;
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
}
.brnchshm__map {
  border-radius: 2px;
  overflow: hidden;
  height: 540px;
}
@media (max-width: 768px) {
  .brnchshm__map {
    height: 300px;
  }
}
.brnchshm__map iframe {
  height: 100%;
  width: 100%;
}

.clntshome {
  overflow: hidden;
}

@media (max-width: 768px) {
  .swiper-clntshome .swiper-slide {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}

.clnt-card {
  flex-shrink: 0;
  width: 210px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 40px;
}
@media (max-width: 768px) {
  .clnt-card {
    width: 190px;
    padding: 30px;
  }
}
.clnt-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.newshome {
  overflow: hidden;
}

.swiper-newshome {
  overflow: hidden;
}
@media (max-width: 768px) {
  .swiper-newshome {
    overflow: visible;
  }
}

.newshome-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.newshome-card__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
}
.newshome-card__date {
  color: rgba(33, 32, 43, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.newshome-card__title {
  color: #21202b;
  font-size: 16px;
  font-weight: 300;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .newshome-card__title {
    font-size: 14px;
  }
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1) translateY(-15px);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes float4 {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1) translateY(-25px);
  }
}
.float1 {
  animation: float1 3s ease-in-out infinite;
}

.float2 {
  animation: float2 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.float3 {
  animation: float3 5s ease-in-out infinite;
  animation-delay: 1s;
}

.float4 {
  animation: float4 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

.spin360 {
  animation: spin 15s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg width='19' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.514.535l-6.42 6.42L2.677.536a1.517 1.517 0 00-2.14 0 1.517 1.517 0 000 2.14l6.42 6.419-6.42 6.419a1.517 1.517 0 000 2.14 1.517 1.517 0 002.14 0l6.419-6.42 6.419 6.42a1.517 1.517 0 002.14 0 1.517 1.517 0 000-2.14l-6.42-6.42 6.42-6.418a1.517 1.517 0 000-2.14 1.516 1.516 0 00-2.14 0z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E"),
    auto;
  visibility: hidden;
}
@media (max-width: 768px) {
  .modal {
    padding: 16px;
  }
}
.modal.is_active {
  display: flex;
  visibility: visible;
}
.modal.is_active .modal-inner {
  animation: scaleModal 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
.modal.is_active .modal-inner__bg {
  animation: scaleModal 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
    float2 3s ease-in-out 0.8s infinite;
  animation-delay: 0.3s;
}
.modal.is_active .modal-inner__bg_bottom {
  animation: scaleModal 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
    float1 3s ease-in-out 0.8s infinite;
}
.modal__close {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #f0f0f0;
  transition: scale 0.3s ease;
}
@media (max-width: 768px) {
  .modal__close {
    right: 15px;
    top: 15px;
  }
}
@media (max-width: 768px) {
  .modal__close svg {
    width: 24px;
    height: 24px;
  }
}
.modal__close:hover {
  scale: 1.1;
}
.modal__close:active {
  scale: 0.9;
}
.modal__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  width: calc(100% - 40px);
}
@media (max-width: 768px) {
  .modal__title {
    font-size: 23px;
  }
}

.modal-inner {
  position: relative;
  display: flex;
  background: #fff;
  border-radius: 2px;
  width: 100%;
  max-width: 500px;
  margin: auto;
  cursor: auto;
  will-change: scale, opacity, transform;
}
@media (max-width: 768px) {
  .modal-inner {
    border: 16px;
  }
}
.modal-inner__box {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.modal-form {
  margin: 0;
  max-width: 100%;
}
.modal-form__submit {
  max-width: 100%;
}

@keyframes scaleModal {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.abthero {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .abthero {
    padding-top: 40px;
  }
}
.abthero__img {
  height: 440px;
  border-radius: 2px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .abthero__img {
    height: 220px;
    margin-bottom: 20px;
  }
}
.abthero__desc {
  max-width: 662px;
  color: #21202b;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  margin-left: auto;
}

.abtmission {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .abtmission {
    padding-top: 40px;
  }
}
.abtmission__hdngbtm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  padding-bottom: 26px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .abtmission__hdngbtm {
    flex-direction: column;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.abtmission__desc {
  max-width: 560px;
}
.abtmission__caption {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .abtmission__caption {
    font-size: 23px;
  }
}
.abtmission__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .abtmission__box {
    display: flex;
    flex-wrap: wrap;
  }
}

.abtmission-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  min-height: 290px;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  padding: 20px;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .abtmission-card {
    min-height: 200px;
    gap: 15px;
  }
}
.abtmission-card__title {
  color: #ec1e2f;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .abtmission-card__title {
    font-size: 22px;
  }
}
.abtmission-card__desc {
  color: #21202b;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  transition: color 0.3s ease;
}
.abtmission-card:hover {
  background: #ec1e2f;
}
.abtmission-card:hover .abtmission-card__title {
  color: #fff;
}
.abtmission-card:hover .abtmission-card__desc {
  color: #fff;
}

.history {
  position: relative;
}
.history__title {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .history__title {
    margin-bottom: 30px;
  }
}
.history__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px;
}
@media (max-width: 768px) {
  .history__box {
    grid-template-columns: 100%;
    gap: 20px;
  }
}
.history__left {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .history__left {
    display: none;
  }
}
.history__left::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 20px;
  height: 100%;
  background: #ec1e2f;
  width: 1px;
  z-index: -1;
}
.history__right {
  position: sticky;
  top: 30%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 400px;
}
@media (max-width: 768px) {
  .history__right {
    position: relative;
    top: unset;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: auto;
  }
}

.history-year {
  display: flex;
  gap: 32px;
  padding-bottom: 500px;
}
.history-year__num {
  color: #21202b;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: color 0.3s ease;
}
.history-year__num::before {
  content: "";
  width: 12px;
  height: 12px;
  display: flex;
  border-radius: 50%;
  background: #21202b;
  transition: background 0.3s ease;
}
.history-year__desc {
  color: rgba(33, 32, 43, 0.5);
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 320px;
}
.history-year.active .history-year__num {
  color: #ec1e2f;
}
.history-year.active .history-year__num::before {
  background: #ec1e2f;
}

.history-block {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .history-block {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    gap: 10px;
  }
}
.history-block__title {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .history-block__title {
    font-size: 20px;
  }
}
.history-block__img {
  max-width: 385px;
  width: 100%;
  height: 225px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 2px;
  /*-webkit-clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);*/
}
@media (max-width: 768px) {
  .history-block__img {
    height: 200px;
  }
}
.history-block__mob {
  display: none;
}
@media (max-width: 768px) {
  .history-block__mob {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.history-block.active {
  opacity: 1;
  pointer-events: auto;
}

.team__box {
  display: grid;
  grid-template-columns: 775px 1fr;
  gap: 55px;
}
@media (max-width: 768px) {
  .team__box {
    grid-template-columns: 100%;
    gap: 10px;
  }
}
.team__box_right {
  height: auto;
  max-height: 420px;
}
@media (max-width: 768px) {
  .team__box_right {
    max-height: auto;
  }
}
.team__heading {
  flex-direction: row;
  justify-content: space-between;
}
.team__nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 768px) {
  .team__nav {
    gap: 10px;
  }
}

.worker {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 45px;
  padding: 24px;
  border-radius: 2px;
  background: #fff;
  width: 100%;
  box-shadow: -6px 0px 9px 5px rgba(34, 60, 80, 0.2);
}
@media (max-width: 768px) {
  .worker {
    gap: 20px;
    padding: 18px;
  }
}
.worker__title {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 768px) {
  .worker__title {
    font-size: 18px;
  }
}
.worker__img {
  width: 237px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  background: #ec1e2f;
  margin-inline: auto;
  aspect-ratio: 1;
}
@media (max-width: 768px) {
  .worker__img {
    width: 180px;
  }
}
.worker__post {
  color: rgba(33, 32, 43, 0.5);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.swiper-team-imgs {
  width: 323px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .swiper-team-imgs {
    width: 60vw;
  }
}
.swiper-team-imgs .swiper-slide {
  transition: all 0.5s ease;
}
.swiper-team-imgs .swiper-slide.swiper-slide-visited {
  opacity: 0;
  pointer-events: none;
}
.swiper-team-imgs__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #ec1e2f;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.3s ease;
}
.swiper-team-imgs__btn path {
  fill: red;
  transition: fill 0.3s ease;
}
.swiper-team-imgs__btn.swiper-button-disabled {
  color: rgba(33, 32, 43, 0.5);
}
.swiper-team-imgs__btn.swiper-button-disabled path {
  fill: rgba(33, 32, 43, 0.5);
}

.swiper-team-texts {
  width: 100%;
  max-width: 510px;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .swiper-team-texts {
    max-width: 100%;
  }
}
.swiper-team-texts .swiper-slide {
  display: flex;
}
.swiper-team-texts__desc {
  color: #21202b;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  margin-top: auto;
  margin-bottom: auto;
  max-width: 400px;
}
@media (max-width: 768px) {
  .swiper-team-texts__desc {
    max-width: 100%;
  }
}

.ctgrs {
  padding-top: 80px;
}
.ctgrs__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .ctgrs__box {
    grid-template-columns: 100%;
  }
}

.ctgrs-card {
  padding: 20px;
  background: #fff;
  border-radius: 2px;
  border: 1px solid rgba(33, 32, 43, 0.5);
  min-height: 305px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease;
}
@media (max-width: 768px) {
  .ctgrs-card {
    gap: 10px;
  }
}
.ctgrs-card__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 768px) {
  .ctgrs-card__head {
    gap: 5px;
  }
}
.ctgrs-card__title {
  color: #21202b;
  font-size: 18px;
  font-weight: 300;
  line-height: 120%;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .ctgrs-card__title {
    font-size: 16px;
  }
}
.ctgrs-card__count {
  color: rgba(33, 32, 43, 0.5);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 768px) {
  .ctgrs-card__count {
    font-size: 14px;
  }
}
.ctgrs-card__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 768px) {
  .ctgrs-card__bottom {
    gap: 5px;
  }
}
.ctgrs-card__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 2px;
  background: #ec1e2f;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .ctgrs-card__icon {
    width: 30px;
    height: 30px;
  }
}
.ctgrs-card__desc {
  color: #21202b;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  transition: color 0.3s ease;
}
.ctgrs-card__img {
  max-width: 270px;
  max-height: 140px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  margin-inline: auto;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .ctgrs-card__img {
    max-width: 230px;
    max-height: 120px;
  }
}
@media (hover: hover) {
  .ctgrs-card:hover {
    border-color: #ec1e2f;
  }
  .ctgrs-card:hover .ctgrs-card__title {
    color: #ec1e2f;
  }
  .ctgrs-card:hover .ctgrs-card__desc {
    color: #ec1e2f;
  }
  .ctgrs-card:hover .ctgrs-card__img {
    transform: scale(0.95);
  }
}
@media (min-width: 769px) {
  .ctgrs-card:first-child {
    grid-column: 1/3;
    grid-row: 1/3;
  }
  .ctgrs-card:first-child .ctgrs-card__title {
    font-size: 24px;
  }
  .ctgrs-card:first-child .ctgrs-card__count {
    font-size: 20px;
  }
  .ctgrs-card:first-child .ctgrs-card__img {
    max-width: 500px;
    max-height: 240px;
  }
  .ctgrs-card:first-child .ctgrs-card__desc {
    font-size: 16px;
    max-width: 310px;
  }
}

.ctgrs-seo__desc {
  max-width: 775px;
}

.catalog {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .catalog {
    padding-top: 40px;
  }
}
.catalog__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .catalog__box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .catalog__box {
    grid-template-columns: 100%;
  }
}

.product {
  background: #fff;
  border-radius: 2px;
  padding: 34px 16px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product {
    gap: 24px;
  }
}
.product__title {
  text-align: center;
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .product__title {
    font-size: 20px;
  }
}
.product__img-wrapper {
  margin-inline: auto;
}
.product__img {
  position: relative;
  max-width: 290px;
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 0;
}
.product__box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .product__box {
    gap: 10px;
  }
}
.product__specification {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 10px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .product__specification {
    grid-template-columns: 1fr 75px;
  }
}
.product__parameter {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  transition: color 0.3s 0.5s ease;
}
@media (max-width: 768px) {
  .product__parameter {
    font-size: 14px;
  }
}
.product__option {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  transition: color 0.3s 0.5s ease;
}
@media (max-width: 768px) {
  .product__option {
    font-size: 14px;
  }
}
.product__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.product__price {
  color: #ec1e2f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-bottom: 1px solid #ec1e2f;
  padding-bottom: 6px;
  transition: all 0.3s 0.5s ease;
}
@media (max-width: 768px) {
  .product__price {
    padding-bottom: 4px;
  }
}
.product__pdf {
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #ec1e2f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s 0.5s ease;
}
.product__pdf path {
  transition: fill 0.3s 0.5s ease;
}
.product__pdf:hover {
  transform: scale(1.1);
}
.product__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 34px;
  flex-grow: 1;
  z-index: 0;
}
@media (max-width: 768px) {
  .product__body {
    gap: 24px;
  }
}
.product__body::before {
  content: "";
  position: absolute;
  bottom: calc(-100% - 164px);
  left: -16px;
  width: calc(100% + 32px);
  height: calc(100% + 130px);
  background: #ec1e2f;
  z-index: -1;
  -webkit-clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
  transition: bottom 0.3s 0.5s ease;
}
.product:hover .product__body::before {
  transition: bottom 0.3s 0s ease;
  bottom: -34px;
}
.product:hover .product__parameter {
  color: #fff;
  transition: color 0.3s 0s ease;
}
.product:hover .product__option {
  color: #fff;
  transition: color 0.3s 0s ease;
}
.product:hover .product__pdf {
  background: #fff;
  transition: all 0.3s 0s ease;
}
.product:hover .product__pdf path {
  transition: all 0.3s 0s ease;
  fill: #ec1e2f;
}
.product:hover .product__price {
  color: #fff;
  border-color: #fff;
  transition: color 0.3s 0s ease;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pagination-arr {
  display: flex;
  width: 24px;
  height: 24px;
}
.pagination-item {
  color: rgba(33, 32, 43, 0.5);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}
.pagination-item.active {
  color: #ec1e2f;
}

.prdctnnr {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .prdctnnr {
    padding-top: 40px;
  }
}
.prdctnnr__subtitle {
  font-size: 42px;
}
@media (max-width: 768px) {
  .prdctnnr__subtitle {
    font-size: 32px;
  }
}
.prdctnnr__box {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 8px));
  gap: 16px;
}
@media (max-width: 768px) {
  .prdctnnr__box {
    grid-template-columns: 100%;
    gap: 24px;
  }
}
.prdctnnr__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 768px) {
  .prdctnnr__left {
    gap: 10px;
  }
}
.prdctnnr__rightbox {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .prdctnnr__rightbox {
    gap: 12px;
  }
}
.prdctnnr__caption {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}
.prdctnnr__desc {
  color: #21202b;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .prdctnnr__desc {
    margin-bottom: 10px;
  }
}
.prdctnnr__specifications-box {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 2px;
  background: #fff;
  gap: 14px;
}
@media (max-width: 768px) {
  .prdctnnr__specifications-box {
    padding: 15px;
    gap: 10px;
  }
}
.prdctnnr__specification {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 14px;
}
@media (max-width: 768px) {
  .prdctnnr__specification {
    gap: 10px;
  }
}
.prdctnnr__specification:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.prdctnnr__left {
  color: rgba(33, 32, 43, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.prdctnnr__right {
  color: #21202b;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}
.prdctnnr__document {
  display: flex;
  align-items: center;
  gap: 2px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .prdctnnr__document {
    margin-left: auto;
  }
}
.prdctnnr__document span {
  color: #21202b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.prdctnnr__document path {
  transition: fill 0.3s ease;
}
.prdctnnr__document:hover span {
  color: #ec1e2f;
}
.prdctnnr__document:hover path {
  fill: #ec1e2f;
}
@media (max-width: 768px) {
  .prdctnnr__btn {
    max-width: 100%;
  }
}

.swiper-nav-btn {
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: #ec1e2f;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: transform 0.3s ease;
}
.swiper-nav-btn.swiper-button-disabled {
  opacity: 0.4;
}
@media (hover: hover) {
  .swiper-nav-btn:hover {
    transform: scale(0.93);
  }
  .swiper-nav-btn:active {
    transform: scale(0.9);
  }
}
@media (hover: none) {
  .swiper-nav-btn:active {
    transform: scale(0.9);
  }
}

.swiper-prdctnnr {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 475px;
  z-index: 0;
}
@media (max-width: 768px) {
  .swiper-prdctnnr {
    aspect-ratio: 1;
    height: auto;
  }
}
.swiper-prdctnnr .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
a:has(.swiper-prdctnnr__img) {
  display: flex;
  width: 100%;
  height: 100%;
}
.swiper-prdctnnr__img {
  width: 100%;
  height: 100%;
  /*max-width: 300px;
  height: 250px;*/
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  .swiper-prdctnnr__img {
    /*max-width: 190px;
    height: 190px;*/
    max-width: 100%;
    height: 100%;
  }
}
.swiper-prdctnnr__nav {
  position: absolute;
  top: 48%;
  z-index: 10;
}
.swiper-prdctnnr__prev {
  left: 16px;
}
@media (max-width: 768px) {
  .swiper-prdctnnr__prev {
    left: 10px;
  }
}
.swiper-prdctnnr__next {
  right: 16px;
}
@media (max-width: 768px) {
  .swiper-prdctnnr__next {
    right: 10px;
  }
}

.swiper-prdctnnr-thumbs {
  height: 112px;
  overflow: hidden;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .swiper-prdctnnr-thumbs {
    height: auto;
  }
}
.swiper-prdctnnr-thumbs .swiper-slide {
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid #fff;
  background: #fff;
  transition: border-color 0.3s ease;
}
@media (max-width: 768px) {
  .swiper-prdctnnr-thumbs .swiper-slide {
    aspect-ratio: 1;
    padding: 10px;
  }
}
.swiper-prdctnnr-thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: #ec1e2f;
}
.swiper-prdctnnr-thumbs__img {
  width: 100%;
  height: 100%;
  max-width: 80px;
  max-height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

.prdctnnrinfo-tabs {
  display: flex;
  align-items: center;
  border: none;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .prdctnnrinfo-tabs {
    flex-wrap: wrap;
  }
}
.prdctnnrinfo-tabs li {
  flex-grow: 1;
}
.prdctnnrinfo-tabs a {
  width: 100%;
  border-radius: 0px;
}
.prdctnnrinfo-tabs a[role="tab"] {
  border: 1px solid rgba(33, 32, 43, 0.2);
  background: rgba(33, 32, 43, 0.1);
  padding: 20px;
  color: #21202b;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .prdctnnrinfo-tabs a[role="tab"] {
    padding: 16px;
  }
}
.prdctnnrinfo-tabs a[role="tab"]:hover:not([aria-selected="true"]) {
  border: 1px solid rgba(33, 32, 43, 0.2);
}
.prdctnnrinfo-tabs a[role="tab"][aria-selected="true"] {
  background: #21202b;
  color: #fff;
  font-weight: 600;
}

.prdctnnrinfo-table {
  width: 100%;
  border-collapse: collapse;
  border: hidden;
}
.prdctnnrinfo-table td {
  border: 1px solid #d9d9d9;
  padding: 14px 20px;
  color: rgba(33, 32, 43, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 768px) {
  .prdctnnrinfo-table td {
    padding: 15px;
  }
}
.prdctnnrinfo-table td:first-child {
  padding-left: 0;
}
.prdctnnrinfo-table td:last-child {
  color: #21202b;
  font-weight: 600;
  padding-right: 0;
}
.prdctnnrinfo-table tr:first-child td {
  padding-top: 0;
}
.prdctnnrinfo-table tr:last-child td {
  padding-bottom: 0;
}

.prdctnnrinfo-table-wrapper {
  padding: 20px;
  background: #fff;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .prdctnnrinfo-table-wrapper {
    padding: 15px;
  }
}

.prdctnnrinfo-content {
  font-size: 18px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .prdctnnrinfo-content {
    font-size: 16px;
  }
}

.othprdcts__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .othprdcts__box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .othprdcts__box {
    grid-template-columns: 100%;
  }
}

.contacts {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .contacts {
    padding-top: 40px;
  }
}
.contacts__heading {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 26px;
}
.contacts .brnchshm__box {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contacts .brnchshm__box {
    display: grid;
    grid-template-columns: 100%;
  }
}
.contacts__info-box {
  margin-bottom: 26px;
}
.contacts__map-box {
  margin-top: 26px;
}
.contacts__map-box-inner {
  height: 380px;
}
.contacts__map-box-inner iframe {
  border-radius: 2px;
  height: 100%;
  width: 100%;
}
.contacts__map-box .contacts-map-tab {
  display: none;
}
.contacts__map-box .contacts-map-tab.is-active {
  display: block;
}

.contacts-tabs {
  gap: 16px;
}
@media (max-width: 768px) {
  .contacts-tabs {
    gap: 5px;
  }
}
.contacts-tabs a {
  text-align: center;
}

.news {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .news {
    padding-top: 40px;
  }
}
.news__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .news__box {
    grid-template-columns: 100%;
    margin-bottom: 0px;
    gap: 10px;
  }
}

.news-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 2px;
  padding: 20px;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .news-card {
    gap: 8px;
    padding: 15px;
    display: grid;
    grid-template-columns: 100%;
  }
}
.news-card__left {
  max-width: 303px;
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .news-card__left {
    max-width: 100%;
    height: 150px;
  }
}
.news-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-card__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 303px;
}
@media (max-width: 768px) {
  .news-card__right {
    max-width: 100%;
    gap: 10px;
  }
}
.news-card__title {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .news-card__title {
    font-size: 16px;
  }
}
.news-card__desc {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: color 0.3s ease;
}
.news-card__date {
  margin-top: auto;
  color: rgba(33, 32, 43, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.news-card:hover {
  background: #21202b;
}
.news-card:hover .news-card__title,
.news-card:hover .news-card__desc {
  color: #fff;
}
.news-card:hover .news-card__date {
  color: rgba(255, 255, 255, 0.5);
}

.news-inner {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .news-inner {
    padding-top: 40px;
  }
}
.news-inner__img {
  width: 100%;
  height: 370px;
  border-radius: 2px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .news-inner__img {
    height: 250px;
    margin-bottom: 13px;
  }
}
.news-inner__content {
  -moz-column-count: 1;
  column-count: 1;
  -moz-column-gap: 16px;
  column-gap: 16px;
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 46px;
  width: 60%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.news-inner__content ul {
  list-style: disc;
}
.news-inner__content ul li {
  margin-left: 40px;
}
.news-inner__content h2 {
  font-size: 20px;
  padding: 10px 0px;
}
@media (max-width: 768px) {
  .news-inner__content {
    -moz-column-count: 1;
    column-count: 1;
    margin-bottom: 35px;
    width: 100%;
  }
}

.sendbox {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sendbox__title {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
}
.sendbox__inner {
  display: flex;
  gap: 12px;
}
.sendbox__link {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: #ec1e2f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.sendbox__link:hover {
  background: #21202b;
}

.other-news {
  overflow: hidden;
}

.services {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .services {
    padding-top: 40px;
  }
}
.services__box {
  display: flex;
  flex-direction: column;
}

.service-card {
  display: flex;
  padding: 24px 0;
  border-top: 1px solid #d9d9d9;
}
@media (max-width: 768px) {
  .service-card {
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.service-card:last-child {
  border-bottom: 1px solid #d9d9d9;
}
.service-card__img {
  width: 100%;
  max-width: 340px;
  height: 140px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .service-card__img {
    max-width: 100%;
  }
}
.service-card__num {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .service-card__num {
    font-size: 16px;
  }
}
.service-card__title {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  margin-left: 80px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .service-card__title {
    font-size: 16px;
    margin-left: 0;
  }
}
.service-card__desc {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 330px;
  margin-left: 16px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .service-card__desc {
    max-width: 100%;
    margin-left: 0px;
  }
}
.service-card:hover .service-card__num,
.service-card:hover .service-card__title,
.service-card:hover .service-card__desc {
  color: #ec1e2f;
}

.text-page {
  padding-top: 80px;
}
.text-page__subtitle {
  text-transform: capitalize;
}
.text-page__content {
  max-width: 888px;
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.serts {
  padding-top: 80px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .serts {
    padding-top: 40px;
  }
}

.sert-card {
  position: relative;
}
.sert-card__box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 26px;
  z-index: 0;
}
.sert-card__box::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(33, 32, 43, 0) 0.11%,
    #ec1e2f 92.92%
  );
  z-index: -1;
  transition: top 0.3s ease;
}
.sert-card__img {
  position: relative;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
}
.sert-card__desc {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  position: absolute;
  bottom: -100%;
  left: 0;
  padding: 20px;
  transition: bottom 0.3s ease;
}
.sert-card__title {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.sert-card:hover .sert-card__desc {
  bottom: 0;
}
.sert-card:hover .sert-card__box::before {
  top: 0;
}

.swiper-serts {
  margin-bottom: 80px;
}
.swiper-serts__btn {
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.swiper-serts__btn path {
  transition: all 0.3s ease;
}
.swiper-serts__btn:hover path {
  fill: #ec1e2f;
}
.swiper-serts__btn:active {
  scale: 0.9;
}
.swiper-serts__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.number-pagination {
  width: -moz-fit-content !important;
  width: fit-content !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.number-pagination .swiper-pagination-bullet {
  background: transparent;
  width: -moz-fit-content !important;
  width: fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  margin: 0 !important;
  color: rgba(33, 32, 43, 0.5);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  opacity: 1;
  transition: all 0.3s ease;
}
.number-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #ec1e2f;
}

.medgal-hero {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .medgal-hero {
    padding-top: 40px;
  }
}
.medgal-hero__box {
  position: relative;
  height: 550px;
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}
.medgal-hero__box:has(.swiper-news-gal) {
  height: 350px;
}
.swiper-news-gal .swiper-medgal-hero-2__link {
  height: 350px;
}
.swiper-news-gal .swiper-medgal-hero__img {
  object-fit: contain;
}
@media (max-width: 768px) {
  .medgal-hero__box {
    height: 350px;
  }
}
.medgal-hero__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 26px;
}
@media (max-width: 768px) {
  .medgal-hero__nav {
    gap: 20px;
    margin-top: 20px;
  }
}

.swiper-medgal-hero {
  position: relative;
  width: 100%;
  height: 100%;
}
.swiper-medgal-hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.thumbs-medgal-hero {
  position: absolute;
  bottom: 26px;
  width: 100%;
  z-index: 2;
  height: 100px;
}
@media (max-width: 768px) {
  .thumbs-medgal-hero {
    height: 80px;
    bottom: 15px;
  }
}
.thumbs-medgal-hero .swiper-slide {
  aspect-ratio: 1;
  width: 100px !important;
  border-radius: 2px;
  overflow: hidden;
}
.thumbs-medgal-hero .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(33, 32, 43, 0.26) 0%,
    rgba(33, 32, 43, 0.26) 100%
  );
  transition: opacity 0.3s ease;
}
.thumbs-medgal-hero .swiper-slide.swiper-slide-thumb-active::before {
  opacity: 0;
}
@media (max-width: 768px) {
  .thumbs-medgal-hero .swiper-slide {
    width: 80px !important;
  }
}
.thumbs-medgal-hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.medgal-events {
  padding-top: 0;
}
.medgal-events__box {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .medgal-events__box {
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -16px;
    padding-inline: 16px;
  }
  .medgal-events__box::-webkit-scrollbar {
    height: 2px;
  }
  .medgal-events__box::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .medgal-events__box::-webkit-scrollbar-thumb {
    background: #ec1e2f;
  }
  .medgal-events__box::-webkit-scrollbar-thumb:hover {
    background: rgba(236, 30, 47, 0.7333333333);
  }
}

.medgal-event {
  display: grid;
  gap: 20px;
  grid-template-columns:
    minmax(530px, 3fr) minmax(170px, 1fr) minmax(160px, 1fr)
    minmax(115px, 1fr);
  padding: 20px;
  border-bottom: 1px solid rgba(33, 32, 43, 0.5);
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .medgal-event {
    grid-template-columns: 250px 170px 160px 115px;
    width: 750px;
    flex-shrink: 0;
    gap: 10px;
  }
}
.medgal-event__col {
  color: rgba(33, 32, 43, 0.5);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  transition: color 0.3s ease;
}
.medgal-event:hover {
  background: #ec1e2f;
}
.medgal-event:hover .medgal-event__col {
  color: #fff;
}
.medgal-event .hover-image {
  position: absolute;
  width: 386px;
  height: 225px;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
  overflow: hidden;
}
@media (max-width: 768px) {
  .medgal-event .hover-image {
    display: none;
  }
}
.medgal-event .hover-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
}

.medgal-event-head {
  border-top: 1px solid rgba(33, 32, 43, 0.5);
  background: transparent !important;
}
.medgal-event-head__col {
  color: #21202b;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

.swiper-medgal-hero-2__link {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
}
.swiper-medgal-hero-2__link:hover .swiper-medgal-hero-2__vid-icon {
  transform: translate(-50%, -50%) scale(0.9);
}

.swiper-medgal-hero-2__vid-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ec1e2f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.pnf {
  background: #21202b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  padding-inline: 16px;
}
.pnf__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  text-align: center;
}
.pnf__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .pnf__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.pnf__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .pnf__desc {
    margin-bottom: 35px;
  }
}
.pnf__nums {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .pnf__nums {
    margin-bottom: 35px;
    gap: 20px;
  }
}
.pnf__nums span {
  font-size: 150px;
  font-weight: 300;
  line-height: 100%;
}
@media (max-width: 768px) {
  .pnf__nums span {
    font-size: 100px;
  }
}
.pnf__spiner {
  width: 155px;
  height: 155px;
}
@media (max-width: 768px) {
  .pnf__spiner {
    width: 100px;
    height: 100px;
  }
}
.pnf__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-weight: 800;
}

.thx {
  background: #edeff1;
  color: #21202b;
}
.thx__box {
  max-width: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.thx__box svg {
  margin-bottom: 36px;
}
.thx__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 24px;
}
.thx__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 32px;
} /*# sourceMappingURL=style.css.map */
.pagination {
  grid-column-start: 1;
  grid-column-end: 3;
  margin-top: 80px;
}
.page-numbers {
  color: rgba(33, 32, 43, 0.5);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}
.page-numbers.current {
  color: #ec1e2f;
}
.catalog__box .pagination {
  grid-column-end: 5;
}

.whatsapp-widjet {
  position: fixed;
  bottom: 25px;
  right: 25px;
  border: 1px solid #ec1e2f;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 140;
  transition: all 0.5s ease;
  background: #ec1e2f;
  cursor: pointer;
}
.whatsapp-widjet.call-widjet {
  left: 25px;
}
.whatsapp-widjet-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.whatsapp-widjet-icon svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}
.whatsapp-widjet-circle-left {
  position: absolute;
  width: 50%;
  top: 0;
  bottom: 0;
  overflow: hidden;
  left: 0;
}
.whatsapp-widjet-circle-left {
  border: 1px solid #ec1e2f;
  position: absolute;
  top: -7px;
  bottom: 0;
  left: -7px;
  right: 0;
  background-clip: padding-box;
  width: 36px;
  height: 72px;
  border-radius: 76px 0 0 76px;
  border-right: none;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-animation: pie-left 4s both linear infinite;
  -moz-animation: pie-left 4s both linear infinite;
  -ms-animation: pie-left 4s both linear infinite;
  -o-animation: pie-left 4s both linear infinite;
  animation: pie-left 4s both linear infinite;
}
.whatsapp-widjet-circle-right {
  position: absolute;
  width: 50%;
  top: 0;
  bottom: 0;
  overflow: hidden;
  right: 0;
}
.whatsapp-widjet-circle-right {
  border: 1px solid transparent;
  position: absolute;
  top: -7px;
  bottom: 0;
  left: 0;
  right: -7px;
  background-clip: padding-box;
  width: 36px;
  height: 72px;
  border-radius: 76px 0 0 76px;
  border-right: none;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-animation: pie-right 4s both linear infinite;
  -moz-animation: pie-right 4s both linear infinite;
  -ms-animation: pie-right 4s both linear infinite;
  -o-animation: pie-right 4s both linear infinite;
  animation: pie-right 4s both linear infinite;
}
@keyframes pie-left {
  0% {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  10% {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  20% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  30% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  40% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
  }
}
.link-to-tabs {
  color: #ec1e2f;
  text-decoration: underline;
  transition: all 0.4s ease;
}
.link-to-tabs:hover {
  text-decoration: unset;
}
.prod-table {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(33, 32, 43, 0.2);
  background: rgba(33, 32, 43, 0.1);
}
.prod-table-row:first-child .prod-table-row-item {
  background: #21202b;
  color: #fff;
}
.prod-table-row {
  display: flex;
}
.prod-table-row-item {
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid rgba(33, 32, 43, 0.2);
  border-right: 1px solid rgba(33, 32, 43, 0.2);
}
@media all and (max-width: 768px) {
  .prod-table-wr {
    overflow-x: scroll;
    width: 100%;
  }
  .prod-table {
    width: max-content;
  }
}

.header__top-div {
  display: flex;
  grid-gap: 25px;
  align-items: center;
}
.header__top-div .menu__nav {
  grid-gap: 10px;
}
.menu__nav .trp-ls-language-name {
  display: none;
}
