/* 
========================
CSS RESET 
========================
*/

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

body {
  font-family: "poppins", sans-serif;
  overflow-x: hidden; /* for horizontal sliding animations */
  min-width: 340px;
}


/*
-----------------------------
Scrollbar CSS
-----------------------------
*/

/* Syling the scrollbar inside a media query to 
ensuring all mobile devices are excluded. */

@media (min-width: 769px) {
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: var(--brand-color) var(--light-grey)
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 12px !important;
    border-radius: 10px !important;
  }

  *::-webkit-scrollbar-track {
    background: var(--light-grey);
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--brand-color);
    border-radius: 10px;
    border: 2px solid var(--light-grey);
  }
}



/*
---------------------------------------
Cursor Selected Text for Light Sections
---------------------------------------
*/

::selection {
  color: var(--contrast-2);
  background: var(--brand-color);
}
::-moz-selection {
  /* For Firefox */
  color: var(--dark-green__text);
  background: var(--brand-color);
}

/* 
-------------------------------------
Cursor Slected Text for Dark Sections
-------------------------------------
*/

.replace ::selection {
color: var(--contrast-2);
background: var(--dark-green);
}
.replace ::-moz-selection {
/* For Firefox */
color: var(--contrast-2);
background: var(--dark-green);
}



/* 
------------------------------
Fixes 
------------------------------
*/

/* Stop Blue highlighting on click on touch devices */

a,
.menu-icon,
.menu-icon__2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a:focus,
.menu-icon:focus,
.menu-icon__2:focus {
  outline: none !important;
}


/* Avoid overflow on iPhone SE*/

html {
  -webkit-text-size-adjust: none;
}




/* 
============================
GENERAL STYLES
============================
*/

/* Colours ---------------- */

:root {
  --brand-color: #008264;
  --contrast-1: #88ecad;
  --contrast-2: #b5ffce;
  --dark-green: #00694a;
  --light-green-1: #94c9b2;
  --light-grey: #f2f3f6;
}

.bg-light-grey {
  background: var(--light-grey);
}

.bg-dark-grey {
  background: var(--dark-grey);
}

.bg-white {
  background: white;
}


/* Containers ---------------------- */

.page-header {
  width: 100%;
  height: clamp( 500px, 70vh, 70vh);
  color: white;
  background: var(--brand-color) url("../images/bg-lsf-frame-01b.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  position:relative;
  display: flex;
  align-items: center;
  padding-top: 50px;
}

.page-header__divider {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  fill: var(--light-grey);
  /* prevent bottom gap */
  margin-bottom: -2px;
}

.page-header__divider--white {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  fill: white;
  /* prevent bottom gap */
  margin-bottom: -2px;
}

.hero-divider {
  display: block;
  width: 100%;
  height: auto;
  fill: var(--light-grey);
  /* prevent bottom gap */
  margin-bottom: -2px;
}


/* ------ */

.basic-section {
  width: 100%;
  height: auto;
  padding: 150px 0;
}
@media (max-width: 450px) {
  .basic-section {
    padding: 100px 0;
  }
}

/* IMPORTANT: prevent any gaps;
make sections expand vertically overlaping eichother,
thus eliminating unwanted gaps in some devices, such as iPad.*/
.basic-section,
.services__top-section {
  transform-origin: 0 100%;
  transform: scaleY(1.002);
  overflow: hidden;
}
  

.basic-container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  height: auto;
}

/* ------ */

.basic-container__columns {
  display: flex;
  row-gap: 30px;
  column-gap: clamp( 20px, 10vh, 120px);
  padding-top: 30px;
}

.basic-column {
  flex: 1;
}

@media (max-width: 1000px) {
  .basic-container__columns {
      flex-direction: column;
  }
}


/* CTA at the bottom -----------  */

.cta-end-page {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 100px 0;
  background: var(--dark-grey);
}



/* 
-------------------------------
Fonts Default 
------------------------------- 
*/

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

