@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100&display=swap');
body{
    padding: 0;
    margin: 0;
;
    background-color: rgb(227, 247, 201);
    font-family: 'Poppins', sans-serif;
}
.body-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

}
nav{
    margin-bottom: 15px;
    height: 150px;
    width: 100%;
}
.nav-container{
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color:rgb(200, 236, 152)  ;
    border-radius: 0px 0px 10px 10px;
    padding: 0;
}
.left-container{
    width: 48%;
    height: 80%;
    background-color:rgb(160, 230, 70) ;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px;
}
.left-container h1{
    font-size: 22px;
    color:black;
    border-right: 2px solid white ;
    padding: 0px 35px;
}
.left-container p{
    margin: 27px 20px;
    color:black;
}
.right-container{
    width: 48%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(160, 230, 70);
    border-radius: 10px;
    padding: 5px;

}
.right-container .top-right{
    height: 45%;
    width: 92%;
    background-color: rgb(160, 230, 70);
    border-radius: 5px;
    border: 0.5px solid black ;
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: space-between;
    padding: 0px 10px;
}
.right-container .top-right h3{
    color: black;
}
.right-container .top-right .nav-icons{
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
.right-container .top-right i{
    font-size: 19px;
    color:  black;
}

.right-container .top-right .nav-icons i:hover{
    cursor: pointer;
    opacity: 0.8;
}
.right-container .down-right{
    height: 48%;
    width: 95%;
    background-color: rgb(200, 236, 152) ;
    border-radius: 5px;
    border:  0.5px solid black ;
}
.right-container .down-right ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(200, 236, 152) ;


}
.down-right ul li{
    float: left;
}
.down-right .nav-btn a{
  display: inline-block;
  color: black;
  text-align: center;
  width: auto;
  padding: 14px 10px;
  text-decoration: none;
}
.down-right .nav-btn a:hover{
    background-color: rgb(200, 236, 152);
    opacity: 0.8;
}
.down-right .nav-btn a:active{
    color: white;
}
 .drop-btn{
display: inline-block;
color: black;
width: 100%;
text-align: center;
text-decoration: none;
}

.dropdown-content a{
    width: 100%;
    text-align: center;
    margin-left: 20px;

}
.dropdown-content a:hover {
    opacity: 0.8;
}

.dropdown-content a:hover {background-color: rgb(200, 236, 152);}
.down-right .nav-btn{
    display: block;
    padding: 0px 20px;
}
 .dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(200, 236, 152);
  width: 120px;
  box-shadow: 0px 10px 10px 0px black;
  z-index: 1;
 }
#nav-btn:hover .dropdown-content{
    display: block;
}

.intro{
    padding: 0;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 10px;
    
}
.intro-container{
    height: 100%;
    width: 99%;
    background-color: rgb(200, 236, 152);
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding:0px 20px ;
}
.intro-container .profilepic-container{
    height: 92%;
    width: 20.7%;
    background-color:rgb(160, 230, 70);
    border-radius: 20px;
    overflow: hidden;
}

