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

html {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

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

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

@media (min-width: 576px) {
  .container {
    max-width: 540px;
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    max-width: 1140px;
  }
}
ul {
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.header {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  width: 100%;
}

#header-s {
  position: absolute;
}

.navbar {
  background: linear-gradient(90deg, #062c68 0%, #195494 100%);
}
.navbar nav .navbar__menu {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
}
.navbar nav .navbar__menu img {
  max-width: 130px;
  width: 100%;
  margin-top: 10px;
}
.navbar nav .navbar__menu .logo h2 a {
  outline: none;
}
.navbar nav .navbar__menu__links {
  display: flex;
}
.navbar nav .navbar__menu__links .nav-links {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  left: 0;
  line-height: 3;
}
.navbar nav .navbar__menu__links .nav-links .home-li {
  display: none;
}
.navbar nav .navbar__menu__links .nav-links li {
  padding: 0 15px;
}
.navbar nav .navbar__menu__links .nav-links li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.navbar nav .navbar__menu__links .nav-links li a:hover {
  color: rgba(186, 176, 176, 0.5960784314);
  transition: 0.4s;
}
.navbar nav .navbar__menu__links .nav-links .login-button {
  background-color: #fff;
  border: 1.5px solid #f2f5f7;
  border-radius: 6px;
  padding: 10px 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #242c41;
}
.navbar nav .navbar__menu__links .nav-links .login-button:hover {
  color: #131418;
  background-color: #f2f5f7;
  border: 1.5px solid #f2f5f7;
  transition: all ease-in-out 350ms;
}

.navbarcol {
  background: transparent;
}

.navbar__sticky {
  position: fixed;
  z-index: 22;
  background: #062c68;
  width: 100%;
}

.hamburger {
  display: none;
}
.hamburger div {
  width: 30px;
  height: 3px;
  background: #f2f5f7;
  margin: 5px;
  transition: all 0.3s ease;
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #082a62;
  min-width: 56px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown-content a {
  color: #fff;
  padding: 0 13px;
  display: block;
}
.dropdown .dropbtn {
  background: transparent;
  color: #fff;
  padding: 8px 6px;
  font-size: 14px;
  border: 1px solid #fff;
  cursor: pointer;
}
.dropdown .dropbtn i {
  font-weight: 600;
}
.dropdown .show {
  display: block;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-left: 0 !important;
}
.swiper-slide {
  justify-content: center;
  /* Center slide text vertically */
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
}
.swiper-slide-wrapper {
  margin: 0 !important;
}
.swiper-slide p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.69;
  color: #fff;
}
.swiper-slide img {
  display: block;
  height: 100%;
  width: 208px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(178, 178, 178, 0.3490196078);
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 15px !important;
  font-weight: bold;
  color: #fff;
}

.banner__col {
  background: linear-gradient(90deg, rgb(6, 44, 104) 0%, rgb(25, 84, 148) 100%);
  position: relative;
}
.banner__col__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 80px;
  align-items: center;
  padding: 20px 0;
  grid-template-rows: 400px;
}
.banner__col__title h2 {
  font-size: 45px;
  line-height: 1.31;
  color: #fff;
  margin-bottom: 25px;
}
.banner__col__title p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.56;
  color: #fff;
}
.banner__col__title a {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.69;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 40px;
  margin-top: 30px;
}
.banner__col__title a:hover {
  background-color: rgba(34, 97, 166, 0.3019607843);
  transition: 0.5s ease-out;
}
.banner__col__image img {
  width: 100%;
  height: 100%;
}

