html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  overflow-y: scroll;
}



.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/*header;footer*/

/* Firefox */

.language-switch {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
}

.language-switch button {
  background-color: white;
  border: 2px solid #333;
  color: #333;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.language-switch button:hover {
  background-color: #333;
  color: white;
}

.language-switch button.active {
  background-color: #333;
  color: white;
  pointer-events: none;
}
* {
    scrollbar-width: thin;
    scrollbar-color: #397524 #DFE9EB;
  }
  
  /* Chrome, Edge and Safari */
  *::-webkit-scrollbar {
    width: 10px;
    width: 10px;
  }
  *::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #DFE9EB;
  }
  
  *::-webkit-scrollbar-track:hover {
    background-color: #B8C0C2;
  }
  
  *::-webkit-scrollbar-track:active {
    background-color: #B8C0C2;
  }
  
  *::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #afd036;
  }
  
  *::-webkit-scrollbar-thumb:hover {
    background-color: #62A34B;
  }
  
  *::-webkit-scrollbar-thumb:active {
    background-color: #62A34B;
  }
  
  @font-face {
    font-family: 'Century Gothic';
    src: url('path/to/century-gothic.ttf') format('truetype');
    
  }

body {
    margin: 0;
    padding: 0;
    font-family: 'Century Gothic', Arial, sans-serif;

  }
  

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 10px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  text-align: center;
  z-index: 100;
  
}

.headcontainer1 {
  flex: 1;
  display: flex;
  
  justify-content: flex-start;


}


.headcontainer1 .centered-images img {
  height: 70px;
  margin-right: 10px;
}

.headcontainer2 {
  flex: 1;
  font-size: 25px;
  text-align: center;
  
}

.headcontainer2 a {
  display: inline-block;
  margin: 25px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.headcontainer2 a:before,
.headcontainer2 a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #afd036;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.headcontainer2 a:hover:before,
.headcontainer2 a:hover:after {
  transform: scaleX(1);
}

.headcontainer3{
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.headcontainer3 img {
  height: 70px;
  margin-right: 20px;
  
  
}

@keyframes barAnimation {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.footer {
    background-color: #fff;
    padding: 10px;
    text-align: center;
  }
  
  .footcontainer1 {
    display: flex;
    justify-content: center;
  }
  
  .footcontainer1 .f1 {
    height: 50px;
  }
  
  .footcontainer2 {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  
  .footcontainer2 a {
    font-size: 25px;
    display: inline-block;
    margin: 0 10px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    position: relative;
  }
  
  .footcontainer2 a:before,
  .footcontainer2 a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #afd036;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
  }
  
  .footcontainer2 a:hover:before,
  .footcontainer2 a:hover:after {
    transform: scaleX(1);
  }
  
  .footcontainer3 p {
    margin-top: 10px;
    color: #333;
    font-size: 12px;
  }
  
  /*header;footer*/

  /*carrousel*/
  .carousel {
    position: relative;
    width: 100%;
    height: 950px;
    overflow: hidden;
  }
  
  .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  
  .caption2 {
    position: absolute;
    top: 58%;
    left: 
    50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    font-style: italic;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

  .prev-button,
    .next-button {
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000000;
    color: #fff;
    padding: 5px 30px;
    font-size: 40px;
    border: white solid 1px;
    cursor: pointer;
    z-index: 1;
    text-align: center;
    align-items: center;
    justify-content: center;
    }

    .prev-button {
    left: 10px;
    }

        .next-button {
    right: 10px;
    }

.prev-button:hover,
.next-button:hover {
background-color: #afd036;
}
/*carrousel*/

/*story*/

.story {
  
    padding: 20px;
    text-align: center;
  }
  
  .title {
    margin-bottom: 40px;

  }
  
  .title h1 {
    font-size: 30px;
 font-weight: normal;
  color: #000000;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .storyimg {
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  
  .img1{
    border-radius: 8px;
    margin-right: 70px;
    border: #000000 solid 2px;
  }
  .img2{
    border-radius: 8px;
    margin-left: 70px;
    border: #000000 solid 2px;
  }

  .storyimg img {
    width: 30%;
    
    
    margin-bottom: 10px;
    
  }


  
  .storytxt {
    text-align: justify;
    margin: 0 15%;
    font-size: 18px;
    justify-content: center;
    line-height: 1.5;
  }
  
  

  .story2 {
    background-image: url(assets/image00010.jpeg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    text-align: center;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);

  }
  
 
  
  .storytxt2 {
    text-align: center;
    align-items: center;
    color: #fff;
 
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0 200px;
    font-size: 25px;
    justify-content: center;
    line-height: 1.5;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  
.story3{
size: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 100px;
  justify-content: center;
  align-items: center;
  padding: 50px 11% ;
}

.bio{
  font-size: 30px;
 
  color: #000000;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.storytxt3{
  font-size: 18px;
  text-align: justify;
  gap: 10px;
  line-height: 22px;
  margin-left: 100px;
}
  
  .imgst3 {
   
   margin-right: 100px;
   width: 1000px;
  }
  
  .imgst3 img { 
    box-shadow: 40px -40px 2px 0px #afd036;
    width: 100%;
    
  }
  
 