@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body,
html {
    max-width: 100%;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 2px 10px 2px 50px;
    width: 100%;
    border: 1px solid #D9D9D9;
    box-shadow: 0px 4px 4px rgb(0 0 26 / 25%);
    /* border-radius: 10px; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.navbar a {
    display: block;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    color: #000;
    /* font-weight: 500; */
    transition: all 0.2s ease;

}

.navbar a:hover {
    color: #106672;
    font-weight: 600;
    /* border: 1px solid #000; */
    transform: scale(1.3);
}

.navbar a img {
    width: 80px;
}

.logo {
    margin-right: 50px;
}

.list {
    list-style: none;
    display: flex;
    gap: 25;
}

#toggler,
.navbar label {
    display: none;
    font-size: 300px;
}

.navbar i {
    font-size: 34px;
}

/*  Ending of Navigation Bar */





/* Background image of home page */


header {
    width: 100%;
    height: 100vh;
    background-image: url('Img/about-bg4.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 60px;
    /* border: 2px solid black; */
}






.blog-container {
    width: 90%;
    /* height: 100vh; */
    /* max-height: 2000px; */
    /* border: 2px solid gray; */
    margin: 50px auto;

    display: flex;
    justify-content: space-between;
}

.blog-container .blog-quote p {
    font-size: 1.09rem;
    font-weight: 600;
}

.blog-left-side-container {
    /* border: 2px solid gray;
    background-color: lightgreen; */
    width: 60%;
}

.blog-left-side-content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.blog-left-side-content img {
    width: 100%;
    /* height: 70vh; */
}

.blog-details {
    padding: 2px 5px;
    margin: 20px 0px;
    /* border: 1px solid lightgray; */
    box-shadow: 4px 4px 10px 4px rgba(0, 0, 0, 0.2);
}

.blog-details .fa-user {
    color: darkgray;
}

.blog-details .blog-admin {
    font-weight: 600;
}

.blog-details .blog-topic {
    margin: 5px 0px;
}

.blog-details .blog-para {
    text-align: justify;
}

.blog-details .blog-read-more {
    background-color: #106672;
    display: inline-block;
    color: white;

    padding: 3px 8px;
    margin: 10px 0px;
    border-radius: 5px;
}










.blog-right-side-container {
    /* border: 2px solid gray; */
    /* background-color: lightgreen; */
    width: 35%;
}

.blog-most-liked-container {
    /* height: 100vh;
    border: 2px solid black; */
}

.blog-right-side-container .blog-quote-heading p {
    font-size: 1.09rem;
    font-weight: 600;
}

.blog-liked-data {
    display: flex;
    border: 1px solid rgb(229, 229, 229);
    padding: 10px 5px;
    box-shadow: 1px 2px 5px 2px rgba(0, 0, 0, 0.2);
    height: 115px;
    margin: 20px 2px;
}

.blog-liked-data img {
    width: 110px;
    margin: 2px 8px 2px 0px;

}

.find-out-more-content {
    border: 2px solid black;
    /* height: 350px; */
    border-radius: 10px;
    padding: 30px;
    background-image: url('img/blog-img5.jpg');
    background-size: cover;
}

.find-out-more-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.find-out-more-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.find-out-more-btn {
    /* display: inline; */
    /* margin: 50px auto;
    
    border: 2px solid gray;
    text-align: center;
    padding: 10px 20px; */
}

.find-out-more-btn a {

    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin: 40px 60px;
    text-align: center;
    border: #16A085 2px solid;
    background-color: #16A085;
    padding: 10px;
}






















/* Small Mobile devices */
@media screen and (max-width: 480px) {

    .top-image-content {
        margin: 0;
        padding: 0;
    }

    .menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
    }

    .list {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .navbar label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    #toggler:checked~.menu {
        max-height: 100%;
    }

    .review-container {
        display: block;
        /* padding: 10px 100px; */
    }

    .review-card {
        margin: 0px 40px;
    }
}





/* large Mobile devices */
@media screen and (max-width: 767px) {

    .menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
    }

    .list {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .navbar label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    #toggler:checked~.menu {
        max-height: 100%;
    }

    .blog-container {
        justify-content: flex-start;

    }

    .blog-right-side-container {
        width: 100%;
    }
}





/* large Tablets devices */
@media screen and (max-width: 1000px) {

    .navbar {
        padding: 2px 10px 2px 40px;
    }

    .navbar a img {
        width: 70px;
    }

    .navbar a {
        margin: 0 10px;
        font-size: 1rem;
    }

    .blog-container {
        /* display: block; */
        align-items: center;
        flex-direction: column;
        /* width: 100%; */
    }

    .blog-left-side-container {
        /* display: block; */
        width: 90%;
    }

    .blog-right-side-container {
        /* display: block; */
        width: auto;
    }

    .blog-liked-data {
        height: auto;

    }


}


















/* Starting of Footer Section  */

.footer {
    background-color: #000;
    padding: 30px 50px;
}

.footer-container {
    max-width: 1170px;
    background-color: #000;
    margin: auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer-column {
    width: 18%;
    padding: 0 15px;
}

.footer-contact-column {
    width: 32%;
    padding: 0 15px;
}

.footer-column,
.footer-contact-column,
h4 {
    font-size: 14px;
    color: rgb(255, 199, 95);
    text-transform: capitalize;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
}

.footer h4 {
    font-size: 20px;
}

.foote-column,
.footer-contact-column ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-column,
.footer-contact-column,
ul,
li,
a {
    font-size: 16px;
    line-height: 30px;
    text-decoration: none;
    font-weight: 300;
    color: rgb(180, 180, 180);
    display: block;
    transition: all 0.3s ease;
}

i {
    font-size: 20px;
    margin-right: 10px;
}

.footer-column,
.footer-contact-column,
ul,
li,
a:hover {
    color: #fff;
}

@media(max-width: 767px) {

    .footer-column,
    .footer-contact-column {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {

    .footer-column,
    .footer-contact-column {
        width: 80%;
        margin-bottom: 30px;
    }
}


/* Ending of Footer Section  */