.company {
  background: #f3f3f3;
  position: relative;
  overflow: hidden;
}
.company:after {
  content: " ";
  position: absolute;
  right: -68%;
  bottom: 0;
  top: 0;
  background: #2261a6;
  width: 100%;
}
.company__inner {
  display: flex;
  flex-direction: row;
}
.company__about {
  width: 45%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  z-index: 1;
}
.company__abouts {
  display: flex;
  align-items: center;
  padding: 20px;
}
.company__abouts--text h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 2.44;
  color: #000;
}
.company__abouts--text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.71;
  color: #000;
}
.company__abouts--text p a {
  color: #477499;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .company__abouts--img {
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .company__abouts {
    flex-direction: column;
  }
}
.company__products {
  background: black;
  color: #ffffff;
  padding: 37px 17px;
}
.company__products h4 {
  font-size: 16px;
  font-weight: bold;
  line-height: 2.44;
  color: white;
}
.company__products p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.71;
  color: #fff;
  margin-top: 15px;
}
.company__vision {
  z-index: 1;
  color: #ffffff;
  padding: 33px 13px;
  background: #2261a6;
}
.company__vision h4 {
  font-size: 16px;
  font-weight: bold;
  line-height: 2.44;
  color: white;
}
.company__vision p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.71;
  color: #fff;
  margin-top: 15px;
}
.company__currency {
  height: 65px;
}
.company__currency:before {
  content: " ";
  background-color: #062c68;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 65px;
  width: 53.7%;
}

.company__slider {
  width: 55%;
}
.company__slider .swiper-container {
  width: 100%;
  height: 100%;
}
.company__slider .swiper-container .swiper-wrapper {
  align-items: center;
  justify-content: space-between;
}
.company__slider .swiper-container .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.company__slider .swiper-container .swiper-wrapper .swiper-slide h2 {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.69;
  color: #fff;
}
.company__slider .swiper-container .swiper-wrapper .swiper-slide img {
  display: block;
  max-width: 130px;
  filter: grayscale(100%);
  opacity: 0.6;
}
.company__slider .swiper-container .swiper-wrapper .swiper-slide img:hover {
  filter: grayscale(0%);
  transition: all 0.5s ease;
  opacity: 1;
}
.company__slider .grup-slider {
  padding: 20px 0;
}

.quality_policy {
  padding: 45px 0;
}
.quality_policy--inner p {
  margin-bottom: 10px;
}

.about__col {
  padding: 45px 0;
}
.about__col__detail {
  display: grid;
  grid-template-rows: 3fr 1fr;
  grid-row-gap: 20px;
}
.about__col__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 35px;
  align-items: center;
}
.about__col__paragraph {
  display: grid;
  gap: 15px;
}
.about__col__paragraph h2 {
  color: #103672;
  font-size: 24px;
}
.about__col__paragraph p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.44;
}
.about__col__area {
  display: flex;
}
.about__col__area .vision__mission {
  display: flex;
  align-items: center;
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
}
.about__col__area .vision__mission__icon {
  margin-right: 20px;
}
.about__col__area .vision__mission__icon img {
  width: 55px;
}
.about__col__area .vision__mission__text h2 {
  color: #103672;
  font-size: 24px;
}
.about__col__area .vision__mission__text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.44;
}
.about__col__image img {
  max-width: 470px;
  border-radius: 8px;
  box-shadow: 2px 5px 5px 0px rgba(0, 0, 0, 0.75);
}

.quality__col {
  background-image: url(../img/map_transparent_dark.png), url(../img/overlay_dark_1920.png);
  background-position: center;
  background-size: contain;
  padding: 60px 0;
}
.quality__col__detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 175px);
  box-shadow: 0 0 47px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #ececec;
  background: #fff;
  border-radius: 5px;
}
.quality__col__card {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 25px;
  border: 1px solid #ececec;
  gap: 10px;
  align-content: center;
}
.quality__col__card .d-img {
  display: none;
}
.quality__col__card:hover {
  background-color: #2261a6;
  transition: 0.5s;
}
.quality__col__card:hover h2 {
  color: #fff;
}
.quality__col__card:hover p {
  color: #fff;
}
.quality__col__card:hover .d-img {
  display: block;
}
.quality__col__card:hover .d-img1 {
  display: none;
}
.quality__col__card__content h2 {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  color: #000;
}
.quality__col__card__content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.29;
  color: #000;
}