h1.page-name {
  font-weight: 600;
  font-size: clamp(70px, 6vw, 100px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgb(150, 255, 202);
  margin: 0;
  padding: 0 0 35px 0;
  /* animation */
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: opacity 1s, transform 0.8s;
}
h1.page-name.animate {
  opacity: 0.4;
  transform: translateY(0) scale(1);
}

h2 {
  font-weight: 600;
  font-size: clamp(45px, 3.3vw, 55px);
  letter-spacing: -2.5px;
  color: var(--brand-color);
  line-height: 100%;
  margin-bottom: 50px;
}
h2 span {
  font-weight: 200 !important;
  letter-spacing: -2px;
  font-size: clamp(40px, 3.2vw, 50px);
}

h3 {
  font-weight: 500;
  font-size: clamp(33px, 2vw, 45px);
  letter-spacing: -1.5px;
  color: var(--brand-color);
  line-height: 1.1;
  padding-bottom: 20px;
}
h3 span {
  font-weight: 200;
}

.basic-column h3 {
  text-align: center;
}

.paragraph__size-1 p {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.2;
}

.paragraph__size-2 p {
  font-weight: 300;
  font-size: clamp(18px, 1.1vw, 20px);
  line-height: 1.5;
  margin-bottom: 20px;
}

.paragraph__size-3 p {
  font-size: clamp(20px, 1.6vw, 30px);
  font-weight: 300;
  line-height: 1.4;
}


/* Long Texts ---------- */

.long-text h3 {
  font-weight: 500;
  font-size: clamp(30px, 2vw, 40px);
  letter-spacing: -1.5px;
  color: var(--brand-color);
  line-height: 1.1;
  padding-top: 30px;
  padding-bottom: 20px;
}
.long-text p {
  margin-bottom: 20px;
  line-height: 1.3;
}
.long-text ul {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.2;
  list-style-position: inside;
  padding-left: 0;
  list-style-type: disc;
}
.long-text li {
  text-indent: -22px;
  padding-left: 40px;
  margin-bottom: 20px;
}
.long-text strong {
  font-weight: 600;
  color: var(--brand-color);
}

/* basic links ---------- */

.basic-link a:link {
  color: inherit;
  text-decoration: none;
}
.basic-link a:visited {
  color: inherit;
  text-decoration: none;
}
.basic-link a:hover {
  color: inherit;
  text-decoration: underline;
}
.basic-link a:active {
  color: inherit;
  text-decoration: underline;
}


/* 
---------------------------
Break Words 
---------------------------
*/

/* For Narrow Containers */

.basic-container__columns {
  word-wrap: break-word;

  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;

  -webkit-hyphenate-limit-before: 3; /* For Safari */
  -webkit-hyphenate-limit-after: 4; /* For Safari */
  -ms-hyphenate-limit-chars: 10 3 4;
  hyphenate-limit-chars: 10 3 4;
}

/* For Small Screens (all text) */

@media screen and (max-width: 700px) {
  body {
    word-wrap: break-word;
    hyphens: auto;
  }
  .overlay ul {  /* for the overlay menu otherwhise performane is compromized */
    word-wrap: normal;
    hyphens: none;
  }
}



/* 
----------------------
ICONS
---------------------- 
*/

.icon__default {
  fill: #96c8b4;
  width: 80%;
  max-width: 120px;
  display: block;
  margin: auto;
  padding-bottom: 20px;
}



/* 
----------------------
BUTTON
---------------------- 
*/


.button__dark {
  background-color: var(--brand-color);
  color: white;
  border: none;
  text-decoration: none;
  font-weight: 400;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 25px 35px;
  cursor: pointer;
  transition: all .25s ease-in-out !important;
  position: relative;
  overflow: hidden;
}
.button__dark:hover {
  background-color: #017257;
  border-radius: 100px;
}

.button__dark span {
  font-size: 22px;
  position: absolute;
  right: 15px;
  top: 35%;
  transform: translateX(-150%);
  opacity: 0;
  transition: opacity 0.3s, transform 0.5s;
}
.button__dark:hover span {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1100px) {
  .button__dark {
    font-size: 16px;
    padding: 22px 30px;
  }
  .button__dark span {
    right: 12px;
    top: 32.73%;
  }
}
@media (max-width: 950px) {
  .button__dark {
    font-size: 14px;
    padding: 20px 25px;
  }
  .button__dark span {
    right: 9px;
    top: 32.25%;
    font-size: 20px;
  }
}




/* 
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
MENU BIG
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/

/* Container */

header.menu-big {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  box-sizing: border-box;
  padding: 20px;
  z-index: 99;
}

/* Logo */

.logo {
  width: 70vw;
  max-width: 300px;
  height: auto;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.logo:hover {
  transform: scale(0.90); /* Decrease size by 10% */
}

/* Header__Quote-Button */

.header__quote-button {
  background-color: var(--contrast-1);
  color: var(--dark-green);
  text-align: center;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 999px;
  padding: 12px 25px;
  display: inline-block;
  cursor: pointer;
  transition: all .1s ease-out;
}

.header__quote-button:hover {
  padding: 16px 25px;
  background-color: var(--contrast-2);
}


/* menu */

.menu-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.menu__list {
  --color-underline: var(--contrast-1);
  --underline-width: 0;
  --underline-offset-x: 0;
  position: relative;
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu__list::before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  height: 3px;
  width: var(--underline-width);
  transform: translateX(var(--underline-offset-x));
  background-color: var(--color-underline);
  transition: transform 0.5s, width 0.5s;
}

.menu__link {
  display: block;
  padding: 0.5rem 1.65vw;
  color: white;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .1rem;
}


@media screen and (max-width: 1200px) {
  .header__quote-button span {
      display: none;
  }
}

@media screen and (max-width: 1150px) {
  .header__quote-button {
      display: none;
  }
}

@media (max-width: 900px) {
  .menu-container {
      display: none;
  }
  .logo {
    width: 250px;
    height: auto;
    position: absolute;
    top: 15px;
    left: 10px;
  }
}






/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
MENU-SMALL | BIG SCREENS (logo-icon, menu-icon, backtotop-icon)
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/

/* Logo-Icon --------------------------- */

.logo-icon {
  position: fixed;
  width: 52px;
  height: auto;
  left: 15px;
  top: 15px;
  z-index: 9;
}

/* Menu-Icon --------------------------- */

.menu-icon {
  position: fixed;
  display: inline-block;
  cursor: pointer;
  right: 15px;
  top: 10px;
  padding: 5px;
  z-index: 9;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: var(--brand-color);
  margin: 6px 0;
  transition: 0.2s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
  background-color: white !important;
}
.change .bar2 {
  opacity: 0;
  background-color: white !important;
}
.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
  background-color: white !important;
}

/* Menu Content Slide Overlay ---------------------- */

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 8;
  top: 0;
  right: 0;
  background-color: #006144ef;
  overflow-x: hidden;
  transition: 0.5s;
  display: flex;
  justify-content: right;
  align-items: center;
}

.overlay ul {
  list-style: none;
  padding: 0 0 0 7vw;
  position: relative;
  top: 0;
  width: 100%;
  text-align: left;
  margin-top: 30px;
}


.overlay li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.555);
  transition: 0.5s;
}

.overlay li:hover {
  box-shadow: 0 4px #ffffff;
  transition: 0.4s ease-out;
}

.overlay a {
  display: block;
  padding: 3vh 8px;
  text-decoration: none;
  font-size: 36px;
  color: #fff;
  transition: 0.5s ease-in-out;
  font-family: "poppins", sans-serif;
}

.overlay a:hover,
.overlay a:focus {
  letter-spacing: 3px;
}

/* Back to top icon --------------------------  */

.backtotop-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  z-index: 3;
  transition: transform 0.5s ease;
}

.arrow-head {
  border: solid var(--brand-color);
  border-width: 4px 4px 0 0;
  display: inline-block;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  padding: 10px;
  position: absolute;
}
.arrow-line {
  width: 4px;
  height: 25px;
  background: var(--brand-color);
  margin-left: 10px;
  position: absolute;
}


/* Opacity (for page entrance) */

.logo-icon,
.menu-icon,
.backtotop-icon {
  opacity: 0;
  transition: opacity 1s, transform 1s ease-in-out;
  transform: translateX(0px);
}

/* Responsive Styles */

@media (max-width: 1400px) {
  .logo-icon {
    display: none;
  }
}
@media (max-width: 1370px) {
  .backtotop-icon {
    display: none;
  }
}
@media (max-width: 1370px) {
  .menu-icon {
    display: none;
  }
}

/*
---------------------------------
MENU SMALL | SMALL SCREENS (Logo & Menu Icon)
---------------------------------
*/

.menu-icon__2 {
  display: none;
}

@media (max-width: 900px) {
  .hero-section {
    position: relative;
  }
  .menu-icon__2 {
    display: block;
    position: absolute;
    top: 19px;
    right: 10px;
    padding: 5px;
    z-index: 9;
    cursor: pointer;
  }
  .bar1, .bar2, .bar3 {
    background-color: white !important;
  }
  .logo {
    top: 13px;
    left: 6px;
  }
}



/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
HOMEPAGE 
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/

/* 
===========================
Homepage - HERO
===========================
*/

.hero-section {
  position: relative;
  width: 100%;
}

video {
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -1;
  margin: 0;
  padding: 0;
}

.video-overlay {
  width: 100%;
  height: auto;
  /* Wrapper acomodates divider at the bottom */
  background: rgba(0, 141, 108, 0.8);
  /* Adds overlaying colour to video */
  margin: 0;
  padding: 0;
}

.hero-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-contents {
  width: 95%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 100px;
}

.hero-column-left {
  width: 45%;
  box-sizing: border-box;
  text-align: left;
  padding-left: 50px;
}

.hero-column-right {
  width: 55%;
  box-sizing: border-box;
  text-align: center;
}

.hero-icons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero Icons ------------------ */
.hero-icon {
  width: clamp(70px, 12vw, 160px); ;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

}

/* Gap between icons */

.hero-icon:nth-child(2) {
  margin: clamp(40px, 5vw, 100px); 
}

