

/* === content-01 === */


#content-01-1166 {
	 --content-01-text-align: center;
	 --content-01-background: rgba(0, 0, 0, 0);
	 --content-01-color: rgb(0, 0, 0);
}

.content-01 {
  background-color: var(--content-01-background);
  color: var(--content-01-color);
  padding: 70px 0;
  text-align: var(--content-01-text-align);
  position: relative;
  overflow: hidden;
}

.content-01::after {
  content: " ";
  width: 550px;
  height: 250px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("/images/bg/bab-gray-01.webp");
  background-size: contain;
  background-position: center;
  bottom: -70px;
  z-index: 0;
}

.content-01 .container {
  position: relative;
  z-index: 1;
}

.content-01-title {
  margin-bottom: 20px;
}

h3.content-01-title {
  font-style: italic;
}

.content-01-text {
  font-size: 22px;
  line-height: 30px;
}

.content-01-text p:last-child {
  margin-bottom: 0;
}

.content-01 table tr,
.content-01 table td {
  border: 1px solid #434547;
  padding: 1rem;
}

.content-01 .read-toggle {
  background: none;
  border: none;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 500;
}

.content-01 a {
  color: #000;
  font-weight: 500;
}

body[data-id="3"] .content-01 {
  margin-top: 100px;
}

@media (width <=991.98px) {
  .content-01-text p br {
    display: none;
  }
}

@media screen and (width <=767px) {
  .content-01 table {
    max-width: 100%;
    overflow-wrap: break-word;
    table-layout: fixed;
    width: 100%;
  }
}
/* === content-01 === */



/* === what-we-do === */

.what-we-do {
  background-color: #222;
  color: #fff;
  counter-reset: what-counter;
  padding: 95px 0;
  scroll-margin-top: 100px;
}

.what-we-do .block-title {
  margin-bottom: 25px;
  text-align: center;
}

.what-we-do .what-item {
  align-items: flex-start;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
  margin-bottom: var(--bs-gutter-x);
  min-height: 315px;
  padding: 30px 35px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.what-we-do .what-item .item-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
  align-items: flex-start;
}

.what-we-do .what-item .item-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: -20px;
  transition: max-height 0.3s linear, opacity 0.3s linear,
    margin 0.2s linear;
}

.what-we-do .what-item:hover .item-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: -10px;
}

.what-we-do .last-item {
  align-items: center;
  border: 2px dashed rgb(255 255 255 / 30%);
  border-radius: 10px;
  display: flex;
  font-size: 24px;
  line-height: 30px;
  min-height: 315px;
  padding: 30px 35px;
  position: relative;
}

.what-we-do .last-item a {
  color: #fd020d;
  text-decoration: none;
}

.what-we-do .last-item p a::after {
  content: " \f054";
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
}

.what-we-do .row .col-12:nth-child(1) .what-item {
  background: #fd020d;
}

.what-we-do .row .col-12:nth-child(2) .what-item {
  background: #ff7c02;
}

.what-we-do .row .col-12:nth-child(3) .what-item {
  background: #4fc61f;
}

.what-we-do .row .col-12:nth-child(4) .what-item {
  background: #dbc119;
}

.what-we-do .row .col-12:nth-child(5) .what-item {
  background: #368efd;
}

.what-we-do .what-item::before {
  color: #fff;
  content: "0" counter(what-counter) ".";
  counter-increment: what-counter;
  font-size: 14px;
  left: 30px;
  position: absolute;
  top: 30px;
}

.what-we-do .what-item .item-title {
  line-height: 1;
  margin: 0;
}

.what-we-do .what-item .item-desc {
  max-width: 300px;
}

.what-we-do .what-item .item-desc p {
  margin-bottom: 0;
}

.what-we-do .what-item .item-image {
  height: 80px;
  width: auto;
}

.what-we-do .what-item svg {
  height: 80px;
  width: auto;
  fill: #fff;
}

.what-we-do .what-item .item-link {
  align-items: center;
  animation: outer-pulse 2.5s infinite;
  background-color: rgb(255 255 255 / 15%);
  border-radius: 50%;
  bottom: 15px;
  color: #fff;
  display: flex;
  height: 56px;
  justify-content: center;
  position: absolute;
  right: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease,
    box-shadow 0.3s ease;
  width: 56px;
}

.what-we-do .what-item .item-link:hover {
  background-color: rgb(255 255 255 / 70%);
  box-shadow: 0 0 15px rgb(255 255 255 / 80%);
  color: #222;
}

@keyframes outer-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(255 255 255 / 70%);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 15px rgb(255 255 255 / 0%);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(255 255 255 / 0%);
    transform: scale(1);
  }
}

@media (width <= 1199.98px) {
  .what-we-do .what-item {
    gap: 25px;
    min-height: 235px;
    padding: 30px 25px;
  }

  .what-we-do .what-item img {
    height: 80px;
  }

  .what-we-do .last-item {
    font-size: 20px;
    line-height: 26px;
    min-height: 235px;
  }

  .what-we-do .what-item::before {
    left: 25px;
    top: 25px;
  }

  .what-we-do .what-item .item-title {
    max-width: 200px;
  }

  .what-we-do .what-item .item-desc {
    max-height: 0; /* Сохраняем скрытие на меньших экранах */
  }

  .what-we-do .what-item:hover .item-desc {
    max-height: 200px; /* Подходит для адаптивных экранов */
  }
}