.production__col {
  background-image: url(../img/Rectangle42.png);
  background-color: #212121;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
}
.production__col__detail {
  display: grid;
  grid-template-columns: 679px auto;
  padding: 50px 0;
}
.production__col__title {
  z-index: 1;
}
.production__col__title h2 {
  font-size: 58px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
}
.production__col__title h2 span {
  font-size: 58px;
  position: relative;
}
.production__col__title h2 span::before {
  content: "";
  border-top: solid #2261a6;
  border-top-width: 29px;
  font-size: inherit;
  position: absolute;
  width: 94%;
  z-index: -2;
  top: 47px;
}
.production__col__title p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.78;
  color: #bdbdbd;
  max-width: 503px;
  width: 100%;
}
.production__col__area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.production__col__area__content {
  display: grid;
  grid-template-columns: auto 2fr;
  align-items: baseline;
  grid-column-gap: 6px;
}
.production__col__content {
  display: grid;
  grid-template-rows: 1fr 3fr;
  gap: 20px;
}
.production__col__box__icon i {
  font-size: 24px;
  line-height: 1.33;
  color: #2261a6;
}
.production__col__box__text h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.78;
  color: #fff;
}
.production__col__box__text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.78;
  color: #bdbdbd;
}
.production__col__image img {
  max-width: 630px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.brands__col {
  padding: 60px 0;
  background: url(../img/overlay_dark_1920.png);
  background-position: bottom;
}
.brands__col__detail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 221px);
  background: #fff;
}
.brands__col__detail__card1 {
  background: url(../img/renault.siyah_.png);
  background-repeat: no-repeat;
  border: 1px solid rgba(192, 192, 192, 0.5607843137);
}
.brands__col__detail__card1:hover {
  background: url(../img/renault-beyaz.png), #0b4a8f;
  transition: 0.9s;
}
.brands__col__detail__card2 {
  background: url(../img/man.siyah_.png);
  background-repeat: no-repeat;
  border: 1px solid rgba(192, 192, 192, 0.5607843137);
}
.brands__col__detail__card2:hover {
  background: url(../img/man.beyaz_.png), #0b4a8f;
  transition: 0.9s;
}
.brands__col__detail__card3 {
  background: url(../img/mercedes.siyah_.png);
  background-repeat: no-repeat;
  border: 1px solid rgba(192, 192, 192, 0.5607843137);
}
.brands__col__detail__card3:hover {
  background: url(../img/mercedes-beyaz.png), #0b4a8f;
  transition: 0.9s;
}
.brands__col__detail__card4 {
  background: url(../img/volvo.siyah_.png);
  background-repeat: no-repeat;
  border: 1px solid rgba(192, 192, 192, 0.5607843137);
}
.brands__col__detail__card4:hover {
  background: url(../img/volvo-beyaz.png), #0b4a8f;
  transition: 0.9s;
}
.brands__col__detail__card5 {
  background: url(../img/scania.siyah_.png);
  background-repeat: no-repeat;
  border: 1px solid rgba(192, 192, 192, 0.5607843137);
}
.brands__col__detail__card5:hover {
  background: url(../img/scania-beyaz.png), #0b4a8f;
  transition: 0.9s;
}

.product__catalog {
  background: url(../img/NoPath.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 460px;
  display: flex;
  position: relative;
  align-items: center;
  overflow: hidden;
}
.product__catalog:after {
  content: " ";
  width: 52%;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  border-style: solid;
  border-width: 0px 0px 460px 120px;
  border-color: transparent transparent #102f5e transparent;
  -webkit-mask-image: linear-gradient(to left, #102f5e, #103672 40%, #102f5e 50%, rgba(16, 47, 94, 0.2392156863) 100%);
  -webkit-mask-size: 100%;
}
.product__catalog__content {
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.product__catalog__content h2 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1;
}
.product__catalog__content p {
  max-width: 445px;
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.44;
  color: #bdbdbd;
}
.product__catalog__content a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 13px 30px;
  border: 1px solid #fff;
  max-width: 190px;
  text-align: center;
  margin-top: 50px;
}
.product__catalog__detail {
  display: flex;
  justify-content: flex-end;
}
.product__our {
  padding: 45px 0;
}
.product__our__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .product__our__detail {
    flex-direction: column;
    text-align: center;
  }
}
.product__our--img img {
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 2px 5px 5px 0px rgba(0, 0, 0, 0.75);
}
.product__our--text {
  margin-left: 20px;
}
.product__our--text ul li {
  line-height: 40px;
  font-size: 14px;
  color: #477499;
}
.product__our--text ul li span {
  color: #195589;
  font-weight: bold;
}

