
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&family=Short+Stack&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Short+Stack&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Solitreo&display=swap');

:root {
    --my-green: #069370;
    --my-green1: #2eb694;

      /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(38, 92%, 58%);
  --first-color-light: hsl(38, 100%, 78%);
  --first-color-alt: hsl(32, 75%, 50%);
  --second-color: hsl(195, 75%, 52%);
  --dark-color: hsl(212, 40%, 12%);
  --white-color: hsl(212, 4%, 95%);
  --body-color: hsl(212, 42%, 15%);
  --container-color: hsl(212, 42%, 20%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --h2-font-size: 1.75rem;
  --normal-font-size: 1rem;
}


/*
*{
    outline: 2px solid red;
}
*/

.row {
    margin-right: 0;
    margin-left: 0;
}

.headline{
    font-family: "Solitreo", sans-serif ;
}

body{
    font-family: 'Poppins',sans-serif;
    padding-right: 0 !important;
    overflow-x: hidden;
}

header{

    position: relative;
    margin: 20px auto;
    padding: 10px;
    background: #fff;
    box-sizing: border-box;

}

.logo{

    color: var(--my-green);
    height: 60px;
    font-size: 36px;
    line-height: 60px;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
    float: left;
    font-weight: 700;
    text-decoration: none;
    margin-left: 5%;
    cursor: pointer;
}

.logo-img{
    background-image: url('../img/Logo-1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 120px;
}

nav{
    float: right;
    margin-right: 14%;
}

.clearfix{
    clear: both;
}

nav ul{
    margin: 0;
    padding: 0;
    display: flex;
    margin-top: 20px;
}

nav ul li{
    list-style: none;
}

nav ul li a{

    display: block;
    margin: 10px 20px;
    padding: 10px 20px;
    text-decoration: none;
    color: #262626;
    font-size: 25px;
    font-weight: 450;
    position: relative;
}

nav ul li a::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--my-green);
    transition: 0.3s;
}

nav ul li a.active{

    background: var(--my-green);
    color: #fff;
    transition: 0.5s;
    border-radius: 10px;
}

nav ul li a.active::before{
    content: '';
    background-color: transparent;
}

nav ul li a:hover::before{
    width: 100%;
}

.menu-toggle{
    display: none;
}

@media (max-width: 1050px){

    .menu-toggle{
        display: block;
        width: 60px;
        height: 60px;
        margin: 30px;
        margin-right: 10%;
        padding-top: 10px;
        float: right;
        cursor:pointer;
        margin-left: 10px;
        text-align: center;
        font-size: 45px;
        color: var(--my-green);

    }

    .menu-toggle::before{
        content: '\f0c9';
        font-family: fontAwesome;
        line-height: 40px;
    }

    .menu-toggle.active_hamburger::before{
        content: '\f00d';
    }

    nav{
        display: none;
    }

    nav.active_hamburger{
        display: block;
        width: 100%;
    }

    nav.active_hamburger ul{
        margin-top: 50px;
        display: block;
        text-align: center;
        padding-left: 30%;
    }

}