@media (width <= 767.98px) {
  .what-we-do .last-item {
    padding: 20px;
  }

  .what-we-do .last-item p {
    margin-bottom: 0;
  }
}

@media (width <= 575.98px) {
  .what-we-do .what-item {
    padding: 20px 25px;
  }
}

/* === what-we-do === */



/* === other_services === */

.oserv01 {
  counter-reset: oserv_counter 5;
  padding: 85px 0 80px;
}

.oserv01 .block-title {
  line-height: 1;
}

.oserv01 .service-title {
  align-items: center;
  display: flex;
  font-size: 24px;
  gap: 15px;
  line-height: 30px;
  margin-bottom: var(--bs-gutter-x);
}

.oserv01 .service-title::before {
  align-items: center;
  border: 2px solid;
  border-radius: 50%;
  content: counter(oserv_counter);
  counter-increment: oserv_counter;
  display: flex;
  font-size: 20px;
  height: 56px;
  justify-content: center;
  min-width: 56px;
  padding-top: 2px;
  width: 56px;
}

.oserv01 .services .col-12:nth-child(1) {
  border-color: #fd020d;
}

.oserv01
  .services
  .col-12:nth-child(1)
  .service-title::before {
  color: #fd020d;
}

.oserv01 .services .col-12:nth-child(2) {
  border-color: #ff7c02;
}

.oserv01
  .services
  .col-12:nth-child(2)
  .service-title::before {
  color: #ff7c02;
}

.oserv01 .services .col-12:nth-child(3) {
  border-color: #4fc61f;
}

.oserv01
  .services
  .col-12:nth-child(3)
  .service-title::before {
  color: #4fc61f;
}

.oserv01 .services .col-12:nth-child(4) {
  border-color: #368efd;
}

.oserv01
  .services
  .col-12:nth-child(4)
  .service-title::before {
  color: #368efd;
}

@media (width <= 1199.98px) {
  .oserv01 .service-title {
    line-height: 1;
    max-width: 300px;
  }
}

@media (width <= 991.98px) {
  .oserv01 .block-title {
    margin-bottom: 30px;
  }

  .oserv01 .block-title br {
    display: none;
  }

  .oserv01 .service-title {
    max-width: 100%;
  }
}

@media (width <= 767.98px) {
  .oserv01 {
    padding: 50px 0 40px;
  }
}

@media (width <= 575.98px) {
  .oserv01 .service-title {
    font-size: 18px;
    line-height: 24px;
  }

  .oserv01 .service-title::before {
    font-size: 18px;
    height: 42px;
    min-width: 42px;
    width: 42px;
  }
}

/* === other_services === */



/* === call-to-action-01 === */


#call-to-action-01-1172 {
	 --cta-01-background: rgb(153, 153, 153);
	 --cta-01-background-image: url(/scripts/placeholder/1000/1000/1000x1000/36/darkgrey);
	 --cta-01-color: #fff;
}

.cta-01 {
  background: #222;

  /* background-blend-mode: multiply;
  background-color: transparent;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover; */
  color: #fff;
  overflow: hidden;
  padding: 240px 0 200px;
  position: relative;
  text-align: center;
}

.cta-01::after {
  background: url("/images/bg/bab-dark-bg.webp");
  background-size: contain;
  bottom: -130px;
  content: "";
  height: 550px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 1200px;
  z-index: 0;
  background-repeat: no-repeat;
}

.cta-01 .container {
  position: relative;
  z-index: 2;
}

.cta-01 .title {
  letter-spacing: -0.025em;
  line-height: 1;
}

.cta-01 .text {
  font-size: 24px;
  line-height: 26px;
  margin-top: 10px;
}

.cta-01 .btn {
  align-items: center;
  background-color: #fd020d;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  height: 56px;
  justify-content: center;
  letter-spacing: 2px;
  margin: 20px auto 0;
  padding: 0 50px;
  text-transform: uppercase;
  width: max-content;
}

.cta-01 a.cta-phone-link {
  color: inherit;
  font: inherit;
}

@media (width <= 1199.98px) {
  .cta-01 {
    background-size: contain;
  }

  .cta-01 .title {
    font-size: 72px;
  }

  .cta-01 .text {
    margin: 0 auto;
    max-width: 500px;
  }
}

@media (width <= 991.98px) {
  .cta-01 {
    padding-bottom: 135px;
    padding-top: 135px;
  }

  .cta-01 .btn {
    margin-top: 20px;
  }

  .cta-01 .text {
    margin-top: 14px;
  }
}

@media (width <= 767.98px) {
  .cta-01 {
    padding: 160px 0;
  }

  .cta-01 .btn {
    margin-top: 16px;
  }

  .cta-01 .title {
    font-size: 48px;
  }

  .cta-01 .text {
    margin-top: 8px;
  }
}

@media (height <= 600px) {
  .cta-01 {
    padding-bottom: 50px;
    padding-top: 110px;
  }

  .cta-01 .title {
    font-size: 50px;
  }
}

