/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.23

*/

/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap");

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0);
  border-radius: 0px;
  background: rgba(10, 10, 11, 0);
}

::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 0px;
}

/* Website style */
* {
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  height: 100%;
  overflow-x: hidden;
  background-color: #ffffff;
}

a {
  text-decoration: none;
}

[data-aos] {
  pointer-events: none;
}
.aos-animate {
  pointer-events: auto;
}
.aos-init[data-aos][data-aos].aos-animate {
  transform: unset;
}

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

/* Container */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 0rem;
}

@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1580px;
  }
}

/* Navbar */
.navbar {
  padding: 13px 0 15px;
  display: flex;
  flex-direction: column;
}

.navbar__header {
  width: 100%;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 5px;
}

.navbar__header ul {
  display: flex;

  justify-content: flex-end;
}

.navbar__header li {
  margin: 20px;
  font-weight: 300;
  font-size: 14px;
  text-align: left;
  color: #707070;
}

.navbar__header li:nth-child(1) {
  list-style: none;
}

.navbar__header li:nth-child(2) {
  padding-left: 10px;
}

.navbar__nav {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 0;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px 0% 10px;
  width: 100%;
  z-index: 999;
}

.navbar__mobile {
  display: flex;
  justify-content: space-between;
}

.navbar__menu {
  display: none;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar__brand img {
  width: 60px;
}

.navbar__brand--description h5 {
  font-weight: normal;
  font-size: 13px;
  text-align: left;
  color: #707070;
}

.navbar__brand--description .second {
  margin-top: -8px;
  color: black;
}

.navbar__links ul {
  display: flex;
  align-items: center;
  position: relative;
}

.navbar__links li {
  list-style: none;
  margin: 0 20px;
  position: relative;
}

.navbar__links a {
  font-weight: normal;
  font-size: 15px;
  text-align: left;
  color: #707070;
  transition: 0.3s;
}

.navbar__links a:hover {
  color: #797979;
  transition: 0.3s;
}

.navbar__links .active {
  font-weight: 600;
  text-align: left;
  color: #000;
}

.navbar__links .active::before {
  content: "";
  position: absolute;
  background: #34cc3e;
  width: 20px;
  height: 2px;
  bottom: -5px;
}

.indicator {
  opacity: 0;
  position: absolute;
  bottom: 10px;
  left: 0px;
  padding: 1px;
  background: #34cc3e;
  width: 30px;
  height: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.indicator.activer {
  transform: scaleX(1);
  opacity: 1;
}

.dropdown-menu {
  display: none;
  margin-top: 0px;
  border: 0;
  background: transparent;
  padding-top: 20px;
}

.drop__menu {
  background: white;
  padding: 10px;
  -webkit-box-shadow: 0px 0px 100px -30px rgb(109 109 109);
  -moz-box-shadow: 0px 0px 100px -30px rgb(109 109 109);
  box-shadow: 0px 0px 100px -30px rgb(109 109 109);
}

.dropdown-item {
  padding: 10px 50px 10px 20px;
}

.dropdown-item:hover {
  background: rgba(205, 246, 182, 0.35) !important;
}
.dropdown-menu.active {
  display: block;
}

.navbar__btn {
  background: transparent;
  border: 2px solid #34cc3e;
  padding: 13px 40px;
  font-weight: 400 !important;
  font-size: 17px;
  color: #000 !important;
  display: flex;
  gap: 20px;
  margin-left: 10px;
  transition: 0.3s;
}

.navbar__btn:hover {
  border: 2px solid #3a3838;
  transition: 0.3s;
}

.navbar__btn svg {
  transition: 0.3s;
}

.navbar__btn:hover svg {
  transition: 0.3s;
  filter: brightness(0%);
  transform: translateX(10px);
}

@media only screen and (max-width: 1300px) {
  .navbar {
    padding: 30px 6% 10px;
  }

  .navbar__menu {
    display: flex;
  }

  .navbar__nav {
    width: 100%;
    flex-direction: column;
  }

  .sticky {
    width: 100%;
    padding: 10px 6%;
  }

  .navbar__mobile {
    width: 98%;
    align-items: center;
  }

  .navbar__links {
    display: none;
    flex-direction: column;
  }

  .navbar__header ul {
    margin-top: -20px;
    margin-bottom: 10px !important;
  }

  .navbar__brand--description {
    display: none;
  }

  .navbar__links ul {
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
    padding-left: 0;
  }

  .navbar__links li {
    margin: 10px 0;
  }

  .navbar__btn {
    margin-left: 0;
  }

  .navbar__links--active {
    position: absolute;
    top: 180px;
    margin-top: 10px;
    padding: 20px 20px 10px 20px;
    background: #e3e3e3;
    z-index: 997;
    display: block;
    width: 100%;
  }

  .sticky--nav {
    top: 80px;
  }
}

@media only screen and (max-width: 400px) {
  .navbar__header ul {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .navbar__header ul {
    padding: 0;
  }
  .navbar__header li {
    list-style: none;
    margin: 10px 0;
  }
}

/* Header */
.header {
  position: relative;
  padding: 90px 0;
}

.header::before {
  content: "";
  background: rgba(0, 0, 0, 0.03);
  width: 100%;
  height: 580px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.header h5 {
  font-weight: 500;
  font-size: 17px;
  color: #34cc3e;
}

.header h1 {
  font-weight: bold;
  font-size: 58px;
  text-align: left;
  color: #000;
}

.header p {
  margin-top: 30px;
  margin-bottom: 50px;
  font-weight: normal;
  font-size: 15px;
  width: 500px;
  text-align: left;
  color: #707070;
}

.btn__header {
  background: black;
  display: flex;
  gap: 20px;
  padding: 14px 20px;
  font-weight: 400;
  width: 300px;
  color: white;
  transition: 0.3s;
  cursor: pointer;
}

.btn__header:hover {
  transition: 0.3s;
  opacity: 0.8;
}

.header h6 {
  border-top: 1px solid rgba(112, 112, 112, 0.12);
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  color: #000;
  margin-bottom: 150px;
}

.scroll {
  display: flex;
  gap: 20px;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  color: #000;
  transition: 0.3s;
}

.scroll:hover {
  color: #24b32f;
  transition: 0.3s;
}

.slider {
  margin-top: -20px;
}

.slider--header {
  position: relative;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  filter: brightness(30%);
}

.swiper-slide img:hover {
  filter: brightness(80%);
}

.swiper-slide .info {
  z-index: 999;
  position: absolute;
  bottom: 100px;
  right: 50px;
  text-align: right;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  width: 50%;
}

.slider__frame {
  position: absolute;
  border: 13px solid #34cc3e;
  height: 110%;
  width: 500px;
  top: -90px;
  left: 160px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0px;
  left: 0;
  width: 100%;
  text-align: left;
}

.swiper-pagination {
  display: flex;
  justify-content: flex-end;
  padding: 50px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 45px;
  height: 8px;
  min-width: 45px;
  min-height: 8px;
}

.swiper-pagination-bullet {
  opacity: 1 !important;
  border-radius: 0px !important;
  background: #ffffff !important;
}

.swiper-pagination-bullet-active {
  background: #34cc3e !important;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  float: right;
}

.swiper-slide img {
  display: block;
  width: 530px;
  height: 100%;
  object-fit: cover;
}

.swiper {
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .header {
    padding: 100px 6%;
  }

  .header p {
    width: auto;
  }

  .header::before {
    height: 82vh;
  }

  .header h6 {
    border-top: 1px solid rgba(112, 112, 112, 0.12);
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    color: #000;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 1700px) {
  .swiper-slide img {
    max-height: 70vh;
    max-width: 60vh;
  }

  .slider {
    margin-top: -60px;
  }

  .slider__frame {
    position: absolute;
    border: 13px solid #34cc3e;
    max-height: 70vh;
    max-width: 60vh;
    top: -90px;
    left: 150px;
  }
}

@media only screen and (max-width: 800px) {
  .swiper-slide img {
    max-height: 100%;
    max-width: 100%;
  }

  .slider {
    margin-top: -40px;
  }
}

@media only screen and (max-width: 1200px) {
  .slider--header {
    margin: 80px 0;
  }

  .swiper-slide .info {
    width: 80%;
  }

  .slider__frame {
    display: none;
  }

  .swiper-slide img {
    width: 100%;
  }
}

.cards {
  margin-top: -50px;
  padding-bottom: 50px;
}

.card__cards {
  width: 100%;
  background: rgb(30, 26, 26);
  padding: 40px 50px;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}

.card__cards:hover {
  opacity: 0.93;
  transition: 0.3s;
}

/*.card__cards:hover{*/
/*    transition: .3s;*/
/*}*/

/*.card__cards:hover::before{*/
/*    content: "";*/
/*    transition: .3s;*/
/*    width: calc(100% + 10px);*/
/*    height: calc(100% + 10px);*/
/*    z-index: 5;*/
/*    top: -5px;*/
/*    left: -5px;*/
/*    opacity: 1;*/
/*    padding-bottom: 50px;*/
/*    position: absolute;*/
/*    border: 5px solid #34cc3e!important;*/
/*}*/

.card__cards h5 {
  margin-top: 30px;
  font-weight: 600;
  font-size: 17px;
  text-align: left;
  color: #fff;
}

.card__cards p {
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #bdbdbd;
}

.card__gray {
  background: #120f0f;
}

.card__graydark {
  background: #191616;
}

@media only screen and (max-width: 1200px) {
  .cards {
    margin-top: -150px;
    padding: 0 6%;
    width: auto;
  }
}

.img__about {
  text-align: right;
}

.img__about img {
  width: 580px;
}

.about {
  padding-bottom: 60px;
}

.about h6 {
  font-weight: normal;
  font-size: 15px;
  text-align: left;
  color: #34cc3e;
}

.about h1 {
  font-weight: bold;
  font-size: 34px;
  text-align: left;
  color: #151212;
  margin-bottom: 40px;
}

.about p {
  font-weight: normal;
  font-size: 15px;
  text-align: left;
  color: #707070;
  padding-bottom: 30px;
}

.about a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(189, 189, 189, 0.17);
  gap: 15px;
  padding: 17px 40px;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  color: #707070;
  width: 260px;
  transition: 0.3s;
  margin-bottom: 50px;
}

.about a:hover {
  background: rgba(205, 246, 182, 0.35);
  transition: 0.3s;
  color: green;
}

.about h5 {
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  color: #000;
  margin-bottom: 20px;
}

.about h5 span {
  color: #34cc3e;
}

.sygnature {
  width: 150px;
}

@media only screen and (max-width: 1200px) {
  .about {
    padding: 80px 6%;
  }

  .img__about img {
    margin-top: 50px;
    width: 100%;
  }
}

.realization {
  padding: 0 0 100px;
}

.realization__title .title {
  display: flex;
  gap: 20px;
  align-items: center;
}

.realization__title .title .hr {
  width: 52px;
  height: 8px;
  background: #34cc3e;
}

.realization__title::before {
  content: "";
  width: 403px;
  height: 417px;
  background: rgba(188, 188, 188, 0.24);
  opacity: 0.44;
  position: absolute;
  left: 0;
  z-index: -1;
  margin-top: -50px;
}

.title h1 {
  font-weight: bold;
  font-size: 34px;
  text-align: left;
  color: #151212;
}

.description {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.description p {
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #707070;
  width: 500px;
}

.description a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(189, 189, 189, 0.17);
  gap: 15px;
  padding: 17px 40px;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  color: #707070;
  width: 260px;
  transition: 0.3s;
  margin-bottom: 50px;
}

.description a:hover {
  background: rgba(205, 246, 182, 0.35);
  transition: 0.3s;
  color: green;
}

.realization img {
  width: 100%;
  filter: grayscale(80%);
  padding: 10px;
  border: 3px solid rgba(52, 204, 62, 0);
  transition: 0.3s;
  cursor: zoom-in;
}

.active__img,
.realization img:hover {
  filter: grayscale(0%) !important;
  padding: 10px;
  border: 3px solid #34cc3e !important;
  transition: 0.3s;
}

@media only screen and (max-width: 1200px) {
  .realization {
    padding: 40px 6%;
  }
  .realization__title .title .hr {
    width: 32px;
  }

  .realization__title::before {
    width: 60%;
  }
}

.footer__nav {
  margin-top: 20px;
  border-top: 1px solid rgba(208, 210, 214, 0.68);
  padding-top: 50px;
  padding-bottom: 80px;
}

.copy {
  font-weight: normal;
  font-size: 14px;
  width: 300px;
  text-align: left;
  color: #707070;
  margin-bottom: 40px;
}

.policy {
  margin-bottom: 50px;
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #000;
  transition: 0.3s;
}

.policy:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.space {
  margin-top: 80px;
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #707070;
}

.space a {
  color: #34cc3e;
}

.head {
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  color: #000;
  margin-bottom: 20px;
}

.navi li {
  list-style: none;
  margin: 8px 0;
  margin-left: -30px;
}

.navi a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: normal;
  font-size: 13px;
  text-align: left;
  color: #707070;
  transition: 0.3s;
}

.navi a:hover {
  color: black;
  transition: 0.3s;
}

.nip {
  font-weight: normal;
  font-size: 13px;
  text-align: left;
  color: #707070;
  transition: 0.3s;
}

.adress {
  border-bottom: 1px solid rgba(128, 128, 128, 0.29);
  padding-bottom: 20px;
}

b {
  color: black;
}

@media only screen and (max-width: 1200px) {
  .footer {
    padding: 20px 6% 0px;
  }

  .space {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .head {
    margin-top: 20px;
  }
}

.subpage {
  padding: 100px 0 140px;
}

.subpage__title {
  font-weight: bold;
  font-size: 34px;
  text-align: left;
  color: #151212;
  margin-bottom: 40px;
}

.subpage p,
.content-text {
  font-weight: normal;
  font-size: 15px;
  text-align: left;
  color: #707070;
  padding-bottom: 30px;
}

.title-wrapper {
  margin-bottom: 50px;
}

.subpage .title {
  padding-bottom: 10px !important;
  border-bottom: 2px solid #34cc3e;
}

.subpage ul {
  font-weight: normal;
  font-size: 15px;
  text-align: left;
  color: #707070;
  padding-bottom: 30px;
}

.realization--subpage {
  padding: 100px 0 130px;
}

@media only screen and (max-width: 1200px) {
  .realization--subpage {
    padding: 60px 6% 70px;
  }
}

@media only screen and (max-width: 1200px) {
  .subpage {
    padding: 70px 6% 50px;
  }
}

.modal-all {
  cursor: zoom-out;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 100, 100, 0.78);
  z-index: 999;
}
.modal-gallery {
  display: flex;
  align-items: center;
  gap: 30px;
  position: fixed;
  z-index: 999;
  width: auto !important;
  height: 90%;
  top: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-gallery img:hover {
  border: 0 !important;
  cursor: auto;
}

.modal-image {
  cursor: auto;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: 70vh;
  opacity: 1 !important;
  filter: grayscale(0%) !important;
  padding: 10px;
  background: white;
  border: 0px solid #34cc3e !important;
  box-shadow: 0px 0px 54px 0px rgba(255, 255, 255, 0.2);
  cursor: zoom-out;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
}

.modal-description {
  width: 100%;
  background: white;
  padding: 20px;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  margin-top: 10px;
  color: #000000;
}

.modal-prev,
.modal-next {
  z-index: 1000;
  min-height: 60px;
  min-width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  color: black;
  font-size: 24px;
  background-color: white;
}

.next-display--mobile {
  display: none;
}

@media only screen and (max-width: 750px) {
  .next-display {
    display: none;
  }

  .modal-all {
    overflow-y: auto;
  }

  .next-display--mobile {
    display: flex;
    gap: 20px;
    flex-direction: row;
  }

  .modal-gallery {
    flex-direction: column;
    width: 100% !important;
    /*left: 0;*/
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
  }
  .modal-image {
    width: auto !important;
    max-width: 100%;
    height: auto !important;
    max-height: 100%;
  }
}

.map {
  width: 100%;
}
