@charset "UTF-8";

@font-face {
  font-family: 'Nunito';
  src: url('/assets/fonts/Nunito_Sans/NunitoSans-VariableFont_YTLC\,opsz\,wdth\,wght.ttf');
}

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

:root {
    --white: #ffffff;
    --header: #232920;
    --black: #000000;
    --button: #486D36;
    --bg-content: #EAEBE8;
    --toogle: #888b86;
    --about-text: #535353;
}

h1,h2,h3,h4 {
    font-family: 'Nunito', sans-serif;
    line-height: 1.4em;
    font-weight: 700;
    color: var(--black);
}

h1{font-size: 30px;}
h2{font-size: 26px;}
h3{font-size: 20px;}

p{
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
}

li{list-style: none;}

a{
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
}

html {scroll-behavior: smooth;}

body{
    font-family: 'Nunito', sans-serif;
    background: var(--white);
    font-size: 18px;
}

/* ----------------------------------------
                Styles
   ---------------------------------------- */

.container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.button{
    font-family: 'Nunito', sans-serif;
    background: var(--button);
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 5px;
}
.button:hover{
  background: #3E5336;
  color: var(--white);
}
.section-text h2{
  font-size: 30px;
  font-family: 'Nunito', sans-serif;;
  color: var(--black);
  font-weight: 700;
}

.section-text p{
  color: var(--about-text);
  font-family: 'Nunito', sans-serif;;
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
}
/* ---------------------------------
           preloader
------------------------------------ */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: var(--black);
}
.preloader .preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.preloader .preloader-inner .preloader-icon {
  width: 220px;
  height: 220px;
  display: inline-block;
  padding: 0px;
}
.preloader img {
  width: 220px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);

}
.preloader .preloader-inner .preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 220px;
  height: 220px;
  border-radius: 100%;
  background: var(--header);
  -webkit-animation: preloader-fx 3s linear infinite;
  animation: preloader-fx 3s linear infinite;
}
.preloader .preloader-inner .preloader-icon span:last-child {
  animation-delay: -1.5s;
  -webkit-animation-delay: -1.5s;
}

@keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

.loaded_hiding .preloader {
      transition: 0.8s opacity;
      opacity: 0;
    }

.loaded .preloader {display: none;}

/* ---------------------------------------------
            dropdown language
------------------------------------------------ */

.dropdown-lang i{font-size: 12px;font-weight: 400;}
.dropbtn-lang {
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    display: inline;
    background: none;
    border: none;
    font-size: 16px;
    width: max-content;

  }

  .dropdown-lang {
    position: relative;
    display: inline-block;
  }

  .dropdown-content-lang {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    cursor: pointer;
    z-index: 1000;
    left: -33px;
    margin-top: 7px;
    background-color: var(--header);
    color: var(--white);
  }

  .dropdown-content-lang a {
    color: var(--dark);
    margin: 14px 10px;
    text-decoration: none;
    display: block;
  }

  .dropdown-lang a:hover {color: var(--button);}

.show-lang {
    visibility: visible;
    margin-left: 30px;
    opacity: 1;
    transition: opacity 0.3s;
    border-radius: 5px;
  }
.dropdown-content-lang ul{
    text-align: left;
}

/* -------------------------------------------
                Header
------------------------------------------- */

.header{
    background: var(--header);
}