@media (width <= 575.98px) {
  .cta-01 {
    padding-bottom: 90px;
    padding-top: 120px;
    text-align: center;
  }

  .cta-01 .title {
    font-size: 42px;
    text-align: center;
  }

  .cta-01 .items {
    gap: 8px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cta-01 .text {
    font-size: 26px;
    line-height: 28px;
    margin-top: 16px;
  }

  .cta-01 .btn {
    margin-top: 22px;

    --bs-btn-padding-x: 32px;

    width: 100%;
  }

  .cta-01::after {
    bottom: -290px;
    width: 100%;
    height: 100%;
  }
}

@media (width <= 360px) {
  .cta-01 .title {
    font-size: 36px;
  }
}

/* === call-to-action-01 === */



/* === the_process === */

.the_process {
    padding: 70px 0 50px;
    --offset_middle: 65px;
    --offset_lower: 130px;
    background-color: #efeff1;
}

    .the_process .block_title {
        margin-left: 100px;
    }

    .the_process .canvas_wrapper {
        position: relative;
        overflow: hidden;
        /*padding-top: 65px;*/
    }

    .the_process .process_wrapper {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: nowrap;
        width: auto;
        gap: 0px;
        overflow: visible;
        margin-top: -30px;
        padding-top: 35px;
        position: relative;
        padding-bottom: 70px;
    }

        .the_process .process_wrapper .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            padding: 0px 80px;
        }

            .the_process .process_wrapper .step:nth-child(6n-5) {
                padding-top: var(--offset_middle);
            }

            .the_process .process_wrapper .step:nth-child(6n-4) {
                padding-top: var(--offset_lower);
            }

            .the_process .process_wrapper .step:nth-child(6n-3) {
                padding-top: var(--offset_middle);
            }

            .the_process .process_wrapper .step:nth-child(6n-2) {
                padding-top: 0px;
            }

            .the_process .process_wrapper .step:nth-child(6n-7) {
                padding-top: var(--offset_middle);
            }

            .the_process .process_wrapper .step:nth-child(6n-6) {
                padding-top: var(--offset_lower);
            }

        .the_process .process_wrapper .step_counter {
            width: 37px;
            height: 37px;
            min-width: 37px;
            min-height: 37px;
            border-radius: 100%;
            font-size: 16px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .the_process
        .process_wrapper
        .step:nth-child(6n-5)
        .step_counter {
            background-color: #fd020d;
        }

        .the_process
        .process_wrapper
        .step:nth-child(6n-4)
        .step_counter {
            background-color: #ff7c02;
        }

        .the_process
        .process_wrapper
        .step:nth-child(6n-3)
        .step_counter {
            background-color: #50d71a;
        }

        .the_process
        .process_wrapper
        .step:nth-child(6n-2)
        .step_counter {
            background-color: #dbc119;
        }

        .the_process
        .process_wrapper
        .step:nth-child(6n-7)
        .step_counter {
            background-color: #368efd;
        }

        .the_process
        .process_wrapper
        .step:nth-child(6n-6)
        .step_counter {
            background-color: #1a1a1a;
        }

        .the_process .process_wrapper .step_icon {
        }

        .the_process .process_wrapper .step_title {
            font-size: 22px;
            font-weight: 500;
            margin-top: 15px;
            position: absolute;
            width: 200px;
            text-align: center;
            bottom: 0;
            left: 50%;
            transform: translate(-50%, calc(100% + 10px));
            line-height: 28px;
        }

    .the_process .line_canvas {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    .the_process .test_dot {
        position: absolute;
        z-index: 30;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: black;
    }


@media (min-width: 1200px) {
    .the_process .line_canvas {
        width: 100% !important;
    }
}


@media (max-width: 1399.98px) {
    .the_process .process_wrapper .step {
        padding: 0 65px;
    }

    .the_process .canvas_wrapper {
        overflow: auto;
    }
}

@media (max-width: 991.98px) {
    .the_process .process_wrapper .step {
        padding-left: 65px;
        padding-right: 65px;
    }
}

@media (max-width: 767.98px) {
    .the_process .process_wrapper .step {
        padding-left: 65px;
        padding-right: 65px;
    }

    .the_process .block_title {
        margin-left: 0;
        text-align: center;
    }

    .the_process .process_wrapper .step:first-child {
        padding-left: 30px !important;
    }

        .the_process
        .process_wrapper
        .step:first-child
        .step_title {
            left: calc(50% - 15px);
        }

    .the_process .process_wrapper .step:last-child {
        padding-right: 30px;
    }

        .the_process
        .process_wrapper
        .step:last-child
        .step_title {
            left: calc(50% + 20px);
        }
}

/* === the_process === */



/* === case-studies-06 === */

.cs06 {
  /* background-image: url("");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  background-color: #222;
  overflow: hidden;
  padding: 90px 0 50px;
  position: relative;
}

.cs06 .block-header {
  width: auto;
}

.cs06 .case-gallery:not(.slick-initialized) {
  display: none;
}

.cs06 .slick-slide {
  margin: 0 calc(var(--bs-gutter-x) * 0.5);
}

.cs06 .slick-list {
  margin: 0 calc(var(--bs-gutter-x) * -0.5);
  overflow: visible;
}

.cs06 h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
}

.cs06 h2 strong {
  font-weight: 600;
}

.cs06 .next-icon,
.cs06 .prev-icon {
  background: none;
  border: none;
  border: 1px solid #fff;
  border-radius: 50%;
  bottom: auto;
  color: #fff;
  font-size: 16px;
  height: 56px;
  opacity: 1;
  top: 49.5%;
  transition: 0.3s all;
  width: 56px;
  z-index: 10;
}

.cs06 .case-item {
  overflow: hidden;
  position: relative;
}

.cs06 .image-wrapper {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  padding-bottom: 61%;
  position: relative;
  transition: 0.4s all;
  z-index: 2;
}

.cs06 .image-wrapper:hover::after {
  opacity: 0.35;
  transform: translateY(60%);
}

.cs06 .image-wrapper img {
  border-radius: 10px 10px 0 0;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  transform: translate3d(0, 0, 10px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #efeff1;
  color: #1f1f1f !important;
  text-decoration: unset !important;
  font-size: 16px;
  text-wrap: balance;
  font-style: italic;
}

.cs06 .text {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 25px;
  width: 100%;
}

.cs06 .text .summary {
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 30px;
}

.cs06 .more-info {
  align-items: center;
  border-radius: 50%;
  bottom: 20px;
  display: flex;
  height: 48px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 20px;
  text-decoration: none;
  width: 48px;
  z-index: 2;
}

.cs06 .text .category {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cs06 .text .title {
  color: #1f1f1f;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.cs06 .text .title a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.cs06 .text .title span {
  width: calc(100% - 20px - 18px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
}

.cs06 .text .title i {
  display: flex;
  color: #fd020d;
  justify-content: end;
}

.cs06 .text a {
  color: #1f1f1f;
  text-decoration: none;
}

.cs06 .text a svg {
  fill: #fff;
  height: 20px;
  width: 20px;
}

.cs06 .btn.show-more {
  background-color: #fff;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 400;
  padding: 14px 60px;
}

.cs06 .btn.show-more::after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  margin-left: 10px;
  vertical-align: middle;
}

.cs06 .buttom.view-all {
  position: relative;
  z-index: 10;
}

.cs06 .carousel-nav {
  gap: 10px;
}

@media screen and (width >=1200px) and (height <=600px) {
  .cs06 {
    padding: 60px 0;
  }
}

@media (width <=1199px) {
  .cs06 .image-wrapper::after {
    height: 125px;
  }

  .cs06 .image-wrapper {
    min-height: 335px;
    padding-bottom: 70%;
  }
}

@media (width <=991px) {
  .cs06 .case-item:hover .text {
    opacity: 1;
    pointer-events: all;
    transform: none;
  }

  .cs06 .btn.show-more {
    margin-top: 10px;
  }
}

@media (width <=767px) {
  .cs06 {
    padding: 60px 0;
  }

  .cs06 h2 br {
    display: none;
  }
}

@media (width <=575.98px) {
  .cs06 h2 {
    margin: 0 auto;
    text-align: center;
  }

  .cs06 .carousel-nav {
    justify-content: center;
  }
}
/* === case-studies-06 === */



/* === why-choose === */

.why-choose {
    background-image: url("/images/bg/bab-gray-bg.webp");
    background-position: center top 80px;
    background-repeat: no-repeat;
    padding: 95px 0;
}

    .why-choose .block-title {
        margin-bottom: 45px;
        text-align: center;
    }

    .why-choose .choose-items .item {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: flex-start;
        margin-bottom: var(--bs-gutter-x);
        transition: linear 0.25s;
    }

        .why-choose .choose-items .item:hover {
            transform: translateY(-7px);
        }

        .why-choose .choose-items .item i {
            font-size: 60px;
            color: #fd020d;
        }

        .why-choose .choose-items .item .item-title {
            font-size: 20px;
            line-height: 24px;
            text-align: center;
        }

    .why-choose .choose-items > div:nth-child(8n-7) .item i {
        color: #fd020d;
    }

    .why-choose .choose-items > div:nth-child(8n-6) .item i {
        color: #ff7c02;
    }

    .why-choose .choose-items > div:nth-child(8n-5) .item i {
        color: #4af107;
    }

    .why-choose .choose-items > div:nth-child(8n-4) .item i {
        color: #ffff00;
    }

    .why-choose .choose-items > div:nth-child(8n-3) .item i {
        color: #368efd;
    }

    .why-choose .choose-items > div:nth-child(8n-2) .item i {
        color: #ffff00;
    }

    .why-choose .choose-items > div:nth-child(8n-1) .item i {
        color: #fd020d;
    }

    .why-choose .choose-items > div:nth-child(8n-8) .item i {
        color: #4af107;
    }

@media (width <= 991.98px) {
    .why-choose {
        padding: 85px 0 35px;
    }

        .why-choose .choose-items .item {
            margin-bottom: 40px;
        }
}

/* === why-choose === */



/* === testimonial-carousel === */

.testimonial-carousel {
    background: #222;
    color: #fff;
    padding: 115px 0 110px;
}

    .testimonial-carousel .block-title {
        line-height: 60px;
    }

    .testimonial-carousel .subtitle {
        text-align: left;
    }

    .testimonial-carousel .carousel-nav {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }

        .testimonial-carousel .carousel-nav button {
            align-items: center;
            background: none;
            border: 1px solid #fff;
            border-radius: 50%;
            color: #fff;
            display: flex;
            font-size: 16px;
            height: 56px;
            justify-content: center;
            width: 56px;
        }

    .testimonial-carousel .testimonial-item {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

        .testimonial-carousel .testimonial-item .testimonial-text {
            font-size: 22px;
            font-weight: 400;
            line-height: 32px;
            min-height: 190px;
        }

            .testimonial-carousel
            .testimonial-item
            .testimonial-text
            p:last-child {
                margin-bottom: 0;
            }

        .testimonial-carousel
        .testimonial-item
        .testimonial-author {
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-left: 0;
            margin-top: 20px;
            text-transform: uppercase;
        }

    .testimonial-carousel .testimonial-line {
        margin-top: 100px;
    }

        .testimonial-carousel .testimonial-line img {
            height: auto;
            width: 100%;
        }

    .testimonial-carousel
    .testimonial-text
    .review-text.truncated {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .testimonial-carousel .read-more,
    .testimonial-carousel .read-less {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        display: inline-block;
        text-decoration: none;
        text-transform: uppercase;
    }

@media (width <= 991.98px) {
    .testimonial-carousel .row {
        position: relative;
    }

    .testimonial-carousel subtitle,
    .testimonial-carousel .block-title {
        text-align: center;
    }

    .testimonial-carousel .carousel-wrapper {
        margin: 0 auto;
        max-width: 640px;
    }

    .testimonial-carousel .testimonial-item {
        text-align: center;
    }

    .testimonial-carousel .carousel-nav {
        gap: unset;
        justify-content: space-between;
        position: absolute;
        top: 50%;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

        .testimonial-carousel .carousel-nav button.prev-slide {
            
        }
}

@media (width <= 767.98px) {
    .testimonial-carousel .carousel-wrapper {
        max-width: 480px;
    }
}

@media (width <= 575.98px) {
    .testimonial-carousel .carousel-nav {
        justify-content: center;
        top: 100%;
    }

    .testimonial-carousel
    .testimonial-item
    .testimonial-text {
        font-size: 18px;
        line-height: 26px;
    }

    .testimonial-carousel .block-title {
        line-height: 1;
        margin-bottom: 30px;
    }

    .testimonial-carousel
    .testimonial-text
    .review-text.truncated {
        -webkit-line-clamp: 3;
    }
}

/* === testimonial-carousel === */



/* === logos-01 === */


#logos-01-1176 {
	 --logos-01-background: none;
	 --logos-01-color: #1d1d1d;
}

.logos-01 {
  background-color: var(--logos-01-background);
  color: var(--logos-01-color);
  padding: 90px 0 60px;
}

.logos-01-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.logos-01-wrapper {
  justify-content: center;
}

.logos-01-wrapper img {
  display: block;
  margin: 0 auto 30px;
  max-width: 100%;
}

.logos-01 + .areas-covered {
  padding-top: 0;
}

@media (width <= 575.98px) {
  .logos-01-wrapper img {
    height: 60px;
  }
}

/* === logos-01 === */



/* === areas-covered === */

.areas-covered {
  --gradient-margin: 200px;

  background: linear-gradient(
    to bottom,
    #fff,
    #fff var(--gradient-margin, 0),
    #222 var(--gradient-margin, 0),
    #222
  );

  padding: 65px 0;
  overflow: hidden;
}

.areas-covered .bg-wrapper {
  border-radius: 10px;
  min-height: 520px;
}

.areas-covered .banner {
  background: #fff;
  border-radius: 10px;
  padding: 40px 80px 40px 50px;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.areas-covered .areas-map {
  border-radius: 10px;
}

.areas-covered .leaflet-map-pane .leaflet-layer {
  filter: grayscale(1);
}

.areas-covered .areas-map .leaflet-marker-pane img {
  filter: hue-rotate(148deg);
}

.areas-covered .block-title {
  font-size: 40px;
  line-height: 44px;
}

.areas-covered .block-text {
  margin-top: 28px;
}

.areas-covered .block-text ul {
  color: var(--button-background);
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.areas-covered .block-text ul li {
  align-items: center;
  color: #fd020d;
  display: flex;
  font-size: 18px;
  gap: 10px;
  line-height: 1;
}

.areas-covered .block-text ul li i {
  font-size: 16px;
}

@media (width <= 767.98px) {
  .areas-covered .banner {
    left: 35px;
    right: 35px;
    width: calc(100% - 70px);
  }

  .areas-covered .block-title br {
    display: none;
  }

  .areas-covered .block-text ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (width <= 575.98px) {
  .areas-covered .bg-wrapper {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .areas-covered .areas-map {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 300px !important;
    z-index: auto !important;
    border-radius: 10px 10px 0 0;
  }

  .areas-covered .banner {
    position: static !important;
    transform: none !important;
    padding: 25px 30px;
    border-radius: 0 0 10px 10px;
    background: #fff;
    width: 100%;
  }

  .areas-covered .block-title {
    font-size: 24px;
    line-height: 32px;
  }

  .areas-covered .block-text {
    margin-top: 15px;
  }

  .areas-covered .block-text ul {
    grid-template-columns: 1fr;
  }
}

@media (width <= 575.98px) {
  .areas-covered .areas-map {
    overflow: hidden;
    position: relative !important;
  }

  .areas-covered .areas-map .leaflet-pane,
  .areas-covered .areas-map .leaflet-map-pane,
  .areas-covered .areas-map .leaflet-tile-pane,
  .areas-covered .areas-map .leaflet-overlay-pane,
  .areas-covered .areas-map .leaflet-shadow-pane,
  .areas-covered .areas-map .leaflet-marker-pane,
  .areas-covered .areas-map .leaflet-tooltip-pane,
  .areas-covered .areas-map .leaflet-popup-pane {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

/* === areas-covered === */



/* === form-section === */

.form-section {
  background-color: #232323;
  color: #fff;
  overflow-x: clip;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.form-section .form-section-top-title {
  border-bottom: 4px dashed #fff;
  font-size: 14px;
  margin-bottom: 25px;
  max-width: 40%;
  padding-bottom: 25px;
  text-transform: uppercase;
}

.form-section .form-section-main-title h2 {
  letter-spacing: -0.025em;
  margin-bottom: 0;
}

.form-section .form-section-main-text {
  font-size: 22px;
  font-weight: 300;
  line-height: 28px;
  margin-top: 20px;
  text-align: left;
}

.form-section .form-section-main-text p:last-of-type {
  margin-bottom: 0;
}

.form-section input,
.form-section select,
.form-section textarea {
  background-color: #fff;
  border: none !important;
  border-radius: 3px;
  min-height: 60px;
}

.form-section .has-error input.error,
.form-section .has-error select.error,
.form-section .has-error textarea.error {
  background-color: #ffc8c8;
}

.form-section .required-star {
  color: #fff;
  display: none;
}

.form-section .form-section-form .col-form-label {
  font-size: 15px;
  font-weight: 300;
  padding-bottom: 5px;
  padding-top: 0;
}

.form-section .form-section-form .checkbox + label {
  font-size: 15px;
  line-height: 22px;
  padding-left: 34px !important;
}

.form-section .form > .row {
  --bs-gutter-x: 40px;
}

.form-section .form-section-form .checkbox + label::before {
  background-color: #fff;
  border: none !important;
  border-radius: 3px;
  content: "";
  display: block;
  height: 19px;
  top: 0;
  width: 19px;
}

.form-section
  .form-section-form
  .tickbox.has-error
  label::before {
  background-color: rgb(255 0 0);
}

.form-section
  .form-section-form
  .checkbox:checked
  + label::before {
  content: "";
}

.form-section
  .form-section-form
  .checkbox:checked
  + label::after {
  color: #000;
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: bold;
  left: 2px;
  position: absolute;
  top: -1px;
}

.form-section .form-section-form .required {
  display: none;
}

.form-section .form-section-grid {
  display: grid;
}

.form-section .form-section-grid .content {
  align-content: center;
  column-gap: 12px;
  display: flex;
}

.form-section .content-wrapper:nth-child(2) {
  margin-top: 20px;
}

.form-section .content-wrapper:nth-child(2) .icon-link a {
  color: #fff;
}

.form-section .icon {
  color: var(--button-background);
  font-size: 20px;
}

.form-section .icon-text {
  font-size: 13px;
  margin-bottom: 10px;
}

.form-section .icon-link {
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

.form-section .icon-link a {
  text-decoration: none;
}

.form-section .social-links {
  display: grid !important;
  gap: 12px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 20px;
  width: max-content;
}

.form-section .social-links a {
  align-items: center;
  background-color: #323337;
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 56px;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  transition: 0.3s all;
  width: 56px;
}

.form-section .social-links a:active {
  background-color: #fff;
  color: #000;
}

.form-section .social-links a i {
  font-size: 20px;
}

.form-section .social-links a img,
.form-section .social-links a svg {
  fill: currentcolor;
  height: auto;
  width: 24px;
}

.form-section .social {
  margin-top: 35px;
  padding-left: 0;
}

.form-section .social-links a svg g > * {
  transition: 0.3s fill, 0.3s stroke;
}

.form-section .social-links a:active svg g > * {
  fill: #fff !important;
  stroke: #fff !important;
}

.form-section .reg-info {
  font-size: 16px;
  letter-spacing: -0.025em;
  line-height: 22px;
}

.form-section .reg-info .company-name {
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 26px;
  margin-bottom: 8px;
}

.form-section a.view-on-map-link {
  color: var(--button-background) !important;
  text-decoration: none;
}

.form-section .reg-info > p {
  margin-bottom: 0;
}

.form-section .reload-captcha.btn {
  border: 1px solid #282828;
  color: #282828;
}

.form-section .reload-captcha.btn:hover,
.form-section .reload-captcha.btn:active,
.form-section .reload-captcha.btn:focus,
.form-section .reload-captcha.btn:focus-within {
  color: #282828;
}

.form-section .captcha-whatis {
  color: #282828;
  text-decoration: none;
}

.form-section
  .form-section-form
  .row:nth-child(2)
  .form-group:last-child {
  margin-top: 30px;
}

.form-section .form-section-form .form-group {
  margin-bottom: 20px;
}

.form-section button[type="submit"] {
  align-items: center;
  background-color: #fd020d;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  height: 56px;
  justify-content: center;
  letter-spacing: 2px;
  padding: 0 50px;
  text-transform: uppercase;
  width: max-content;
}

.form-section .email-contact .icon-link a,
.form-section .call-contact .icon-link a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.form-section .email-contact .icon-link a::before {
  content: "E: ";
}

.form-section .call-contact .icon-link a::before {
  content: "T: ";
}

.form-section .email-contact,
.form-section .call-contact {
  color: #fd020d;
  display: grid;
  gap: 30px;
}

.form-section .call-contact {
  margin-top: 25px;
}

.form-section .address {
  margin-top: 20px;
}

.form-section .content-title {
  display: none;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
}

.form-section .icon-wrapper,
.form-section a.view-on-map-link {
  display: none;
}

.form-section .footer-registration-wrapper {
  margin-top: 55px;
}

.form-section .form textarea.form-control {
  height: 230px;
}

.form-section .form input[type="checkbox"] {
  display: inline-block;
  margin-top: 5px;
  width: auto;
}

.form-section .form .checkbox + label {
  font-size: 15px;
  line-height: 22px;
  padding-left: 34px !important;
}

.form-section .form .checkbox + label::before {
  background-color: #fff;
  border: 0 !important;
  border-radius: 3px;
  box-shadow: inset 0 2px 2px rgb(172 172 172 / 27%);
  content: "";
  display: block;
  height: 19px;
  left: 0;
  position: absolute;
  top: 0;
  width: 19px;
}

.form-section .form .checkbox:checked + label::after {
  color: #000;
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: bold;
  left: 2px;
  position: absolute;
  top: -1px;
}

.form-section .form input[type="checkbox"] {
  /*display: none;*/
}

.form-section .form input.error,
.form-section .form select.error,
.form-section .form textarea.error,
.form-section .form canvas.error,
.form-section .form .radio-multi.has-error .tickbox {
  background-color: #ffc8c8;
  background-image: url("/images/error-field.png");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px;
  border-color: var(--errorinput-border);
  border-width: 2px;
}

.form-section .form .error + .error {
  display: none !important;
}

.form-section .form .form-group {
  position: relative;
}

@document url-prefix() {
  .form-section .form select {
    padding-top: 19px;
  }
}

@media (width <= 1199.98px) {
  .form-section .form-section-main-text {
    font-size: 20px;
    line-height: 26px;
    max-width: 380px;
  }

  .footer-block .footer-menu > .nav-item {
    font-size: 18px;
    font-weight: 500;
  }
}

@media (width >= 567px) {
  .form-section .form .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (width <= 1399.98px) {
  .form-section .form-section-main-text br {
    display: none;
  }

  .form-section .address {
    margin-top: 24px;
  }
}

@media (height <= 567px) {
  .form-section {
    padding: 45px 0 30px;
  }

  .form-section .form-section-form .form-group {
    margin-bottom: 10px;
  }
}

@media (width <= 991.98px) {
  .form-section {
    padding-bottom: 45px;
    padding-top: 45px;
  }

  .form-section .form-section-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
  }

  .form-section .content:first-child {
    margin-top: 0;
  }

  .form-section .address,
  .form-section .email-contact {
    grid-column: 2/3;
    padding-left: 18px;
  }

  .form-section .address,
  .form-section .call-contact,
  .form-section .email-contact {
    margin-top: 0;
  }

  .form-section .social {
    grid-column: 1 / span 2;
    margin-top: 4px;
  }

  .form-section .form-section-form {
    margin-top: 60px;
  }

  .form-section button[type="submit"] {
    margin-top: 0;
  }

  .form-section .form-section-main-text {
    grid-column: 1/2;
    margin-top: 10px;
    padding-right: 30px;
  }

  .form-section .footer-registration-wrapper {
    grid-row: 3 / span 3;
    margin-top: 0;
  }

  .form-section .address {
    margin-top: 14px;
  }

  .form-section .form-group.bottom-box {
    text-align: center;
  }

  .form-section .form-section-grid .content {
    order: 1;
  }

  .form-section .address,
  .form-section .email-contact {
    padding-left: 0;
  }

  .form-section .contacts-content {
    margin-top: 10px;
  }
}

@media (width <= 767.98px) {
  .form-section .form-section-main-title {
    grid-column: span 2;
  }

  .form-section .form-section-main-title h2 {
    margin-bottom: 0;
  }

  .form-section .form-section-top-title {
    margin: 0 auto 25px;
  }

  .form-section .content {
    margin-top: 0;
    padding-bottom: 0%;
    position: static;
  }

  .form-section .address {
    grid-column: 1;
    grid-row: span 3;
    padding-left: 0;
  }

  .form-section .call-contact,
  .form-section .email-contact {
    margin-bottom: 0;
    padding-left: 0;
  }

  .form-section .social {
    margin-top: 0;
    padding-left: 9px;
  }

  .form-section .reg-info {
    padding-top: 0;
  }

  .form-section .form-section-main-text {
    grid-column: span 2;
    margin-bottom: 22px;
    margin-top: 20px;
    max-width: 100%;
    width: 100%;
  }

  .form-section .form-section-main-text p br {
    display: none;
  }

  .form-section .bottom-box {
    text-align: center;
  }

  .form-section .footer-registration-wrapper {
    grid-row: 6;
    margin-top: 16px;
  }

  .form-section .form-section-form {
    margin-top: 45px;
  }

  .form-section .form-section-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .form-section .social-links {
    margin-top: 20px;
  }
}

@media (width <= 575.98px) {
  .form-section {
    padding: 40px 0 70px;
  }

  .form-section .content {
    grid-column: 1;
    margin-top: 20px;
    padding-bottom: 0%;
    width: 100%;
  }

  .form-section .form .bottom-box {
    text-align: center;
  }

  .form-section .social-links {
    justify-content: start;
    margin-top: 8px;
    width: max-content;
  }

  .form-section .call-contact,
  .form-section .email-contact {
    padding: 0;
  }

  .form-section .form-section-form {
    margin-top: 26px;
  }

  .form-section button[type="submit"] {
    width: 100%;
  }

  .form-section .form-section-grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    row-gap: 0;
  }

  .form-section .address,
  .form-section .call-contact,
  .form-section .email-contact,
  .form-section .social {
    grid-column: 1;
  }

  .form-section .form-section-main-text {
    font-size: 22px;
    grid-column: span 1;
    line-height: 30px;
    margin-bottom: 7px;
    padding-right: 0;
    text-align: left;
  }

  .form-section .call-contact,
  .form-section .email-contact {
    margin-bottom: 0;
    padding-left: 0;
  }

  .form-section .call-contact + .email-contact {
    margin-top: 0;
  }

  .form-section .social {
    margin-top: 10px;
    padding-left: 0;
  }

  .form-section .form-section-form .form-group {
    margin-bottom: 12px;
  }

  .form-section .form-section-main-title {
    grid-column: span 1;
  }

  .form-section .footer-registration-wrapper {
    grid-row: unset;
  }
}

/* === form-section === */



/* === footer-block === */

.footer-block {
    background-color: #232323;
    border-top: 1px solid #363636;
    color: #fff;
    padding: 45px 0 60px;
}

    .footer-block a {
        color: #fff;
        text-decoration: none;
    }

    .footer-block img {
        height: 17px;
        width: auto;
    }

    .footer-block .separator {
        font-style: normal;
        padding: 0 3px;
    }

    .footer-block .footer-menu {
        display: flex;
        font-size: 24px;
        justify-content: space-between;
        line-height: 1;
        margin-bottom: 20px;
    }

        .footer-block .footer-menu > .nav-item {
            font-size: 24px;
            font-weight: 500;
            text-align: center;
            width: auto;
            z-index: 1;
        }

            .footer-block .footer-menu > .nav-item .nav-link {
                color: #fff !important;
                padding: 0 !important;
            }

                .footer-block .footer-menu > .nav-item .nav-link .dd-caret {
                    display: none;
                }

    .footer-block .container {
    }

    .footer-block .company-name,
    .footer-block .website-design {
        font-size: 14px;
        line-height: 1;
    }

    .footer-block .website-design {
        text-align: end;
    }

    .footer-block .footer-info {
        display: flex;
        justify-content: space-between;
    }

@media (width < 1200px) {
    .footer-block .footer-menu > .nav-item .nav-link {
        font-size: 18px;
        font-weight: 500;
    }
}

@media (width <= 991.98px) {
    .footer-block {
        padding: 30px 0 45px;
    }

        .footer-block .footer-menu {
            display: grid;
            font-size: 16px;
            grid-area: 1;
            grid-template-columns: 1fr 1fr;
            justify-content: space-evenly;
            width: 100%;
        }

            .footer-block .footer-menu > .nav-item {
                font-size: 18px;
                line-height: 36px;
                text-align: left;
            }

        .footer-block .footer-info {
            align-items: flex-start;
            flex-direction: column;
            gap: 8px;
            justify-content: flex-start;
        }
}

@media (width <= 767.98px) {
    .footer-block {
        padding: 30px 0 50px;
    }
}

@media (width <= 575.98px) {
    .footer-block {
        padding: 45px 0;
    }

        .footer-block .footer-menu {
            flex-direction: column;
            grid-template-columns: 1fr;
            justify-content: center;
            row-gap: 14px;
            text-align: center;
        }

            .footer-block .footer-menu > .nav-item {
                text-align: center;
            }

        .footer-block .company-name {
            display: grid;
            gap: 10px;
            margin-top: 0;
            text-align: center;
        }

        .footer-block .website-design {
            margin-top: 10px;
        }

        .footer-block .separator {
            display: none;
        }

        .footer-block .footer-info {
            align-items: center;
            justify-content: center;
        }
}

/* === footer-block === */

