
:root {
  --BLACK: #000000;
  --WHITE: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  line-height: 1.5;
  color: #333;
}
.navbar {
  background-color: var(--BLACK);
  padding: 5px 16px;
}

.nav-link.active {
  font-weight: bold;
}

.navbar .nav-link {
  line-height: 1;
  padding: 5px !important;
}


.logo {
  display: inline-block;
  height: 45px;
  width: 45px;
}

.logo img {
  height: 100%;
  width: 100%;
}


@font-face {
  font-family: Albertus;
  src: url("../fonts/albr55w.ttf");
}

@font-face {
  font-family: VAGRoundedRegular;
  src: url("../fonts/VAGRoundedRegular.ttf");
}

.albertus-font {
  font-family: Albertus;
}

.vag-font {
  font-family: VAGRoundedRegular;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}
.pt-60px {
  padding-top:60px;
}
.pb-60px {
  padding-bottom:60px;
}
@media (min-width:576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width:768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width:992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width:1200px) {
  .container {
    max-width: 1140px;
  }
}
/* @media (min-width:1400px) {
  .container {
    max-width: 1320px;
  }
} */

.text-green {
   color: #2e6b3c;
}
.subtitle {
  color: #555;
  margin-bottom: 1.5rem;
  font-size:20px;
}

.text-center {
  text-align:center;
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 9px 24px;
  background-color: #2e6b3c;
  border:1px solid #2e6b3c;
  color: #fff;
  text-decoration: none;
  border-radius: 18px;
  transition: all 0.3s ease-in;
    font-size:16px;
    font-weight:500;
  text-transform: uppercase;
}

.btn:hover {
  background-color: white;
  color:#2e6b3c;
}
/* Hero */
.hero {
  display: flex;

  justify-content:space-between;
  
    flex-direction: row;
    align-items: center;
    gap:40px;
  gap: 40px;
}
.hero-text {
  text-align: left;
}
.title-text {
  font-size:46px;
  line-height:1.2;
  margin-bottom:10px;
}
.desc-text {
  font-size:23px;
  margin-top:20px;
  margin-bottom:20px;
}
.explore-btn {
  margin:0 auto;
  text-align:center;
}
.hero-img {
text-align:end;
width:460px;
max-width:100%;
  } 
.hero-img img {

    width:460px;
  height: auto;
}
.w-100 {
  width:100%;
}
.h-100 {
  height:100%;
}
.position-relative {
  position:relative;
}
/* Orchestra grid */
.orchestra {
  text-align: center;
  
}
.orchestra-bg-vector {
  position:absolute;
  top:0;
  left:0;
}
.orchestra-grid {
  display: grid;
  
   grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.orchestra-grid .card {
  display:flex;
  flex-direction: column;
}
.orchestra-grid .card .card-img {
max-width:100%;
height:250px;
  margin-bottom: 1rem;
}
.card h3 {
  margin-bottom: .5rem;
  min-height:56px;
}
.card-body{
  display: flex;
  align-items: center;
  justify-content:center;
  flex:1;
  background-image: url("/graphics/images/fl_backgroung_text.svg");
  background-size: cover;
  background-repeat: no-repeat;
  padding:0 30px;
}
.card-body p {
  color:white;
}

/* Features */
.features {
  text-align: center;
}
.features-bg-vector {
  position:absolute;
}
.features-bg-vector.bg-vector1 {
  left:0;
  top:0;
  text-align:left;
}
.features-bg-vector.bg-vector2 {
  right:0;
  top:0;
  text-align:right;
}
.features-bg-vector.bg-vector1 img,.features-bg-vector.bg-vector2 img {
  width:300px;
}
.features ul {
  list-style: disc;
  margin:0 0 16px 0;
  text-align: left;
  display: inline-block;
}
.features ul li {
  font-size:20px;
  margin-bottom:10px;
}

/* Testimonials */
.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 20px;
  width: 100%;
  max-width: 640px; 
  margin: auto;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
}

.testimonial {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 40px;
display: flex;
gap:30px;
}

.arrow {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2e6b3c;
  cursor: pointer;
  flex: 0 0 auto;
  position:absolute;
  z-index:2;
}
.arrow.prev {
  position:absolute;
  top:45%;
  left:0;
}
.arrow.next{
  position:absolute;
  top:45%;
 right:0;
}

.testimonial .testimonial-img {
  width:  160px;
  height: 160px;
  min-width:160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.testimonial .quote {
  font-style: italic;
  margin-bottom: .75rem;
  font-size:20px;
}
.testimonial .author {
  font-size: .9rem;
  color: #555;
}

footer {
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  background-color: var(--BLACK);
  color: var(--WHITE);
}

footer p {
  margin: 0;
}


/* small laptop */
@media (max-width:1199px) and (min-width:991px){
  .card h3 {
    font-size:18px;
  }
  .card-body p {
font-size:14px;}
}
/* tablet view */
@media (max-width:991px){
  .pt-60px {
  padding-top:50px;
}
.pb-60px {
  padding-bottom:50px;
}
 .hero {
     flex-direction: column-reverse;
     gap:30px;
  }
 .hero-img img {
  max-width: 100%;
  width:320px;
  height: auto;
}
.hero-img {
text-align:center;
  }
.title-text {
  font-size:40px;
  line-height:1.2;
  margin-bottom:16px;
  text-align:center;
}
.desc-text {
  font-size:20px;
  text-align:center;
}
  .orchestra-grid {
    grid-template-columns: repeat(2, 1fr);
   row-gap: 30px;
  }
  .card h3 {
    min-height:auto;
  }
  .card-body {
     padding:0 40px;
  }
  .orchestra-grid .card .card-img {
  height:200px;
}
 .testimonial .testimonial-img {
  width:  100px;
  height: 100px;
  min-width:100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.testimonial .quote {
  font-size:18px;
}
  .btn {
  font-size:16px;
}
.features ul li {
  font-size:18px;
}
.features-bg-vector.bg-vector1 img,.features-bg-vector.bg-vector2 img {
  width:auto;
}

}
/* small tablet */
@media (max-width:767px){
  .pt-60px {
  padding-top:40px;
}
.pb-60px {
  padding-bottom:40px;
}
 .hero {
    gap:20px;
  }
  .card h3 {
    min-height:56px;
  }
  .card-body {
     padding:0 30px;
  }
  .title-text {
  font-size:36px;
}
  .features ul {
    text-align: left;
    width: 100%;
    padding-left: 1rem;
  }

}
/* mobile-view */
@media (max-width:575px) {
  .hero-text {
    text-align: center;
  }
  .title-text {
  font-size:28px;
  margin-top:10px;
}
  .hero-img img {
  width:280px;
  max-width:100%;
  height: auto;
}
.desc-text,.subtitle {
  font-size:17px;
}
.btn {
  font-size:14px;
  padding:8px 20px;
}
.card h3 {
  min-height:auto;
  padding:0 12%;
}
.card-body {
  padding:0 12%;
}
.orchestra-grid {
   grid-template-columns:  1fr;
}
.orchestra-grid .card .card-img {
  height:180px;
}
.features ul li {
  font-size:16px;
}
.features-bg-vector.bg-vector1 img,.features-bg-vector.bg-vector2 img {
  width:110px;
}
.testimonial {
  flex-direction: column;
  align-items:center;
  text-align:center;
}
}