.homepage__gallery__col__detail {
  display: flex;
}
.homepage__gallery__col__card {
  position: relative;
}
.homepage__gallery__col__card .image {
  display: block;
  width: 100%;
  height: auto;
}

.logo__col {
  padding: 60px 0;
  background: url(../img/overlay_dark_1920.png);
  background-position: center;
}
.logo__col .swiper-container {
  width: 100%;
  height: 100%;
  background: #fff;
}
.logo__col .swiper-container-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo__col .swiper-container-slide-images img {
  display: block;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.lightbox__col {
  background: #103672;
}
.lightbox__col__detail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.lightbox__col__image a {
  display: flex;
  height: 100%;
  position: relative;
}
.lightbox__col__image a:hover:before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  display: flex;
  height: 40px;
  width: 40px;
  background-image: url(../img/focus.png);
  background-size: contain;
}
.lightbox__col__image img {
  width: 100%;
  height: 100%;
  position: relative;
}
.lightbox__col__image img:hover {
  opacity: 0.4;
  transition: 0.5s ease;
  background: #103672;
}

.gallery__col {
  padding: 60px 0;
}
.gallery__col__detail {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px;
}
.gallery__col__image img {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.6) 0 0 12px;
}

.contact__page {
  display: grid;
  grid-row-gap: 50px;
  padding: 60px 0;
}
.contact__page .contact__col__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
}
.contact__page .contact__col__box {
  display: grid;
  grid-template-rows: 1fr 1fr;
  text-align: center;
  border-bottom: 1px solid rgba(34, 97, 166, 0.3294117647);
  background-color: #f5f5f5;
  padding: 20px 7px;
}
.contact__page .contact__col__box__icon i {
  color: #2261a6;
  font-size: 35px;
}
.contact__page .contact__col__box__icon h2 {
  font-weight: 600;
  font-size: 19px;
  line-height: 1.5;
  color: #000;
  margin-top: 10px;
}
.contact__page .contact__col__box__title a,
.contact__page .contact__col__box__title p {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  font-weight: 300;
}
.contact__page .contact__col__box:hover {
  background: rgba(34, 97, 166, 0.7294117647);
  transition: 0.9s ease-out;
}
.contact__page .contact__col__maps iframe {
  width: 100%;
}

.page__breadcrumb {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.35)), url(../img//pexels-yury-kim-585418.jpg) bottom;
  position: relative;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 250px;
  display: flex;
  align-items: center;
}
.page__breadcrumb__detail {
  margin-top: 40px;
}
.page__breadcrumb__detail h2 {
  color: #ffffff;
  font-size: 45px;
}
@media screen and (max-width: 768px) {
  .page__breadcrumb__detail h2 {
    font-size: 30px;
  }
}
.page__breadcrumb__detail ul {
  display: flex;
  justify-content: center;
}
.page__breadcrumb__detail ul li {
  padding: 0 3px;
}
.page__breadcrumb__detail ul li a {
  color: #fff;
}
.page__breadcrumb__detail ul .c2 {
  color: #cfcfcf;
}
.page__breadcrumb__detail ul .c2::before {
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  content: ">>";
}

.breadcrumbs {
  background: linear-gradient(rgba(6, 2, 29, 0.65), rgba(10, 8, 104, 0.82)), url(../img/aluminum-g1892fd628_1280.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 300px;
}

footer {
  background-color: #103672;
}

.footer__menu--content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1607843137);
  padding: 60px 0;
}
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 2.07;
}
.footer-links .icon-link {
  display: flex;
  align-items: center;
  margin-bottom: 27px;
}
.footer-links li {
  list-style: none;
}
.footer-links li a {
  font-size: 14px;
  line-height: 2.07;
  color: #cbcbcb;
}
.footer-links li .icon-img {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
  border-radius: 25px;
  width: 36px;
  height: 36px;
  -o-object-fit: none;
     object-fit: none;
  margin-right: 14px;
  margin-top: 0;
}
.footer-links-holder {
  position: relative;
  float: left;
  margin: 0;
}
.footer-links-holder h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.22;
  color: #fff;
  margin-bottom: 26px;
}
.footer-links-text a img {
  max-width: 136px;
  width: 100%;
  margin-bottom: 19px;
}
.footer-links-text .menu-p {
  font-size: 14px;
  color: #cbcbcb;
}
.footer-links-text .about-btn {
  margin-top: 30px;
}
.footer-links-text .about-btn a {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.71;
  color: #fff;
  padding: 10px 27px;
  border: solid 1px white;
  display: inline-block;
}
.footer__information {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}
.footer__information--left ul {
  display: flex;
}
.footer__information--left ul li {
  margin-right: 10px;
}
.footer__information--left ul li a {
  font-size: 14px;
  color: #cbcbcb;
}
.footer__information--right p {
  font-size: 14px;
  color: #cbcbcb;
}