.intro-container .intro-text-container{
    height: 92%;
    width: 75.5%;
    border-radius:10px;
    background-color: rgb(160, 230, 70);
    padding: 0px 20px;
}
.intro-container .profilepic-container .profilepic{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    overflow: hidden;
}
.intro-container .profilepic-container .profilepic img{
    height: 99.8%;
    object-fit: cover;
}
.intro-container .intro-text-container h1{
    color: black;
}
.intro-container .intro-text-container p{
    font-weight: 500;
    text-align: justify;
}
.article{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.article .article-heading{
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.article .article-heading h1{
    text-align: center;
}
.article-container {
    height: 400px;
    width: 30%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(160, 230, 70);
    border-radius: 10px;
    margin: 20px 10px;
}

.article-content {
    text-align: center;
}

.article-image {
    width: 100px; /* Set the desired width for the profile picture */
    height: 100px; /* Set the desired height for the profile picture */
    border-radius: 50%;
    object-fit: cover;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.read-more-button {
    padding: 10px 20px;
    background-color: rgb(200, 236, 152);
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}        
.forum-container {
    width: 90%;
    margin: 20px auto;
    
}
.forum-container h1{
    text-align: center;
}
.forum-container h3{
    text-align: center;
}
.forum {
    background-color: rgb(160, 230, 70);
    margin-bottom: 20px;
    overflow: hidden;
    transition: height 0.5s ease;
    height: 300px; /* Set the initial height */
    padding: 30px 5px;
    border-radius: 10px;
    display:flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}

.preview img {
    width: 150px;
    max-height: 150px;
    border-radius: 20px;
}

.preview {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width:70%;
    background-color: rgb(200, 236, 152);
    border-radius: 20px;
}
.preview p{
    font-size: 35px;
    font-weight: 500;
}
.full-content {
    padding: 0;
    display: none;
    padding: 20px;
    overflow-y: auto;
    max-height: 850px;
}
.full-content p{
    text-align: justify;
}
.full-content .image-containers{
    max-height: 150px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin: 40px 0px;

}
.full-content .image-container{
    width: 40%;
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;

}
.full-content .image-containers .image-container-video{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.full-content .image-container .image-container-video video{
    object-fit: contain;
    width: 100%;
}
.full-content .image-container img{
    width: 80%;
    object-fit: contain;
    margin: 0px 10px;
    border-radius: 15px;
}
.full-content .text-container-full-content{
    margin: 70px 10px;
}
.expanded {
    height: 850px;
}

.expand-button {
    background-color: rgb(200, 236, 152);
    color: black;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius:5px ;
    box-shadow: 0px 0px 4px 1px black;
    margin: 0px 20px;
}

.expand-button:hover {
    opacity: 0.8;
}
.video-container{
    height: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 20px;
}

.videos-container {
    height: 400px;
    width: 70%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: space-around;
    background-color: rgb(160, 230, 70);
    border-radius: 10px;
}
.videos-container .title-div{
    width: 45%;
}
.videos-container .title-div h2{
    text-align: justify;
}
.video-image-container{
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: space-around;
}
.video-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;

}

.video-iframe-container {
    height: 300px;
}

.audio-containers{
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 70px;

}
.audio-containers .audio-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    height: 90%;
    background-color: rgb(160, 230, 70);
    padding: 0px 20px;
    border-radius: 10px;
}
.audio-containers .audio-container .audio-title{
    width: 30%;
}
.audio-containers .audio-container .audio-title h3{
    text-align: justify;

}
.audio-container .audio-image-container{
    width: 20%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.audio-container .audio-image-container img{
    max-width: 100%;
    border-radius: 50%;
    height: auto;
}
footer{
    bottom: 0;
    height: 25px;
    width: 100%;
    background-color: rgb(160, 230, 70);
    color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;
}
.contact-container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid rgb(160, 230, 70);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    text-align: center;
}

.contact-container form {
    display: flex;
    flex-direction: column;
}

.contact-container label {
    margin-top: 10px;
}

.contact-container input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid rgb(160, 230, 70);
    border-radius: 5px;
}

.contact-container button {
    padding: 10px;
    background-color: rgb(160, 230, 70);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-container button:hover {
    background-color: rgb(200, 236, 152);
}
.intro2{
    width: 100%;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.intro2 .intro2-container{
    height: 100%;
    width: 100%;
    background-color: rgb(200, 236, 152);
    border-radius: 10px;
}
.intro2 .intro2-container p{
    text-align:justify;
    padding:0px 10px;
}



/* ... previous code ... */

@media only screen and (max-width: 450px) {
    .nav-container {
        flex-direction: column;
        height: auto;
    }

    .left-container, .right-container {
        width: 100%;
        text-align: center;
        height: 50px;
    }

    .left-container h1 {
        font-size: 15px;
        border-right: none;
        padding-right: 0;
        margin-top: 0;
    }
    .left-container p{ 
        margin-top: 0;
    }

    .right-container {
        margin-top: 15px;
        height: 60px;
        overflow: visible;
    }
.right-container .top-right{
    display: none;
}
 .right-container .down-right {
        width: 100%;
    }

    .right-container .top-right .nav-icons {
        width: 100%;
        justify-content: center;
    }

    .right-container .down-right ul {
        display: flex;
        flex-direction: row;
    }
    .down-right .nav-btn a{
        font-size: 14px;
        padding: 0px 10px;
    }
    .dropdown-content {
        position:absolute;
        display: none;
        background-color: rgb(200, 236, 152);
        width: 70%;
        box-shadow: none;
        z-index: 2;
    }
    .dropdown-content a{
        margin: 0;
    }

    #nav-btn:hover .dropdown-content {
        display: block;
        z-index: 1;
    }

    .down-right .nav-btn {
        display:inline-block;
        padding: 10px 0;
    }
    .intro{
        height: 715px;
    }
    .intro-container{
        flex-direction: column;
    }
    .intro-container .profilepic-container{
        height: 40%;
        width: 50%;
        margin: 10px 0px;
        padding: 0;
    }
    .intro-container .profilepic-container .profilepic{
        width: 100%;
        height: 100%;

    }
    .intro-container .intro-text-container{
        width: 90%;
    }
    .intro-container .intro-text-container h1{
        font-size: 16px;
        text-align: center;
    }
    .intro-container .intro-text-container p{
        font-size: 15px;
    }
    .article .article-heading h1{
        font-size: 15px;
        font-weight: 900;
    }
    .article .article-container{
        width: 90%;
    }
    .preview{
        margin-bottom: 20px;
    }
    .preview p{
        font-size: 20px;
        padding:0px 20px;
    }
    .full-content{
        max-height: 900px;
    }
    .full-content .image-containers{
        flex-direction: column;
        max-height: 550px;
    }
    .full-content .image-container{
        margin: 10px 0px;
        width: 100%;
    }
    .video-container{
        height: 800px;
    }
    .videos-container{
        width: 90%;
        flex-direction: column;
        height: 700px;
    }
    .videos-container .title-div{
        width: 95%;
    }
    .videos-container .title-div h2{
        font-size: 16px;
    }
    .videos-container .video-image-container{
        height: 15%;
        padding: 20px 0px;
    }
    .videos-container .video-iframe-container{
        height: 400px;
    
    }
    .audio-containers{
        height: 400px;
        margin-bottom: 200px;
    }
    .audio-containers .audio-container{
        width: 80%;
        flex-direction: column;
    }
    .audio-containers .audio-container .audio-title{
        width:90%;
    }
    .audio-containers .audio-container .audio-title h3{
        font-size: 25px;
        text-align:center;
    }
    .audio-container .audio-image-container{
        height: 30px;
        width: 90%;
    }
    footer{
        height: 40px;
        padding: 5px 0px;
    }
    footer p{
        text-align: center;
    }
}

@media only screen and (min-width: 451px) and (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
    }

    .left-container, .right-container {
        width: 100%;
        text-align: center;
    }

    .left-container h1 {
        border-right: none;
        padding-right: 0;
    }

    .right-container {
        margin-top: 15px;
    }

    .right-container .top-right, .right-container .down-right {
        width: 100%;
    }

    .right-container .top-right .nav-icons {
        width: 100%;
        justify-content: center;
    }

    .right-container .down-right ul {
        display: flex;
        flex-direction: column;
    }

    .dropdown-content {
        position: static;
        display: none;
        background-color: rgb(200, 236, 152);
        width: 100%;
        box-shadow: none;
    }

    #nav-btn:hover .dropdown-content {
        display: block;
    }

    .down-right .nav-btn {
        display: block;
        padding: 10px 0;
    }
}
