@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --black: #131314;
  --red: #C8102E;
  --gray200: #E5E5E6;
  /* Color styles */
  --black: rgba(19, 19, 20, 1);
  --white: rgba(255, 255, 255, 1);
  --red--50: rgba(253, 227, 231, 1);
  --red--100: rgba(250, 198, 207, 1);
  --red--200: rgba(246, 146, 163, 1);
  --red--300: rgba(242, 90, 115, 1);
  --red--400: rgba(238, 38, 71, 1);
  --red--500: rgba(200, 16, 46, 1);
  --red--600: rgba(161, 13, 37, 1);
  --red--700: rgba(118, 9, 28, 1);
  --red--800: rgba(80, 6, 19, 1);
  --red--900: rgba(38, 3, 9, 1);
  --gray--50: rgba(247, 247, 248, 1);
  --gray--100: rgba(242, 242, 243, 1);
  --gray--200: rgba(229, 229, 230, 1);
  --gray--300: rgba(213, 213, 215, 1);
  --gray--400: rgba(197, 197, 200, 1);
  --gray--500: rgba(179, 179, 183, 1);
  --gray--600: rgba(158, 158, 163, 1);
  --gray--700: rgba(132, 132, 138, 1);
  --gray--800: rgba(97, 97, 102, 1);
  --gray--900: rgba(45, 45, 47, 1);
  --add--400: rgba(74, 155, 255, 1);
  --add--500: rgba(0, 105, 236, 1);
  --add--600: rgba(0, 80, 180, 1);
  /* Text-size styles */
  --headers---display--l: 4.5rem;
  --headers---display--m: 4rem;
  --headers---header-1: 3.5rem;
  --headers---header-2: 3rem;
  --headers---header-3: 2.5rem;
  --headers---header-4: 2rem;
  --headers---header-5: 1.75rem;
  --headers---header-6: 1.5rem;
  --paragraph--regular-1: 1.25rem;
  --paragraph--regular-2: 1.12rem;
  --paragraph--regular-3: 1rem;
  --paragraph--regular-4: 0.88rem;
  --paragraph--regular-5: 0.75rem;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 15px;
  }
}

body {
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  font-variant-numeric: lining-nums proportional-nums;
  font-style: normal;
  line-height: 1.2;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: 0.3s;
  outline: none;
}
a:focus {
  outline: none;
}
a:hover {
  color: var(--red);
}

button {
  padding: 0;
  margin: 0;
  font-family: "Raleway", serif;
  border: none;
  transition: 0.3s;
}

input, textarea {
  font-family: "Raleway", serif;
}

.btn-arrow {
  border-radius: 50%;
  width: 65px;
  height: 65px;
  font-size: 28px;
  background: var(--gray200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray--200);
}
.btn-arrow:hover {
  background: var(--white);
  color: var(--black);
}
.btn-arrow.btn-big {
  width: 85px;
  height: 85px;
  font-size: 35px;
}
.btn-arrow.btn-small {
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  min-width: 40px;
  font-size: 22px;
}
.btn-arrow.btn-border {
  background: #fff;
  border: 1px solid #E5E5E6;
}
.btn-arrow.btn-border:hover {
  background: var(--gray200);
}
.btn-arrow.swiper-button-disabled {
  background: var(--gray--50);
  border-color: var(--gray--50);
}

.title-m {
  font-size: var(--headers---display--m);
  font-weight: 600;
  color: var(--black);
}
@media screen and (max-width: 991px) {
  .title-m {
    font-size: 40px;
  }
}

.btn {
  font-size: var(--paragraph--regular-2);
  padding: 18px 36px;
  border-radius: 8px;
  text-align: center;
  color: var(--white);
  display: inline-block;
  background: var(--red);
}
@media screen and (max-width: 1200px) {
  .btn {
    padding: 15px 25px;
  }
}
.btn:hover {
  background: var(--red--600);
  color: var(--white);
}
.btn.btn-border-red {
  background: #fff;
  color: var(--red);
  border: 1px solid var(--red--500);
}
.btn.btn-border-red:hover {
  background: var(--red--500);
  color: var(--white);
}
.btn.btn-full {
  width: 100%;
}

.slider-wrapper {
  overflow: hidden;
}

.title-small {
  font-size: var(--headers---header-5);
  font-weight: 600;
  padding-bottom: 20px;
}

.title-3 {
  font-size: var(--headers---header-3);
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  .title-3 {
    font-size: 25px;
  }
}

.section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.section:first-child {
  padding-top: 30px;
}
@media screen and (max-width: 575px) {
  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.title-item {
  font-size: var(--paragraph--regular-1);
  font-weight: 600;
  color: var(--red--500);
  transition: 0.3s;
}

.image-item {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.image-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .image-item:last-child {
    margin-top: 20px;
  }
}
.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-item__badge {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--gray--200);
  position: absolute;
  left: 16px;
  top: 16px;
}

