:root {
  --black: #2a2a2a;
  --white: #ffffff;
  --dark-green: #003d10;
  --primary-green: #00731e;
  --light-green: #00bb32;
  --opacity-light-green: hsla(145, 50%, 50%, 6.5%);
  --grey: #999999;
}

#changing-sentence {
  color: var(--black);
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 25px;
}
#changing-word {
  color: var(--primary-green);
  display: inline-block;
  opacity: 1; 
  transition: opacity 0.3s;
}

/* FAQ */
.faq-heading{
  display: flex;
  justify-content: center !important;
  padding-top: 30px;
  text-align: center;
}

.faq-content {
  width: 80%;
  margin: 0 auto;
}

.faq-question {
  padding: 20px 0;
  border-bottom: 1.5px solid var(--primary-green);
  margin-right: 20px;
  margin-left: 20px;
}

.panel-title {
  font-size: 1.375rem;
  width: 100%;
  font-weight: 700;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 48px;
  display: block;
  cursor: pointer;
}

.panel-title em {
  color: var(--primary-green);
  font-style:normal;
}

.panel-content {
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;

  position: relative;
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

.panel:checked ~ .panel-content{
  height: auto;
  opacity: 1;
  padding: 14px;
}

.contact-faq {
  color: var(--primary-green);
}

.contact-faq:hover {
  color: var(--light-green);
}

.plus {
  position: absolute;
  margin: 8px 0 auto 10px;
  z-index: 5;
  font-size: 2rem;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  cursor: pointer;
}

.panel:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  display: none;
}

@media (max-width: 500px) {
  .faq-content {
    width: 95%;
  }
  .panel-content {
    width: 100%;
    margin: 0 auto 0 auto;
  }
}

/* SCROLLBAR */
html {
  scrollbar-width: normal;
  scrollbar-color: #f4f4f4;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 20px;
  height: 80px !important;
}

html::-webkit-scrollbar-track {
  background-color: #f4f4f4;
}

/* TEXTWRITER */
#text-writer {
height: 60px;
padding-bottom: 6.5rem;
}

@media only screen and (max-device-width: 410) {
  #text-writer{
    height: 60px;
    padding-bottom: 8rem;
  }
} 

/* PARALLAX */
.parallax {
  background-color: var(--opacity-light-green);
  background-image: url(../images/parallax.webp);
  min-height: 50vh !important;
  background-attachment: fixed !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 100% !important;
}

.straight-line-divider {
  display: none;
}

.divider-ipad {
  display: none;
}

.divider-handy {
  display: none;
}

@media (max-width: 998px) {
  .parallax {
    display: none;
  }

  .straight-line-divider {
    display: block;
  }
}

.custom-color-code {
    color: var(--primary-green);
}

.wave-divider {
    width: 100%;
}
.svgContainer {
    position: fixed;
    bottom: 4%;
    right: 3%;
    z-index: 99;
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--black);
    cursor: pointer;
    display: none;
}

.svg {
    display: block;
    width: 40px;
}

#svg2 {
    display: none;
}

#svgLink:hover #svg1 {
    display: none;
}

#svgLink:hover #svg2 {
    display: block;
}

.arrow-down {
  cursor: pointer !important;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.arrow-link {
  cursor: pointer;
  text-align: center;
  width: 60px;
  position: relative;
}

.green-arrow {
  display: none;
}

.arrow-link:hover .green-arrow {
  display: block;
}

.arrow-link:hover .black-arrow {
  display: none;
}

@media (max-width: 992px) {
  .arrow-down {
      margin-top: 80px;
  }
}

.circle {
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    background-color: var(--black);
    top: -50px;
    left: -50px;
    transition: width 0.3s ease, height 0.3s ease;
}

@media (max-width: 900px) {
    .circle {
        display: none; 
    }
}
  
.hovered {
    transform: scale(1.4);
    background-color: var(--black);
    mix-blend-mode: difference;
}

.dash {
    width: 35px;
    margin-right: 25px;
    color: var(--white);
    transition: all 400ms;
}

.agb-impressum {
  width: 32% !important;
}

@media (max-width: 991px) {
  .agb-impressum {
    width: 40% !important;
  }
}

@media (max-width: 767px) {
  .agb-impressum {
    width: 100% !important;
  }
}

.agb-impressum a {
    color: var(--white);
    position: relative;
    text-decoration: none;
    transition: all .3s;
  }

  .agb-impressum a:hover {
    color: var(--light-green);
  }

  .agb-impressum a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    margin-top: 12px !important;
    background-color: var(--light-green);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
  }
  
  .agb-impressum a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }

.kontakt-links a {
    color: var(--white);
    position: relative;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all .3s;
  }

  .kontakt-links a:hover {
    cursor: pointer !important;
    color: var(--light-green) !important;  
  }
  
  .kontakt-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background-color: var(--light-green);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
  
  .kontakt-links a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }

  .wave-footer {
    margin-top: 10%;
    margin-bottom: -2px;
    width: 100%;
  }
  
.webtree-logo-footer {
    width: 170px;
    z-index: 9;
  }

  @media(max-width: 992px) {
    .webtree-logo-footer {
        width: 160px;
      }
  }

@media (max-width: 767px){
    .webtree-logo-footer {
        margin-bottom: 15px;
    }

    .wave-footer {
      width: 102%;
      left: -1%;
      position: relative;
      display: block;
    }
}

.footer-links {
    padding-bottom: 40px !important;
}

.copyright-text {
  font-size: 0.875rem;
}

.center-line {
  align-content: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* Progress Bar */

.skill-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.skill {
  width: 160px;
  height: 160px;
  position: relative;
}

.outer {
  height: 180px;
  width: 180px;
  border-radius: 50%;
}

.inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  width: 160px;
  border-radius: 50%;
  box-shadow: inset 1px 1px 1.5px -0.25px rgba(0, 0, 0, 0.2),
              inset -1px -1px 1.5px -0.25px rgba(255, 255, 255, 0.7),
              -0.25px -0.25px 0px rgba(255, 255, 255, 1),
              0.25px 0.25px 0px rgba(0, 0, 0, 0.15),
              0px 8px 2.5px -2.5px rgba(0, 0, 0, 0.05);
}

#number {
  display: flex;
  text-align: center;
  flex-direction: column;
}

#progress-value {
  font-size: 2.25rem;
  font-family: inherit;
  font-weight: 700;
  margin-top: 10px;
}

.progress-span {
  font-size: 1.125rem;
  color: var(--grey);
  margin-top: -8px;
  font-weight: 300;
}

.circle-progress {
  fill: none;
  stroke-width: 6px;
  stroke-dasharray: 600;
  stroke-dashoffset: 480;
  transition: stroke-dashoffset 2.75s linear;
}

.skill.start-animation .circle-progress {
  stroke-dashoffset: 0;
}

#innovativ {
  stroke: var(--light-green);
}

#zuverlaessig {
  stroke: var(--primary-green);
}

#handgefertigt {
  stroke: var(--dark-green);
}

.progress-svg {
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .skill-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .skill {
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Highlighted for Translation Button */
.highlighted {
  background-color: var(--primary-green) !important;
  color: var(--white) !important;
  font-weight: bold;
}

#en-link, #de-link {
  text-align: center;
  color: var(--black);
  font-weight: bold;
}

.dropdown {
  display: inline-block;
  text-align: center; 
}

.dropbtn {
  font-weight: bold !important;
}

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

.dropdown-content span {
  color: var(--black);
  padding: 12px 12px;
  text-decoration: none;
  display: block;
}

.dropdown-content span:hover {
  background-color: #ddd;
  cursor: pointer;
}

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

.dropbtn:hover {
  background-color: none;
  color: var(--primary-green);
}

/* Offerten */

.offerten-link {
  display: inline-block;
  background-color: transparent;
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-green);
  width: fit-content;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border: 1px solid var(--primary-green);
  transition: all .3s;
  outline: none;
  margin-top: 40px !important;
}