.header-bottom {
  position: relative;
  z-index: 9;
}
.header-button{
  	margin-left: 20px;
  	text-transform: uppercase;
}
header {
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  align-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.header-left-side {
  width: 100px;
  position: relative;
}

.header-logo {
  width: 100%;
  transition: 0.3s;
}

.header-logo img {
  max-width: 200px;
}

.header-right-side {
  position: relative;
  width: 87%;
}

nav {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

nav a {
  position: relative;
  text-decoration: none;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  transition: 0.3s;
  z-index: 100;
}

nav a:hover {color: var(--toogle);}

.green-text {color: #146948;}

.expand-menu-icon{
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
display: none;
color: var(--toogle);
font-size: 22px;
transition: 0.3s;
}

.expand-menu-icon:hover {color: #146948;}

/* ----------------------------------- */

.dropdown-nav {
  position: relative;
  display: inline-block;
}

.dropdown-nav .dropdown-toggle-serv {
  cursor: pointer;
}

.dropdown-nav .dropdown-menu-sv {
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  background: var(--header);
}

.dropdown-nav .dropdown-menu-sv a {
  display: block;
  width: max-content;
  padding: 10px;
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.dropdown-nav .dropdown-menu-sv a:hover{
  color: var(--toogle);
}
.dropdown-nav:hover .dropdown-menu-sv {
  display: block;
}

.sticky-header{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
	transition: all 0.3s ease;
	padding: 0;
}
.sticky-header .header-logo img{
	max-width: 150px;
	transition: 0.3s ease;
}
.sticky-header .button{
	font-size: 16px;
}
.header-bottom{
	position: relative;
	z-index: 9;
	transition: all 0.5s ease;
}
/* ----------------------------------------
                Banner
   ---------------------------------------- */
.head-back {
    position: absolute;
    width: 100%;
    height: 100%;
}
.head-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.69) 0%, rgba(0, 0, 0, 0.00) 100%);
}
.head-background{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner {
    position: relative;
	width:100%;
	height: 100vh;
}
.banner-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* -------------------------------- */
.container-banner{
    width: 70%;
    position: relative;
    display: grid;
    gap: 40px;
    z-index: 2;
}
.banner-title h1{
    color: var(--white);
    font-size: 65px;
    font-weight: 700;
}
.banner-text p{
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
    font-weight: 400;
}
.banner-button{
    margin: 20px 0;
    text-transform: uppercase;
}
.banner-container{
    height: 100%;
	display: flex;
	align-items: center;
}

/* ----------------------------------------
                About Us
   ---------------------------------------- */

.container-about-us{
    padding: 140px 0;
}
.about-us{
    width: 100%;
    height: 100%;
    background: var(--white);
}

.about-cards{
    display: flex;
}


.about-text p{
  width: 95%;
  color: #535353;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  margin: 50px 0 20px 0;
}
.section-text{
  width: 70%;
}
.about-text {
  width: 40%;
}
/* Stilurile pentru fereastra modală și fundalul de acoperire */
#aboutUsModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Stilurile pentru conținutul ferestrei modale */
.w3-modal-content {
  background-color: var(--white);
  margin: 50px auto;
  border: 1px solid #888;
  width: 70%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Stilurile pentru antetul ferestrei modale */
.w3-modal-content h2 {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
}

/* Stilurile pentru butonul de închidere "X" */
.w3-button.w3-display-topright {
  font-size: 20px;
  color: var(--about-text);
  float: right;
  font-weight: 500;
  cursor: pointer;
}

/* Stilurile pentru textul principal */
.w3-container p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--header);
}

/* Stilurile pentru butonul "Open Modal" */
.w3-button.w3-black {
  color: var(--header);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration-line: underline;
}
.w3-container-text{
  margin: 30px 20px;
  max-height: 80vh; 
    overflow-y: auto;
}
.w3-container-text p{
  width: 95%;
  line-height: 1.6em;
  margin: 0 auto;
}
.w3-container.w3-teal {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #888b8640;
}


/* -------------------------------------------
          slider
--------------------------------------------- */

.mySlidesAbout {height: 100%;display: none}

.about-slider {width: 60%;}

.slideshow-container img {
  width:100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  border-radius: 20px;
}

.slideshow-container {
  width: 100%;
  max-width: 1000px;
  position: relative;
  margin: auto;
  height: 100%;
}

.about-prev, .about-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: 400;
  font-size: 38px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.about-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.slider-container {
  position: relative;
  height: 460px;
}

.about-prev:hover, .about-next:hover {
  background-color: rgba(0,0,0,0.8);
}
.about-dot-container{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.about-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  border: 2px solid #FFF;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.about-active, .about-dot:hover {
  background-color: #fff;
}

.about-fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes about-fade {
  from {opacity: 0.4}
  to {opacity: 1}
}
/* about card */
.about-base{
  display: flex;
}

.about-cards{
  margin-top: 140px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
  gap: 20px;
  }

.about-card{
  height: 370px;
  padding: 50px 30px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
}
.about-card img{
  display: block;
  margin: 0 auto;
  width: 70px;
  height: 70px;
}
.about-card h2{
  font-family: 'Nunito', sans-serif;
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 35px 0 20px 0;
}
.about-card p{
  color: var(--about-text);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 400;
}
/* ----------------------------------------
          Services
   ---------------------------------------- */

.services{
  margin: -320px 0;
}

.services-container{
  background: var(--bg-content);
  padding: 300px 0 200px 0;
}

.services-title h2{
  margin: 20px 0;
}

.services-cards{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 50px 0 250px 0;
}

/* -------- services card ---------- */

.card-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 20px;
}

.card-thumbnail {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 230px;
  position: relative;
}

.card-thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.0);
  color: var(--white);
}
.c-item p{
  color: var(--white);
}
.c-item img{
  width: max-content;
}
.over-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.over-title {
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
}

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