.home-page{
    background-image: url(../img/planet.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 42vw;
    width: 100%;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(57, 134, 50, 0.5); 
    /*rgba(126, 211, 118, 0.5); */
    z-index: 1; 
}




.headline{
    position: absolute;
    top: 40%;
    left: 12%;
    z-index: 1;
    color: white;
    font-size: 6vw;
    letter-spacing: 2px;
}



@media (max-width:1400px) {
    .home-page{
        height: 50vw;
    }
    .headline{
        font-size: 7vw;
        left: 25vw;
        top: 14vw;
    }
}

@media (max-width:900px) {
    .home-page{
        height: 70vw;
    }
    .headline{
        font-size: 10vw;
        left: 17vw;
        top: 20vw;
    }
}


@media (max-width:570px) {
    .home-page{
        height: 100vw;
    }
    .headline{
        font-size: 10vw;
        top: 35vw;
        left: 17vw;
    }
}




.btn-text-divide{
    display: flex;
    justify-content: center;
}

.divide-btn{
    width: 30%;
    margin-left:7%;
}

.divide-btn button{
    color: white;
    height: 120px;
    font-size: 36px;
    border-radius: 20px;
}
.divide-btn button:hover{
    color: white !important;
}
.divide-text{
    width: 60%;
    margin-right: 5%;
    padding-right: 5%;
}

/*=============== CARD ===============*/
.container {
    color: white;
}
  
.card__container {
    padding-block: 5rem;
}
  
.card__content {
    margin-inline: 1.75rem;
    border-radius: 1.25rem;
    overflow: hidden;
}
  
.card__article {
    width: 300px; /* Remove after adding swiper js */
    border-radius: 1.25rem;
    overflow: hidden;
}
.card__image img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.card__data {
    background-color: var(--my-green);
    padding: 1.5rem 2rem;
    border-radius: 0 0 10px 10px;
    text-align: center;
    position: relative;
    z-index: 10;
    height: 300px;

}

.card__name {
    font-size: var(--h2-font-size);
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
}
  
.card__description {
    font-weight: 500;
    margin-bottom: 1.75rem;
    
}

  /* Swiper class */
.swiper-button-prev:after,
.swiper-button-next:after {
    content: "";
}
  
.swiper-button-prev,
.swiper-button-next {
    width: initial;
    height: initial;
    font-size: 3rem;
    color: var(--my-green1);
    display: none;
}
  
.swiper-button-prev {
    left: 0;
}
  
.swiper-button-next {
    right: 0;
}
  
.swiper-pagination-bullet {
    background-color: hsl(212, 32%, 40%);
    opacity: 1;
}
  
.swiper-pagination-bullet-active {
    background-color: var(--my-green1);
}
  
  /*=============== BREAKPOINTS ===============*/
  /* For small devices */


@media screen and (max-width: 320px) {
    .card__data {
      padding: 1rem;
    }
    .card__data {
        height: 420px;
        
    }
}

@media screen and (max-width: 500px) {
    .card__data {
        height: 470px;
    }
    .swiper-button-next,
.swiper-button-prev {
      display: none;
    }
}
  /* For medium devices */
@media screen and (min-width: 768px) {
    .card__content {
      margin-inline: 3rem;
}
  
.swiper-button-next,
.swiper-button-prev {
      display: block;
    }
}
  
  /* For large devices */
@media screen and (min-width: 1120px) {
    .card__container {
      max-width: 1120px;
}
  
.swiper-button-prev {
      left: -1rem;
}
.swiper-button-next {
      right: -1rem;
    }
}

.services{
    position: relative;
}

.services-content{
    background: white;
    width: 100%;
    margin-top:-2px !important;
}

.services-content p{
    text-align: center;
    font-size: 5rem;
    margin-bottom: 5vw;
}

.div-flex{
    display: flex;
    @media screen and (max-width: 1600px) {
        flex-direction: column;
    }
}

.flex-image, .flex-text{
    width: 50%;
    box-sizing: border-box;
    @media screen and (max-width: 1600px) {
        width: 100%;
        padding: 0 10%;
    }
}
@media screen and (max-width: 1600px) {
    .flex-image img{
        text-align: center;
        margin-right: 0 !important;
    } 
    .services-center-image{
        display: flex;
        flex-direction: column; 
        justify-content: center; 
        align-items: center;       
        text-align: center; 
    }
    .flex-text h3{
        text-align: center;
    }
    .list-container{
        display: flex;
        justify-content: center;
    }

    .line{
        width: 100%;
        height: 2px;
        background: #4c5d64;
        margin-bottom: 10vw;
        margin-top: 5vw;
    }
    .first-flex .flex-image{
        padding-top: 0;
        margin-bottom: 2.5%;
    }

    .services-content p{
        margin-bottom: 2vw;  
    }
}

.flex-image img{
    background-color: #4c5d64;
    float: right;
    margin-right: 7vw;
    border-radius: 50%;
    padding: 2%;
    height: 25vw;
    @media screen and (max-width: 1600px) {
        width: 35vw;
        height: 35vw;
    }
    
}

.second-flex{
    margin-top: 3%;
}

.second-flex .flex-text{
    padding-top: 3%;
}

.first-flex .flex-image{
    padding-top: 5%;
}
.flex-text{
    width: 40%;
    padding-right: 10%;
    @media screen and (max-width: 1600px) {
        width: 100%;
    }
}

.flex-text li{
    padding-top: 10px;
}

.w {
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}



.w svg {
    position: relative;
    display: block;
    width: calc(128% + 1.3px);
    height: 61px;
}

.w .shape-fill {
    fill: var(--my-green);
}


.w1 {
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin-top: -2px !important;
}

.w1 svg {
    position: relative;
    display: block;
    width: calc(128% + 1.3px);
    height: 61px;

}

.w1 .shape-fill {
    fill: var(--my-green);
}

.contact-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 450px;
    background-color: #4c5d64;
    color: white;
    margin-top: 50px;
    margin-right: 0 !important;
}



