* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Gilroy';
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
}

h2 {
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  text-align: left;
}

p {
  font-weight: 300;
  font-size: 22px;
  line-height: 28px;
  color: #525252;
}

section {
  overflow: hidden;
}

.center {
  text-align: center;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container .row {
  width: 100%;
}

.container::after,
.container::before {
  display: none;
}

.container {
  padding: 0;
}

.jquery-modal.blocker {
  z-index: 999;
}

/* Header Css */
.header {
  position: sticky;
  top: 0;
  background: #002A57;
  height: 100px;
  box-shadow: 0px 4px 39px rgba(0, 0, 0, 0.25);
  border: none;
}

.header::after,
.header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.header::after {
  right: 0;
  background-image: url(../images/header_bg_patern.svg);
  background-position: right;
}

.header::before {
  left: 0;
  background-image: url(../images/header_bg_patern.svg);
  background-position: left;
}

.header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  z-index: 50;
  width: 100%;
  max-width: 1400px;
}

.header_logo img {
  width: 250px;
}

.header_menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.header_menu a {
  position: relative;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF;
  text-transform: none;
}

.header_menu .header_menu-item>a::before {
  content: "";
  position: absolute;
  bottom: 0%;
  right: -10%;
  left: -10%;
  background: #FFB443;
  height: 600%;
  width: 120%;
  opacity: 0;
  z-index: -1;
  transition: all .3s;
}

.header_menu a.active {
  color: #012B57;
}

.header_menu .header_menu-item>a.active::before {
  bottom: -200%;
  opacity: 1;
}

.header_menu .header_menu-item>a:hover::before {
  bottom: -200%;
  opacity: 1;
}

.header_menu-item.has-dropdown {
  position: relative;
}

.header_menu-item.has-dropdown:hover .dropdown-menu__menu {
  opacity: 1;
  visibility: visible;
  top: 200%;
}

.header_menu-item.has-dropdown .dropdown-menu__menu {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  background: #002A57;
  position: absolute;
  border: none;
  top: 80px;
  left: -100%;
  width: 400px;
  text-align: left;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-top: 3px solid #358BF2;
  padding-bottom: 20px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all .3s;
}

.header_menu-item.has-dropdown .dropdown-menu__menu a {
  padding: 10px 15px;
  width: 100%;
  display: block;
}

.header_menu-item.has-dropdown .dropdown-menu__menu a:hover {
  background: #FFB443;
}

/* .header_menu-item.has-dropdown .dropdown-menu__menu > .dropdown-item {
    position: relative;
    display: inline-block;
    padding: 15px;
}
.header_menu-item.has-dropdown .dropdown-menu__menu > .dropdown-item a::after {
    content: "";
    position: absolute;
    bottom: 0%;
    right: 0;left: 0;
    background: #FFB443;
    height: 100%;
    width: 100%;
    opacity: 0;
    z-index: -1;
    transition: all .3s;
}
.header_menu-item.has-dropdown .dropdown-menu__menu:hover > .dropdown-item a::after {
    bottom: 0;
    opacity: 1;
} */
.header.active {
  position: inherit;
}

.header .container.active {
  position: inherit;
}

.mobile_menu {
  display: none;
}

.mobile_menu.active {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
  gap: 20px;
  z-index: 100000;
}

.mobile_menu .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #000;
  font-size: 40px;
  font-weight: bold;
}

.mobile_burger {
  display: none;
  position: relative;
}

.mobile_burger span {
  width: 20px;
  height: 2px;
  background-color: #fff;
  cursor: pointer;
}

.mobile_burger span::after,
.mobile_burger span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  cursor: pointer;
}

.mobile_burger span::after {
  top: -5px;
}

.mobile_burger span::before {
  top: 5px;
}

/* Hero Section Css */
.s-hero {
  position: relative;
  background: #002A57;
  height: 750px;
  clip-path: polygon(0 0, 0 100%, 50% 90%, 100% 100%, 100% 0);
}

.s-hero::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .3;
  z-index: 0;
}

.s-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.s-hero .container {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  height: 100%;
  padding: 0;
  grid-gap: 15px;
  z-index: 1;
}

.s-hero .container::after,
.s-hero .container::before {
  display: none;
}

.hero_left {}