.over-caracteristics, .c-item, .over-facilities {
  display: flex;
  gap: 10px;
  opacity: 0;

}

.over-facilities img{
  width: 20px;
  object-fit: contain;
}

.thumb-background, .thumb-background img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-item:hover .over-caracteristics,
.card-item:hover .c-item,
.card-item:hover .over-facilities,
.card-item:hover .over-title{
  transition: 0.3s;
  opacity: 1;
}

.card-item:hover .thumb-overlay{
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.5);
}
.service-price{
  display: flex;
  justify-content: center;
  align-content: center;
}
.service-price span{
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
}
/* ---------- services modal --------------- */

.services-button {
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  background: var(--button);
  padding: 11px 33px;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}
.services-button:hover {
  background-color: var(--header);
}
.details-modal {
  background: #ffffff;
  border-radius: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  left: 50%;
  max-width: 95%;
  pointer-events: none;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40em;
  text-align: left;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.details-modal .details-modal-close {
  align-items: center;
  color: #111827;
  display: flex;
  height: 4.5em;
  justify-content: center;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.5em;
}
.details-modal .details-modal-close i {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: var(--about-text);
}
.details-modal .details-modal-title {
  color: #111827;
  padding: 1.5em 2em;
  pointer-events: all;
  position: relative;
  width: calc(100% - 4.5em);
}
.details-modal .details-modal-title h1 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
}
.details-modal .details-modal-content {
  border-top: 1px solid #e0e0e0;
  padding: 2em;
  pointer-events: all;
  overflow: auto;
}

.details-modal-overlay {
  transition: opacity 0.2s ease-out;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.8);
  position: fixed;
  opacity: 0;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
details[open] .details-modal-overlay {
  pointer-events: all;
  opacity: 0.5;
  z-index: 1;
}

details summary {
  list-style: none;
}
details summary:focus {
  outline: none;
}
details summary::-webkit-details-marker {
  display: none;
}

.button-modal {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
}
.button-modal > h1 {
  font-weight: 700;
  font-size: 2rem;
  line-height: normal;
  color: #111827;
}

.modal-galerry{
  display: grid;
  grid-template-columns: 49% 49%;
  gap: 10px;
  justify-content: center;
}

