body {
  background-color: #f4f5f8;
  font-family: "Poppins", sans-serif;
}
.overlay_banner {
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}
.pr_card_top::after {
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}
.header_menu_desctop a:hover {
  color: #754be9 !important;
}

.products-swiper-pagination span {
  height: 2px !important;
  flex-wrap: nowrap;
  width: 13%;
  border-radius: 0px;
}
.products-swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #000;
}

.banner_slider_nav_buttons {
  left: 16px;
}
.adv_icon {
  position: relative;
  padding-block: 1.5rem;
}
.adv_svg {
  width: 5.438rem;
  background-color: #801e00;
  padding-inline: 1rem;
}
.adv_svg::before {
  top: 0;
  border-bottom: 1.569rem solid #801e00;
  content: "";
  position: absolute;
  border-left: 2.719rem solid transparent;
  border-right: 2.719rem solid transparent;
  left: 0;
  right: 0;
}
.adv_svg::after {
  content: "";
  position: absolute;
  border-left: 2.719rem solid transparent;
  border-right: 2.719rem solid transparent;
  left: 0;
  right: 0;
  bottom: 0;
    border-top: 1.569rem solid #801e00;
}
.adv_card svg {
  width: 3rem;
  color: #fff;
  fill: #fff;
  height: auto;
}
.adv_icon_wrapper {
  text-align: center;
  width: 100%;
  height: 100%;
}
@media (min-width: 576px) {
  .banner_slider_nav_buttons {
    left: calc((100vw - 540px) / 2 + 16px);
  }
}

@media (min-width: 768px) {
  .banner_slider_nav_buttons {
    left: calc((100vw - 720px) / 2 + 16px);
  }
}

@media (min-width: 992px) {
  .banner_slider_nav_buttons {
    left: calc((100vw - 960px) / 2 + 16px);
  }
}

@media (min-width: 1200px) {
  .banner_slider_nav_buttons {
    left: calc((100vw - 1140px) / 2 + 16px);
  }
}

@media (min-width: 1440px) {
  .banner_slider_nav_buttons {
    left: calc((100vw - 1360px) / 2 + 16px);
  }
}

@media (min-width: 1600px) {
  .banner_slider_nav_buttons {
    left: calc((100vw - 1440px) / 2 + 16px);
  }
}

#left_big_card {
  overflow: hidden;
  position: relative;
}

#first_slide_img.fade-change {
  animation: firstSlideImgFade 0.65s ease both;
}

@keyframes firstSlideImgFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#projects_wrapper {
  border-radius: 1.5rem 1.5rem 0px 0px;
}