.hero_left-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  text-align: left;
}

.hero_left-dsc {
  width: 80%;
  display: block;
  color: #FFFFFF;
  margin-bottom: 56px;
}

.hero_left-btn {
  display: flex;
  align-items: center;
  width: max-content;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  background: #FFB443;
  box-shadow: 0px 0px 26px rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 10px 45px;
}

.hero_left-btn img {
  width: 23px;
  height: 23px;
  margin-right: 13px;
}

.hero_right {
  width: 570px;
  position: relative;
}

.hero_right::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  top: -85%;
  bottom: 0;
  right: 50%;
  left: 50%;
  transform: translateX(-35%);
  background: url(../images/hero_bg_patern.svg);
  background-repeat: no-repeat;
  display: none;
}

.hero_slider {
  max-width: 550px;
  margin: 0 !important;
  padding: 0;
  background: transparent !important;
  display: none !important;
}

.hero_slider .slick-list {
  border: none !important;
  border-radius: 18px !important;
  box-shadow: -22px 17px 26px rgba(121, 167, 255, 0.3);
}

.hero_slider .item {
  background-color: #fff;
}

.hero_slider .item img {
  width: 100%;
  height: 300px;
}

.hero_slider .owl-pagination {
  width: 100%;
  top: 24px;
}

.hero_slider .owl-page {
  display: flex;
}

.hero_slider .slick-dots li button:before {
  content: "" !important;
  width: 12px !important;
  height: 12px !important;
  background: #567597 !important;
  border-radius: 2px !important;
  opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
  background: #FFB443 !important;
  opacity: 1 !important;
}



/* Hots Product Section Css */
.s-hots-product {
  position: relative;
  margin: -60px 0 -110px 0px;
  padding: 140px 0 170px 0;
}

.s-hots-product::before {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/product_bg_patern.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 100% 100%;
  z-index: -1;
}

.s-hots-product .title {
  color: #525252;
  margin-bottom: 25px;
}

.s-hots-product .dsc {
  color: #002A57;
  margin-bottom: 68px;
}

.hots_product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.hots_product-grid .grid-item {
  background: #FFFFFF;
  box-shadow: 0px 0px 39px rgba(0, 42, 87, 0.2);
  border-radius: 29px;
  display: flex;
  flex-direction: column;
  padding: 40px;
}

.hots_product-grid .grid-item img {
  display: block;
  height: 228px;
  margin-bottom: 54px;
}

.hots_product-grid .grid-item .title {
  font-weight: 700;
  font-size: 23px;
  line-height: 24px;
  text-align: center;
  color: #525252;
  margin-bottom: 11px;
  max-width: 275px;
}

.hots_product-grid .grid-item .price {
  font-weight: 300;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  color: #525252;
}


/* About Section Css */
.s-about {
  background: #002A57;
  padding: 170px 0;
  clip-path: polygon(0 3%, 0 97%, 50% 100%, 100% 97%, 100% 3%, 50% 0);
}

.about_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.about_content .content_right {
  position: relative;
}

.about_content .content_right .title {
  color: #FFFFFF;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.about_content .content_right .dsc {
  width: 85%;
  color: #FFFFFF;
}

.about_content .content_left {
  display: flex;
  height: max-content;
}

.about_content .content_left img {
  height: 300px;
  border-radius: 18px;
  box-shadow: -22px 17px 26px rgba(121, 167, 255, 0.3);
}

.about_content .content_left video {
  height: 300px;
  border-radius: 18px;
  box-shadow: -22px 17px 26px rgba(121, 167, 255, 0.3);
}

.content_left .video_link {
  position: relative;
}