.modal-galerry img{
  border-radius: 10px;
  width: 100%;
}
.modal-descriptor{
  display: flex;
  align-items: center;
  margin: 30px 5px;
}
.modal-descriptor-specification{
  width: 50%;
}
.modal-descriptor-specification h3, .modal-descriptor-comodities h3{
  margin: 10px 0;
  font-size: 20px;
  font-weight: 700;
}
.specification-ctn i{
  margin-right: 10px;
  font-size: 16px;
  color: var(--about-text);
}
.specification-ctn span{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

/* -----------------------------------------------
        services section 2
   ---------------------------------------------- */

.services-section2-container{
  background: var(--white);
  padding: 140px 0;
}
.card-item2{
   background: var(--white);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
}
.card-item2 .over-facilities{
    display: none;
}
.services-cards2{
  margin-top: 50px;
  display: flex;
  gap: 20px;
}
.serv-button-mod .button{
  border: none;
  cursor: pointer;
}

/* modal */
.modal-sv {
  display: none;
  position: fixed;
  z-index: 10;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

/* -----------------------------------------------
        services section 3
   ---------------------------------------------- */

.other-services{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-content: center;
  margin-bottom: 140px;
}


.service-box-2{
  border-radius: 20px;
  background: #fff;
  margin: 20px 0;
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.13);
  position: relative;
}
.service-box-2-image{
  overflow: hidden;
  height: 290px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.service-box-2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.service-box-2:hover img{
    transform: scale(1.1);
}
.button-modal2{
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.3s;
}

.service-box-2-container{
  padding: 35px 30px 35px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;

}
.service-box-2:hover .service-box-2-container {
  padding-top: 25px;
}
.service-box-2:hover .button-modal2 {
  bottom: -30px;
  opacity: 1;
}
.service-box-2-container p{
  color: #000;
  font-size: 20px;
  font-weight: 700;
}
.service-box-2-container .p-price{
  color: #000;
  font-size: 20px;
  font-weight: 400;
}
.services-button-2{
  border-radius: 10px;
  background: #486D36;
  display: inline-flex;
  border: none;
  cursor: pointer;
  padding: 15px 53px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
}
.dropdown-lang2{
  display: none;
}

/* modal other services */
.modal-service {
  display: none;
  position: fixed;
  z-index: 10;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

/* -----------------------------------------------
        services images
   ---------------------------------------------- */

.services-images-icons{
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: space-between;
    align-content: center;
    padding: 140px 50px;
}
.services-images-container{
   position: relative;
}
.head-back2{
  position: absolute;
  width: 100%;
  height: 100%;
}
.head-overlay-services{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: rgba(0, 0, 0, 0.60);
}
.serv-content img{
  max-width: 100%;

}
.head-background2{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.serv-content{
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.serv-content p{
  color: var(--white);
  padding-top: 30px;
  font-size: 20px;
  font-weight: 700;
}
/* -----------------------------------------------
        rewiews
   ---------------------------------------------- */
.rewiews-container{
  background: var(--bg-content);
  padding: 140px 0;
}
.rewiews-content{
  margin: 0 50px;
}

.rewiews-title h2{
  font-size: 30px;
  font-weight: 700;
}


.rewiews-blocks {
  background: var(--white);
  border-radius: 20px;
}
.slider-space{
  margin-top: 50px;
}
.review-div {
  width: 100%;
  height: 100%;
  padding: 30px;
  justify-content: space-between;
}
.review-div-ctn-text{
  margin: 0 15px;
}
.rewiew-div-cnt{
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
.rewiew-div-cnt img {
  max-width: 20%;
  height: auto;
  border-radius: 50%;
}
.rewiew-icon img{
  max-width: 100%;
  border-radius: 0;
}
.rewiew-author {
  font-size: 20px;
  font-weight: 700;
}
.review-proffesion{
  color: #9CCF87;
  font-size: 14px;
  font-weight: 400;
}
.rewiew-comment {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--about-text);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}
.rewiew-info{display: flex;align-items: center;}
.rewiew-comment p {
  margin: 0;
}

.rewiew-icon {
  margin-top: 5px;
  font-size: 18px;
}

/* -----------------------------------------------
        Contacts
   ---------------------------------------------- */

#contacts {
    padding: 140px 0;
}
.contacts-container {
  display: flex;
  justify-content: space-between;
}

.contact-info {
  display: flex;
  flex-direction: column;
  width: 28%;
  line-height: 1.7em;
  gap: 20px;
}

.contact-info h2 {
  margin-bottom: 40px;
  font-size: 1.865em;
}

.contact-info i {
  margin-right: 10px;
}

.contact-info a {
  text-decoration: none;
  color: var(--about-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}
.contact-info a:hover {
  color: #1f61ff;
}
.contact-info h3 {
  margin-bottom: 10px;
  font-size: 1.4em;
}

.contacts-container iframe {
  width: 70%;
}
.contacts-container iframe{
  border-radius: 20px;
	border: none;
}
.info-text p{
  color: var(--about-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  cursor: pointer;
}
/* -------------------------------------------- */

.contact-form{
  background: var(--tabs);
  position: relative;
}

.contact-text h2{
  padding-top: 140px;
  color: var(--primary);
}
.contact-button{
  padding-top: 0;
  text-align: left;
}

.contact-send:hover{
  background: #dddddd;
}
.contact-forms {
  padding-top: 50px;
}
.contact-send {
  background: var(--primary);
  color: var(--button);
  color: #372618;
  font-size: 20px;
  font-weight: 600;
  border: none;
}
.contact-forms input {
  width: 45%;
  margin-right: 20px;
  background: none;
  border: none;
  padding: 15px 0;
  border-bottom: 1px solid #9CCF87;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;;
  transition: 0.3s;
}
.contact-forms input{
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
}
.contact-forms input:focus {
  outline: none;
  border-bottom: 1px solid var(--button);
}
.contact-forms textarea {
  width: 95%;
  margin: 45px 0 20px 0;
  padding: 10px;
  background: none;
  box-sizing: border-box;
  border: 1px solid #9CCF87;
  border-radius: 10px;
  transition: 0.3s;
}
.contact-forms textarea{
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
}
.contact-forms textarea:focus {
  outline: none;
  border: 1px solid var(--button);
}

.contact-forms button {
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.contact-forms button:hover {
  background: var(--black);
  color: var(--white);
}

/* -----------------------------------------------
        Footer
   ---------------------------------------------- */

footer{
    padding: 50px 0 0 0;
    background-color: #232920;
}

.footer-inner {
    width: 98%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
}

.footer-column {
    display: flex;
    align-items: center;
}

footer a {
    text-decoration: none;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.footer-logo img {
    width: 200px;
}

.footer-socials {
    gap: 20px;
}

.footer-socials a{
    font-size: 22px;
}
.footer-socials a:hover{
  color: var(--toogle);
}
.footer-phone i{
  color: var(--white);
  font-size: 16px;
  margin-right: 5px;
}
.footer-separator{
  margin-top: 20px;
  border-top: 1px solid #ffffff42;
  padding: 20px;
  text-align: center;
  color: var(--toogle);
  font-size: 16px;
}
.footer-separator a:hover{
  color: #1f61ff;
}
/* -----------------------------------------------
        Media queres
   --------------------------------------------- */
@media screen and (max-width: 1300px){
  .header-bottom{width: 95%;}
}

@media screen and (max-width: 1125px){
  .container-banner{width: 95%;margin-left: 10px;}
}
@media screen and (max-width: 990px){
  .over-info {display: block;}
  .over-caracteristics, .c-item, .over-facilities {margin: 5px 0;}
}

@media screen and (max-width: 900px) {
  nav a {margin-left: 10px;}
  .button{font-size: 18px;}
  .about-slider {
    width: 50%;
    right: 0;
    position: absolute;
}
.serv-button-mod .button {font-size: 16px;}
.about-text {width: 50%;}
.w3-modal-content{width: 80%;}
.about-card img {
  width: 100px;
  height: 100px;
}
.header-logo img{max-width: 160px;}
.about-card h2{font-size: 18px;}
.about-card p {font-size: 14px;}
.about-card {height: 350px;padding: 40px 30px;}

}

@media screen and (max-width:870px) {
  .container {width: 95%;}
    #contacts{padding: 100px 0;}
    .contacts-container {display: block;}
    .contact-info {width: 100%;display: grid;grid-template-columns: auto auto;}
    .contact-info h2 {grid-column-start: 1; grid-column-end: 3;}
    .contacts-container iframe {width: 100%;margin-top: 30px;}
    .button2, .custom-dropdown{display: none;}
    .header-top-inner {padding: 10px 0;}
    header{
      display: block;
      padding: 0
    }
    .dropdown-nav{display: contents;}
    .header-right-side{
      width: 90%;
      margin: auto;
      height: 0;
      position: relative;
      visibility: hidden;
      bottom: 350px;
      transition: 0.3s;
    }
    .expand-menu-icon{
      display: block;
      position: absolute;
      top: 40px;
      border: 2px solid #bdbdbdc9;
      padding: 2px 10px;
      border-radius: 5px;
      color: #bdbdbdc9;
      z-index: 3;
    }
    .expand-menu-icon:hover{
      color: var(--white);
      border: 2px solid var(--white);
    }
    .header{padding: 0;}
    .dropdown-link{display: block;}
    .custom-dropdown2, .dropdown-lang2{
      left: -10px;
      position: relative;
      display: block;
    }
    .dropdown-content-lang a {margin: 20px 10px;}
    .header-left-side{
      display: flex;
      justify-content: space-between;
      width: 100%;
      margin: auto;
      background: var(--header);
      z-index: 2;
    }
    .header-logo {padding: 10px 0;}
    nav {position: relative;top: 0;transform: translateY(0);}
    nav a {display: block;margin: 20px auto;}
    .responsive {
      visibility: visible;
      bottom: 0;
      left: 20px;
      height: 100vh;
      transition: 0.3s}
    .dropdown-nav:hover .dropdown-menu-sv {display: contents;}
    .dropdown-nav .dropdown-menu-sv {
      display: contents;}
    .banner-title h1 {font-size: 50px;}
    .card-thumbnail {height: 200px;}
    .service-price span {font-size: 18px;}
    .card-item {padding: 20px 15px;}
    .service-box-2-image {height: 200px;}
    .services-button-2{font-size: 18px; padding: 15px 40px;}
    .services-section2-container{padding: 100px 0;}
    .other-services{margin-bottom: 100px;}
    .rewiews-container {padding: 100px 0;}
  }


@media screen and (max-width: 780px) {
    .w3-modal-content{width: 95%; margin: auto}
  .services-button {padding: 8px 25px;}
  .about-text {width: 100%;margin-bottom: 50px;}
  .about-slider {width: 100%;}
  .about-base {display: block;}
  .container-about-us {padding: 0;}
  .services-container{padding: 300px 0 50px 0;}
  .about-text p{margin: 30px 0;}
  .about-cards {margin-top: 85%;}
  .services {margin: -200px 0;}
  .banner-container img, .head-overlay {height: 85%;}
  .slideshow-container {height: 95%;}
  .about-card img {width: 80px;height: 80px;}
  .about-card {height: 330px; padding: 25px 20px;}
  .section-text {width: 99%;}
  .card-thumbnail {height: 170px;}
  .over-title {font-size: 18px}
  .review-div {padding: 20px;}
  .modal-galerry{grid-template-columns: 99%;}
  .modal-descriptor-specification{width: 99%;}
.c-item img {
  object-fit: contain;
}


@media screen and (max-width: 720px){
  .service-box-2{width: 94%;height: 20%;}
  .banner-text p{font-size: 25px;}
  .footer-inner{grid-template-columns: auto auto; gap: 30px;width: 90%;}
  .footer-logo {grid-column-start: 1; grid-column-end: 3;display: flex;width: 100%;justify-content: center;}
  .contact-info{width: 90%;margin: 0 auto;}
}

@media screen and (max-width: 680px){
  .contacts-container iframe{height: 50vh;border-radius:0;}
	#contacts{padding-top: 70px;padding-bottom: 0;}
  .about-cards {
    display: block;
    margin-top: 95%;
  }
.over-caracteristics, .c-item, .over-facilities {
  opacity: 1;
  align-items: end;
}
.card-item .thumb-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}
.services-container {
    padding: 250px 0 50px 0;
}
 .about-text p {
    margin: 15px 0;
	text-align: justify;
  }
.button-modal2 {opacity: 1;bottom: -30px;}
.service-box-2:hover img {
  transform: scale(1);
}
#service1 p, #foisoare p{
	width: 90%;
	margin: 0 auto;
	margin-top:10px;
}
.about-prev, .about-next{font-size: 20px;}
.about-dot {
  height: 10px;
  width: 10px;
}
.about-base {
    width: 90%;
    margin: 0 auto;
  }
.lightSlider{height: 200px;}
  .about-card {
    width: 90%;
    height: 280px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 30px;
  }
  .services-cards{
    display: block;
  }
  .card-item {
    padding: 30px 20px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .card-thumbnail {
    height: max-content;
}
.thumb-background, .thumb-background img {margin: -3px 0px;}
.services-section2-container {padding: 50px 0;}
	.section-text h2{text-align: center;}
  .over-info {display: flex;align-items: center;}
  .other-services{
    display: block;
    margin-bottom: 100px;
  }
  .service-box-2 {
    margin: 0 auto;
    margin-bottom: 40px;
}
.service-box-2-image {height: 40%;}
.services-images-icons {
	grid-template-columns: auto auto; 
	gap: 30px;
	justify-content: space-around;
	padding: 90px 20px;
}
.contact-text h2 {padding-top: 50px;}
.contact-forms {padding-top: 30px;}
.rewiews-container{padding: 70px 0;}
.rewiews-content {margin: 0px 20px;}
.contact-info h2 {margin-bottom: 0;font-size: 24px;}
.contact-info h3 {font-size: 18px;}
.info-text p, .info-text a {font-size: 16px;}
.rewiew-comment {margin-top: 20px;}
}

@media screen and (max-width: 658px){
  .banner-title h1{font-size: 35px;}
  .banner-text p {font-size: 20px;}
  .button{font-size: 16px;width:100%;}
}

@media screen and (max-width: 600px){
  .about-cards {margin-top: 480px;}
  .slider-container {height: 350px;}
  .slideshow-container {height: 95%;width: 95%;}
  .contact-forms input {width: 95%;}
  .modal-descriptor{display: block;}
  #contacts {
    padding: 60px 0;
	padding-bottom: 0;
  }
}

@media screen and (max-width:480px) {
    .contact-info {display: flex;flex-direction: column; gap: 20px;}
    .about-card {height: 300px;}
    .footer-inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
}

@media screen and (max-width:380px) {
    .about-card {height: 320px;}
  }

@media only screen and (max-width: 300px) {
  .about-prev, .about-next {font-size: 11px}
}