.title-block {
  font-size: var(--headers---header-1);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 35px;
}
@media screen and (max-width: 991px) {
  .title-block {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .title-block {
    font-size: 30px;
  }
}
.title-block:last-child {
  margin-bottom: 0;
}
.title-block-small {
  font-size: var(--headers---header-2);
}
@media screen and (max-width: 575px) {
  .title-block-small {
    font-size: 25px;
  }
}

img {
  max-width: 100%;
}

p {
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

.text-middle {
  font-size: var(--paragraph--regular-1);
}
@media screen and (max-width: 575px) {
  .text-middle {
    font-size: 16px;
  }
}

strong {
  font-weight: 600;
}

.row-center {
  align-items: center;
}

.head-block {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  margin-bottom: 50px;
  justify-content: space-between;
  row-gap: 10px;
}
@media screen and (max-width: 575px) {
  .head-block {
    margin-bottom: 30px;
  }
}
.head-block .title-block {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .head-block .title-block {
    font-size: 25px;
  }
}
@media screen and (max-width: 575px) {
  .head-block__left {
    max-width: calc(100% - 100px);
  }
}

.arrows-slider {
  display: flex;
  gap: 10px;
}

.btn-more {
  margin-top: 50px;
}
@media screen and (max-width: 575px) {
  .btn-more {
    margin-top: 30px;
  }
}

p {
  line-height: 1.4;
}
p a {
  font-weight: 600;
  text-decoration: underline;
  color: var(--add--500);
}

.text-gray {
  color: var(--gray--600);
}

.btns-row {
  display: flex;
  gap: 16px;
  flex-flow: wrap;
  margin-top: 45px;
}

em {
  color: var(--red--500);
}

.download {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .download {
    margin-top: 30px;
  }
}
.download:first-child {
  margin-top: 0;
}
.download__title {
  font-size: var(--paragraph--regular-1);
  color: var(--black);
}
.download__link {
  color: var(--add--500);
  font-weight: 600;
  font-size: var(--paragraph--regular-1);
  text-decoration: underline;
  margin-top: 10px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.pagination a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: center;
  background: var(--gray--200);
  text-transform: uppercase;
  border-radius: 4px;
  font-variant-numeric: lining-nums proportional-nums;
}
.pagination .arrow {
  background: var(--gray--300);
}
.pagination .current {
  background: var(--black);
  color: var(--white);
}

.info {
  padding: 30px;
  border-radius: 12px;
  background: var(--red--500);
  color: var(--white);
}
.info__title {
  font-size: 24px;
  margin-bottom: 30px;
  font-size: var(--paragraph--regular-1);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--red--400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.info a {
  color: var(--white);
}

.gallery-slider {
  position: relative;
}
.gallery-slider .swiper-slide {
  height: initial;
  padding: 0 10px;
}
@media screen and (max-width: 575px) {
  .gallery-slider .swiper-slide {
    padding: 0 5px;
  }
}
.gallery-slider .swiper-slide a, .gallery-slider .swiper-slide .image-item {
  margin: 0;
  height: 100%;
  display: block;
}
.gallery-slider .swiper-slide img {
  height: 100%;
  object-fit: cover;
}
.gallery-slider .slider-wrapper__pagination {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 0;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.gallery-slider .slider-wrapper__pagination .swiper-pagination-bullet {
  margin: 0;
  width: 15px;
  height: 15px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--white);
  transition: 0.3s;
  backdrop-filter: blur(10px);
}
.gallery-slider .slider-wrapper__pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.table-wrapper {
  overflow: auto;
  max-width: 100%;
}

table {
  width: 100%;
  margin: 40px 0;
  border: none;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
@media screen and (max-width: 991px) {
  table {
    overflow: auto;
    max-width: 100%;
  }
}
table:last-child {
  margin-bottom: 0;
}
table td:not(:first-child) {
  text-align: center;
}
table thead td {
  border: 1px solid var(--Gray-200, #E5E5E6);
  background: var(--Gray-50, #F7F7F8);
  font-weight: 600;
  white-space: nowrap;
}
table tbody td {
  border: 1px solid var(--gray--200);
  background: #fff;
}
table tbody td:first-child {
  font-weight: 600;
}
table td {
  padding: 18px 24px;
}
@media screen and (max-width: 575px) {
  table td {
    padding: 5px 10px;
  }
}
table tr td {
  border-bottom: none;
  border-left: none;
}
table tr td:first-child {
  border-left: 1px solid var(--gray--200);
}
table thead tr:first-child td:first-child {
  border-radius: 12px 0 0 0;
  font-weight: 600;
}
table thead tr:first-child td:last-child {
  border-radius: 0 12px 0 0;
}
table tbody tr:last-child td {
  border-bottom: 1px solid var(--gray--200);
}
table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 12px;
}
table tbody tr:last-child td:last-child {
  border-radius: 0 0 12px 0;
}

input, textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--gray--200);
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}
input:focus, textarea:focus {
  color: var(--black);
  border-color: var(--gray--400);
}

::placeholder {
  transition: 0.3s;
  color: var(--gray--600);
  opacity: 1;
}

textarea {
  resize: none;
  height: 185px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-flow: wrap;
}
@media screen and (max-width: 575px) {
  .form-row {
    margin-top: 20px;
  }
}
.form-row label {
  width: calc(33.3333333333% - 10.6666666667px);
}
@media screen and (max-width: 575px) {
  .form-row label {
    width: 100%;
  }
}
.form-row .full-label, .form-row .btn {
  width: 100%;
}

figure img {
  border-radius: 16px;
  width: 100%;
}
figure figcaption {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray--600);
}

.line-text {
  text-decoration: underline;
}

.target-files {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--gray--50);
  border: 1px solid var(--gray--200);
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  font-size: var(--paragraph--regular-3);
}
.target-files input {
  width: 0;
  height: 0;
  display: none;
}
.target-files i {
  font-size: 24px;
}
.target-files:hover {
  color: var(--red--500);
}

.text-4 {
  font-size: var(--paragraph--regular-4);
}

.label-select {
  display: flex;
  gap: 24px;
  align-items: center;
}
.label-select select {
  cursor: pointer;
  font-family: "Raleway", sans-serif;
  padding: 14px 20px;
  width: 100%;
  appearance: none;
  border: none;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray--200);
  font-weight: 500;
  color: var(--black);
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
}
.label-select .label-title {
  white-space: nowrap;
  color: var(--gray--600);
  font-weight: 500;
}