.content_left .video_link .video_button {
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.content_left .video_link .video_button::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(https://img.icons8.com/glyph-neue/64/ffffff/play.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.about_content .content_full {
  grid-column: span 2;
  margin-top: 40px;
  font-weight: 300;
  font-size: 22px;
  line-height: 28px;
}

.about_content .content_full h4 {
  color: #fff;
}

.about_content .content_full ul {
  list-style-position: inside;
}

.about_content .content_full ul li,
.about_content .content_full li {
  color: #fff;
}

.about_grid {
  margin-top: 60px;
}

.about_grid .title {
  font-weight: 900;
  font-size: 25px;
  line-height: 32px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.about_grid .grid {
  /* display: grid;
    grid-template-columns: repeat(4, 1fr); */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 19px;
}

.about_grid .grid .item {
  flex-basis: 23%;
}

.about_grid .grid .item img {
  height: 170px;
  border-radius: 15px;
  transition: all .3s;
  margin-bottom: 14px;
  object-fit: cover;
}

.about_grid .grid .item:hover img {
  box-shadow: 0px 4px 47px 4px #267FDF;
}

.about_grid .grid .item .title {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #FFFFFF;
}

.about_list {}

.about_list .title {
  font-weight: 900;
  font-size: 25px;
  line-height: 32px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.about_list .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.about_list .list .item {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about_list .list .item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.about_list .list .item .title {
  width: 60%;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #FFFFFF;
  text-align: left;
}

/* FAQ Section Css */
.s-faq {
  padding: 88px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px 50px;
}

.faq-grid .item {}

.faq-grid .item .title {
  position: relative;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #525252;
  margin-bottom: 25px;
  transition: all .3s;
}

.faq-grid .item:hover .title {
  color: #fff;
}

.faq-grid .item .title::before {
  content: "";
  position: absolute;
  top: -15%;
  bottom: -15%;
  width: 50vw;
  height: 130%;
  background: #F8F8F8;
  border-radius: 35px;
  z-index: -1;
  transition: all .3s;
}

.faq-grid .item:nth-child(odd) .title::before {
  right: 0;
}

.faq-grid .item:hover:nth-child(odd) .title::before {
  background: #002A57;
}

.faq-grid .item:nth-child(even) .title::before {
  left: -3%;
}

.faq-grid .item:hover:nth-child(even) .title::before {
  background: #002A57;
}

.faq-grid .item .title svg {
  width: 50px;
  min-width: 50px;
  height: 66px;
  margin-right: 20px;
  transition: all .3s;
}

.faq-grid .item:hover .title svg,
.faq-grid .item:hover .title svg path {
  fill: #fff;
}

.faq-grid .item .content {}

.faq-grid .item .content p {
  font-weight: 300;
  font-size: 22px;
  line-height: 28px;
  color: #525252;
  margin-bottom: 5px;
}

.faq-grid .item .content ul {
  padding: 0;
  margin: 0;
  list-style: inside;
}

.faq-grid .item .content ul li {
  font-weight: 300;
  font-size: 22px;
  line-height: 28px;
  color: #525252;
}


/* Footer Css */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::after,
.footer::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
}

.footer::before {
  top: 0;
  left: 0;
  background: url(../images/hero_bg_patern.svg);
  background-repeat: no-repeat;
  background-size: 15%;
  background-position: 0% 100%;
  z-index: 15;
}

.footer::after {
  top: 0;
  right: 0;
  width: 35vw;
  background: #043870;
  clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
  z-index: 12;
}

.footer_top {
  position: relative;
  background: #002A57;
  padding: 40px 0;
}

.footer_top .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 15px;
  z-index: 15;
}

.footer_top .menu_item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px 0;
}

.footer_top .menu_item a {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  transition: all .3s;
}

.footer_top .menu_item a:hover {
  color: #FFB443;
}

.footer_top .social_item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2px;
  color: #E4E4EB;
  margin-bottom: 0;
}

.footer_top .social_item ul {
  display: flex;
  gap: 12.5px;
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
}

.footer_top .social_item ul img {
  width: 25px;
  height: 25px;
}

.footer_top .address_item p {
  margin-bottom: 11px;
}

.footer_top .address_item p,
.footer_top .address_item address,
.footer_top .address_item a {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2px;
  color: #E4E4EB;
}

.footer_top .logo_item img {
  max-width: 300px;
  object-fit: contain;
}

.footer_bottom {
  position: relative;
  background: #08213C;
  height: 57px;
  z-index: 15;
}

.footer_bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.footer_bottom .container,
.footer_bottom .container a {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.2px;
  color: #5A5A68;
  transition: all .3s;
}

.footer_bottom .container a:hover {
  color: #fff;
}



/* Manufacturer Section Css */
.s-manufacturer {
  padding: 75px 0 100px 0;
  position: relative;
}