.offerten-link:hover {
  background-color: var(--primary-green)!important;
  color: var(--white)!important;
}
/* Projects */
.filter-slider {
  margin-bottom: 30px;
}
.hover {
  overflow: hidden;
  position: relative;
  padding-bottom: 60%;
}

.hover-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  transition: all 0.4s;
}

.hover img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.hover-content {
  position: relative;
  z-index: 99;
}


/* DEMO 4 ============================== */
.hover-4 img {
  width: 110%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hover-4 .hover-overlay {
  background: rgba(0, 0, 0, 0.4);
  z-index: 90;
}

.hover-4-title {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 3rem;
  color: var(--white);
  z-index: 99;
}

.hover-4-description {
  position: absolute;
  top: 2rem;
  left: 2rem;
  text-align: left;
  border-left: 3px solid var(--primary-green);
  color: var(--white);
  padding: 0 1rem;
  z-index: 99;
  transform: translateX(-1.5rem);
  opacity: 0;
  transition: all 0.3s;
}

@media (min-width: 992px) {
  .hover-4-description {
    width: 50%;
  }
}

.hover-4:hover img {
  width: 100%;
}

.hover-4:hover::after {
  opacity: 1;
  transform: none;
}

.hover-4:hover .hover-4-description {
  opacity: 1;
  transform: none;
}

.hover-4:hover .hover-overlay {
  background: rgba(0, 0, 0, 0.8);
}

/* FONT Animation */
.project-title a {
  color: var(--white);
  position: relative;
  text-decoration: none;
  transition: all .3s;
}

.project-title a:hover {
  color: var(--light-green);
}

.project-title a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background-color: var(--light-green);
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

.project-title a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.hidden-arrow {
  opacity: 0;
  transition: opacity 0.3s ease-in-out
}

.hover-4:hover .hidden-arrow {
  opacity: 1;
}

.hover-4-title {
  transition: transform 0.3s ease;
}

.hover-4:hover .hover-4-title {
  transform: translateX(1.5rem);
}

/* Round Button */
.round-button {
  display: inline-flex; 
  align-items: center;
  justify-content: center; 
  background-color: var(--white); 
  font-size: 1rem; 
  color: var(--primary-green); 
  width: 40px; 
  height: 40px; 
  border: 1px solid var(--primary-green); 
  border-radius: 50%; 
  margin-left: 5px; 
  transition: all 0.3s; 
  background-color: transparent;
  position: relative;
}

.round-button:hover {
  background-color: var(--primary-green); 
  color: var(--white); 
}

.round-button:hover i {
  color: var(--white); 
}
.button-active{
  background-color: var(--primary-green); 
  color: var(--white); 
}

#ansicht-filter {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px !important;
}

/* Tooltip Filter Btns */

.tooltip {
  visibility: hidden;
  width: 50px;
  background-color: var(--primary-green);
  color: var(--white);
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -25px;
  opacity: 0;
  transition: all 0.3s;
}

.round-button:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* Time Box */
.time-box {
  display: flex;
  justify-content: flex-end;
  border-radius: 5px;
  margin-right: 3%;
  color: var(--grey);
  font-weight: lighter;
}

.time {
  color: var(--black);
  font-size: 2.25rem;
  font-weight: bolder;
}

/* SERVICE */

/* Grundlayout für grosse Bildschirme: 3 Spalten */
.service-item {
  z-index: 1;
  position: relative;
  left: 0;
  padding-top: 22px;
}

.service-item:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-green);
  transition: width .6s;
}

.service-item:hover::after {
  width: 0;
}

.service-count {
  font-size: 12.5em;
  line-height: 0.8em;
  font-weight: 900;
  color: var(--opacity-light-green);
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: -1;
  user-select: none;
}

.read-more-services {
  display: flex;
  justify-content: center;
}

#services .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#services .row.g-md-3 {
  max-width: 1320px;
}

#services .col-md-4 {
  flex: 1 0 33.3333%;
  box-sizing: border-box;
}

.service-box {
  margin-top: 50px;
}

