*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family: 'Heebo', sans-serif;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: rgb(123, 180, 142);
}

.box{
    display: flex;
    flex-direction: column;
    align-items:center; 
    padding:110px 100px;
}
/*logo start */

.hero{
    margin-top: 4em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.logol{
    width: 400px;
    height:400px;
    background-color: white;
    border-radius: 50%;
    grid-area: overlap;
}

.logol img{
    width: 330px;
    height: 400px;
}

.logo-name{
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    
 
    grid-area: overlap;
    margin-top: 63%;
    justify-self: center;
  
}
.logo-container{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "overlap";
}
/* logo finish */

.transition{
    height: 50px;
    width: 100%;
    background-image: linear-gradient(rgba(255,255,255,0), rgb(191,207,208));
}



header{
    position: absolute;
    top: 40;
   
    color: rgb(123, 180, 142);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items:center;
    margin: auto;
    padding: 15px 100px ;
    background-color: white;
    box-shadow: 0px 5px 4px 0 rgba(255, 255, 255, 0.5);

}

header a{
    text-transform: capitalize;
    font-weight: 400;
    
    
}
header a:hover{
    border-color: rgb(123,180,142);
    border-style: solid;
    border-width:2px;
    border-radius: 6px;
}

header h2{
    text-transform: uppercase;
}

header .nav{
    display: flex
}

header .nav li{
    margin: 0 15px;
}

header .nav li:first-child{
    margin-left: 0;
}
header .nav li:last-child{
    margin-right: 0;
}

@media (max-width: 1000px){
    header{
        padding: 20px 50px;
    }
}
@media (max-width: 700px){
    header{
        flex-direction: column;
        top: 60;
    }
    header h2{
        margin-bottom: 15px;
        display: none;
    }
    header .nav li{
        margin: 0 7px;
    }
    .logol{
        width: 300px;
        height:300px;
        background-color: white;
        border-radius: 50%;
      
        text-align: center;
      
    }
    
    .logol img{
        width: 280px;
        height: 300px;
    }
    .logo-name{
        margin-top: 61%;
       
    }
    .logo-name h1{
        font-size: 2em;
    }
}

.box{
    position: relative;
    justify-content: center;
    min-height: 100vh;
    color: #fff;
    text-align: center;
}

.box video{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.box h1{
    margin-bottom: 40px;
    font-size: 25px;

}

.about{
    height: fit-content;
    width: 100%;
    background-color: rgb(191, 207, 218);
    color: black;
}

.about-container{
    display: flex;
    flex-direction: row;
}

.card{
    width: 45%;
    margin: 2em 2em;
    background-color: #fff;
    border-radius: 2em;
    padding: 4em;
    text-align: center;
    box-shadow: 10px 10px 14px 0 rgba(0, 0, 0, 0.5);
}
.card p{
    font-family: 'Roboto Flex', sans-serif;
    color: black;
    font-size: 1.5rem;
}
@media (max-width: 700px){
    .about{
        height: fit-content;
     
    }
    .about-container{
        flex-direction: column;
   

        padding-bottom: 3em;
    }
    .card{
        margin: 3em auto 0;
        width: 90%;
        padding: 13px;
        font-size: 1em;
        box-shadow: 5px 5px 3px 0 rgba(0, 0, 0, 0.3);
    
    }
    .card p{
      
        font-size: 1rem;
    }
}

.customers{
    height: 100%;
    width: 100%;
    background-color: rgb(175, 199, 178);
    background: url(images/vecteezy_forest-nature-silhouette-landscape-spring-forest-pine_.jpg);
    color:#fff;
    font-family: 'Roboto Flex', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
  
    
}
.customers div{
    text-align: center;
    font-size: 2em;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 2em;
    padding: 2em;
}

/* Center the loader */
#loaderpage{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;

}

#loaderpage h2{
    margin-bottom: 2em;
}

#loader {
   
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
   
  }
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  
  #myDiv {
    display: none;
  }

.preheader{
    position: fixed;
    top:0;
    left:0;
    width: 100%;

    font-weight: 300;
    color: rgb(80, 80, 80);
    
    display: flex;
    flex-direction: row;
    height: 40px;
    z-index: 11;
    background-color:#c5c5c5;
    justify-content: space-evenly;
    align-items: center;
    padding-left: 4em;
    padding-right: 4em;
}
.preheader div{
    display: flex;
    flex-direction: row;
}


.footer{
    height: 40%;
    width: 100%;
    background-color: rgb(76, 148, 120);
    display:flex;
    flex-direction: row;
    padding: 2em;
    justify-content: space-evenly;
    color: white;
}
.testimonials{
    height: 50%;
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
 
}

.tests{
    display: inline-flex;
    flex-direction: row;
    animation: 85s slide infinite linear;
    font-size: x-large;
   
}

.tests div{
    white-space: wrap;
    width: 800px;
    height: 300px;
    
    margin: .8em;
    padding: .8em;
    border-radius: 1em;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    font-family: 'Roboto Flex', sans-serif;
}

.ending{
    font-size: x-large
}
#rower{
    display: flex;
    flex-direction: row;
}

@media (max-width: 700px){
      
        .preheader{
            flex-direction: column;
            height: 60px;
        }
        .customers{
            height: fit-content;
        }
        .customers div{
            text-align: center;
            font-size: 2em;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 1em;
            padding: 1em;
            margin: 1em;
        }
       
        .tests div{
            width: 320px;
        }
        .tests {
            font-size: 1rem;
        }
        .ending{
            font-size: medium;
        }
        #piccard{
            width:310px;
            height:400px;
        }
        #footer{
            font-size: small;
            align-items: center;
            display: flex;
            flex-direction: column;
        }
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translate(-100%);
    }
}