/*Icons Reanimation whenver they enter the viewport*/
/* this class will be removed via JS */

.hide-animated-icon {
  opacity: 0;
  transition: opacity 0.1s ease;
}




/* Responsive styles */

@media (max-width: 1200px) {
  .hero-column-left {
    padding: 0;
  }
}

@media screen and (max-width: 800px) {
  .hero-contents {
    flex-direction: column;
  }
  .hero-icons-container {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
  }
  .hero-column-left {
    width: 60%;
    box-sizing: border-box;
    text-align: left;
  }
  .hero-column-right {
    width: 40%;
    box-sizing: border-box;
    text-align: center;
  }
}

@media screen and (max-width: 560px) {
  .hero-column-left {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .hero-column-right {
    display: none;
  }
}


/* Fontes -------------------------- */

.hero-contents h1 {
  font-weight: 600;
  font-size: clamp(50px, 6vw, 90px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgb(255, 255, 255);
  margin: 0;
  text-shadow: 0px 0px 5px rgba(53, 79, 73, 0.32);
  /* breack words */
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
}

.hero-contents h1 span {
  font-weight: 200;
  letter-spacing: -0.02em;
  display: block;
}

.hero-contents p {
  font-weight: 400;
  letter-spacing: 1px;
  font-size: clamp(12px, 2vw, 25px);
  color: white;
  margin-top: 20px;
  word-break: unset !important;
  word-wrap: unset !important;
  word-break: keep-all !important;
  white-space: nowrap;
}


/* Arrow pointing down ------------------ */

.arrow-down__container {
  position: absolute;
  top: 97vh;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  animation: bounce 2s infinite ease-in-out;
}

.arrow-down {
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 10px;
}

.turn-down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width:900px) {
  .arrow-down {
    display: none;
  }
}






/*
================================
HomePage - SOBRE NÓS
================================
*/

.about-us-intro__section {
  margin-top: -1px; /* for safty reasons */
  background-color: var(--light-grey);
}

.about-us-intro__section h2 {
  margin-bottom: 40px;
}

.about-us-intro__container {
  display: flex;
}

.about-us-intro__col:first-child {
  width: 20%;
}

.about-us-intro__col:last-child {
  width: 80%;
  padding-left: 3vw;
}

.about-us-intro__logo {
  fill: var(--brand-color);
}


@media (max-width: 600px) {
  .about-us-intro__col:first-child {
    display: none;
  }

  .about-us-intro__col:last-child {
    width: 100%;
    padding-left: 0;
  }
}






/*
================================
Homepage - LSF-VANTAGENS
================================
*/

.lsf-vantagens-intro {
  background: var(--brand-color) url("../images/bg-lsf-frame-01b.jpg");
  color: white;
}
@media (max-width: 1000px) {
  .lsf-vantagens-intro {
    display: none;
  }
}

.vantag-intro__container {
  display: flex;
  width: 100%;
  padding: 50px 0; /* some extra space */
}

.vantag-intro__list {
  list-style: none;
  width: 400px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

li.vantag-intro__tab {
  display: block;
  cursor: pointer;
  padding: 10px 0;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: white;
  transition: all 0.4s ease-out;
}

/* On hover */
.vantag-intro__tab:hover {
  color: var(--contrast-1);
}

.vantag-intro__tab span {
  display: inline-block;
  opacity: 1;
  transform: translateX(-100%);
  margin: 0 0 0 12px;
  transition: opacity 0.2s, transform 0.5s;
}

/* On hover */
.vantag-intro__tab:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* Avtive state */
.vantag-intro__tab.active {
  color: var(--contrast-1);
  font-size: 35px;
  font-weight: 500;
}

.vantag-intro__tab.active span {
  display: none;
}

.vantag-intro__content-area {
  flex-grow: 1;
  position: relative;
}

.vantag-intro__content {
  position: absolute;
  top: 100px;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Fonts */

h2.vantag-intro__header {
  color: var(--contrast-1);
  padding-bottom: 40px;
  display: inline-block;
}
h2.vantag-intro__header:hover {
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.vantag-intro__content h3 {
  font-size: clamp(50px, 3.2vw, 3.2vw);
  font-weight: 500;
  line-height: 1;
  color: white;
}

.vantag-intro__content h4 {
  font-size: 40px;
  font-weight: 400;
  color: white;
  margin: 0;
  padding-bottom: 15px;
}

.vantag-intro__content p {
  color: white;
}


/*
----------------------------------------
Homepage - LSF VANTAGENS - SMALL SCREENS 
----------------------------------------
*/

.lsf-vantagens-intro__mobile-version {
  background: var(--brand-color);
  display: none;
}
@media (max-width: 1000px) {
  .lsf-vantagens-intro__mobile-version {
    display: block;
  }
}

.lsf-accordion hr {
  border: none;
  height: 1px;
  background-color: var(--contrast-1);
  margin: 0;
  border: none;
}

.lsf-accordion h2 {
  color: white;
  margin: 0;
}
.lsf-accordion h2 span{
  display: block; 
}

.accordion-toggle h3 {
  display: block;
  margin: 0;
  padding: 0;
  color: white;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
}

/* ACORDION ================*/

.accordion-toggle {
  display: block;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  padding: 15px 15px 15px 40px;
}

.accordion-toggle:hover,
.accordion-toggle.focus {
  background-color: var(--dark-green);
}

.accordion-toggle.open {
  background-color: var(--dark-green);
  color: var(--contrast-1);
}

.accordion-toggle:hover h3,
.accordion-toggle.focus h3,
.accordion-toggle.open h3 {
  color: var(--contrast-1);
}

.accordion-toggle .svg-icon {
  position: absolute;
  left: 15px;
  top: 25px;
}

.accordion-toggle .svg-icon .svg-arrow {
  display: inline-block;
  transition: transform .3s ease; 
  width: 16px;
  height: 16px;
  fill: var(--contrast-1)
}

.accordion-toggle.open .svg-icon .svg-arrow {
  transform: rotate(450deg); 
}
.accordion-content {
  display: none;
  padding: 0 15px 15px 40px;
  background-color: var(--dark-green);
  color: white;
}
.accordion-content.default {
  display: block;
}






/*
================================
Homepage - SLIDESHOW
================================
*/

.slideshow {
  width: 100%;
  height: 100vh;
  background: black;
  position: relative;
}

.pic-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  
  /* Animation */
  
  animation: slideShow 24s linear infinite 0s;
  -o-animation: slideShow 24s linear infinite 0s;
  -moz-animation: slideShow 24s linear infinite 0s;
  -webkit-animation: slideShow 24s linear infinite 0s;
}

/* Color Overlay */
figure {
  box-shadow: inset 0 0 0 99999px rgba(0, 129, 98, 0.5);
}

/* Text */

.slideshow__text {
  position: absolute;
  width: 90%;
  max-width: 1200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 3;
}
.slideshow__text h2 {
  color: white;
  text-shadow: 0px 0px 6px rgba(18,49,36,0.44);
}

 /* Pictures */

.pic-1 {
  opacity: 1;
  background: url("../images/house-exterior_01.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.pic-2 {
  animation-delay: 6s;
  -o-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -webkit-animation-delay: 6s;
  background: url("../images/house-interior_01.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.pic-3 {
  animation-delay: 12s;
  -o-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -webkit-animation-delay: 12s;
  background: url("../images/house-interior_02.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.pic-4 {
  animation-delay: 18s;
  -o-animation-delay: 18s; /* For Opera */
  -moz-animation-delay: 18s; /* For Firefox */
  -webkit-animation-delay: 18s; /* For Chrome and Safari */
  background: url("../images/house-interior_03.jpg") no-repeat center center;
  -webkit-background-size: cover; /* For Chrome and Safari */
  -moz-background-size: cover; /* For Firefox */
  -o-background-size: cover; /* For Opera */
  background-size: cover;
}

/* keyframes */

@keyframes slideShow {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  5%, 25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@-o-keyframes slideShow {
  0%, 100% {
    opacity: 0;
    -o-transform: scale(1);
  }
  5%, 25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -o-transform: scale(1.5);
  }
}

@-moz-keyframes slideShow {
  0%, 100% {
    opacity: 0;
    -moz-transform: scale(1);
  }
  5%, 25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}

@-webkit-keyframes slideShow {
  0%, 100% {
    opacity: 0;
    -webkit-transform: scale(1);
  }
  5%, 25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}




/*
================================
Homepage - CTA ILLUSTRATION
================================
*/

.cta-illustration__section {
  background: white;
}

.cta-illustration__container {
  height: 48vw;
  max-height: 610px;
  background-image: url("../images/animation-flag.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

.cta-illustration__container h2 {
    font-size: clamp(40px, 6vw, 77px); /* set to take always 100% width */
    margin-bottom: 30px;
}

.cta-illustration__container p {
  float: left;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -1px;
  color: black;
}

.cta-illustration__button {
  float: right;
}


/*
-------------------------------------------
Homepage - CTA ILLUSTRATION - SMALL SCREENS
-------------------------------------------
*/

.cta-illustration__container img {
  width: 100%;
  height: auto;
  display: none;
}

@media (max-width: 750px) {

  .cta-illustration__container {
    height: auto;
    background-image: none;
  }

  .cta-illustration__container img {
    display: block;
  }

  .cta-illustration__button {
    float: none;
  }

  .cta-illustration__container h2 {
    font-size: clamp(40px, 6vw, 77px);
    /* set to take always 100% width */
    margin-bottom: 0;
    padding-top: 20px;
  }

  .cta-illustration__container p {
    float: none;
    padding: 15px 0 25px 0;
  }
  
}







/*
==============================
Homepage - HIGHLIGHTS
==============================
*/

.highlights__row {
  display: flex;
  width: 100%;
  height: auto;
  background-color: var(--light-grey);
}

.highlights__col {
  flex: 1;
  padding: 5vw;
}
.highlights__col--1 {
  flex: 1;
  padding: 7vw 5vw;
}
.experiencia__img {
  background: #ccc url("../images/expertize.jpg") no-repeat bottom right;
  background-size: cover;
  background-position: center right;
}
.pessoas-e-ambiente__img {
  background: #ccc url("../images/pessoas-e-ambiente.jpg") no-repeat bottom right;
  background-size: cover;
  background-position: center right;
}
.qualidade__img {
  background: #ccc url("../images/quality.jpg") no-repeat bottom right;
  background-size: cover;
  background-position: center right;
}

.highlights h2 {
  margin-bottom: 30px;
}


@media (max-width: 1650px) {
  .highlights__col {
    flex: 1;
    padding: 5vw 5vw 5vw 5%;
  }
}

@media (max-width: 1300px) {
  .pessoas-e-ambiente__img {
    background-position: 75% 50%;
  }
  .qualidade__img {
    background-position: center;
  }
}

@media (max-width: 600px) {
  .experiencia__img {
    background-position: center center;
  }
  .pessoas-e-ambiente__img {
    background-position: center center;
  }
}









/*
---------------------------------------
Homepage - HIGHLIGHTS -  SMALL SCREENS
---------------------------------------
*/

@media (max-width: 900px) {
  .highlights__row {
    display: flex;
    flex-direction: column;
  }
  .experiencia__img, .pessoas-e-ambiente__img, .qualidade__img {
    min-height: 600px;
  }
  .highlights__col, .highlights__col--1 {
    padding: 30px 2.5% 50px 2.5% !important;
  }
  .pessoas-e-ambiente__img {
    order: -1; /* comes first */
  }
  .highlights__col--middle-text {
    order: 1; /* comes after */
  }
}






/*
================================
Homepage - PROCESSO
================================
*/

.process__row {
  display: flex;
  width: 100%;
  height: auto;
  column-gap: 30px;
}

.process__col {
  flex: 1;
}

.process__col:first-child {
  max-width: 45%; 
}
.process__col:last-child {
  max-width: 55%;
}
@media (max-width: 1600px) {
  .process__col:first-child {
    max-width: 37%; 
  }
  .process__col:last-child {
    max-width: 63%;
  }
}

.process-illustration {
  background-image: url("../images/illustration_process.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.process__content {
  height: auto;
  position: relative;
}

/* Fonts */

.process__content h2 {
  margin-bottom: 70px;
}

.process__content h3 {
  padding-left: clamp(85px, 6.5vw, 6.5vw); /* for the numbers */
  padding-bottom: 10px;
}

.process__content p {
  padding-left: clamp(85px, 6.5vw, 6.5vw); /* for the numbers */
  padding-bottom: 5vw;
  overflow-wrap: break-word;
}
.process__content:last-child p {
  padding-bottom: 0;
}

/* numbers */

.process__content span { 
  float: left;
  font-size: clamp(50px, 4vw, 4vw);
  font-weight: 600;
  color: var(--light-green-1);
  letter-spacing: -2px;
}

/* lines */

.process__content hr {
  position: absolute;
  left: clamp(30px, 2.5vw, 2.5vw);
  bottom: 0;
  width: 0;
  border-left: 1px solid var(--light-green-1);
  height: calc(100% - 4vw);
}

@media (max-width: 1200px) {
  .process__content hr {
    height: calc(100% - 50px);
  }
}


/*
------------------------------------
Homepage - PROCESS *** SMALL SCREENS
------------------------------------
*/

.process-illustration img {
  display: none;
}

@media (max-width: 700px) {

  .process-illustration img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 60px;
  }

  .process-illustration {
    background-image: none;
  }

  .process__row {
    display: flex;
    flex-direction: column;
  }

  .process__col:first-child,
  .process__col:last-child {
    width: 100%;
    max-width: 100%;
  }

  /* numbers */
  .process__content span {
    font-size: 40px;
  }

  /* lines */
  .process__content hr {
    position: absolute;
    left: 25px;
    bottom: 0;
    width: 0;
    border-left: 1px solid #abd4cc;
    height: calc(100% - 40px);
  }

  /* Fonts */
  .process__content h3 {
    padding-left: 60px;
  }

  .process__content p {
    padding-left: 60px;
  }
}








/*
================================
Homepage - PORQUÊ NÓS
================================
*/

/* Nothing to see here */








/*
============================
Homepage - PROJECTO
============================
*/

.project-container {
  display: flex;
  gap: 5vw;
  margin: 0 auto;
  height: auto;
  min-height: 70vh;
}

.proj-col-left {
  flex: 30%;
  background-image: url("../images/illustration_project.png");
  background-size: contain;
  background-repeat: no-repeat
}

.proj-col-right {
  flex: 70%;
}

.project-container h2 {
  padding-bottom: 10px;
  margin: 0;
}

.project-container hr {
  border: 0;
  border-bottom: 1px solid var(--brand-color);
  margin: 30px 0 25px 0;
}


/*
-------------------------------------
Homepage - PROJECTO *** SMALL SCREENS
-------------------------------------
*/

.proj-col-left img {
  display: none;
}

@media (max-width: 700px) {
  .project-container {
      flex-direction: column;
  }
  .proj-col-left {
    flex: 100%;
    background-image: none;
    height: auto;
  }
  .proj-col-left img {
    display: block;
    width: 100%;
    height: auto;
  }
  .proj-col-right {
    flex: 100%;
  }
}







/*
=============================
Homepage - CLIENT 
=============================
*/


:root {
  --bg-position: -14vw; /* Initial background position */
}

/* This is a replacement for the animation bellow
.client__section {
  width: 100%;
  height: auto;
  background: var(--brand-color);
  background-image: url("../images/illustration_client.png");
  background-repeat: no-repeat;
  background-size: auto 140%;
  background-position: var(--bg-position) center;
}
*/

/* Animation (this is removable) */

.client__section {
  width: 100%;
  height: auto;
  position: relative;  /* This is important for positioning of pseudo-element */
  background: var(--brand-color);
  overflow: hidden;   /* To ensure pseudo-element doesn't overflow the container */
}

.client__section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1; /* Ensure the background image stays behind the content */
  
  background-image: url("../images/illustration_client.png");
  background-repeat: no-repeat;
  background-size: auto 140%;
  background-position: var(--bg-position) center;

  opacity: 0;
  transform: scale(0.90);
  transition: opacity 2.5s, transform 2.5s;
}

.client__section.animate::before {
  opacity: 1;
  transform: scale(1);
}

.client__container {
  margin: 0 auto;
  width: 95%;
  max-width: 1350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 700px;
  padding-left: 550px;
  position: relative;  /* Added this to give z-index a meaning */ 
  z-index: 2; /* This ensures the content stays above the background image */
}

/* // end of animation */


.client__container {
  margin: 0 auto;
  width: 95%;
  max-width: 1350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 700px;
  padding-left: 550px;
}

.client__container h2 {
  margin-bottom: 20px;
}

.client__container h2, 
.client__container p {
  color: white;
}

@media (max-width: 1800px) {
  :root {
    --bg-position: -20vw; 
  }
}
@media (max-width: 1650px) {
  :root {
    --bg-position: -25vw; 
  }
  .client__container {
    height: 650px;
    max-width: 1250px;
    padding-left: 500px;
  }
}
@media (max-width: 1500px) {
  :root {
    --bg-position: -25vw; 
  }
  .client__container {
    height: 650px;
    max-width: 1250px;
    padding-left: 500px;
  }
  .client__section {
    background-size: auto 130%;
  }
}

@media (max-width: 1450px) {
  :root {
    --bg-position: -27vw; 
  }
  .client__container {
    height: 600px;
    max-width: 1200px;
    padding-left: 450px;
  }
}

@media (max-width: 1350px) {
  :root {
    --bg-position: -30vw; 
  }
  .client__container {
    height: 600px;
    max-width: 1200px;
  }
}

@media (max-width: 1300px) {
  :root {
    --bg-position: -33vw; 
  }
}

@media (max-width: 1250px) {
  :root {
    --bg-position: -35vw; 
  }
}

@media (max-width: 1150px) {
  :root {
    --bg-position: -38vw; 
  }
}

@media (max-width: 1050px) {
  .client__section::before {
    background-size: auto 130%;
  }
}

@media (max-width: 950px) {
  :root {
    --bg-position: -43vw; 
  }
}
@media (max-width: 850px) {
  :root {
    --bg-position: -47vw; 
  }
}

@media (max-width: 800px) {
  :root {
    --bg-position: -47vw; 
  }
  .client__section::before {
    background-size: auto 120%;
  }
  .client__container {
    padding-left: 400px;
  }
}

/*
-----------------------------------
Homepage - CLIENT *** SMALL SCREENS
-----------------------------------
*/

.client__container img{
  display: none;
}

@media (max-width: 750px) {
  .client__section::before {
    content: none;
  }
  .client__container img{
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 40px auto;
  }
  .client__container {
    width: 95%;
    display: block;
    height: auto;
    padding-left: 0;
    margin: 150px auto;
  }
}






/*
=====================
Home-Page - REVIEWS
=====================
*/

/* containers -------- */

.reviews-section {
  width: 100%;
  height: auto;
  background: white;
  padding: 180px 0 80px 0;
}

.reviews-wrapper { 
  position: relative;
  width: 100%;
  max-width: 1450px; /* makes room for arrows */
  height: auto;
  margin: 0 auto;
  padding-bottom: 100px; /* makes room for pagination */
}

.reviews-container {
  overflow-x: hidden;
  cursor: grab;
}

.swiper-container {
  width: 100%;
  height: auto;
}
@media (max-width: 1350px) { /* makes room for arrows */
  .swiper-slide {
  padding: 0 40px;
  }
}
@media (max-width: 1000px) { /* makes room for arrows */
  .swiper-slide {
  padding: 0 50px;
  }
}



/* Navegation Colours */
:root {
  --swiper-navigation-color: var(--brand-color);
  --swiper-pagination-color: var(--brand-color);
}

/* Contents -------- */

.swiper-slide hr {
  width: 100%;
  height: 2px;
  background: var(--brand-color);
  border: none;
  margin: 25px 0 10px 0;
}

/* Stars */
svg.stars {
  width: 170px;
  height: auto;
  fill: var(--brand-color);
  margin-bottom: 15px;
}

.swiper-slide img {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background: var(--brand-color);
  float: left;
}

/* Fonts */

.swiper-slide p.name {
  font-weight: 500;
  float: left;
  padding: 20px;
}





/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
LSF PAGE
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
/*

/*
===========================
LSF-Page - WHAT IS LSF
===========================
*/

/* Nothing to see here */


/*
=================================
LSF Page - VANTAGENS & APLICAÇÕES
=================================
*/

.lsf__aplications__section {
  background-color: var(--light-grey);
}

/* Columns container */
.lsf-pag__col-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

/* Column LEFT */
.lsf-pag__left-col {
  flex: 0 0 100px;
  /* Ensures the width doesn't shrink less than 50px */
  font-weight: 700;
}
/* Column RIGHT */
.lsf-pag__right-col {
  flex: 1;
  /* Allows this div to take up the remaining space */
}


/* FONTS */
.lsf-pag__col-container h3 {
  padding: 0;
}
.lsf-pag__left-col {
  font-weight: 700;
  font-size: 60px;
  color: var(--light-green-1);
  letter-spacing: -2px;
}

/* ICONS */

.lsf-pag__icon {
  fill: var(--light-green-1);
  width: 80%;
  max-width: 100px;
  height: auto;
  display: block;
}

@media (max-width: 700px) {
  .lsf-pag__left-col, .lsf-pag__right-col {
      /* On smaller screens, both columns go full width, stacking on top of each other */
      flex-basis: 100%;
  }
  .lsf-pag__icon {
    width: 70px;
    margin: 2px 2px 5px 2px;
  }
}






/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
SERVICES PAGE
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/


/*
===========================
Servies Page - MAIN TEXT 
===========================
*/

.services__top-section {
  background: white;
  width: 100%;
  height: auto;
  margin-top: 150px;
}
.services__top-section h2 span {
  display: block;
  padding-top: 20px;
}

/*
===========================
Services Page - HIGHLIGHTS
===========================
*/

.services-highlights__section {
  margin: 100px 0 150px 0;
}

.services-highlights__row {
  display: flex;
  height: auto;
  align-items: center;
  margin: 0 auto;
}

.services-highlights__row--padding { /* in middle section to create space between the 3 highlight sections*/
  padding: 50px 0;
}

.services-highlights__row img {
  height: auto;
  width: 100%;
}

.services-highlights__col,
.services-highlights__col--b,
.services-highlights__col--c {
  flex: 1;
}

.services-highlights__col img {
  float: right;
}
.services-highlights__col--b {
  text-align: right;
}
.services-highlights__col--c img {
  float: left;
}

/*text padding*/
.services-highlights__col h2,
.services-highlights__col p {
  margin-left: 4vw;
}
.services-highlights__col--b h2,
.services-highlights__col--b p {
  margin-right: 4vw;
}

.services-highlights__col--b {
  text-align: right;
}

.services-highlights__col h2,
.services-highlights__col--b h2 {
  margin-bottom: 25px;
}


/*
---------------------------------------------
Services Page - HIGHLIGHTS ***  SMALL SCREENS
---------------------------------------------
*/

@media (max-width: 900px) {
  .services-highlights__row {
    display: flex;
    flex-direction: column;
  }
  .services-highlights__col--b {
    order: 1;
    text-align: left;
  }
  .services-highlights__col--c {
    order: -1;
  }
}






/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
CONTACT PAGE
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/


.contacts-container {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  background: var(--dark-grey);
}

.contacts-col {
  display: flex;
  flex-direction: column;
  width: auto;
  align-self: center;
  margin: 0;
  padding: 100px 90px 100px 70px;
}
@media (max-width: 1400px) {
  .contacts-col {
    display: flex;
    padding: 100px 70px 100px 50px;
  }
}
.map-col {
  flex-grow: 1;
  background: url(../images/map-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contacts-container h2 {
  margin: 0 0 40px 0 !important;
  padding: 0;
}

.contacts-container p {
  font-weight: 400;
  font-size: clamp(18px, 1.1vw, 22px);
  color: black;
  line-height: 1.2;
  color: var(--brand-color);
}
.contacts-container p:not(:last-child) {
  margin-bottom: 40px;
}

/* Phonecall Cost */
.phonecall-cost-contact-page {
  float: right;
  font-size: 13px;
  line-height: 1.05;
  font-weight: 300;
}


/* ICONS */

.contacts-container p {
  padding-left: 55px; /* Increased to accommodate larger icons with padding */
  position: relative;
}

.address-icon::before,
.phone-icon::before,
.email-icon::before {
  content: '';
  position: absolute;
  left: 0;
  width: 25px; /* Adjust based on desired icon size */
  height: 25px; /* Adjust based on desired icon size */
  border-radius: 50%; /* Makes the background circular */
  background-color: var(--brand-color);
  padding: 10px; /* Space between icon and edge of circle */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%; /* Adjust based on desired icon size */
}
.address-icon::before {
  background-image: url('../images/icons/address-icon.svg');
  background-size: 50%; /* Adjust based on desired icon size */
}
.phone-icon::before {
  background-image: url('../images/icons/phone-icon.svg');
}
.email-icon::before {
  background-image: url('../images/icons/email-icon.svg');
}


/* Responsive Styles */


@media (max-width: 900px) and (min-width: 560px) {
  .contacts-container {
    flex-direction: column;
  }

  .map-col {
    height: 400px;
  }

  .contacts-col {
    flex-direction: row; /* become side by side on smaller screens */
    gap: 40px;
    padding: 100px 2.5%;
  }

  .contacts-col h2,
  .contacts-col__items {
    width: auto; /* occupy natural width on smaller screens */
  }

}

@media (max-width: 559px) {

  .contacts-container {
    flex-direction: column;
  }

  .contacts-col {
    width: 100%;
    align-items: center;
    margin: 0;
    padding: 100px 2.5%;
    background: var(--dark-grey);
  }

  .map-col {
    height: 600px;
  }

  .contacts-col h2 {
    width: 100%;
  }

}


@media (max-width: 350px) {
  .contacts-col {
    align-items: flex-start;
  }
}




/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
CONDIÇÕES
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/

/* Nothing to see here */






/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
FOOTER
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/

footer {
  background-color: #007c5e;
  position: relative;
}

.footer__bg:after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../images/pattern.png");
  opacity: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.footer__bg {
  position: relative;
  padding: 150px 2.5% 190px 2.5%;
  z-index: 1;
}


.footer-container__columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 50px;
  padding: 0;
}

.footer-column {
  padding: 0;
  margin: 0;
}

footer h4 {
  font-size: 24px;
  font-weight: 500;
  color: var(--contrast-2);
  margin: 0 0 20px 0;
}

footer ul {
  list-style: none;
}
footer li {
  color: var(--contrast-2);
  margin: 0 0 15px 0;
  padding: 0;
}

footer address {
  line-height: 1.3;
}

footer li a {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--contrast-2);
  transition: 0.3s ease-out;
}

footer li a:hover {
  letter-spacing: 1px;
  color: white;
}

/* phonecall cost */
.phonecall-cost {
  /*float: right;*/
  font-size: 12px;
  font-weight: 300;
  color: var(--contrast-2);
  line-height: 1;
  display: block;
}

/* Resposive Styles */

@media (max-width: 850px) {
  .footer-column {
    flex-basis: calc(50% - 50px);
  }
  .footer-container__columns {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 500px) {
  .footer-column {
    flex-basis: 100%;
  }
  .footer-container__columns {
    width: 100%;
    max-width: 200px;
  }
}

/* COPYRIGHTS NOTICE ================== */

.copyrights {
  background: rgba(0, 99, 69, 0.5);
  padding: 20px 10px;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.copyrights p {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: #3faa86;
}

.copyrights span {
  padding-left:  30px;
}
.copyrights br {
  display: none;
}

@media (max-width: 700px) {
  .copyrights span {
    padding-left:  0;
    display: block;
  }
  .copyrights br {
    display: block;
  }
  .copyrights br.second-breack {
    display: none;
  }
}
@media (max-width: 420px) {
  .copyrights br.second-breack {
    display: block;
  }
}




/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
FORMS  (Contact & Quote Forms)
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/

/* Optional BG - add this class to <form> for background */
.contactform-container {
  position: relative;
  padding: 30px 50px 0 50px;
  background-color: var(--dark-grey);
}

form {
  margin: 0 auto;
  width: 100%;
}

/* Remove Browser outline on focus ----------------- */

input:focus, textarea:focus {
  outline: none;
}

/* Lines and Margins -------------- */

.input-area, .input-area-phone, .imput-area-button {
  border-bottom: 2px solid var(--brand-color);
  margin-bottom: 50px;
}
.imput-area-button {
  border: 0 !important;
}

/* Text -------------- */

.form-text {
  font-family: 'poppins', sans-serif;
  font-size: 20px; 
  color: black; 
  background: transparent;
  border: 0px; 
  padding: 20px 0 0 0;
}

textarea.form-text {
  padding: 0;
}

input::placeholder, textarea::placeholder, label {
  color: var(--brand-color);
  font-size: 22px; 
  opacity: 1; /* thanks Firefox*/
}

/* Captcha -------------- */


.captcha-img {
  float: left;
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  outline: 0px solid var(--light-green-1);
  border: 0 !important;
  outline-offset: -3px;
  /*filter: sepia(1) hue-rotate(90deg) saturate(1) brightness(0.9);*/
  font-size: 50px;
}

/* Button -------------- */

.submit-button {
  background-color: var(--brand-color);
  color: white;
  border: none;
  text-decoration: none;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding: 0 50px;
  cursor: pointer;
  transition: all .25s ease-out;
  position: relative;
  border: 0;
}

.submit-button:hover {
  background-color: #017257;
  border-radius: 100px;
}


/* Fields Sizes -------------- */

.inputs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.inputs-container-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.input-area, .input-area-phone, .input-area-button {
  flex-basis: calc(33% - 20px);
}

.input-area2 {
  flex-basis: calc(50% - 30px);
  border-bottom: 2px solid var(--brand-color);
  margin-bottom: 20px;
}
.input-area3 {
  flex-basis: calc(33% - 30px);
  border-bottom: 2px solid var(--brand-color);
  margin-bottom: 20px;
}

input {
  width: 100%; 
  height: 60px;
}

textarea {
  width: 100%;
  height: 100px;
}



/* For tablet screens */
@media screen and (max-width: 768px) {
  .input-area {
    flex-basis: calc(50% - 20px);
  }
  .input-area3 {
    flex-basis: calc(50% - 20px);
  }
  .input-area-phone, .input-area-button {
    flex-basis: 100%;
  }
  .submit-button {
    width: 100%;
  }
}

/* For mobile screens */
@media screen and (max-width: 550px) {
  .input-area {
    flex-basis: 100%;
  }
  .input-area2 {
    flex-basis: 100%;
  }
  .inputs-container {
    flex-direction: column;
  }
  .quote-columns__container {
      flex-direction: column;
  }
}

/* 
----------------------------
Extra Styles for Quote Form 
----------------------------
*/
.quote__container {
  max-width: 900px;
}
.quote-columns__container {
  display: flex;
  row-gap: 30px;
  column-gap: clamp( 20px, 5vh, 120px);
  margin: 30px 0;
}



/* Secondary Labels (options labels) */

label.secondary-label {
    color: var(--brand-color);
    font-size: 18px; 
  }
  
/* Check Boxes --------------- */

/* The container */
.checkbox-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align to the left */
}

/* Style the checkboxes */
.secondary-label {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px; /* Adjust font size to match the W3C example */
  user-select: none;
  display: flex;
  align-items: center;
}

/* Hide the default checkbox */
.secondary-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 25px;
  width: 25px;
  background-color: var(--light-green-1);
  transition: background-color 0.15s ease-out;
}

/* On mouse-over */
.secondary-label:hover input ~ .checkmark {
  background-color:var(--brand-color);
}

/* When the checkbox is checked */
.secondary-label input:checked ~ .checkmark {
  background-color: var(--brand-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  display: none;
}

/* Show the checkmark symbol when checked */
.secondary-label input:checked ~ .checkmark:after {
  display: block;
}


/* Upload Button -------------- */

input[type="file"] {
  display: none;
}

.button-upload-file {
  margin-top: 30px;
  cursor:pointer;
  border:none;
  box-sizing: border-box;
  color: white;
  background: var(--brand-color);
  font-family: 'poppins', sans-serif;
  font-size: 18px;
  line-height: 3;
  letter-spacing: 0px;
  transition: background-color 0.5s;
  display: block;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
}
.button-upload-file span {
  font-size: 14px;
}
@media (max-width: 900px) {
  .button-upload-file span {
      display: none;
  }
}

.button-upload-file:hover {
  background-color: var(--dark-green);
}

#file-upload-value {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.file-label {
  color: var(--brand-color);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  margin-right: 10px; /* Add margin for spacing between label and file name */
}

.file-name {
  color: black;
  font-weight: 300;
  font-size: 14px;
  word-break: break-word;
  white-space: pre-wrap;
  text-align: left;
}



/* Tooltip (used in Location) */

.tooltip-wrapper {
  --tooltip-background: var(--brand-color);
  --tooltip-text-color: white;
  background: transparent;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  padding: 0;
  position: relative;
  line-height: 1;

}

.tooltip-wrapper .tooltip {
  background: var(--tooltip-background);
  color: var(--tooltip-text-color);
  display: block;
  position: absolute;
  width: auto;
  bottom: 100%;
  
  margin-bottom: -15px;
  opacity: 0;
  padding: 15px;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease-out;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}

.tooltip-wrapper .tooltip:before {
  bottom: -20px;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}

.tooltip-wrapper .tooltip:after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--tooltip-background);
  bottom: -9px;
  content: "";
  height: 0;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  width: 0;
}

.tooltip-wrapper:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}


/* 
----------------------------
Tank you Google
Override Chrome default background added to input area, which 
shows itself after filling a field if you scroll and hide the 
form due to animation and than get back to the form.
----------------------------
*/

/* change background color for autofill inputs */
input:-webkit-autofill,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: fieldtext !important; /* text color */
    -webkit-box-shadow: 0 0 0px 1000px white inset !important; /* fill color */
}

/* change background for autofill inputs on hover */
input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    -webkit-text-fill-color: fieldtext;
}

/* change background for autofill inputs when selected */
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    -webkit-text-fill-color: fieldtext;
}





/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
CONFIRMATION PAGE (message sent redidect)
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/

.confirmation__section {
  display: table;
  width: 100%;
  height: 100vh;
  background: var(--brand-color) url('../images/confirmation-clouds.png') no-repeat center bottom;
  background-size: 100% auto;
  background-position: bottom center;
  box-sizing: border-box;
  position: relative;
}

.confirmation__container {
  display: table-cell;
  vertical-align: middle;
  height: 95%;
  padding-bottom: 50px;
  text-align: center;
}

@media only screen and (max-width: 1300px) {
  .confirmation__section {
      background-size: 140% auto;
  }
}
@media only screen and (max-width: 910px) {
  .confirmation__section {
      background-size: 160% auto;
  }
}
@media only screen and (max-width: 910px) {
  .confirmation__section {
      background-size: 180% auto;
  }
}
@media only screen and (max-width: 810px) {
  .confirmation__section {
      background-size: 200% auto;
  }
}
@media only screen and (max-width: 700px) {
  .confirmation__section {
      background-size: 250% auto;
      background-position: 60% bottom;
  }
}

.confirmation__section h1, .confirmation__section h2, .confirmation__section h3 {
  color: white;
  opacity: 1;
  margin: 0;
  padding: 10px 2.5%;
}
.confirmation__section h1 {
  font-weight: 600;
  font-size: 50px;
  color: var(--contrast-2);
}
.confirmation__section h2 {
  font-weight: 400;
}
.confirmation__section h3 {
  font-weight: 200;
}




/*
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
ANIMATIONS
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/

/* Slide-Up */

.slide-up {
  opacity: 0;
  transform: translateY(50px) scale(1);
  transition: opacity 1s, transform 0.8s;
}
.slide-up.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Zoom */

.zoom {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 1s, transform 0.8s;
}
.zoom.animate {
  opacity: 1;
  transform: scale(1);
}

/* Zoom 2 */

.zoom-soft {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 2s, transform 2s;
}
.zoom-soft.animate {
  opacity: 1;
  transform: scale(1);
}

/* Slide In from the Left */

.slide-in-fromleft {
  opacity: 0;
  transform: translateX(-20%);
  transition: transform 1s, opacity 1s;
}
.slide-in-fromleft.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Slide In from the Right */

.slide-in-fromright {
  opacity: 0;
  transform: translateX(20%);
  transition: transform 1s, opacity 1s;
}
.slide-in-fromright.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Grow animated hr (LSF page) */
.animatedLine {
  border: none;
  height: 2px;
  background-color: var(--brand-color);
  margin: 10px 0;
  width: 0;
  transition: width 1s ease-out;
}
.animatedLine.animate{
  width: 100%;
}

/* Fadein once on load for large top elements only - not included in JS */
.fade-in {
  animation: fadeIn ease 1.5s;
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}



/* Delays ----------- */

.delay-01s {
  transition-delay: 0.1s;
  --delay: 0.1s;
}
.delay-02s {
  transition-delay: 0.2s;
  --delay: 0.2s;
}
.delay-03s {
  transition-delay: 0.3s;
  --delay: 0.3s;
}
.delay-04s {
  transition-delay: 0.4s;
  --delay: 0.4s;
}
.delay-05s {
  transition-delay: 0.5s;
  --delay: 0.5s;
}
.delay-06s {
  transition-delay: 0.6s;
  --delay: 0.6s;
}
.delay-07s {
  transition-delay: 0.7s;
  --delay: 0.7s;
}
.delay-08s {
  transition-delay: 0.8s;
  --delay: 0.8s;
}
.delay-09s {
  transition-delay: 0.9s;
  --delay: 0.9s;
}
.delay-10s {
  transition-delay: 1.0s;
  --delay: 1s;
}
.delay-11s {
  transition-delay: 1.1s;
  --delay: 1.1s;
}
.delay-12s {
  transition-delay: 1.2s;
  --delay: 1.2s;
}
.delay-13s {
  transition-delay: 1.3s;
  --delay: 1.3s;
}
.delay-14s {
  transition-delay: 1.4s;
  --delay: 1.4s;
}
.delay-15s {
  transition-delay: 1.5s;
  --delay: 1.5s;
}
.delay-16s {
  transition-delay: 1.6s;
  --delay: 1.6s;
}
.delay-17s {
  transition-delay: 1.7s;
  --delay: 1.7s;
}
.delay-18s {
  transition-delay: 1.8s;
  --delay: 1.8s;
}
.delay-19s {
  transition-delay: 1.9s;
  --delay: 1.9s;
}
.delay-20s {
  transition-delay: 2.0s;
  --delay: 2s;
}



/* 
---------------------------------------
Remove all animations on mobile devices 
---------------------------------------
*/

@media (max-width: 1000px) {
  .slide-up, .zoom, .slide-in-fromleft, .slide-in-fromright, .zoom-soft, .animatedLine {
      opacity: 1;
      transform: none;
      transition: none;
  }
}





/*
================================================
Loading Screen
================================================
*/

/* delay animations start ------------- */

/* This CSS delays the start of animations ".slide-up" and ".zoom" used
the in hero section by 3 seconds while the loading screen is visible.
After 3 seconds, JavaScript removes the 'first-visit-delay' class 
from the body. Once this class is removed, the 3-second delay on 
transitions (set in CSS) has also ended, and the page animations begin. */
/*
body.first-visit-delay .slide-up {
  transition-delay: 4s;
}
body.first-visit-delay .zoom {
  transition-delay: 4s;
}
*/
body.first-visit-delay .slide-up {
  transition-delay: calc(3s + var(--delay, 0s));
}
body.first-visit-delay .zoom {
  transition-delay: calc(3s + var(--delay, 0s));
}




/* screen ------------------ */

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* loader ------------------ */

.loader {
  position: absolute;
  box-sizing: unset;
  border: 40px solid var(--light-grey);
  border-radius: 50%;
  border-top: 40px solid var(--brand-color);
  width: 150px;
  height: 150px;
  animation: spinner 3s linear infinite;
}

@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* logo inside loader ------------------ */

.loader__inner-logo__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
  z-index: 1;
}