#services .service-box:nth-child(-n+3) {
  margin-top: 0;
}

@media (max-width: 992px) {
  #services .service-box:nth-child(-n+2) {
    margin-top: 0; 
  }
  #services .service-box:nth-child(3) {
    margin-top: 50px;
  }
  #services .col-md-4 {
    flex: 1 0 50%;
  }
}

@media (max-width: 796px) {
  #services .service-box:first-child {
    margin-top: 0;
  }
  #services .service-box:nth-child(2) {
    margin-top: 50px;
  }
  #services .col-md-4 {
    flex: 1 0 100%;
  }
}

@media (max-width: 600px) {
  .service-short-box.row {
    padding: 0;
  }
}

.service-selection {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-green);
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border: 1px solid var(--primary-green);
  transition: all .3s;
  outline: none;
  margin-bottom: 20px;
}

.service-selection:hover {
  background-color: var(--primary-green)!important;
  color: var(--white)!important;
}

.service-selection.active {
  background-color: var(--primary-green)!important;
  color: var(--white)!important;
}

/* SUBPAGE */

.subpage-padding {
  padding: 80px 0;
}

.contact.subpage-padding {
  text-align: left;
  padding: 15px 0;
}

/* Counter */

.counter-section i { display:block; margin:0 0 10px}
.counter-section span.counter { font-size: 2.5rem; color:var(--black); line-height:60px; display:block; letter-spacing: 2px}
.counter-title{ font-size: 1rem; letter-spacing:2px; text-transform: uppercase}
.counter-icon {top:25px; position:relative}
.counter-style2 .counter-title {letter-spacing: 0.55px; float: left;}
.counter-style2 span.counter {letter-spacing: 0.55px; float: left; margin-right: 10px;}
.counter-style2 i {float: right; line-height: 26px; margin: 0 10px 0 0}
.counter-subheadline span {float: right;}  

.medium-icon {
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
} 

/* OFFERTE */

.offerte-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.option-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
}

.option-inputs .input-wrap {
  width: 100%;
}

.option-inputs .input-wrap.w-100 {
  grid-column: span 2;
}


/* Impressum */
.h2-impressum {
  font-size: 64px;
  font-weight: 600;
}

.impressum-phone {
  display: none;
}

.impressum {
  margin-left: 6rem;
  margin-bottom: 50px;
}

.datenschutz {
  margin-left: 6rem;
  margin-bottom: 50px;
  width: 50%;
}

.p-text-datenschutz {
  font-size: 1.25rem !important;
  margin-bottom: 15px;
}

.h6-datenschutz {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.h4-impressum{
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--black);
}

.h5-impressum {
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-size: 1.5rem;
  color: var(--black);
  font-weight: 600;
}

.space-table {
  margin-top: 1rem !important;
}

.firstrow-table {
  font-size: 1.125rem;
  letter-spacing: 2px !important;
  color: var(--grey);
  text-transform: uppercase;
  padding: 8px 1px 1px !important;
  vertical-align: top !important;
}

.secondrow-table {
  font-size: 1.375rem;
  padding: 1px !important;
  color: var(--black);
  vertical-align: middle !important; 
}

.secondrow-table a {
  color: var(--primary-green);
  position: relative;
  transition: all .3s;
}

.secondrow-table a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  margin-top: 12px !important;
  background-color: var(--primary-green);
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}


.secondrow-table a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.secondrow-table a:hover {
  color: var(--primary-green);
}

.datenschutz-link a {
  color: var(--primary-green);
  position: relative;
  transition: all .3s;
}

.datenschutz-link a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  margin-top: 12px !important;
  background-color: var(--primary-green);
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}


.datenschutz-link a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.datenschutz-link a:hover {
  color: var(--primary-green);
}

@media (min-width: 1400px) {
  .impressum {
      margin-left: 14rem;
  }

  .datenschutz {
      margin-left: 14rem;
  }
}

@media (max-width: 1320px) {
  .datenschutz {
      width: 70%;
  }
}