.faq-wrapper {
  width: 66.6666666667%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .faq-wrapper {
    width: 100%;
  }
}

.faq-item {
  margin-bottom: 16px;
  font-weight: 600;
  padding: 28px;
  border-radius: 12px;
  background: var(--gray--50);
}
@media screen and (max-width: 768px) {
  .faq-item {
    padding: 15px;
  }
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item__title {
  font-size: var(--paragraph--regular-1);
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .faq-item__title {
    font-size: 18px;
  }
}
.faq-item__title::after {
  content: "\e901";
  font-family: "ifk";
  font-weight: 500;
  font-size: 28px;
  position: absolute;
  transition: 0.3s;
  right: 0;
  transform: rotate(-90deg);
}
.faq-item__content {
  color: var(--red--500);
  padding-top: 30px;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  padding-top: 0;
  transition: 0.3s;
}
.faq-item.open .faq-item__title::after {
  transform: rotate(0deg);
}
.faq-item.open .faq-item__content {
  max-height: 1000px;
  opacity: 1;
  padding-top: 30px;
  visibility: visible;
}

.btn-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  position: relative;
  flex-flow: column;
  gap: 5px;
  background: none;
  padding: 0;
  margin: 0;
}
.btn-burger span {
  position: relative;
  transition: 0.4s;
  width: 25px;
  height: 2px;
  background: var(--black);
}

@media screen and (max-width: 575px) {
  .row-mobile-reverse {
    flex-flow: wrap-reverse;
    row-gap: 30px;
  }
}

@media screen and (max-width: 991px) {
  .figure {
    margin: 30px 0;
  }
}