.pr_button {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 100px;
  border: 2px solid var(--lines-borders, #e2e3e4);
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.pr_button:hover {
  background-color: #e12917;
  border-color: #e12917;
}
.pr_button svg {
  width: 1.5rem;
  height: 1.5rem;
}
.prSwiper::before {
  content: "";
  position: absolute;
  width: 30.8125rem;
  left: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#474e5a), to(rgba(71, 78, 90, 0)));
  background: linear-gradient(90deg, #474e5a 0%, rgba(71, 78, 90, 0) 100%);
  pointer-events: none;
  z-index: 2;
}
.partnor_card {
  border-radius: 16px;
  background-color: #f5f6fa;
  height: 130px;
  position: relative;
  width: 100%;
  overflow: hidden;
  will-change: transform;
  padding: 20px 30px;
}
.partnor_card span {
  background-color: #dee2ed;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  display: block;
  height: 0;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition:
    height 1s,
    width 1s;
  -moz-transition:
    height 1s,
    width 1s;
  -ms-transition:
    height 1s,
    width 1s;
  -o-transition:
    height 1s,
    width 1s;
  transition:
    height 1s,
    width 1s;
  width: 0;
}
.partnor_card:hover > span {
  height: 700px;
  width: 700px;
}
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.media_buttons button {
  color: #bab8b8;
  font-size: 17px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
.media_buttons button:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.media_all_button::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #000;
}
.media_buttons button.active {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.about_main {
  background: url("../photos/about.webp") center/cover no-repeat;
}

/* section map */
.section-map__text h2 {
  font-size: 5rem;
  letter-spacing: 8px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
.section-map__text p {
  color: #414141;
  margin-bottom: 20px;
  text-align: center;
  max-width: 850px;
  margin: auto;
  font-size: 16px;
}
.section-map__img,
.section-map__boxes {
  margin: auto;
}
.works-map_f {
  position: relative;
}
.section-map__img img {
  width: 100%;
}
.work-point-box {
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: all 0.3s;
}
.work-point-box.active {
  display: flex;
}
.work-point_h {
  position: relative;
}
.work-points {
  cursor: pointer;
  position: relative;
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  color: #0068ff;
  font-size: 1rem;
}
.work-points::before {
  z-index: -2;
  content: "";
  width: 100%;
  height: 100%;
  left: -5px;
  top: -5px;
  position: absolute;
  padding: 5px;
  box-sizing: content-box;
}
:is(.work-out-circle, .work-inner-circle) {
  content: "";
  display: inline-block;
  box-sizing: content-box;
  border-radius: 50%;
}
.work-out-circle {
  animation: workCircleAnim 2s infinite;
  width: 8px;
  background-color: #ff000087;
  padding: 8px;
  height: 8px;
}
@keyframes workCircleAnim {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.work-inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ff000087;
  padding: calc(8px / 2);
}
:is(.work-out-circle, .work-inner-circle) {
  content: "";
  display: inline-block;
  box-sizing: content-box;
  border-radius: 50%;
}
.work-point-alt {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 100%;
  visibility: hidden;
  top: 50%;
  transform: translateY(-50%);
  height: fit-content;
  opacity: 0;
  padding: 0.938rem;
  background-color: #ff000087;
  transition: all 0.5s;
  box-shadow: 6px 14px 25px -3px rgb(0 0 0 / 0.5);
}
.work-point-alt > span {
  display: inline-block;
  word-spacing: 0;
  line-height: 1;
  color: silver;
  font-size: 1.375rem;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-transform: uppercase;
}
.work-point-box:hover {
  z-index: 9;
}
.work-point-box:hover .work-point-alt {
  visibility: visible;
  opacity: 1;
}

/* Small tablets */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Tablets */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Laptops */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* Desktops */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large screens */
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
  }
}

/* Extra large screens */
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}

.header_menu_list.active {
  left: -20%;
  opacity: 0;
}
.header_menu_list a {
  transition: all 0.3s ease-in-out;
}
.header_menu_list a.active {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  height: 36px;
  padding: 0px 20px;
  border-radius: 4px;
}
.header_menu_list a:hover:not(.active) {
  color: #da6c4e;
}
.header_menu_item {
  position: relative;
}
.header_submenu {
  background: #fff;
  color: #111;
  border-radius: 6px;
  box-shadow:
    rgba(0, 0, 0, 0.12) 0px 8px 18px,
    rgba(0, 0, 0, 0.08) 0px 2px 6px;
  left: 50%;
  min-width: 100%;
  opacity: 0;
  padding: 5px 10px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 16px);
  transform: translate(-50%, 8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  visibility: hidden;
  z-index: 20;
}
.header_submenu::before {
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  right: 0;
  top: -16px;
}
.header_submenu a {
  display: block;
  padding: 8px 12px;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .has-submenu:hover .header_submenu,
  .has-submenu:focus-within .header_submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
  }
}
.hamburger.active .hamburger__line {
  background-color: #da6c4e;
}
.hamburger.active {
  border-color: #da6c4e;
}
#wide_menu_wrapper {
  background: linear-gradient(180deg, #22517d, #7995b5);
  opacity: 0;
  visibility: hidden;
}
#wide_menu_wrapper.active {
  opacity: 1;
  visibility: visible;
}
#wide_socials_wrapper a:hover {
  transform: scale(1.1);
  background: #da6c4e;
}
#wide_socials_wrapper svg path {
  transition: all 0.3s ease-in-out;
}
#wide_socials_wrapper a:hover svg path {
  fill: #fff;
  opacity: 1;
}
.banner_thumbs_slider .swiper-slide {
  width: 25px !important;
  height: 25px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.banner_thumbs_slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  width: 35px !important;
  height: 35px;
  border: 1px solid #fff;
}
.banner_thumbs_slider .swiper-slide img,
.banner_main_slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner_main_slider .swiper-slide img {
  transform: scale(1.05);
  transition:
    transform 1.2s ease,
    opacity 0.9s ease;
}
.banner_main_slider .swiper-slide-active img {
  transform: scale(1);
}
.contents_slider {
  width: 50%;
  height: 150px;
  overflow: hidden;
  margin: 0px;
}

.contents_slider .swiper-slide {
  transition: all 0.2s ease-in-out;
}
.content_slide_button:hover {
  background-color: #DF2719;
  color: #fff;
  border-color: #DF2719;
  margin-left: 20px;
}
.content_slider_top:hover {
  color: #DF2719;
  margin-left: 20px;
}
.banner_content_slider .swiper-slide a,
.banner_content_slider .swiper-slide a button {
  transition: all 0.3s ease-in-out;
}
.banner_content_slider .swiper-slide a:hover {
  background: #da6c4e;
}
.banner_content_slider .swiper-slide a:hover button {
  transform: scale(1.2);
  background: #fff;
  color: #da6c4e;
}

#banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0) 41%);
}
.header_menu {
  box-shadow:
    rgba(0, 0, 0, 0.07) 0px 1px 1px,
    rgba(0, 0, 0, 0.07) 0px 2px 2px,
    rgba(0, 0, 0, 0.07) 0px 4px 4px,
    rgba(0, 0, 0, 0.07) 0px 8px 8px,
    rgba(0, 0, 0, 0.07) 0px 16px 16px;
}