@media (max-width: 1250px) {
  .h2-impressum {
      font-size: 3.625rem;
  }
  .datenschutz {
      width: 80%;
  }
}

@media (max-width: 767px) {
  .h2-impressum {
      font-size: 2.75rem;
  }
  .impressum-phone {
      display: block;
  }

  .impressum-laptop {
      display: none;
  }

  .h4-impressum {
      font-size: 1.875rem;
  }

  .h5-impressum {
      font-size: 1.5rem;
  }

  .p-text-datenschutz {
      font-size: 1.125rem !important;
  }

  .impressum {
      margin-left: 4rem;
  }

  .datenschutz {
      margin-left: 4rem;
  }
}

@media (max-width: 450px) {
  .firstrow-table {
      font-size: 1rem;
  }
  .secondrow-table {
      font-size: 1.125rem;
  }
  .impressum {
      margin-left: 1.5rem;
  }

  .datenschutz {
      margin-left: 1.5rem;
  }
}

.logo-partner {
  opacity: 30%;
  filter: grayscale(1);
  transition: opacity 0.6s, filter 0.6s;
}

.logo-partner:hover {
  opacity: 100%;
  filter: grayscale(0);
}
@media (max-width: 768px) {
  .logo-container {
    margin-top: 40px;
 }
}
@media (max-width: 1024px) {

  .logo-container {
    margin-top: 50px;
 }
    .logo-partner {
     opacity: 100%;
     filter: none;
  }

  .logo-partner:hover {
     opacity: 100%;
     filter: none;
  }

  .logo-partner-container {
     margin-bottom: 20px; /* Add space between logos */
  }

  .logo-partner-container img {
     width: 100%; 
     max-width: 180px; /* Set a maximum width */
  }
}
/* Time Box */
@media (max-width: 768px) {
  #timeDisplay {
    margin-top: 25px;
 }
}

/* BLOG */

.read-time {
  font-size: 0.85rem;
  font-style: italic;
}
.retro-layout .v-height {
  height: 240px;
}

@media (max-width: 768px) {
  .retro-layout .img {
      height: 240px;
  }
}

.retro-layout .h-entry {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.retro-layout .h-entry .post-category {
  color: var(--white);
}

.retro-layout .h-entry .featured-img.top{
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  transform: scale(1.05);
  transition: .3s all ease;
}

.retro-layout .h-entry .featured-img.center{
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform: scale(1.05);
  transition: .3s all ease;
}

.retro-layout .h-entry:hover .featured-img {
  transform: scale(1.0);
}

.retro-layout .h-entry.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.retro-layout .h-entry .date {
  font-size: 1rem;
}

.retro-layout .h-entry.gradient {
  position: relative;
}

.retro-layout .h-entry.gradient:before {
  z-index: 1;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#cc000000', GradientType=0);
}

.retro-layout .text {
  position: absolute;
  bottom: 0;
  z-index: 10;
  padding: 20px;
  max-width: 400px;
  text-align: left;
}

.retro-layout .text h2 {
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 0;
}

.retro-layout .text span {
  color: var(--light-green); 
  font-size: .75rem;
  display: block;
  margin-bottom: 5px;
}

.retro-layout .text.text-sm h2 {
  font-size: 1.125rem;
  line-height: 1.5;
}

.retro-layout .gradient {
  position: relative;
}

.retro-layout .gradient:before {
  z-index: 1;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#cc000000', GradientType=0);
}

@media (max-width: 768px) {
  .retro-layout .img-5 {
      height: 240px !important;
      margin-bottom: 30px;
      margin-top: 30px;
  }
}

.social-media .list-inline-item {
  margin-right: 10px;
}

.social-media .list-inline-item a {
  color: var(--black);
  font-size: 24px;
  text-decoration: none;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: background-color 0.7s, color 0.7s;
}

.social-media .list-inline-item a:hover {
  background-color: var(--light-green);
  color: var(--white);
}

.bg-light-green{
  background-color: var(--opacity-light-green);
}
.green-amp{
  color: var(--primary-green);
  font-style: normal;
}