.loader__inner-logo {
  fill: var(--brand-color);
}






/*
===========================
NO-JS FALLBACK
===========================
*/

/*
=---------------------=
NO-JS MESSAGE TO USER
=---------------------=
*/

/* Container */
.no-js-message {
  background-color: #00694a ;
  color: #fff;
  padding: 25px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 90%;
  max-width: 600px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  font-family: Arial, sans-serif;
  font-size: 16px;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

/* Warning icon */
.no-js-message .warning-icon {
  display: inline-block;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background-color: #ffcc00;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  color: #000;
  font-size: 18px;
}

/* Close button */
.no-js-message .close-button {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
}

/*
=---------------------=
NO-JS OVERRIDING STYLES
These styles are applyed only if JS is not available.
If JS is avalaleble than a script at the bottom of
the HTML pages will deactivate the class ".no-js"
added to the body tag, in which case these styles
will not be applyed.
=---------------------=
*/

.no-js .slide-up,
.no-js .zoom,
.no-js .slide-in-fromleft,
.no-js .slide-in-fromright,
.no-js .zoom-soft {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.no-js h1.page-name {
    opacity: 0.4 !important;
    visibility: visible !important;
    transform: none !important;
}

.no-js .client__section::before {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


.icon-fallback-no-js {
  display: none;
}
.no-js .icon-fallback-no-js {
  display: block !important;
}