*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'poppins', sans-serif;
}
body{
    background-position: center;
}
.social{
    float: right;
    margin-top: 10px;
}
.social ul{
    list-style: none;
    margin-top: 10px;
}
.social ul li{
    position: relative;
    float: right;
}
.social ul li a{
    color: #149900;
    padding:10px;
    font-size: 20px;
}
.social ul li a:hover{
    color:#fdc003;
    transition: .3s ease;
}
.social p{
    color: black;
    font-size: 10px;
    margin-top: 5px;
    float: right;
    margin-right: 5px;
}   
.logo{
    width: 90px;
    height: 90px;
    float: left;
    margin-left: 30px;
    margin-top: 5px;
    border-radius: 5px solid white;
}
header{
    position: relative;
    top:10px; left: 0; right: 0;
    padding:2%;
    background:white;
    display: flex;
    align-items:center;
    justify-content: space-between;
    z-index: 99;  
    background-color: #149900;
    width: 100%;
    height: 20px;
/*    box-shadow: 0 0 10px #000;*/
    font-family: 'Poppins', sans-serif;
}
header .navbar ul{
    list-style: none;
}
header .navbar ul li{
    position: relative;
    float: left;
}
header .navbar ul li a{
    font-size: 15px;
    font-weight: 900;
    padding: 20px;
    color: white;
    display: block;
    transition: .3 ease;
}
header .navbar ul li a:hover{
    color: #fdc003;
    transition: .3s ease;
}
header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background: #149900;
    display: none;
/*    top: 45px;*/
}
header .navbar ul li ul li{
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .3);
}
header .navbar ul li ul li ul{
    left: 200px;
    top: 0;
}
/*submenu*/
header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul{
    display: initial;
}
#menu-bar{
   display: none;
   font-size: 20px;
}
header label{
    color: white;
    cursor: pointer;
    display: none;
}
.show, input{
    display: none;
}
@media(max-width:991px){
    header{
        padding: 20px;
    }
    header label{
        display: initial;
        font-size: 30px;
    }
    header .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background:  #149900;
        border-top: 1px solid black;
        display: none;
    }
    header .navbar ul li{
        width: 100%;
    }
    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }
    header .navbar ul li ul li{
        background: #e6e600;
    }
    header .navbar ul li ul li ul{
        width:100%;
        left: 0;
    }
    #menu-bar:checked ~ .navbar{
        display: initial;
}
}
/*CONTENT*/
.content-header{
    padding: 5px 0px;
    margin-top: 20px;
    border-bottom: 4px solid #149900;
}
.content-header h1{
    font-size: 30px;
    text-align: center;
    margin-top: 10px;
    font-family: 'Diphylleia',sans-serif;
    color:black;
    line-height:2;
}
/*testimonials*/
section{
    position: relative;
    width: 100%;
    margin-top: 40px;
}
.wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}
.wrapper .container{
    position: relative;
    width: 400px;
    color: white;
    background: whitesmoke;
    border-block: 3px solid #149900;
    border-style: dashed;
    margin: 40px 20px;
    padding: 30px 30px;
    border-radius: 3px;
    transition: 0.3s ease;

}
.wrapper .container .profile{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -7%;
    width: 100%;
    display: block;
}
.wrapper .container .profile .imgBox{
    position: relative;
    height: 100px;
    width: 100px;
    margin:auto;
    border:4px solid green;
    border-radius: 50%;
    overflow: hidden;
}
.wrapper .container .profile .imgBox img{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    object-fit: cover;
    transition: 0.3% ease;

}
.wrapper .container .profile .imgBox:hover img{
    filter: saturate(50%);
    transform: scale(0.9);
}
.wrapper .container .profile h2{
    font-size: 20px;
    padding: 5px 0;
    text-transform: capitalize;
    color: black;
    letter-spacing: 1px;
    text-align: center;
}
.wrapper .container p{
    margin-top: 50px;
    color: black;
    font-weight: 400;
    padding: 0 8px;
    font-size:12px;
    opacity: 0.8;
    text-align: justify;
     font-family: 'Poppins';
}
.wrapper .container .left{
    font-size: 30px;
    display: block;
    text-align: left;
    color: #149900;
}
.wrapper .container .right{
    font-size: 30px;
    display:block;
    text-align: right;
    color: #149900;
}
/*video testimonials*/
.video-container{
    position: flex;
    top: 10px;
}
.video-container h1{
    color:black;
    text-align:center;
    padding: 15px;
    font-size: 30px;
    font-weight: normal;
}
.video-container .video-cont{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}
.video-container .video-cont .video{
    height: 250px;
    width: 350px;
    border: 5px solid white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7) ;
    overflow: hidden;
}
.video-container .video-cont .video iframe{
    height:100%;
    width: 100%;
    object-fit:cover;
    transition: .2s linear;
}
.video-container .video-cont .video:hover iframe{
    transform: scale(1.1);
}
.video-container .popup-video{
    position: fixed;
    top: 0; left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
    width: 100%;
    display: none;
}
.video-container .popup-video iframe{
    position: absolute;
    top: 50%; left:50%;
    transform: translate(-50%, -50%);
    width: 750px;
    border-radius: 5px;
    border:3px solid white;
    object-fit: cover;
}
.video-container .popup-video span{
    position: absolute;
    top: 5px; right: 20px;
    font-size: 50px;
    color: white;
    font-weight: bolder;
    z-index: 100;
    cursor: pointer;
}
@media (max-width:768px){
    .video-container .popup-video iframe{
    width: 95%; 
    }
}

/*footer*/
footer{
    margin-top: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -ms-flex;
    display: flex;
    flex-flow: row wrap;
    padding: 15px;
    color:  white;
    background-color:#149900;
    width: 100%;
    overflow: hidden;
}
.footer-left{
    margin-right:1.25em ;
    margin-bottom:2px ;
}
.footer-left img{
    width: 30px;
    height: 30px;
}
.footer-right h2{
    font-weight: 600;
    font-size: 12px ;
    color: white;
    font-family: 'poppins',sans-serif;
    transform: uppercase;
}
.footer ul{
    list-style: none;
    padding-left: 0;
    font-size: 10px;
}
.footer li{
    line-height: 2em;
}
.footer a{
    text-decoration: none;
}
.footer-right{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -ms-flex;
    display: flex;
    flex-flow: row wrap; 
}
.footer-right > *{
    flex: 1 50%;
    margin-right: 1.25em;
}
.box a{
    color: white;
}
.footer-bottom{
    text-align: center;
    color:white;
    padding-top: 50px;
    font-size: 8px;
}
.footer-left p{
    padding-right: 20%;
    color: white;
    font-size: 10px;
}
.socials a{
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 10px;
    margin-top: 20px;
    color: white;
}
@media screen and (min-width:600px){
    .footer-right > *{
        flex: 1;
    }
    .footer-left{
        flex: 1 0px;
    }
    .footer-right{
        flex: 2 0px ;
    }
}
@media screen and (max-width:600px){
    .footer{
        padding:15px;
    }
    .main{
        font-size: 55px;
    }
}