/* APERCU FONTS  */

@font-face {
  font-family: 'futura_ptbold';
  src: url('Fonts/futuraptbold-webfont.woff2') format('woff2'),
    url('Fonts/futuraptbold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'futura_ptbook';
  src: url('Fonts/futuraptbook-webfont.woff2') format('woff2'),
    url('Fonts/futuraptbook-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'futura_pt_book_italicregular';
  src: url('Fonts/futuraptbookoblique-webfont.woff2') format('woff2'),
    url('Fonts/futuraptbookoblique-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'futura_pt_condbold';
  src: url('Fonts/futuraptcondbold-webfont.woff2') format('woff2'),
    url('Fonts/futuraptcondbold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'futura_pt_condbook';
  src: url('Fonts/futuraptcondbook-webfont.woff2') format('woff2'),
    url('Fonts/futuraptcondbook-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'futura_pt_cond_book_italicRg';
  src: url('Fonts/futuraptcondbookoblique-webfont.woff2') format('woff2'),
    url('Fonts/futuraptcondbookoblique-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'futura_pt_condmedium';
  src: url('Fonts/futuraptcondmedium-webfont.woff2') format('woff2'),
    url('Fonts/futuraptcondmedium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'futura_pt_cond_medium_italiRg';
  src: url('Fonts/futuraptcondmediumoblique-webfont.woff2') format('woff2'),
    url('Fonts/futuraptcondmediumoblique-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'futura_ptlight';
  src: url('Fonts/futuraptlight-webfont.woff2') format('woff2'),
    url('Fonts/futuraptlight-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'futura_pt_light_italicregular';
  src: url('Fonts/futuraptlightoblique-webfont.woff2') format('woff2'),
    url('Fonts/futuraptlightoblique-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'futura_ptmedium';
  src: url('Fonts/futuraptmedium-webfont.woff2') format('woff2'),
    url('Fonts/futuraptmedium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'futura_pt_medium_italicRg';
  src: url('Fonts/futuraptmediumoblique-webfont.woff2') format('woff2'),
    url('Fonts/futuraptmediumoblique-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

/* FONTS END */

/* GENERAL STYLING  */

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'futura_ptlight';
}

p {
  margin: 0;
  padding: 0;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
  /* color: gray; */
  font-size: 0.85rem;
}

a {
  margin: 0;
  padding: 0;
}

/* STYLING NAVBAR  */

.overlay {
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  /* Modificare aici pentru a seta meniul la dreapta */
  background-color: #111111;
  overflow-y: hidden;
  transition: width 0.8s cubic-bezier(.7, 0, .2, 1);
  /* Utilizare cubic-bezier pentru o tranziție personalizată */
  overflow: hidden;
}

.overlay-content {
  position: relative;
  top: 25%;
  left: 10%;
  width: 100%;
  text-align: left;
  margin-top: 30px;
}

.overlay a:not(.overlay-socials a) {
  padding: 8px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  display: block;
  transition: 0.3s;
  letter-spacing: 2px;
  font-family: 'Mulish', serif;
  text-transform: capitalize;
}

.overlay-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Mulish', serif;
  text-transform: uppercase;
  margin-top: 30px;
}

.overlay-socials a {
  color: #818181;
  text-decoration: none;
  font-weight: 700;
  font-size: 11px;
  padding: 0 8px;
  letter-spacing: 3px;
  opacity: 0.7;

}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 30px;
  right: 60px;
  font-size: 35px;
}

hr.new1 {
  margin-top: 30px;
  width: 60%;
  height: 5px;
  border-top: 1px solid rgba(57, 57, 57, 0.832);
  border-left: transparent;
  border-bottom: transparent;
  border-right: transparent;
}

.stop-scrolling {
  overflow: hidden;
}

@media screen and (max-height: 450px) {
  .overlay {
    overflow-y: auto;
  }

  .overlay a {
    font-size: 16px
  }

  .overlay .closebtn {
    font-size: 20px;
    top: 15px;
    right: 35px;
  }
}

@media screen and (max-width: 450px) {
  .overlay-content {
    top: 20%;
  }
}

/* NAVBAR  */

.nav-btn {
  display: none;
}

.navbar {
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 1rem 2rem 0rem 2rem;
  z-index: 2;
  top: 0px;
  background-color: transparent;
  transition: background-color 0.3s ease;
  /* Smooth transition for background color */
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
}

.navbar.scrolled {
  background-color: black;
  /* Change background color when scrolled */
}

.logo-navbar {
  width: 15rem;
  padding: 0.7rem 0;
}

.first-item-navbar ul {
  display: flex;
  gap: 40px;
  font-family: 'futura_ptlight';
  font-size: 1rem;
  transition: color 300ms ease-in-out;
  align-items: flex-start;
  list-style: none;
  font-weight: 100;
  letter-spacing: 1px;
  text-transform: capitalize;
  text-shadow: 1px 1px 2px black;
}

.first-item-navbar ul a {
  color: white;
  text-decoration: none;
  transition: 200ms ease-in-out;
  text-transform: uppercase;
}


.navbar li {
  font-weight: bold;
  color: red;
  /* background-color: #404040; */
  float: left;
  position: relative;
  padding: 34px 10px;
  overflow: hidden;
}

.navbar li::after {
  background-color: #47b749;
  content: "";
  width: 0;
  height: 3px;
  left: 0;
  top: 25px;
  transition: width 0.35s ease 0s;
  position: absolute;
}

.navbar li:hover::after {
  width: 100%;
}

.navbar ul a.active-nav{
  /* border-top: 3px solid #47b749; */
  /* padding: 1.95rem 0; */
  width: 100%;
  color: #47b749;
}

.overlay-content .action.active-nav{
  color: #47b749;

}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  border: none;
  outline: none;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  font-size: 0.8rem;
  padding: 0;
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: rgba(255, 170, 0, 0.833);
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}


@media only screen and (max-width: 1260px) {

  .navbar {
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }

  .first-item-navbar {
    padding-bottom: 1rem;
  }

  .logo {
    width: 5rem;
  }

  .navbar {
    justify-content: space-around;
    flex-direction: row;
  }

  .first-item-navbar {
    padding-bottom: 0rem;
  }

  .first-item-navbar {
    display: none;
  }

  .nav-btn {
    display: block;
    color: rgb(255, 255, 255);
  }
}




/* VIDEO SECTION  */

.home {
  height: 100vh;
  position: relative;
}

video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-content {
  position: relative;
  padding-top: 270px;
  color: #fff;
  text-align: center;
  padding-inline: 2rem;
}

.home-content h1 {
  font-family: 'futura_ptlight';
  font-size: clamp(45px, 7vw, 80px);
  line-height: 1.1;
  padding-top: 5rem;
  margin: 0rem;
}

.home p {
  font-size: 1.3rem;
  /* margin-top: 10px; */

}

.home-content button {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  outline: none;
  border: none;
  border-radius: 5px;
  background: #47b749;
  color: white;
  margin: 50px auto 0;
  padding: 12px 20px;
  cursor: pointer;
}

/* FIRST SECTION  */

.main-section {
  position: relative;
  /* height: 25vh; */
}

.line-banner {
  position: absolute;
  left: 50%;
  /* top: -7rem; */
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transform: translate(-50%, -50%);
  /* text-shadow: 1px 1px 2px black; */
  width: 100%;

}

.first-vl {
  border-left: 2px solid rgb(255, 255, 255);
  height: 30px;
}

.second-vl {
  border-left: 2px solid rgb(255, 255, 255);
  height: 35vh;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 6px 24px 0px, rgba(0, 0, 0, 0.2) 0px 0px 0px 1px;
}

/* SECOND SECTION  */

.second-section {
  padding: 0 3rem;
}

.second-section-title {
  text-align: center;
  margin-top: 15rem;
  /* opacity: 20%; */
}

.second-section-subtitle{
  text-align: center;
  margin-top: 1rem;
  font-size: 1.3rem;
  padding: 0rem 2rem;
  color: #47b749;
}

.second-section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 5rem);
  /* margin: 0; */
  padding: 0;
}

.second-section h3 {
  text-align: center;
  font-size: 1.8em;
  color: #47b749;
  font-family: 'futura_pt_light_italicregular';
}

/* CARROUSEL SECTION  */

/* CAROUSEL SECTION  */

.home-demo {
  width: 90%;
  margin: 3rem auto;
}

.home-demo .item {
  width: 100%;
  height: 50vh;
}

.home-demo img {
  height: 100%;
}

.home-demo h2 {
  color: #FFF;
  text-align: center;
  padding: 5rem 0;
  margin: 0;
  font-style: italic;
  font-weight: 300;
}

@media (max-width: 1100px) {
  .home-demo .item {
    height: 40vh;
  }
}

@media (max-width: 590px) {
  .home-demo .item {
    height: 50vh;
  }

  .second-section {
    padding: 1rem;
  }

  .second-section h3 {
    font-size: 1.45em;
  }
}

/* END CARROUSEL  */

/* NONWONEN SECTION  */

/* BUSINESS SECTION  */

.business-section {
  width: 90%;
  margin: 0 auto;
  background-color: #f3f3f3cf;
  padding: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  margin-bottom: 2rem;
}

.business-section:first-child {
  grid-area: 1 / 1 / 2 / 3;
}

.business-section:last-child {
  grid-area: 1 / 2 / 2 / 3;
}

.business-img {
  width: min(100%, 40rem);
  float: right;
}

.business-first-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.business-title {
  font-size: clamp(49.5px, 4.6875vw, 79px);
}

.business-body {
  font-size: 1.5rem;
  width: min(95%, 35rem);
  line-height: 28px;
  /* font-family: 'aperculight'; */
}

.green {
  color: #47b749;
}

.business-btn {
  /* border: 1px solid grey; */
  padding: 15px 20px;
  width: max-content;
  border-radius: 50px;
  background-color: #47b749;
  color: white;
  outline: none;
  /* font-size: 1.5rem; */
  cursor: pointer;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 200ms ease-in-out;
}

.business-btn a {
  color: white;
  text-decoration: none;
}

.openings-footer-text {
  font-size: 1.5rem;
}



.business-btn:hover {
  transform: scale(1.05);
}

.wedding-section {
  width: 90%;
  margin: 0 auto;
  background-color: #f3f3f3cf;
  padding: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
}

.wedding-img {
  width: min(95%, 27rem);
  /* aspect-ratio: 1; */
}

@media (max-width: 1200px) {
  .business-section {
    display: flex;
    flex-direction: column-reverse;
    padding: 2rem;
    gap: 1rem;
  }

  .wedding-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
  }

  .wedding-img {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .business-title {
    font-size: 8vw;
  }

  .business-body {
    font-size: 1rem;
  }

  .business-btn {
    font-size: 1.2rem;
  }
}

.vl {
  border-left: 1px solid rgb(176, 176, 176);
  height: 20vh;
  position: relative;
  left: 50%;
  margin: 1rem 0;
  /* box-shadow: rgba(0, 0, 0, 0.02) 0px 6px 24px 0px, rgba(0, 0, 0, 0.2) 0px 0px 0px 1px; */
  width: max-content;

}

hr.new4 {
  border-top: 1px solid rgb(176, 176, 176);
  margin: 0 auto;
  width: 90%;
}

.nonwonen-title {
  text-align: center;
  padding: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* GOLF SECTION  */

.golf-section {
  margin-top: 5rem;
  height: 100vh;
  background-image: linear-gradient(to top, rgba(245, 246, 252, 0.52), rgba(24, 117, 19, 0.197)),
    url('Images/TUR07249.jpeg');
  ;
  background-position: center;
  background-size: cover;

}

.golf-text {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
}

.golf-little-title {
  display: flex;
  gap: 1rem;
  color: white;
  font-weight: 400;
  text-shadow: 1px 1px 0px black;
  font-family: 'apercu_prolight';
  padding-bottom: 15px;
}

.golf-main-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: white;
  text-shadow: 1px 1px 0px black;
  text-align: center;
  padding: 0 1rem 1rem 1rem;
}

.our-process {
  background-color: #47b749;
  margin: 0 auto;
  padding: 15px 20px;
  border-radius: 50px;
  width: max-content;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 200ms ease-in-out;
}

.our-process:hover {
  transform: scale(1.05);
}

/* COUNTER SECTION  */

.sectionClass {
  /* padding: 50px 0px; */
  position: relative;
  display: block;
}

.fullWidth {
  width: 90% !important;
  margin: 0 auto;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}


.sectiontitle {
  background-position: center;
  margin: 30px 0 0px;
  text-align: center;
  min-height: 20px;
}

.sectiontitle h2 {
  font-size: 30px;
  color: #222;
  margin-bottom: 0px;
  padding-right: 10px;
  padding-left: 10px;
}


.headerLine {
  width: 160px;
  height: 2px;
  display: inline-block;
  background: #101F2E;
}


.projectFactsWrap {
  display: flex;
  margin-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
  /* background: #47b749; */
}


#projectFacts .fullWidth {
  padding: 0;
}

.projectFactsWrap .item {
  width: 25%;
  height: 100%;
  padding: 50px 0px;
  text-align: center;
}

.projectFactsWrap .item p.number {
  font-size: clamp(2rem, 10vw, 8rem);
  padding: 0;
  font-weight: bold;
}

.projectFactsWrap .item p {
  color: rgba(0, 0, 0, 0.927);
  font-size: 18px;
  margin: 0;
  padding: 10px;
}


.projectFactsWrap .item span {
  width: 60px;
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  margin: 0 auto;
}


.projectFactsWrap .item i {
  vertical-align: middle;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
}


.projectFactsWrap .item:hover i, .projectFactsWrap .item:hover p {
  color: #47b749;
}

.projectFactsWrap .item:hover span {
  background: white;
}

@media (max-width: 786px) {
  .projectFactsWrap .item {
    flex: 0 0 50%;
  }
}

/* AUTHOR LINK */

.counter-title {
  font-size: 5rem;
  padding: 0 3rem;
  margin: 0;
}


.about-me-img {
  width: 120px;
  height: 120px;
  left: 10px;
  /* bottom: 30px; */
  position: relative;
  border-radius: 100px;
}


.about-me-img img {}


.authorWindow {
  width: 600px;
  background: #75439a;
  padding: 22px 20px 22px 20px;
  border-radius: 5px;
  overflow: hidden;
}

.authorWindowWrapper {
  display: none;
  left: 110px;
  top: 0;
  padding-left: 25px;
  position: absolute;
}

.trans {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media screen and (max-width: 768px) {
  .authorWindow {
    width: 210px;
  }

  .authorWindowWrapper {
    bottom: -170px;
    margin-bottom: 20px;
  }

  footer p {
    font-size: 14px;
  }
}


/* END COUNTER SECTION  */

/* BESPOKE SECTION  */

/* GOLF SECTION  */

.bespoke-section {
  margin-top: 5rem;
  height: 100vh;
  background-image: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.741) 26%, rgba(255, 255, 255, 0.8057598039215687) 62%, rgba(255, 255, 255, 1) 100%),
    url('Images/hq.jpeg');
  background-position: center;
  background-size: cover;
  padding: 0 2rem;
}

.bespoke-text {
  position: relative;
  top: 5%;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .bespoke-section {
    height: 50vh;
  }

  .bespoke-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.bespoke-little-title {
  display: flex;
  gap: 1rem;
  color: white;
  font-weight: 400;
  text-shadow: 1px 1px 0px black;
  font-family: 'apercu_prolight';
  padding-bottom: 15px;
}

.bespoke-main-title {
  font-size: clamp(2.5rem, 4vw, 5rem);
  color: black;
  /* text-shadow: 1px 1px 0px black; */
  text-align: center;
  padding: 0 1rem 1rem 1rem;
}

.bespoke-second-title {
  font-size: 1.3rem;
  text-align: center;
  color: rgb(73, 73, 73);
  padding: 0 1rem 1rem 1rem;
}

@media screen and (max-width: 768px) {
  .bespoke-second-title {
    color: white;
  }
}

.bespoke-process {
  background-color: white;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid black;
  width: max-content;
  color: black;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 200ms ease-in-out;
}

.bespoke-process:hover {
  transform: scale(1.05);
}

.bespoke-vl {
  border-left: 1px solid rgb(176, 176, 176);
  height: 15vh;
  position: absolute;
  left: 50%;
  /* box-shadow: rgba(0, 0, 0, 0.02) 0px 6px 24px 0px, rgba(0, 0, 0, 0.2) 0px 0px 0px 1px; */
  width: max-content;

}


/* END BESPOKE SECTION  */

/* SLIDESHOW CONTAINER  */

.slideshow-section {
  background-color: black;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.slideshow-section h3 {
  color: white;
  margin: 0;
  padding-bottom: 5rem;
  font-size: clamp(2.5rem, 3vw, 3rem);

}

.w3-content {
  margin-inline: auto;
}

.mySlides {
  width: 100%;
  height: 50vh;

}

.fade {
  animation-name: fade;
  animation-duration: 1s;
  /* Durata animației */
}

@keyframes fade {
  from {
    opacity: 0;
    /* Slide-ul de plecare este complet transparent */
  }

  to {
    opacity: 1;
    /* Slide-ul de destinație este complet vizibil */
  }
}

.w3-col {
  cursor: pointer;
  padding: 1rem;
  color: gray;
  border-top: 2px solid grey;
  margin-top: 3rem;
  transition: border-top 150ms ease-in-out;
}

.active {
  color: white;
  border-top: 3px solid white;

}

.w3-section {
  display: flex;
  width: 80%;
  margin: 0 auto;
  gap: 10px;
}

.slide-title {
  font-size: 1.3rem;
  padding-bottom: 0.75rem;
  font-family: 'futura_ptbook';
  letter-spacing: 1px;

}

.dots-container {
  text-align: center;
  display: none;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  margin: 1rem 0;
  margin-left: 10px;
}

.dot-active {
  background-color: white;
}

@media screen and (max-width: 768px) {

  .slideshow-section h3 {
    text-align: center;
    padding: 5rem 2rem;
  }

  .w3-col {
    display: none;
  }

  .dots-container {
    display: block;
  }

  .mySlides {
    height: 30vh;
  }

  .bw-video {
    height: 50vh;
  }
}

/* APPLY SECTION  */

.apply-partner {
  width: 80%;
  margin: 4rem auto;
  text-align: center;
}

.apply-partner h3 {
  font-size: clamp(49.5px, 4.6875vw, 99px);
  margin: 1rem 0;
}

.apply-partner p {
  font-size: 1.5rem;
}

.apply-button {
  padding: 10px 20px;
  background-color: #47b749;
  width: max-content;
  margin: 2rem auto;
  cursor: pointer;
  border-radius: 50px;
  border: none;
  outline: none;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: transform 200ms ease-in-out;
  font-size: 1.2rem;
}

.apply-button a{
  color: white;
  text-decoration: none;
}

.apply-button:hover {
  transform: scale(1.05);
}

/* FOOTER SECTION  */

/* FOOTER  */

footer {
  position: relative;
  background-color: #0b0d0e;
  padding: 4rem 0 2rem 0;
  /* margin-top: 10rem; */
}

.footer-links ul {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: transform 200ms ease-in-out;
}

.footer-links ul a{
  color: #dddddd;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links ul a:hover {
  transform: scale(1.02);
}

.hr-footer {
  width: 80%;
  border: none;
  height: 0.5px;
  background-color: rgba(255, 255, 255, 0.153);
  margin-top: 3rem;
}

.shape {
  position: absolute;
  width: 60%;
  height: 150px;
  top: -56.6px;
  background-color: #47b749;
  -webkit-clip-path: polygon(100% 0,
      93% 38%,
      85% 38%,
      69% 100%,
      75% 100%,
      0 100%,
      0 0);
  clip-path: polygon(100% 0, 93% 38%, 85% 38%, 69% 100%, 75% 100%, 0 100%, 0 0);
}

@media screen and (max-width: 600px) {
  .footer-links ul {
    flex-wrap: wrap;
    gap: 1rem;
    /* padding-left: 10%; */
  }

  .shape {
    top: -57.1px;
  }
}

/* BESPOKE PAGE  */

.bespoke-content {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.bespoke-content h1 {
  font-family: 'futura_ptlight';
  font-size: clamp(45px, 7vw, 80px);
  line-height: 1.1;
  padding-top: 5rem;
  margin: 0rem;
}

.bespoke-content p {
  /* color: #47b749; */
  font-size: 1.7rem;
}

.bespoke-second-section {
  padding: 1.5rem 3rem;
  background-color: #f1f1f155;
}

.bespoke-second-section-title {
  text-align: center;
  margin-top: 1rem;
  /* opacity: 20%; */
}

.bespoke-second-section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 5rem);
  /* margin: 0; */
  padding: 0;
}

.bespoke-second-section h3 {
  text-align: center;
  font-size: 1.8em;
  color: #47b749;
  font-family: 'futura_pt_light_italicregular';
}

/* MANUFACTURING PROCESS  */

.process-img-div {
  width: min(90%, 70rem);
  margin: 0 auto;
}

.process-img {
  width: 100%;
  margin: 2rem 0;
}



/* SUSTAINABILITY PAGE  */

/* PARALLAX IMAGE & ACTIVITY  */

.activity-title {
  text-align: center;
  font-size: 5rem;
  /* width: 80%; */
  margin: 4rem auto;
  white-space: normal;

}

.grid {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 40px;
  display: flex;
}

.block-33 {
  width: 33%;
  float: left;
  margin-top: 40px;
}

.gutter {
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
}

.sustain-img{
  height: 15rem;
}

.clear {
  clear: both;
  display: block;
}

.parallax-img {
  width: 100%;
}

.first-activity {
  border-left: 1px solid #47b749;
  border-bottom: 1px solid #47b749;
  padding: 10px;
}

.second-activity {
  border-top: 1px solid #47b749;
  border-left: 1px solid #47b749;
  padding: 10px;
}

.third-activity {
  border-right: 1px solid #47b749;
  border-bottom: 1px solid #47b749;
  padding: 10px;
}

.fourth-activity {
  border-top: 1px solid #47b749;
  border-right: 1px solid #47b749;
  padding: 10px;
}


.activity-text-flex {
  display: flex;
  justify-content: space-between;
  width: min(95%, 95rem);
  margin: 0 auto;
  gap: 3rem;
  font-size: 1.5rem;
  text-align: justify;
  color: rgb(73, 73, 73);
  line-height: 37px;
  padding: 0 20px;
}

.activity-text::first-letter {
  color: #47b749;
  margin-top: 0.7rem;
  font-size: 3em;
  /* Stabilește dimensiunea fontului pentru prima literă */
  float: left;
  /* Face ca prima literă să fie aliniată la stânga */
  margin-right: 5px;
  /* Creează un spațiu mic între prima literă și restul textului */
  line-height: 0.8;
  /* Ajustează înălțimea liniei pentru a îmbunătăți alinierea textului */
  vertical-align: top;
  /* Aliniere verticală la partea de sus a liniei */
}

@media screen and (max-width: 1100px) {
  .activity-title {
    font-size: 5vw;
    padding: 0 20px;
  }
}

@media screen and (max-width: 900px) {
  .grid {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .sustain-img{
    height: 100%;
  }


  .block-33 {
    width: 95%;
    margin: 0 auto;
  }

  .parallax-img {
    transform: none !important;
  }
}

@media screen and (max-width: 1100px) {
  .activity-title {
    font-size: 3rem;
    padding: 0 20px;
  }

  .activity-p {
    padding: 1rem 0;
  }

  .activity-text-flex {
    display: block;
    text-align: justify;
    width: 95%;
  }
}

.sustainability-second-section {
  margin-top: 2rem;
  padding: 2rem 3rem;
  background-color: #efefef60;
}

.sustainability-second-section-title {
  text-align: center;
  margin-top: 1rem;
  /* opacity: 20%; */
}

.sustainability-second-section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 5rem);
  /* margin: 0; */
  padding: 0;
}

.sustainability-second-section h3 {
  text-align: center;
  font-size: 1.8em;
  color: #47b749;
  font-family: 'futura_pt_light_italicregular';
}

/* CONTACT PAGE  */

.contact-title {
  text-align: center;
  font-weight: 300;
  font-size: 2rem;
  padding: 0;
  margin: 0;
  /* color: #003c95; */
  padding: 10px;
}

.contact-subtitle {
  text-align: center;
  color: gray;
  font-size: 1.2rem;
  padding: 1rem;
}

.contact-us p a{
  /* color: black; */
  text-decoration: none;
}

input[type="text"],
select,
textarea,
input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type="submit"] {
  background-color: #47b749;
  ;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  transform: translateY(3px);
}

.contact-form {
  border-radius: 5px;
  background-color: #e2e2e2;
  padding: 20px;
  width: min(550px + 10%, 600px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  /* border-top: 4px solid black; */
}

.contact-section {
  width: min(90%, 80rem);
  margin: 5rem auto;
  /* margin: 3rem auto; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0rem;
  padding: 1rem;
}



.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5rem;
}

.contact-info p:not(.contact-info-title) {
  text-align: center;
  font-size: 1.6rem;
}

.contact-info-title {
  font-weight: 400;
  text-align: center;
  font-size: 2.2rem;
  padding-bottom: 1rem;
  color: #47b749;
}


.contact-hr {
  width: 500px;
}

.contact-social-media {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 3rem;
}



@media (max-width: 850px) {
  .contact-section {
    flex-direction: column;
    width: 100%;
  }

  .contact-form, .google-maps {
    width: 95%;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.help-section {
  text-align: center;
  color: white;
  background-color: #47b749;
  padding: 30px 0;
  font-size: 1.3rem;
  font-weight: 500;
}

.help-section a {
  color: white;
}

@media (max-width: 500px) {
  .help-section p {
    padding: 0 20px;
  }
}

/* CARRER PAGE  */

.career-bg{
  background-image: linear-gradient(to top, rgba(245, 246, 252, 0.52), rgba(24, 117, 19, 0.197)), url(Images/TUR07259.jpeg);
  background-position: center;
  background-size: cover;


}

.carrer-grid {
  display: grid;
  gap: 52px;
  grid-template-columns: repeat(12, 1fr);
  padding: 0 44px;
  margin-top: 3rem;
}

.carrer-grid div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.carrer-grid div {
  position: relative;
  padding: 0 0 57%;
  border-radius: 14px;
  overflow: hidden;
  transform: translateZ(0);
}

.div1 {
  grid-column: 2 / span 5;
}

.div2 {
  grid-column: 7 / span 4;
  align-self: end;
}

.div3 {
  grid-column: 1 / span 4;
}

.div4 {
  grid-column: 5 / span 5;
}

.div5 {
  grid-column: 10 / span 3;
}

@media (max-width: 1200px) {

  .carrer-grid {
    gap: 18px;
    grid-template-columns: repeat(6, 1fr);
  }

  .div1 {
    grid-column: 1 / span 6;
  }

  .div2 {
    grid-column: 1 / span 3;
  }

  .div3 {
    grid-column: 4 / span 3;
  }

  .div4 {
    grid-column: 1 / span 3;
  }

  .div5 {
    grid-column: 4 / span 3;
  }
}

.applications-section{
  padding: 0 4rem;
  margin-top: 5rem;
}

.openings{
  display: flex;
  align-items: center;
  justify-content: space-between; 
  border-bottom: 1px solid #47b74947;
}

.openings h3{
  font-size: clamp(20.5px, 4.6875vw, 40px);
  margin: 10px 0;

}

.openings div {
  text-align: right;
}

.openings-btn{
  background-color: #47b749;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 200ms ease-in-out;
}

.openings-btn a{
  color: white;
  text-decoration: none;
}

.openings-btn:hover{
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .openings{
    flex-direction: column;
    gap: 5px;
    padding-bottom: 1rem;
  }

  .openings h3{
    text-align: center;
  }
}

.iso-logo{
  width: 20rem;
}

.iso-logo-section{
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 650px) {
.iso-logo-section{
  flex-direction: column;
}
}