.header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 6;
  background: var(--white);
}
.header.is-sticked {
  box-shadow: 0 0 50px #00000014;
}
@media screen and (max-width: 991px) {
  .header {
    padding: 10px 0;
  }
}
.header__container {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1200px) {
  .header__container {
    gap: 20px;
  }
}
.header__container .logo {
  position: relative;
  z-index: 10;
}
.header nav {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .header nav {
    position: absolute;
    top: 100%;
    z-index: 3;
    background: #fff;
    left: -15px;
    padding-left: 30px;
    padding-right: 15px;
    padding-top: 20px;
    padding-bottom: 30px;
    width: calc(100% + 15px);
    transform: translateY(-100px);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    flex-flow: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.header nav ul {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .header nav ul {
    gap: 10px;
  }
}
@media screen and (max-width: 991px) {
  .header nav ul {
    display: none;
  }
}
.header nav a {
  font-size: 18px;
}
@media screen and (max-width: 1400px) {
  .header nav a {
    font-size: 15px;
  }
}
.header nav .phone-link {
  font-size: var(--paragraph--regular-1);
  font-weight: 600;
  margin-right: 30px;
}
@media screen and (max-width: 1200px) {
  .header nav .phone-link {
    margin-right: 15px;
  }
}
@media screen and (max-width: 991px) {
  .header nav .phone-link {
    margin-bottom: 15px;
    display: block;
  }
}
.header .btn-toggle {
  display: none;
}
@media screen and (max-width: 991px) {
  .header .btn-toggle {
    display: flex;
    margin-left: auto;
  }
}

.active-menu .header nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.active-menu .header nav ul {
  display: block;
}
.active-menu .header nav ul li {
  padding-bottom: 10px;
}
.active-menu .header nav ul li:last-child {
  padding-bottom: 0;
}
.active-menu .header nav ul a {
  font-size: var(--paragraph--regular-2);
  font-weight: 500;
}
.active-menu .btn-burger {
  display: flex;
  align-items: center;
  justify-content: center;
}
.active-menu .btn-burger span {
  position: absolute;
}
.active-menu .btn-burger span:nth-child(1), .active-menu .btn-burger span:nth-child(2) {
  transform: rotate(45deg);
}
.active-menu .btn-burger span:nth-child(3) {
  transform: rotate(-45deg);
}

.logo img {
  min-width: 65px;
}

.footer {
  background: var(--black);
  padding: 70px 0 0;
  color: var(--white);
}
.footer a:not(.logo) {
  opacity: 0.5;
  font-size: 0.9rem;
  color: var(--white);
}
.footer a:not(.logo):hover {
  opacity: 1;
}
.footer li {
  margin-bottom: 14px;
}
.footer li:last-child {
  margin-bottom: 0;
}
.footer-title {
  font-size: var(--headers---header-6);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .footer-title {
    font-size: 16px;
  }
}
.footer__container {
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  row-gap: 20px;
}
.footer .footer-links {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  width: 63%;
  width: 87.5%;
  flex-flow: wrap;
  row-gap: 35px;
}
@media screen and (max-width: 1200px) {
  .footer .footer-links {
    width: 100%;
  }
}
.footer .footer-links__col {
  width: 16.6666666667%;
}
@media screen and (max-width: 991px) {
  .footer .footer-links__col {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 575px) {
  .footer .footer-links__col {
    width: 50%;
  }
}
.footer .footer-links .footer-nav {
  width: 16.6666666667%;
  display: flex;
  gap: 30px;
  flex-flow: wrap;
  row-gap: 0px;
}
@media screen and (max-width: 991px) {
  .footer .footer-links .footer-nav {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 575px) {
  .footer .footer-links .footer-nav {
    width: 50%;
  }
}
.footer .footer-links .footer-nav a {
  font-size: var(--headers---header-6);
  font-size: 18px;
  font-weight: 600;
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .footer .footer-links .footer-nav a {
    font-size: 16px;
  }
}
.footer .footer-links .footer-nav a:hover {
  color: var(--red);
}
.footer p {
  opacity: 0.5;
  letter-spacing: -0.03px;
  font-size: var(--paragraph--regular-5);
  margin-bottom: 10px;
  line-height: 1.4;
}
.footer p:last-child {
  margin-bottom: 0;
}

.copyright {
  margin-top: 25px;
  padding: 15px 0;
  border-top: 1px solid var(--gray--900);
}
.copyright__container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .copyright__container {
    flex-flow: column-reverse;
    gap: 20px;
  }
}
.copyright .links {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 10px;
}
.copyright .links a {
  color: var(--add--400);
  opacity: 1;
  font-size: var(--paragraph--regular-5);
  text-decoration: underline;
}
.copyright p {
  opacity: 1;
  margin-bottom: 0;
}

.footer-company {
  display: flex;
  width: 33%;
  width: 12.5%;
  gap: 40px;
  padding-right: 50px;
}
@media screen and (max-width: 991px) {
  .footer-company {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .footer-company {
    flex-flow: wrap;
    padding-right: 0;
  }
}
.footer-company .logo {
  min-width: 100px;
}
.footer-company__content p {
  color: var(--white);
  font-size: var(--paragraph--regular-4);
  opacity: 1;
}
.footer-company .links {
  margin-top: 30px;
}
.footer-company .links a {
  display: block;
  margin-bottom: 10px;
  color: var(--add--400);
  opacity: 1;
  font-size: var(--paragraph--regular-5);
  text-decoration: underline;
}
.footer-company .links a:last-child {
  margin-bottom: 0;
}

.footer .footer-contacts {
  display: flex;
  flex-flow: wrap;
  width: 100%;
  padding: 40px 0 10px;
  border-top: 1px solid var(--gray--900);
  row-gap: 20px;
}
.footer .footer-contacts__col {
  width: 25%;
  display: flex;
  gap: 20px;
}
.footer .footer-contacts__col a, .footer .footer-contacts__col p {
  font-size: 1rem;
}
.footer .footer-contacts__col:last-child {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .footer .footer-contacts__col {
    width: 50%;
  }
  .footer .footer-contacts__col:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .footer .footer-contacts__col {
    width: 100%;
  }
}
.footer .footer-contacts__title {
  font-size: 1rem;
}

body {
  background-color: #fff;
}

.hero-slider {
  position: relative;
  background: var(--gray--100);
}
.hero-slider .btn-arrow {
  position: absolute;
  left: 65px;
  top: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
}
.hero-slider .btn-arrow.btn-next {
  left: auto;
  right: 65px;
}
@media screen and (max-width: 991px) {
  .hero-slider .btn-arrow {
    display: none;
  }
}

.hero-slide {
  position: relative;
  height: auto;
  font-size: var(--paragraph--regular-1);
}
.hero-slide__container {
  min-height: 700px;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  row-gap: 25px;
  align-items: flex-start;
  padding-bottom: 85px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1550px) {
  .hero-slide__container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .hero-slide__container {
    min-height: auto;
    padding: 100px;
  }
}
@media screen and (max-width: 991px) {
  .hero-slide__container {
    padding: 50px 15px;
  }
}
.hero-slide .btn {
  margin-top: 15px;
}
.hero-slide__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}
.hero-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-wrapper .btn {
  margin-top: 45px;
}

.services-list {
  display: flex;
  flex-flow: wrap;
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .services-list {
    margin-top: 30px;
  }
}
.services-list__item {
  width: calc(33.3333333333% - 10.6666666667px);
}
@media screen and (max-width: 991px) {
  .services-list__item {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 575px) {
  .services-list__item {
    width: 100%;
  }
}
.services-list__item .service-image {
  height: 300px;
}

.solutions-wrapper .solutions-text {
  padding-left: 50px;
}
@media screen and (max-width: 991px) {
  .solutions-wrapper .solutions-text {
    padding-top: 30px;
    padding-left: 0;
  }
}
.solutions-wrapper .btn {
  margin-top: 45px;
}

.our-brands, .our-projects {
  display: flex;
  gap: 16px;
  flex-flow: wrap;
  margin: 45px 0 55px;
}
.our-brands:last-child, .our-projects:last-child {
  margin-bottom: 0;
}
.our-brands__item, .our-projects__item {
  width: calc(33.3333333333% - 10.6666666667px);
}
@media screen and (max-width: 991px) {
  .our-brands__item, .our-projects__item {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 575px) {
  .our-brands__item, .our-projects__item {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    object-fit: contain;
  }
  .temi_br img{
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    object-fit: cover!important;
  }
}
.our-brands__item img, .our-projects__item img {
  height: 200px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
}
.mbmt-35 {
  margin-top: 35px;
      margin-bottom: 35px!important;
}
section a {
      color: #c8102e;
}
.temi_br img{
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    object-fit: cover!important;
  }
.brands-logo .our-brands__item {
  padding: 10px;
}
.brands-logo .our-brands__item img {
  object-fit: contain;
}
b {
    font-weight: bold; /* Жирный текст */
    color: inherit; /* Унаследовать цвет от родительского элемента */
}
 i {
    font-style: italic; /* Курсивный текст */
    color: inherit; /* Унаследовать цвет от родительского элемента */
}
/* Дополнительные стили для улучшения визуального восприятия */
/*strong {
    text-transform: uppercase; /* Преобразование текста в верхний регистр (по желанию) */
}*/

/* Пример для выделения текста с фоном */
b.highlight, strong.highlight {
    background-color: yellow; /* Желтый фон для выделения */
}

.our-projects {
  display: block;
  overflow: hidden;
  margin-top: 0;
}
.our-projects .swiper-slide {
  margin-right: 16px;
  width: calc(33.3333333333% - 10.6666666667px);
}
@media screen and (max-width: 991px) {
  .our-projects .swiper-slide {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 575px) {
  .our-projects .swiper-slide {
    width: 100%;
  }
}
.our-projects .swiper-slide:last-child {
  margin-right: 0;
}
.our-projects .title-item {
  color: var(--black);
}
.our-projects .image-item {
  height: 230px;
}
.our-projects .image-item img {
  height: 100%;
  transform: scale(1);
  transition: 0.3s;
}
.our-projects__item {
  width: 100%;
  display: block;
  border-radius: 0;
}
.our-projects__item.hidden {
  display: none;
}
.our-projects__item:hover .title-item {
  color: var(--red);
}
.our-projects__item:hover .image-item img {
  transform: scale(1.1);
}

.projects-list {
  display: flex;
  flex-flow: wrap;
  gap: 16px;
  row-gap: 32px;
}
.projects-list .our-projects__item {
  width: calc(33.3333333333% - 10.6666666667px);
}
@media screen and (max-width: 991px) {
  .projects-list .our-projects__item {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 575px) {
  .projects-list .our-projects__item {
    width: 100%;
  }
}

.project-tags {
  display: flex;
  gap: 30px;
  margin: 15px 0;
  flex-flow: wrap;
  row-gap: 12px;
  color: var(--black);
}
.project-tags li {
  position: relative;
}
.project-tags li::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray--300);
  position: absolute;
  right: -18px;
  top: 7px;
}
.project-tags li:last-child::after {
  display: none;
}

.project-date {
  font-size: var(--paragraph--regular-1);
  font-weight: 600;
  color: var(--red);
}

.reviews {
  overflow: hidden;
}

.review {
  display: flex;
  flex-flow: wrap;
  gap: 60px;
  line-height: 1.4;
}
.review-left {
  width: 50%;
  display: flex;
  flex-flow: wrap;
}
@media screen and (max-width: 1200px) {
  .review-left {
    width: 100%;
  }
}
.review-right {
  width: calc(50% - 60px);
}
.review__image {
  width: 50%;
  margin-bottom: 0;
  min-width: 270px;
  width: 270px;
}
@media screen and (max-width: 575px) {
  .review__image {
    width: 100%;
  }
}
.review-detail {
  width: calc(50% - 40px);
  width: calc(100% - 270px);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding-left: 40px;
  padding-top: 12px;
  box-sizing: border-box;
  padding-bottom: 12px;
}
@media screen and (max-width: 575px) {
  .review-detail {
    width: 100%;
    padding-left: 0;
    row-gap: 20px;
  }
}
.review-text {
  color: var(--red--500);
  font-size: var(--paragraph--regular-2);
  position: relative;
}
.review-text::before {
  content: "\e907";
  font-family: "ifk";
  font-size: 24px;
  display: block;
  margin-bottom: 12px;
  color: var(--black);
}
.review-company {
  color: var(--gray--600);
  font-size: var(--paragraph--regular-4);
}
.review-name {
  font-size: var(--headers---header-5);
  font-weight: 600;
  margin: 8px 0;
}
.review-right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .review-right {
    width: 100%;
    flex-flow: column-reverse;
    row-gap: 15px;
  }
}
.review-right__text {
  width: calc(100% - 270px);
  line-height: 1.4;
  font-size: var(--paragraph--regular-4);
  padding-right: 35px;
}
@media screen and (max-width: 575px) {
  .review-right__text {
    width: 100%;
  }
}
.review-caption {
  margin-top: 20px;
  color: var(--gray--600);
}
.review-letter {
  width: 270px;
  border-radius: 12px;
  position: relative;
}
@media screen and (max-width: 575px) {
  .review-letter {
    width: 100%;
  }
}
.review-letter i {
  position: absolute;
  left: 16px;
  bottom: 16px;
}

.our-clients {
  overflow: hidden;
}
.our-clients .swiper-slide {
  width: calc(25% - 12px);
  margin-right: 16px;
  background: var(--gray--100);
  padding: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .our-clients .swiper-slide {
    width: calc(33.3333333333% - 10.6666666667px);
  }
}
@media screen and (max-width: 575px) {
  .our-clients .swiper-slide {
    width: calc(50% - 8px);
  }
}
.our-clients .swiper-slide:last-child {
  margin-right: 0;
}
.our-clients img {
  max-height: 50px;
  object-fit: contain;
  object-position: center;
  height: 50px;
}

.news-slider {
  overflow: hidden;
}
.news-slider .swiper-slide {
  width: calc(33.3333333333% - 10.6666666667px);
  margin-right: 16px;
}
@media screen and (max-width: 991px) {
  .news-slider .swiper-slide {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 991px) {
  .news-slider .swiper-slide {
    width: 100%;
  }
}
.news-slider .swiper-slide:last-child {
  margin-right: 0;
}

.news-item {
  position: relative;
  padding-bottom: 1px;
}
.news-item .news-image {
  width: 100%;
  border-radius: 12px 12px 0 0;
  display: block;
  overflow: hidden;
}
.news-item .news-image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.news-item .news-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}
.news-item .news-item__content {
  padding: 20px 24px;
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--gray--200);
  border-top: none;
}
@media screen and (max-width: 991px) {
  .news-item .news-item__content {
    padding: 15px;
  }
}
.news-item .title-item {
  color: var(--black);
  font-size: var(--headers---header-6);
  margin: 16px 0 24px;
}
@media screen and (max-width: 991px) {
  .news-item .title-item {
    font-size: var(--paragraph--regular-1);
  }
}
.news-item .news-cat {
  color: var(--gray--600);
  position: relative;
  z-index: 2;
}
.news-item .news-cat:hover {
  color: var(--red--500);
}
.news-item .date {
  color: var(--gray--600);
}
.news-item:hover .news-image img {
  transform: scale(1.1);
}
.news-item:hover .title-item {
  color: var(--red--500);
}

.history-wrapper {
  margin-top: 50px;
  overflow: hidden;
}
.history-wrapper__general .swiper-slide {
  width: calc(33.3333333333% + 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: initial;
  aspect-ratio: 1;
}
@media screen and (max-width: 991px) {
  .history-wrapper__general .swiper-slide {
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .history-wrapper__general .swiper-slide {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.history-wrapper__general .swiper-slide:last-child {
  margin-right: 0;
}
.history-wrapper__general .swiper-slide .history-item {
  width: 80%;
}
.history-wrapper__general .swiper-slide-prev {
  justify-content: flex-end;
  padding-right: 25px;
}
.history-wrapper__general .swiper-slide-next {
  padding-left: 25px;
  justify-content: flex-start;
}
.history-wrapper__general .swiper-slide-active .history-item {
  width: 100%;
  background: var(--red--500);
  color: #fff;
  border-color: var(--red--500);
}
.history-wrapper__general .swiper-slide-active .history-item ul {
  transform: scale(1);
}
.history-wrapper__general .swiper-slide-active .history-item .year {
  font-size: 72px;
}
@media screen and (max-width: 1200px) {
  .history-wrapper__general .swiper-slide-active .history-item .year {
    font-size: 50px;
  }
}
.history-wrapper__dots {
  overflow: hidden;
  flex-grow: 1;
}
.history-wrapper__dots .swiper-slide {
  cursor: pointer;
  width: 8.3333333333%;
  color: #9E9EA3;
  transition: 0.3s;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: lining-nums proportional-nums;
}
@media screen and (max-width: 1200px) {
  .history-wrapper__dots .swiper-slide {
    width: 12.5%;
  }
}
@media screen and (max-width: 991px) {
  .history-wrapper__dots .swiper-slide {
    width: 20%;
  }
}
@media screen and (max-width: 575px) {
  .history-wrapper__dots .swiper-slide {
    width: 33.3333333333%;
  }
}
.history-wrapper__dots .swiper-slide:hover {
  color: #000;
}
.history-wrapper__dots .swiper-slide-thumb-active {
  font-size: 32px;
  color: #000;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .history-wrapper__dots .swiper-slide-thumb-active {
    font-size: 25px;
  }
}
.history-wrapper__dots .swiper-wrapper {
  text-align: center;
}
.history-wrapper .history-item {
  border: 1px solid #E5E5E6;
  padding: 24px;
  border-radius: 12px;
  color: #C5C5C8;
  aspect-ratio: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 575px) {
  .history-wrapper .history-item {
    aspect-ratio: 16/9;
  }
}
.history-wrapper .history-item .year {
  transition: 0.3s;
  font-size: 56px;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .history-wrapper .history-item .year {
    font-size: 35px;
  }
}
.history-wrapper .history-item ul {
  transform: scale(0.8) translateX(-30px);
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  .history-wrapper .history-item ul {
    font-size: 12px;
  }
}
.history-wrapper .history-item ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
}
.history-wrapper .history-item ul li::before {
  content: "";
  width: 8px;
  background: #D5D5D7;
  height: 8px;
  position: absolute;
  left: 0;
  border-radius: 50%;
  top: 5px;
}

.dots-wrapper {
  display: flex;
  margin-top: 50px;
  gap: 30px;
  align-items: center;
}

.our-brands-two .our-brands__item {
  width: calc(20% - 12.8px);
  border-radius: 0;
}
@media screen and (max-width: 991px) {
  .our-brands-two .our-brands__item {
    width: calc(33.3333333333% - 10.6666666667px);
  }
}
@media screen and (max-width: 575px) {
  .our-brands-two .our-brands__item {
    width: 100%;
  }
}
.our-brands-two .our-brands__item img {
  height: 290px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.brand-name {
  font-size: var(--headers---header-6);
  font-weight: 600;
}

.our-command {
  display: flex;
  flex-flow: wrap;
  gap: 16px;
  row-gap: 32px;
}
.our-command__item {
  width: calc(25% - 12px);
}
@media screen and (max-width: 991px) {
  .our-command__item {
    width: calc(33.3333333333% - 10.6666666667px);
  }
}
@media screen and (max-width: 575px) {
  .our-command__item {
    width: 100%;
  }
}
.our-command img {
  height: 370px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}
.our-command .title-item {
  font-size: var(--headers---header-5);
  color: var(--black);
  margin: 24px 0 16px;
}

.roadmap {
  display: flex;
  flex-flow: wrap;
  gap: 16px;
  list-style-type: none;
  counter-reset: num;
}
@media screen and (max-width: 575px) {
  .roadmap {
    justify-content: center;
  }
}
.roadmap__item {
  width: calc(20% - 12.8px);
  font-size: var(--paragraph--regular-2);
  font-weight: 600;
  color: var(--black);
  transition: 0.3s;
  text-align: center;
  padding: 32px 20px 39px;
  border: 1px solid var(--gray--200);
  border-radius: 12px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .roadmap__item {
    width: calc(33.3333333333% - 10.6666666667px);
  }
}
@media screen and (max-width: 575px) {
  .roadmap__item {
    width: calc(50% - 8px);
    padding: 15px;
    font-size: 1rem;
  }
}
.roadmap__item::before {
  content: counter(num);
  counter-increment: num;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background: var(--gray--50);
  color: var(--black);
  font-size: var(--headers---header-5);
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  font-variant-numeric: lining-nums proportional-nums;
}
@media screen and (max-width: 575px) {
  .roadmap__item::before {
    margin-bottom: 20px;
  }
}
.roadmap__item:hover {
  color: var(--white);
  border-color: var(--red--500);
  background: var(--red--500);
}
.roadmap__item:hover:before {
  background: var(--red--400);
  color: var(--white);
}
.roadmap__item:nth-child(-n+15):hover {
  background: #c8102e;
  border-color: #c8102e;
}
.roadmap__item:nth-child(-n+10):hover {
  background: rgba(200, 16, 46, 0.65);
  border-color: rgba(200, 16, 46, 0.65);
}
.roadmap__item:nth-child(-n+5):hover {
  background: rgba(200, 16, 46, 0.35);
  border-color: rgba(200, 16, 46, 0.35);
}

.brand-detail {
  display: flex;
  flex-flow: wrap;
  row-gap: 20px;
  justify-content: space-between;
}
.brand-detail__left {
  width: calc(50% - 8px);
}
@media screen and (max-width: 768px) {
  .brand-detail__left {
    width: 100%;
  }
}
.brand-detail__left .btns-row {
  margin-top: 20px;
}
.brand-detail__chart {
  width: calc(41.6666666667% - 8px);
  font-size: var(--paragraph--regular-4);
}
@media screen and (max-width: 768px) {
  .brand-detail__chart {
    width: 100%;
  }
}

.chart-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
}
.chart-list li::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  border-top: 1px dashed var(--gray--200);
  top: 14px;
}
.chart-list li:last-child {
  margin-bottom: 0;
}
.chart-list li span {
  position: relative;
  z-index: 1;
  background: #fff;
}
.chart-list .right-chart {
  text-align: right;
  font-weight: 600;
}
.chart-list .right-chart .added {
  color: var(--gray--600);
  font-size: var(--paragraph--regular-5);
  font-weight: 400;
  margin-top: 4px;
}

.gallery-brand {
  display: flex;
  flex-flow: wrap;
  gap: 16px;
  margin-top: 50px;
}
.gallery-brand:first-child {
  margin-top: 0;
}
.gallery-brand a {
  width: calc(33.3333333333% - 10.6666666667px);
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .gallery-brand a {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 575px) {
  .gallery-brand a {
    width: 100%;
  }
}
.gallery-brand a img {
  max-height: 300px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  transform: scale(1);
  transition: 0.3s;
}
.gallery-brand a:hover img {
  transform: scale(1.1);
}

.projects-list .image-item {
  height: 300px;
}

.cats-projects {
  display: inline-flex;
  gap: 12px;
  flex-flow: wrap;
  margin-bottom: 40px;
}
.cats-projects__btn {
  padding: 10px 18px;
  background: none;
  padding: 10px 14px;
  background: var(--gray--50);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--paragraph--regular-2);
}
.cats-projects__btn.active {
  color: var(--white);
  background: var(--black);
}
.cats-projects__btn span {
  font-size: 12px;
  color: var(--black);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
}

.project-details {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 50px;
  justify-content: space-between;
  row-gap: 30px;
}
@media screen and (max-width: 991px) {
  .project-details {
    margin-bottom: 30px;
  }
}
.project-details__left {
  width: 33.3333333333%;
}
@media screen and (max-width: 1200px) {
  .project-details__left {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .project-details__left {
    width: 100%;
  }
}
.project-details__right {
  width: 41.6666666667%;
  padding-right: 110px;
}
@media screen and (max-width: 1200px) {
  .project-details__right {
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .project-details__right {
    width: 100%;
  }
}

.section-coop .review {
  margin-top: 50px;
}

.step-row {
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  gap: 46px;
  row-gap: 20px;
}
.step-row .steps {
  width: calc(70.8333333333% - 23px);
}
@media screen and (max-width: 991px) {
  .step-row .steps {
    width: 100%;
  }
}
.step-row .info {
  width: calc(29.1666666667% - 23px);
  padding: 20px;
}
@media screen and (max-width: 991px) {
  .step-row .info {
    width: 100%;
  }
}

.steps {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
  counter-reset: num;
}
.steps__item {
  width: calc(33.3333333333% - 33.3333333333px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .steps__item {
    width: 100%;
  }
}
.steps__item::after {
  content: "\e90a";
  width: 30px;
  height: 30px;
  font-family: "ifk";
  font-size: 30px;
  position: absolute;
  top: 0;
  right: -40px;
  top: 80px;
}
@media screen and (max-width: 768px) {
  .steps__item::after {
    top: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(90deg);
  }
}
.steps__item:last-child::after {
  display: none;
}
.steps__item img {
  width: 100%;
  height: 190px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}
.steps .step-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--paragraph--regular-1);
  font-weight: 600;
  margin-top: 14px;
}
.steps .step-text a {
  color: var(--red--500);
  text-decoration: underline;
}
.steps .step-text::before {
  content: counter(num);
  counter-increment: num;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray--200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partners {
  display: flex;
  flex-flow: wrap;
  gap: 16px;
  row-gap: 32px;
}
@media screen and (max-width: 575px) {
  .partners {
    row-gap: 40px;
  }
}
.partners__item {
  width: calc(50% - 8px);
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 991px) {
  .partners__item {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .partners__item {
    flex-flow: wrap;
    gap: 0;
  }
}
.partners .partner-image {
  width: 40%;
  background: var(--gray--200);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 25px;
  height: 210px;
}
@media screen and (max-width: 575px) {
  .partners .partner-image {
    width: 100%;
    height: 130px;
  }
}
.partners .partner-image img {
  object-fit: contain;
  transition: 0.3s;
}
.partners .partner-image:hover img {
  transform: scale(1.05);
}
.partners .partner-content {
  width: calc(60% - 24px);
}
@media screen and (max-width: 575px) {
  .partners .partner-content {
    width: 100%;
  }
}
.partners .title-item {
  color: var(--black);
  font-size: var(--headers---header-5);
  margin-bottom: 16px;
}

.questionary-form {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .questionary-form {
    width: 100%;
  }
}
.questionary-form label {
  margin-bottom: 16px;
  display: inline-block;
  width: 100%;
}
.questionary-form .target-files, .questionary-form .label-select {
  display: flex;
}
.questionary-form .btn {
  margin-top: 30px;
}
.questionary-form form {
  margin-top: 20px;
}

.download-list {
  display: flex;
  flex-flow: wrap;
  gap: 16px;
  row-gap: 32px;
}
.download-list__item {
  width: calc(33.3333333333% - 10.6666666667px);
}
@media screen and (max-width: 991px) {
  .download-list__item {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 575px) {
  .download-list__item {
    width: 100%;
  }
}
.download-list p + p {
  margin-top: 8px;
}
.download-list .image-item {
  height: 175px;
}

.section-map .frame-wrapper {
  border-radius: 16px;
  overflow: hidden;
  margin-right: 50px;
}
@media screen and (max-width: 991px) {
  .section-map .frame-wrapper {
    margin-right: 0;
  }
}

.contact-item {
  margin-bottom: 35px;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-item__title {
  font-size: var(--headers---header-5);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-item__desc {
  font-size: var(--paragraph--regular-4);
  font-weight: 500;
}
.contact-item__desc a {
  color: var(--red--500);
  text-decoration: underline;
}

.news-list {
  display: flex;
  flex-flow: wrap;
  gap: 16px;
  margin-bottom: 50px;
}
.news-list .news-item {
  width: calc(33.3333333333% - 10.6666666667px);
}
@media screen and (max-width: 991px) {
  .news-list .news-item {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 575px) {
  .news-list .news-item {
    width: 100%;
  }
}

.article-content > * {
  margin: 20px 0;
}
.article-content > *:first-child {
  margin-top: 0;
}
.article-content > *:last-child {
  margin-bottom: 0;
}
.article-content img {
  border-radius: 16px;
  overflow: hidden;
}
.article-content ul {
  list-style: disc;
  padding-left: 20px;
}
.article-content ul li {
  padding-bottom: 10px;
}
.article-content ul li:last-child {
  padding-bottom: 0;
}

.projects-four-list {
  justify-content: center;
}
.projects-four-list .our-projects__item {
  width: calc(25% - 12px);
}
@media screen and (max-width: 991px) {
  .projects-four-list .our-projects__item {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 575px) {
  .projects-four-list .our-projects__item {
    width: 100%;
  }
}
.projects-four-list .image-item {
  height: 200px;
}

.link-demo {
  counter-reset: num;
}
.link-demo li {
  padding-bottom: 5px;
}
.link-demo a {
  font-weight: 600;
}
.link-demo a::before {
  content: counter(num) ".";
  counter-increment: num;
}

.section-coop .text-middle:last-child {
  margin-bottom: 30px;
}

.section-404 {
  text-align: center;
  min-height: calc(100vh - 600px);
}
.section-404 .title-block {
  font-size: 130px;
  font-weight: 700;
}
.section-404 .btns-row {
  display: flex;
  justify-content: center;
}

.inputs {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.inputs label {
  width: auto;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
}
.inputs label span {
  padding: 10px;
  color: var(--gray--800);
  border: 1px solid var(--gray--200);
  border-radius: 10px;
  transition: 0.3s;
  display: inline-block;
  font-size: var(--paragraph--regular-4);
}
.inputs input {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.inputs input:checked + span {
  background: var(--red--100);
  color: var(--black);
  border-color: var(--red--100);
}

.label-radio {
  margin-bottom: 16px;
}
.label-radio .label-title {
  margin-bottom: 10px;
  color: var(--gray--600);
  font-weight: 500;
}

.chart-list li {
  row-gap: 10px;
}
.chart-list li > span {
  white-space: nowrap;
}
.chart-list .services-items {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
  gap: 5px;
}
.chart-list .services-items span {
  padding: 5px;
  border-radius: 4px;
  color: var(--white);
  background: var(--red);
  display: block;
  min-width: 30px;
  text-align: center;
  font-size: 13px;
}

.projects-rent {
  margin: 45px 0;
}
/*# sourceMappingURL=main.css.map */
