
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Poppins", Times ,serif;
    background-color:  #f7f7f7;
    color: #333;
}
/* class selector */
.hero{
     padding: 300px;
}
.hero-title{
    color: #f5f5f5;

}
.hero-desc{
    color : #8be47f;
}
.hero-desc span{
    color: #ebe3e2;
}
.feature{
    padding: 100px;
}
.feature-item{
    padding: 30px 0;
}
.feature-title{
   font-size: 2rem;
   font-weight: 500;
   text-transform: uppercase;
   color: #8be47f;
   margin-bottom: 10px;
}
.feature-title-selected{
    text-decoration: underline;
}
 .cta {
    padding: 100px;
    background-color:#5bb471;
    color: #ffff;
    text-align: center;

 }
 .cta-desc{
    padding: 15px 0;
    color: #dbdbdb;
 }
 button{
    color: none;
    border: none;

 }
 .cta-btn{
    padding: 10px 20px;
    border-radius: 15px;
 }

 .video{
    text-align: center;
    padding: 100px;
    font-weight: 500;
 }
 .video-title{
    font-size: 32px;
    font-weight: 500;
 }
.video-desc{
    margin-top: 10px;
    font-weight: 300;
    color: #6e6e6e;  
 }
 .video-control{
    margin-top: 20px;
 }
 .video-btn{
   border: 1px solid #5bb471;
   background: none;
   padding: 10px 20px;
 }

.video-btn-primary{
    margin-right: 10px;
 }
 .video-container{
    margin-top: 20px;
    background-color: #868484;
    width: 100%;
    height: 500px;
     box-shadow: 1px 4px 7px 4px rgba(0, 0, 0, 0.33);
 }
.programs{
    padding: 100px;
    background-color: #eee;
    padding-bottom: 200px;
}
.programs-cards{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}
.programs-card{
    background-color: #b5b5b5;
    padding: 30px;
    width: 30%;
    height: 400px;
}


.element{
    display: flex;
    justify-content: space-between;
    padding: 100px ;
    gap: 60px;
    background-color: #f8f9fa;
}

.element-left{
    flex:1;
}
.element-right{
    flex:1;
}
.element-subtitle{
    color: #5d5d5d;
    margin-top: 10px;
    margin-bottom: 30px;
}
.element-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.element-placeholder{
    background-color: grey;
    width: 100%;
    height: 100%;
}
.element-list{
    list-style-type: none;
    padding-left: 0;
}
.element-list-item{
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #5d5d5d;
}
.element-list-item::before{
    content: "->";
    margin-right: 10px;
    color: #34c759;
}
.element-form-grp{
    display: flex;
    flex-direction: column;
    gap:8;
}
.element-form-grp label {
        color: #333;
        font-weight: 500;
}
.element-form-grp input , 
.element-form-grp select {
       padding: 12px;
       border: 1px solid #e0e0e0;
       border-radius: 6px;
       font-family:inherit;
}
.element-form-grp input:focus , 
.element-form-grp select:focus {
    outline: none;
    border-color:#34c759 ;
    box-shadow: 0 0 0 2px rgba(52 , 199 ,89,0.2);
}
.element-form-grp select{
    cursor: pointer;
    background-color: white;
}
.element-form-grp option{
    padding: 8px;
}
.element-btn{
    background-color: #34c759;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}
.element-btn:hover{
    background-color: rgb(116, 240, 116);
}
.hero{
    height: 50vh;
    background-size:cover ;
    background-image: url(images/hero.jpg);
    background-position: center;
    background-color: rgba(0, 0, 0, 0.55);
    background-blend-mode:overlay ;
    text-align: center;
    align-content: center;
}
.feature{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.feature_container{
    flex-basis: 50%;
}
.feature-Img-container{
    flex-basis: 50%;
}
.feature-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-title{
    font-size: 24px;
    font-weight: 400;
}
.cta-btn-primary{
    background-color: #d0d0d0;
    
}
.video-btn-primary:hover{
    background-color: #5bb471;
    color: white;
    cursor: pointer;
}
.cta-btn-secondary{
    background-color: #d0d0d0;
}
.video-btn-secondary:hover{
    background-color: #5bb471;
    color: white;
    cursor: pointer;
}
.video-container{
    background-image: url(./images/video.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.05);
    height: 700px;
}
.programs-card{
    background: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 15px;
    flex-basis: 30%;
    border-radius: 8px;
    height: 500px;
}
.program_card_img{
    height: 800px;
    width: 100%;
    min-height: 200px;
    object-fit: cover;
    border-radius: 4px;

}
.programs_card_desc{
    color: #6e7e6e;
    font-weight: 300;
    margin-bottom: 15px;
}
.programs_btn{
    background-color:#67bc7c ;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: auto;
    border-radius: 4px;
}
.programs_btn:hover{
    background-color: #1fcb4a;
}
.form_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

nav{
    
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-top: 10px;
    padding-left:8px;
    position: fixed;
    background-color: rgb(243, 243, 243);
    width: 100%;
}

nav  a{
    text-decoration: none;
    color: #333;
}
nav .webtitle{
     font-family: cursive;
}
.list ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-decoration: none;
    gap: 30px;
    padding-top: 5px;
}
.list ul a{
    text-decoration: none;
    list-style: none;
    color: #333;
}
.list ul li:hover{
    color: #000000;
    font-weight: 500;
}
nav .list .active{
    color: #1fcb4a;
}
footer{
    text-align: center;
    color: #333;
    font-family: cursive;
}