.contact-header{
    box-sizing: border-box;
    text-align: center;
    font-size: 65px;
    width: 100%;
    margin-bottom: 40px;
    margin-top: 30px;
}

.contact-info{
    box-sizing: border-box;
    width: 100%;
    text-align: center;
}

.contact-info div{
    padding-bottom: 10px;
}
.contact-info img{
    margin-right: 12px;
}

#x {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

}



.footer{
    background-color: #36454F;
    color: white;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}




.flex-description{
    display: flex;
    margin-top: 80px;
}

.home-first{
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.home-second{
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.home-first h1{
    padding-left: 5%;
    padding-right: 5%
}
.home-first h1, .home-second h1{
    text-align: center;
}
.home-first p{
    text-align: justify;
}
.home-second h1{
    padding-left: 5%;
    padding-right: 5%
}
.home-first p{
    padding-left: 15%;
    padding-right: 15%;
    margin-top: 20px;
}

.flex-bt{
    display: flex;
    margin-top: 20px;
}

.flex-b{
    width: 50%;
    box-sizing: border-box;

}

.flex-t{
    width: 50%;
    box-sizing: border-box;
}

.flex-b .btn{
    float: right;
    font-size: 40px;
    color: white;
    margin-right: 15%;
}
.flex-t p{
    padding-right: 30%;
}
@media (max-width:1250px){
    .flex-description{
        flex-direction: column;
    }

    .flex-b .btn{
        margin-right: 10%;
    }

    .home-first{
        width: 100%;

    }

    .home-second{
        width: 100%;
    }
}

@media (max-width:500px){
    .flex-b .btn{
        font-size: 35px;
        margin-right: 10%;
    }
    .flex-t p{
        padding-right: 10%;
    }
    .home-second{

        margin-bottom: 0;
    }
    
}

@media (max-width:350px){
    .flex-b .btn{
        font-size: 25px;

    }
    
}





/* SCROLL BAR */


::-webkit-scrollbar{
    width: 1rem;
}


::-webkit-scrollbar-track{

    border-radius: 100vw;
    margin-block: .3rem;

}


::-webkit-scrollbar-thumb{
    background: hsl(120 100% 30% / 1);
    border-radius: 100vw;
}

::-webkit-scrollbar-thumb:hover{
    background: var(--my-green);
}


/*   SCROLL ANIMATION  */


@keyframes appear {
    from {
      opacity: 0;
      scale:0.5;
    }
    to {
      opacity: 1;
      scale:1;
    }
  }

  .show {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 20%;
  }

@media(prefers-reduced-motion){
    .show{
        animation: none;
    }
}

html{
    scroll-behavior: smooth;
}