.s-manufacturer::before {
  top: 0;
  left: 0;
  background: url(../images/hero_bg_patern.svg);
  background-repeat: no-repeat;
  background-size: 15%;
  background-position: 0% 100%;
  z-index: 15;
}

.s-manufacturer .title {
  color: #525252;
  margin-bottom: 20px;
}

.s-manufacturer p {
  color: #002A57;
  margin: 0;
}

.manufacturer_swiper {
  width: 90%;
  margin-top: 50px;
  padding: 50px 10px;
}

.manufacturer_swiper .swiper-wrapper {
  /* overflow: hidden; */
}

.manufacturer_swiper .swiper-slide {
  background: #fff;
  border-radius: 29px;
  box-shadow: 0px 0px 15px rgba(0, 42, 87, 0.2);
  height: auto;
  display: grid;
  grid-template-rows: 1fr auto;
}

.manufacturer_swiper .swiper-slide img {
  height: auto;
}

.manufacturer_swiper .swiper-slide .title {
  background: #002A57;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #FFFFFF;
  border-radius: 0 0 29px 29px;
  margin: 0;
  padding: 20px 0;
}

.manufacturer_swiper .swiper-button-next,
.manufacturer_swiper .swiper-button-prev {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  background: #002A57;
  border-radius: 50%;
}