@media screen and (max-width: 992px) {
  .home-li {
    display: block !important;
  }
  .dropdown {
    padding: 0 15px;
  }
  .dropdown .dropbtn {
    padding: 0 !important;
    border: none !important;
  }
  .dropdown-content {
    background: transparent !important;
  }
  .dropdown-content a {
    color: #fff !important;
    padding: 0 !important;
  }
  .logo h2 {
    position: relative;
    z-index: 1;
  }
  nav {
    position: sticky;
  }
  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 44%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
  }
  .navbar__menu {
    padding: 0 !important;
  }
  .navbar__menu__links .nav-links {
    position: fixed;
    background: #131418;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: flex-start !important;
    -webkit-clip-path: circle(50px at 90% -20%);
            clip-path: circle(50px at 90% -20%);
    transition: all 1s ease-out;
    pointer-events: none;
  }
  .navbar__menu__links .nav-links li {
    opacity: 0;
  }
  .navbar__menu__links .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }
  .navbar__menu__links .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }
  .navbar__menu__links .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }
  .navbar__menu__links .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }
  .navbar__menu__links .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }
  .navbar__menu__links .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }
  .navbar__menu__links .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
    margin: 0;
  }
  .navbar__menu__links .nav-links.open {
    -webkit-clip-path: inherit;
            clip-path: inherit;
    pointer-events: all;
    padding: 0 25px;
  }
  .navbar__menu__links li.fade {
    opacity: 1;
  }
  .navbar__menu__links .nav-links2 {
    display: flex !important;
  }
  .banner__col__detail {
    grid-template-rows: auto;
    grid-template-columns: auto;
    text-align: center;
    padding: 40px 0;
  }
  .banner__col__image {
    margin-top: 10px;
  }
  .banner__col__title h2 {
    font-size: 34px;
    text-align: left;
  }
  .brands__col__detail {
    grid-template-columns: 1fr;
  }
  .brands__col__detail__card1, .brands__col__detail__card2, .brands__col__detail__card3, .brands__col__detail__card4, .brands__col__detail__card5 {
    width: 229px;
    justify-self: center;
  }
  .quality__col__detail {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 175px);
  }
  .production__col__content {
    margin: 0;
  }
  .production__col__detail {
    display: grid;
    grid-template-columns: auto;
  }
  .production__col__image {
    display: none;
  }
  .production__col__title span::before {
    display: none;
  }
  .production__col__area {
    display: inline-grid;
    grid-template-columns: auto;
    gap: 10px;
  }
  .product__catalog {
    background-size: inherit;
    display: flex;
  }
  .product__catalog::after {
    display: none;
  }
  .product__catalog__content {
    align-items: center;
    text-align: center;
  }
  .product__catalog__content h2 {
    font-size: 33px;
    color: #000;
  }
  .product__catalog__content p {
    font-weight: 400px !important;
    color: #000 !important;
  }
  .about__col__content {
    display: flex;
    flex-direction: column;
  }
  .about__col__content__image {
    display: none;
  }
  .about__col__area {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly !important;
  }
  .about__col__area .vision__mission {
    width: 100%;
  }
  .about__col__image img {
    width: 100%;
  }
  .contact__col__content {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .gallery__col__detail {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery__col__image {
    justify-self: center;
    width: 100%;
  }
  .dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #082a62;
    width: 100%;
    height: 48px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .dropdown-content a {
    color: #fff;
    padding: 0 13px;
    display: block;
  }
  .dropdown .dropbtn {
    background: transparent;
    color: #fff;
    padding: 14px 9px;
    font-size: 14px;
    border: 1px solid #fff;
    cursor: pointer;
  }
  .dropdown .dropbtn i {
    font-weight: 600;
  }
  .dropdown .show {
    display: block;
  }
  .company__inner {
    flex-direction: column;
  }
  .company__about {
    flex-direction: column;
    width: 100%;
  }
  .company::after {
    display: none !important;
  }
  .company__slider {
    width: 100%;
  }
  .company__vision {
    z-index: 0;
  }
  .company__currency::before {
    width: 100%;
  }
  .lightbox__col {
    overflow: scroll;
  }
  .lightbox__col__image img {
    width: auto;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .brands__col__detail {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .quality__col__detail {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .contact__col__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .gallery__col__detail {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}
@media only screen and (min-device-width: 1024) and (max-device-width: 1366px) {
  .production__col__image img {
    max-width: 394px !important;
  }
  .brands__col__detail {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-items: center;
  }
  .brands__col__detail__card1 {
    width: 74%;
  }
  .brands__col__detail__card2 {
    width: 74%;
  }
  .brands__col__detail__card3 {
    width: 74%;
  }
  .brands__col__detail__card4 {
    width: 74%;
  }
  .brands__col__detail__card5 {
    width: 74%;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) {
  .footer__contact__detail {
    display: flex;
    flex-direction: row !important;
  }
  .production__col__detail {
    grid-template-columns: none;
  }
  .production__col__image img {
    z-index: -2;
  }
  .production__col__title p {
    max-width: none;
  }
}
@media only screen and (max-width: 768px) {
  .footer-links {
    max-height: 0;
    overflow: hidden;
  }
  .footer-links-holder {
    flex-direction: column;
    width: 100%;
  }
  .footer-links-holder h3 {
    margin: 0;
    padding: 8px 6px;
    border-bottom: rgba(255, 255, 255, 0.368627451) 1px solid;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .footer-links-holder h3::after {
    float: right;
    margin-right: 10px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-top: 7px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
    transition: transform 0.2s;
  }
  .footer-links-holder.active h3::after {
    transform: rotate(-45deg);
  }
  .footer-links-holder.active .footer-links {
    max-height: 10000px;
    margin-top: 10px;
    padding: 0 7px;
  }
  .footer-links-text {
    padding: 16px 0;
  }
  .footer__menu {
    margin: 0 15px;
  }
  .footer__menu--content {
    grid-template-columns: 1fr;
    border-bottom: none;
    padding-top: 55px;
    padding-bottom: 0;
  }
  .footer__information {
    flex-direction: column;
    text-align: center;
  }
  .footer__information--left {
    margin-bottom: 20px;
  }
  .footer__information--left ul {
    flex-direction: column;
  }
  #none__class {
    border-bottom: none;
  }
}
.video-link {
  display: block;
  overflow: visible;
  position: relative;
  cursor: pointer;
}
.video-link .thumbnail {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}

.video-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/play-button.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20%;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
}

.video-link:hover::after {
  background-size: 22%;
  transition: background-size 0.2s ease-in-out;
}

.video-area {
  position: relative;
}
.video-area .video-container {
  position: relative;
}
.video-area .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-area video {
  width: 100%;
  border-radius: 12px;
  height: 290px;
}
.video-area .muted-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}
.video-area .muted-button span {
  font-size: 24px;
  cursor: pointer;
  color: #ffffff;
}
.video-area .muted-button .unmuted:before {
  content: "\ea26";
}
.video-area .shadow {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 45%;
  border-radius: 4px;
  z-index: 1;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}
.play-button-wrapper #circle-play-b svg {
  width: 100px;
  height: 100px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}

.play-gif img {
  position: relative;
  z-index: 2;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@media screen and (max-width: 992px) {
  .banner__col__title h2 {
    font-size: 31px;
    text-align: left;
  }
}
@media screen and (max-width: 568px) {
  .banner__col__title h2 {
    font-size: 26px;
    text-align: left;
    max-width: 300px;
    width: 100%;
  }
}
.special-img img {
  width: 206px;
  height: 206px;
  -o-object-fit: contain;
     object-fit: contain;
  padding-inline: 10px;
}/*# sourceMappingURL=style.css.map */