.manufacturer_swiper .swiper-button-next:after,
.manufacturer_swiper .swiper-button-prev:after {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

/* Select Section Css */
.s-select {
  background: #002A57;
  padding: 50px 0;
  overflow: hidden;
}

.s-select .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.s-select .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.s-select .left .title {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.s-select .left p {
  color: #FFFFFF;
}

.s-select .right {
  position: relative;
  z-index: 10;
}

.s-select .right::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 300%;
  top: -100%;
  bottom: 0;
  right: 50%;
  left: 50%;
  transform: translate(-50%);
  background: url(../images/hero_bg_patern.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 100% 100%;
  z-index: -1;
}

.s-select .right img {
  height: 275px;
  object-fit: contain;
}

/* Select Lefts Section Css */
.s-selected-lifts {
  padding: 100px 0;
  overflow: visible;
}

.s-selected-lifts .title {
  color: #525252;
  margin-bottom: 44px;
}

.lifts_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px 30px;
}

.lifts_grid .item .img {
  margin-bottom: 25px;
  height: 320px;
  box-shadow: 0px 4px 39px rgba(0, 42, 87, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 35px;
}

.lifts_grid .item .img img {
  object-fit: contain;
}

.lifts_grid .item .title {
  width: 80%;
  margin: 0 auto;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #525252;
}



/* Contact Section Css */
.s-contact-map {
  position: relative;
  padding: 70px 0;
}

.s-contact-map::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3%;
  bottom: 0;
  width: 500px;
  height: 140%;
  background: url(../images/product_bg_patern.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 500px 105%;
  z-index: -1;
}

.s-contact-map iframe {
  width: 100%;
  height: 460px;
  border: none;
  box-shadow: 0px 7px 29px rgba(0, 0, 0, 0.26);
}

.s-contact-info {
  position: relative;
  padding-bottom: 80px;
}

.s-contact-info::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 500px;
  height: 90%;
  background: url(../images/product_bg_patern.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 500px 100%;
  z-index: -1;
}

.s-contact-info .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-info .title {
  color: #002A57;
  margin-bottom: 25px;
}

.contact-info .item span {
  margin-right: 5px;
}

.contact-info .item,
.contact-info .item a {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #525252;
  margin-bottom: 5px;
  transition: all .3s;
}

.contact-info .item a:hover {
  color: #FFB443;
}

.contact-info .item .btn {
  width: 200px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  background: #002A57;
  box-shadow: 0px 0px 26px rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  border: 1px solid transparent;
  transition: all .3s;
}

.contact-info .item .btn:hover {
  background: #fff;
  border-color: #002A57;
}

.contact-info.contact-form {
  grid-column: span 2;
  margin-top: 40px;
}

.contact-info.contact-form legend {
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  text-align: left;
  color: #002A57;
  margin-bottom: 25px;
  border-bottom: none !important;
}

.contact-info.contact-form label {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #525252;
  margin-bottom: 5px;
}

.contact-info.contact-form input {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  height: 50px !important;
}

.contact-info.contact-form .buttons input[type="submit"] {
  width: 200px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  background: #002A57;
  box-shadow: 0px 0px 26px rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  border: 1px solid transparent;
  transition: all .3s;
}

.contact-info.contact-form .buttons input[type="submit"]:hover {
  background: #fff;
  border-color: #002A57;
  color: #FFB443;
}

.work-hourse .item {
  line-height: 35px;
}

.breadcrumb {
  background: #F8F8F8;
  padding: 20px 0;
}

.breadcrumb_list {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb_list li:first-child {
  position: relative;
}

.breadcrumb_list li a:hover {
  color: #FFB443;
}

.breadcrumb_list li:first-child::after {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  font-weight: 600;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateY(10%);
  right: -13px;
}



/**  PRODUCT page css  **/

.s-product {
  position: relative;
  padding: 65px 0 70px 0;
  background: #002A57;
  clip-path: polygon(0 0, 0 100%, 50% 95%, 100% 100%, 100% 0);
  overflow: hidden;
}

.s-product::before {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/hero_bg_patern.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 100% 100%;
  z-index: -1;
}

.s-product .container {
  display: flex;
  gap: 0 100px;
}

.product_slider_top {
  margin-bottom: 25px;
  /*width: 370px;*/
  height: 370px;
}

.product_slider_top .item {
  background: #fff;
  border-radius: 18px;
  /*width: 370px;*/
  /*min-width: 370px;*/
  height: 370px;
  min-height: 370px;
}

.product_slider_top .item img {
  object-fit: contain;
}

.product_slider_top .owl-nav button {
  position: absolute;
  bottom: 7px;
  width: 29px;
  height: 29px;
  background-color: #000 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.product_slider_top .owl-nav button span {
  font-size: 26px;
  color: #fff;
}

.product_slider_top .owl-prev {
  left: 6px;
}

.product_slider_top .owl-next {
  right: 6px;
}

.product_slider_top .owl-prev.disabled,
.product_slider_top .owl-next.disabled {
  opacity: 0.5;
}

.product_slider_bottom {
  width: 370px;
}

.product_slider_bottom .item {
  background: #fff;
  border-radius: 8px;
  width: 99px;
  height: 99px;
}

/* the slides */
.product_slider_bottom .item {
  margin: 0 5px;
}

/* the parent */
.product_slider_bottom {
  margin: 0 -5px;
}

.product_slider_bottom .slick-prev {
  left: -10%;
  top: 44%;
  transform: translateY(-50%);
}

.product_slider_bottom .slick-next {
  right: -10%;
  top: 44%;
  transform: translateY(-50%);
}

.product_slider_bottom .slick-prev::after,
.product_slider_bottom .slick-next::after {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.product_slider_bottom .item img {
  object-fit: contain;
}

.product_slider_bottom .owl-pagination,
.product_slider_bottom .owl-dots {
  width: 100%;
  margin-top: 17px;
}

.product_slider_bottom .owl-page,
.product_slider_bottom .owl-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.product_slider_bottom .owl-page span,
.product_slider_bottom .owl-dots button {
  width: 12px !important;
  height: 12px !important;
  background: #567597 !important;
  border-radius: 2px !important;
}

.product_slider_bottom .owl-page.active span,
.product_slider_bottom .owl-dots button.active {
  background: #FFB443 !important;
}

.product-info__features {
  flex-basis: 100%;
}

.product-info__title {
  color: #FFFFFF;
  margin-bottom: 10px;
  text-align: left;
  margin: 0 0 20px 0;
}

.product-info__dsc {
  display: block;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.dsc_box,
.dsc_box span,
.dsc_box p {
  display: block !important;
  color: #fff !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  line-height: 22px !important;
  margin-bottom: 20px !important;
}

.dsc_box ul {
  list-style-position: inside;
  color: #fff !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  line-height: 22px !important;
}

.product-info__price {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 65px;
}

.product-info__price span {
  font-weight: 900;
  font-size: 35px;
  line-height: 44px;
  color: #FFFFFF;
}

.product-info__price button {
  background: #FFB443;
  box-shadow: 0px 0px 26px rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  border: none !important;
  width: 200px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  cursor: pointer;
}

.product-info__price button span {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}

.product-info__price button img {
  height: 25px;
  object-fit: contain;
  width: max-content;
}

.features-list .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  margin-bottom: 25px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.features-list__item {
  padding: 5px 30px;
  background: #05386D;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}

.features-list__item span {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}

.s-advantages {
  position: relative;
  padding: 120px 0 80px 0;
}

.s-advantages::before {
  content: "";
  position: absolute;
  right: 5%;
  top: -10%;
  bottom: 0;
  width: 100%;
  height: 120%;
  background: url(../images/product_bg_patern.svg);
  background-repeat: no-repeat;
  background-position: right;
  z-index: -1;
}

.s-advantages .title {
  display: block;
  text-align: center;
  color: #525252;
  margin-bottom: 70px;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px 0;
}

.advantages-list li {
  display: flex;
  align-items: center;
  gap: 30px;
}

.advantages-list li .image {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #002A57;
  border-radius: 50%;
}

.advantages-list li .image img {
  object-fit: contain;
  height: 50px;
}

.advantages-list li .text {
  width: 40%;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #525252;
}


/**  Services page css  **/

.s-services-hero {
  padding: 60px 0;
  position: relative;
  background: #002A57;
  clip-path: polygon(0 0, 0 100%, 50% 95%, 100% 100%, 100% 0);
}

.s-services-hero::before {
  content: "";
  position: absolute;
  left: 20%;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/hero_bg_patern.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left;
  z-index: -1;
}

.s-services-hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.services-hero__info {
  flex-basis: 50%;
}

.services-hero__info-title {
  flex-basis: 100%;
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.services-hero__info-dsc {
  color: #FFFFFF;
  margin-bottom: 40px;
}

.services-hero__img {
  position: relative;
  flex-basis: 40%;
}

.services-hero__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 400px;
  border-radius: 10px;
}

.s-tehnical-services {
  padding: 84px 0;
  display: flex;
  align-items: center;
  gap: 40px;
}

.tehnical-services__info {
  flex-basis: 50%;
  padding: 0 0 0 375px;
}

.tehnical-services__info-title {
  color: #525252;
  margin-bottom: 17px;
}

.tehnical-services__info-dsc {
  color: #002A57;
  margin-bottom: 20px;
}

.tehnical-services__info-dsc:last-child {
  margin-bottom: 0;
}

.tehnical-services__img {
  position: relative;
  margin: 0 -20px 0 0;
  flex-basis: 50%;
}

.tehnical-services__img img {
  box-shadow: -19px 20px 26px rgba(0, 0, 0, 0.33);
  border-radius: 20px;
}

.s-tehnical-services-grid {
  padding: 84px 0;
}

.services-grid__title {
  width: 100%;
  color: #525252;
  margin-bottom: 60px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.services-grid .item:nth-child(1) {
  flex-basis: calc(50% - 50px);
}

.services-grid .item:nth-child(2) {
  flex-basis: calc(50% - 50px);
}

.services-grid .item:nth-child(3),
.services-grid .item:nth-child(5) {
  flex-basis: calc(40% - 50px);
}

.services-grid .item:nth-child(4) {
  flex-basis: calc(20% - 50px);
}

.services-grid .item:nth-child(4) img {
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
}

.services-grid .item {
  font-weight: 300;
  font-size: 22px;
  line-height: 28px;
  color: #002A57;
}

.services-grid .item img {
  box-shadow: -19px 20px 26px rgba(0, 0, 0, 0.33);
  border-radius: 20px;
  object-fit: cover;
}

.s-constructor-services {
  position: relative;
  background: #002A57;
  padding: 200px 0 90px 0;
  clip-path: polygon(0 5%, 0 100%, 50% 100%, 100% 100%, 100% 5%, 50% 0);
}

.s-constructor-services::before {
  content: "";
  position: absolute;
  left: -15%;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/services-patern.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left;
  z-index: -1;
}

.constructor-services__title {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.constructor-services__dsc {
  width: 60%;
  margin: 0 auto 40px;
  text-align: center;
  color: #FFFFFF;
}

.constructor-services__img {
  width: 100%;
  height: 265px;
  box-shadow: -19px 20px 26px rgba(0, 0, 0, 0.33);
  border-radius: 20px;
  margin-bottom: 40px;
  object-fit: cover;
}

.constructor-services__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  grid-gap: 20px 100px;
}

.constructor-services__list::before {
  content: "";
  position: absolute;
  top: -15%;
  bottom: 0;
  right: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/bg-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 4px;
  height: 690px;
  z-index: -1;
}

.constructor-services__list li {
  display: flex;
  align-items: center;
  gap: 45px;
}

.constructor-services__list li img {
  width: 100%;
  height: 300px;
  box-shadow: -19px 20px 26px rgba(0, 0, 0, 0.33);
  border-radius: 20px;
  object-fit: cover;
}

.constructor-services__list li .number {
  background-color: #01366B;
  width: 49px;
  min-width: 49px;
  height: 49px;
  min-height: 49px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 30px;
  line-height: 38px;
  color: #FFFFFF;
}

.constructor-services__list li .text {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #FFFFFF;
}

.s-robots-services {
  position: relative;
  padding: 90px 0 64px;
}

.s-robots-services .container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.robots-services__info {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px 0;
}

.robots-services__info .item {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}

.robots-services__info .item img {
  box-shadow: -19px 20px 26px rgba(0, 0, 0, 0.33);
  border-radius: 20px;
  object-fit: cover;
  height: 350px;
}

.robots-services__info-title {
  width: 100%;
  color: #525252;
  margin-bottom: 25px;
}

.robots-services__info-dsc {
  color: #002A57;
  margin-bottom: 20px;
}

.robots-services__info-dsc:last-child {
  margin-bottom: 0;
}

.robots-services__img {
  flex-basis: 50%;
  text-align: right;
}

.robots-services__img img {
  object-fit: cover;
  width: 100%;
  height: max-content;
}

.s-services-banner {
  background: #002A57;
  padding: 50px 0;
  margin: 0 0 0 0;
}

.s-services-banner .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.s-services-banner .container img {
  width: 76px;
  height: 100px;
  object-fit: contain;
}

.s-services-banner .container p {
  width: 60%;
  font-size: 25px;
  line-height: 30px;
  color: #FFFFFF;
}

.repair-services__title {
  text-align: center;
  color: #525252;
  margin-bottom: 40px;
}

.repair-services__dsc {
  color: #002A57;
}

.repair-services__list {
  list-style: none;
  padding: 0;
  margin: 0 0 65px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
ul.repair-services__list li {
  width: calc((100% / 4) - 23px);
}
.repair-services__list li:hover .img {
  box-shadow: none;
}
.repair-services__list .img {
  background: #FFFFFF;
  box-shadow: 0 4px 39px rgba(0, 42, 87, 0.25);
  border-radius: 14px;
  height: 150px;
  margin-bottom: 24px;
  transition: all .3s;
}

.repair-services__list .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #002A57;
}
@media (max-width: 991px) {
  ul.repair-services__list li {
    width: calc((100% / 3) - 20px);
  }
}
@media (max-width: 768px) {
  ul.repair-services__list li {
    width: calc((100% / 2) - 15px);
  }
}
@media (max-width: 500px) {
  ul.repair-services__list li {
    width: 100%;
  }
}

.repair-services__dsc-bottom {
  font-weight: 600;
  font-size: 26px;
  line-height: 28px;
  color: #002A57;
}

/**  Delivery page css  **/
.s-delivery {
  padding: 100px 0;
}

.delivery-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.delivery-content__text .title {
  display: block;
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  color: #525252;
  margin-bottom: 30px;
}

.delivery-content__text p {
  display: block;
  font-weight: 300;
  font-size: 22px;
  line-height: 28px;
  color: #525252;
  margin-bottom: 20px;
}

.delivery-content__null {
  position: relative;
  z-index: 10;
}

.delivery-content__null img {
  object-fit: cover;
  border-radius: 10px;
}

.checkout-simplecheckout {
  position: relative;
}

.checkout-simplecheckout::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  bottom: 0;
  right: 50%;
  left: 50%;
  transform: translateX(10%);
  background: url(../images/product_bg_patern.svg);
  background-repeat: no-repeat;
}

#simplecheckout_cart {
  border-radius: 10px;
}


.form-horizontal .control-label {
  text-align: left !important;
}

.langgg {
  display: flex;
}

.language_selected {
  display: flex;
  align-items: center;
  line-height: 15px;
}

.language_selected img {
  margin-right: 3px;
}

.language_selected,
.language-select a {
  color: #fff !important;
}

.language-select {
  margin-left: 5px;
}

.vmsk-info__title{
  margin-top:50px;
  display: block;
  text-align: center;
  color: #525252;
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
}

.vmsk-info__subtitle{
  color: #525252;
  font-size: 20px;
  text-align: center;
  margin-bottom: 70px;
}

.vmsk-info__row{
  display: flex;
  width:100%;
  margin-bottom:50px;
}

.vmsk-info_row__wrap-image img{
  width:auto;
  height:auto;
}

.vmsk-info__row__content{
  padding-left:30px;
}

.vmsk-info__row:nth-child(even){
  flex-direction: row-reverse;
}

.vmsk-info__row:nth-child(even) .vmsk-info__row__content{
  padding-left:0;
  padding-right:30px;
}

.vmsk-table__text table{
  width:100%;
  border:1px solid #999;
}

.vmsk-table__text table + table{
  margin-top:30px;
}

.vmsk-table__text th,
.vmsk-table__text td{
  border:1px solid #999;
  padding:5px;
}

.vmsk-table__text th{
  background: #002a57;
  color: #fff;
  text-align: center;
  border-color: #002a57;
}

.vmsk-table__text tr:nth-child(odd) td{
  background: rgb(4 56 112 / 20%);
}

.vmsk-table{
  margin-bottom:50px;
}

.vmsk-info_row__title{
  font-weight: 700;
  font-size: 25px;
  line-height: 28px;
  color: #525252;
  margin-bottom:15px;
}

.vmsk-info_row__text ul,
.vmsk-info_row__text p{
  margin-left:20px;
  font-weight:300;
  font-size:20px;
  line-height:1.5;
  color: #525252;
}

.vmsk-products .delivery-content + .delivery-content{
  margin-top:70px;
}

.vmsk-products .delivery-content:nth-child(even) .delivery-content__text{
  order:2;
}

.vmsk-products .delivery-content:nth-child(even) .delivery-content__null{
  order:1;
}

.vmsk-products img{
  width: auto;
  max-width: 100%;
}

.vmsk-products-grid{
  position:relative;
  padding:60px 0;
}

.vmsk-products-grid__content{
  position:relative;
  z-index:2;
}

.vmsk-products-grid__decore-bg{
  position: absolute;
  top: 0;
  right: 10%;
  height: 100%;
  z-index:1;
}

.vmsk-products-grid__item__img{
  width:auto;
  height:auto;
  max-width:100%;
}

.vmsk-products-grid__row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.vmsk-products-grid__title{
    display: block;
    text-align: center;
    color: #525252;
    font-weight: 900;
    font-size: 30px;
    line-height: 35px;
}

.vmsk-products-grid__subtitle{
  color: #525252;
  font-size: 20px;
  text-align: center;
  margin-bottom: 70px;
}

.vmsk-products-grid__item__title{
  display:block;
  padding:15px 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #525252;
}

.vmsk-products-grid__item{
  display:block;
  text-align:center;
  position:relative;
}

.vmsk-products-grid__item__content{
  display:block;
  border:5px solid #d9d7d7;
}

.vmsk-products-grid__item__button{
  display:block;
  color:#fff;
  background:#002A57;
  padding:15px;
  font-size:17px;

  position:absolute;
  left:0;
  right:0;
  top:100%;

  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  transition: all .1s ease;
}

.vmsk-products-grid__item:hover .vmsk-products-grid__item__button{
  height:55px;
  opacity:1;
  visibility:visible;
}

@media(max-width:991px){
  .vmsk-info__row{
    display:block;
  }

  .vmsk-info_row__wrap-image img{
    max-width:100%;
  }

  .vmsk-info_row__wrap-image{
    margin-bottom:15px;
  }
}

@media(max-width:800px){
  .vmsk-products-grid__row{
    grid-template-columns: auto;
  }

  .vmsk-products-grid__item__button{
    position:static;
    height:55px;
    opacity:1;
    visibility:visible;
  }
}