/* Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Rubik+Wet+Paint&display=swap'); /*for other text  */
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two&family=Mynerve&family=Ysabeau+SC:wght@400;600;900&display=swap'); /* for Heading */
@import url('https://fonts.googleapis.com/css2?family=Labrada:wght@400;500&display=swap'); /* for paragraph */

*{
    font-family: 'Rubik Wet Paint';
    font-family: 'Ysabeau SC', sans-serif;
    font-family: 'Labrada', serif;
    margin: 0;
    padding:0 ;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
}

/* some Variables */
:root{
--text-color: rgb(0, 0, 0); 
--bg-color:#ffffff;
}

/* Custom Scroll Bar */

html::-webkit-scrollbar{
    width: 0.5 rem;
}
html::-webkit-scrollbar-thumb{
    background: transparent;
}
html::-webkit-scrollbar-track{
    background: var(--text-color);
    border-radius: 5 rem;
}
section{
    padding: 50px 100px;
}

img{
    width: 6%;
    margin-bottom: 200px;
}

 body{
    background-color: rgb(0, 0, 0);
} 

 header{
    position: fixed; 
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 100px ;
    transition: 0.5s;
    
} 

.logo{
   font-size: 1.2rem;
   font-weight: 600;
   color: var(--bg-color) ;
   font-family: 'Rubik Wet Paint'
}

.navbar{
    display: flex;
    column-gap: 3rem;
}

.navbar li{
position: relative;
}

.navbar a{
    font-size: 1rem;
    font-weight: 800;
    color: var(--bg-color);
}

.navbar a::after{
    content: '';
    width: 0% ;
    height: 2px;
    background:var(--bg-color);
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: 0.4s;
}

.navbar a:hover::after,
.navbar a.active::after {
     width: 100%;
 }

#menu-icon{
    font-size: 24px;
    cursor: pointer;
    z-index: 100001;
    display: none; 
}


/* For screens with a maximum width of 1060px */
@media screen and (max-width: 1060px) {
    header {
        padding: 20px 40px; /* Adjusted padding for medium screens */
    }
}

/* For screens with a maximum width of 790px */
@media screen and (max-width: 790px) {
    header {
        padding: 15px; /* Adjusted padding for small screens */
    }

    .navbar {
        column-gap: 0.5rem; /* Adjusted gap for small screens */
    }
    .navbar a{
        font-size: 12px;
    }
}

/* For screens with a maximum width of 340px */
@media screen and (max-width: 340px) {
    .navbar li {
        margin-bottom: 5px; /* Further adjusted margin for extra small screens */
    }
}


.container{
    width: 100%;
    min-height: 640px;
    position: relative;
    display: flex;
    align-items: center;
}
.container img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.swiper-pagination-bullet{
    padding: 5px;
}
.swiper-pagination-bullet-active{
    background: var(--bg-color) !important;
}
.home-text{
    position: relative;
    z-index: 100001;
    padding: 30 40px;
    padding-top: 180px;
    padding-left: 50px;
}
.home-text span{
    color:var(--bg-color) ;
    font-weight: 400;
}
.home-text h1{
    color: var(--bg-color);
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Ysabeau SC', sans-serif;
}
.home-text p{
    color: var(--bg-color);
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    font-family: 'Labrada', serif;
}

/* Button hover effect */
.btn{
    background: black;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.7rem 1rem;
    transition: 0.5s;
    border: 2px solid rgb(255, 255, 255);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn:hover{
    background: var(--clr);
    color: var(--clr);
    letter-spacing: 0.25em;
    box-shadow:0 0 35px var(--clr) ;
} 

/* Media queries for responsiveness for Swiper*/

@media (max-width: 1060px) {
    img {
        margin-bottom: 50px; /* Adjusted margin for medium screens */
    }
}

@media (max-width: 991px) {
    img {
        margin-bottom: 30px; /* Adjusted margin for screens up to 991px */
    }

    .home-text {
        padding-top: 60px; /* Adjusted top padding for screens up to 991px */
        padding-left: 15px; /* Adjusted left padding for screens up to 991px */
    }

    .home-text h1 {
        font-size: 2.2rem; /* Adjusted font size for screens up to 991px */
    }

    .home-text p {
        font-size: 0.95rem; /* Adjusted font size for screens up to 991px */
    }
}

@media (max-width: 790px) {
    img {
        margin-bottom: 30px; /* Adjusted margin for smaller medium screens */
    }

    .home-text {
        padding-top: 60px; /* Adjusted top padding for smaller medium screens */
        padding-left: 10px; /* Adjusted left padding for smaller medium screens */
    }

    .home-text h1 {
        font-size: 2rem; /* Adjusted font size for smaller medium screens */
    }

    .home-text p {
        font-size: 0.9rem; /* Adjusted font size for smaller medium screens */
    }
}

@media (max-width: 340px) {
    img {
        margin-bottom: 10px; /* Adjusted margin for small screens */
    }

    .home-text {
        padding-top: 40px; /* Adjusted top padding for small screens */
        padding-left: 5px; /* Adjusted left padding for small screens */
    }

    .home-text h1 {
        font-size: 1.8rem; /* Adjusted font size for small screens */
    }

    .home-text p {
        font-size: 0.8rem; /* Adjusted font size for small screens */
        margin-bottom: 1.5rem;
    }
}

/* Nav bar sticky  */
header.sticky{
    padding: 5px 100px;
    background: rgb(0, 0, 0);
}
header.sticky .logo,
header.sticky ul li a {
    color: rgb(212, 0, 0);
}


/* Post slider */
.post-slider{
    position: relative;
}
.post-slider .slider-title{
    text-align: center;
    margin: 30px auto;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 3.5rem;
    color: red;
    border-bottom: 2px solid red;
    padding-bottom: 12px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.post-slider .post-wrapper{
    width: 84%;
    height: 400px;
    margin: 0px auto;
    margin-top: 30px;
    overflow: hidden;
    padding:10px 0px 10px 0px ;
}

.post-slider .post-wrapper .post{
    width: 300px;
    height: 350px;
    margin: 0px 10px;
    display: inline-block;
    background:white;
    border-radius:5px ;
    box-shadow: 1rem 1rem 1rem -1rem gray;
    position: relative;
}

.post-slider .next{
    position: absolute;
    margin-top: 170px;
    right: 30px;
    font-size: 2em;
    color: red;
    cursor: pointer;
}

.post-slider .prev{
    position: absolute;
    margin-top: 170px;
    left: 30px;
    font-size: 2em;
    color: red;
    cursor: pointer;
}
 .post-slider .post-wrapper .post .slider-image{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
}
 .post-slider .post-wrapper .post .post-info{
    color: black;
    width: 100%;
    height: 130px;
    box-sizing: border-box;
    padding: 10px;
    position: absolute;
    margin-top: 180px;
    font-size: 1em;
    
}  
.post-slider .post-wrapper .post .post-info h2,p{
padding-bottom: 5px;
}
.post-slider .post-wrapper .post .post-info h2 a{
    font-family: 'Ysabeau SC', sans-serif;
}
.post-slider .post-wrapper .post .post-info h2 a:hover{
    color: rgb(152, 0, 0);
    font-size: 28px;
}

a{
    text-decoration: none;
    color: black;
}
.page-wrapper a:hover{
    color: rgb(179, 7, 7);
    font-family: 'Rubik Wet Paint';
}

@media screen and (max-width: 1060px) {

    .post-info h2{
        font-size: 15px;
    }
}

/* End of CSS of Trending Top Blogs */

/* Start of CSS of Recent Blogs */

.clearfix::after{
    content: '';
    display: block;
    clear: both;
}

.button{
    padding: .2rem 1rem;
    background: black;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 2em;
    line-height: 2.5;
}
.content{
    width: 90%;
    margin: 30px auto 30px;
}

.content .main-content{
width: 70%;
float: left;
}

.content .main-content .recent-post-title{
    margin: 25px;
    font-size: 3.5rem;
    color: rgb(147, 0, 0);
    font-family: 'Ysabeau SC', sans-serif;
    border-bottom: 2px solid rgb(129, 0, 0);
    padding-bottom: 12px;
}
.content .main-content .post{
    width: 95%;
    height: 270px;
    margin: 15px auto;
    border-radius: 5px;
    background: white;
    position: relative;
}
.content .main-content .post .read-more{
    position: absolute;
    bottom: 10px;
    right: 10px;
    border: 1px solid black;
    background: transparent;
    border-radius: 30px;
    color: #000000 !important;
    font-family: 'Ysabeau SC', sans-serif;
}
.content .main-content .post .read-more:hover{
    background: rgb(153, 3, 3);
    color: #ffffff !important;
    box-shadow: 2px 2px 4px 3px red;
    border: 1px solid transparent;
}

.content .main-content .post .post-image{
    width: 40%;
    height: inherit;
    float: left;
    position: absolute;
}
.content .main-content .post .post-preview{
    padding: 10px;
    width: 60%;
    float: right;
    
}
.content .main-content .post .post-preview i{
    line-height: 2.5;
    font-size: .78rem;
}
.content .main-content .post .post-preview h1 a{
    font-size: 2.1rem;
    font-family: 'Ysabeau SC', sans-serif;
}
.content .main-content .post .post-preview h1 a:hover{
    color: red;
    font-size: 2.3rem;
    font-weight: 900;
}

/* Sidebar */

.text-input{
    padding: .7rem 1rem;
    display: block;
    width: 100%;
    border-radius: 5px;
    outline: none;
    color: rgb(46, 46, 46);
    line-height: 1.5rem;
    font-family: 'Ysabeau SC', sans-serif;
    border: 1px solid rgb(98, 98, 98);
    font-size: 1.2em;
}
.content .sidebar{
    width: 30%;
    float: left;
    height: 300px;

}
.content .sidebar .section{
    background: rgb(235, 0, 0);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.content .sidebar .section.search{
    margin-top: 115px; 
}
.content .sidebar .section.search .section-title{
    font-family: 'Ysabeau SC', sans-serif;
    color: rgb(0, 0, 0); 
    font-size: 2rem;
    margin-bottom: 20px;
}

.content .sidebar .section.category .section-title{
    font-family: 'Ysabeau SC', sans-serif;
    color: rgb(0, 0, 0); 
    font-size: 2rem;
    margin-bottom: 20px;
}
.content .sidebar .section.category ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
    border-top: 1px solid black;
}
.content .sidebar .section.category ul li a{
    display: block;
    padding: 15px 0px 15px 0px;
    line-height: 2;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 1.3rem;
    border-bottom: 1px solid black;
    transition: all 0.3s;
}
.content .sidebar .section.category ul li a:hover{
    padding-left: 10px;
    transition: all 0.3s;
    color: #000000;
    font-family: 'Rubik Wet Paint'; 
}
/* Sidebar */

/* Media Queries for Responsive Design for Recent blog */

@media screen and (max-width: 1060px) {
    .content .main-content .post .post-image {
        width: 40%;
        height: inherit;
        float: left;
        position: absolute;
        display: block;
    }

    .content .main-content .post .post-preview {
        width: 60%;
        float: right;
    }
    .content .main-content .post .post-preview h1{
        font-size: 20px;
    }

    .content .main-content .post{
        margin-left: 20%;
    }

    .content .sidebar {
        width: 100%;
        float: none;
        height: auto;
    }
}

@media screen and (max-width: 790px) {
    .content .main-content .post {
        height: auto;
    }

    .content .main-content .post .post-image {
        width: 100%;
        height: auto;
        float: none;
        position: relative;
    }

    .content .main-content .post .post-preview {
        width: 100%;
        float: none;
    }

    .content .sidebar {
        width: 100%;
        float: none;
        height: auto;
    }

    .content .sidebar .section.search {
        margin-top: 0;
    }

    .content .main-content .post .post-preview h1 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 340px) {
    .content .main-content .post .post-preview h1 {
        font-size: 1.5rem;
    }}

/* Demonic cases */

.blog-section h1{
    font-size: 3.5rem;
    text-align: center;
    color: #d70000;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 30px;
    margin-top: 30px;
    font-family: 'Ysabeau SC', sans-serif;
    border-bottom: 2px solid red;
    padding-bottom: 12px;
}

.blog-cards{
    width: 85%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    align-items: center;
}
.blogcard{
    display: flex;
    flex-direction: column;
    margin: 0px 15px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    position: relative;
    height: 400px;
    width: 100%;

}
.blogcard img{
    width: 100%;
    height: 200px;
    position: absolute;

}
.blog-content{
    padding-top: 210px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}
.blog-content h2{
    font-size: 1.7rem;
    font-family: 'Ysabeau SC', sans-serif;
}
.blog-content p{
    font-size: 13px;
    color: #555;
}

.blog-content a{
    position: absolute;
    bottom: 10px;
    right: 10px;
    border: 1px solid black;
    background: transparent;
    border-radius: 30px;
    color: #000000 !important;
    font-family: 'Ysabeau SC', sans-serif;
}
.blog-content a:hover{
background: rgb(153, 3, 3);
color: #ffffff !important;
box-shadow: 2px 2px 4px 3px red;
border: 1px solid transparent;
}

/* Responsive for demonic cases */
@media screen and (max-width: 768px){
    .blog-cards{
        flex-direction: column;
    }
    .blogcard{
        margin: 20px 0px;
    }
    .blog-image img{
        max-width: 100%;
    }
    
}
@media screen and (max-width: 1060px){
    .blog-content h2{
        font-size: 15px;
    }
}
/* related topics */
#relatedtopic-section{
    height: 400px;
}
#relatedtopic-section .relatedtopic-title{
    width: 100%;
    height: 70px;
}
#relatedtopic-section  .relatedtopic-container{
    width: 100%;
    height: 220px;
    margin-top: 30px;
}
#relatedtopic-section  .relatedtopic-container .relatedtopic{
    width: 15%;
    height: inherit;
    display: inline-block;
    margin: 0px 35px 0px 35px;
    position: relative;
}

#relatedtopic-section .relatedtopic-title h1{
    font-size: 3.5rem;
    text-align: center;
    color: #d70000;
    font-family: 'Ysabeau SC', sans-serif;
    border-bottom: 2px solid red;
    padding-bottom: 3px;
    margin-left: 50px;
    margin-right: 50px;
}

#relatedtopic-section  .relatedtopic-container .relatedtopic img{
    width: 100%;
    height: inherit;
    position: absolute;
    border: 1px solid transparent;
    border-radius: 10px;
}
#relatedtopic-section  .relatedtopic-container .relatedtopic p a{
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 18px;
    position: absolute;
    color: #ffffff;
    background: rgba(4, 4, 4, 0.3);
    margin-top: 170px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 10px;
}
#relatedtopic-section  .relatedtopic-container .relatedtopic p a:hover{
    color: #ff0000;
    padding-left: 2px;
    font-size:19px ;
}
/* Responsive for Related topic */
@media (max-width: 1060px) {
    #relatedtopic-section .relatedtopic-container .relatedtopic {
        width: 30%;
        margin: 0 1%;
    }
    #relatedtopic-section {
        height: 1750px; 
        /* Set height to auto to expand based on content */
    }
    #relatedtopic-section .relatedtopic-container .relatedtopic img {
        width: 70%;
        height: 300px;
    }
    #relatedtopic-section .relatedtopic-container .relatedtopic {
        width: 80%;
        margin-left: 20%;
        margin-bottom: 32%;
        height: auto;
    }
}

@media (max-width: 790px) {
    #relatedtopic-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto; /* Set height to auto to expand based on content */
        margin: 15px 10px; /* Adjusted margin for spacing */
    }

    #relatedtopic-section .relatedtopic-title h1 {
        font-size: 2rem;
    }

    #relatedtopic-section .relatedtopic-container {
        height: 1560px; /* Set height to auto to expand based on content */
    }

    #relatedtopic-section .relatedtopic-container .relatedtopic {
        width: 80%;
        margin-left: 10%;
        margin-bottom: 75%;
        height: auto;
    }

    #relatedtopic-section .relatedtopic-container .relatedtopic img {
        width: 100%;
        height: 300px;
    }

    #relatedtopic-section .relatedtopic-container .relatedtopic p a {
        font-size: 16px;
        margin-top: 10px;
    }
}

@media (max-width: 340px) {
    #relatedtopic-section .relatedtopic-container .relatedtopic p a {
        font-size: 14px;
        margin-top: 10px;
    }
}


/* Motto */

.motto-container{
    width: 100%;
    height: 300px;
    margin: 30px 20px 20px 20px;
    position: relative;
}

.motto-container .motto-box{
    width: 80%;
    height: 280px;
    background-color: rgba(255, 0, 0, 0.473);
    margin-top: 12px;
    margin-bottom: 12px;
    margin-left: 150px;
    position: absolute;
    border: 1px solid transparent;
    border-radius: 10px 10px 10px 10px;
}

.motto-container .motto-box .motto{
    color: #ffffff;
    text-align: center;
    padding: 20px 20px 20px 20px;
    margin-top: 20px;
}
.motto-container .motto-box .motto h3{
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 1.4rem;
    font-weight: lighter;
}
/* Responsive for Motto */

/* For max-width: 790px */

@media (max-width: 790px) {
    .motto-container{
        height: 450px;
    }

    .motto-container .motto-box {
        width: 90%;
        margin-left: 2%;
        height: auto;
    }
}
@media (max-width: 1060px) {
    .motto-container .motto-box {
        width: 90%;
        margin-left: 2%;
    }
    .motto-container .motto-box .motto h3 {
        font-size: 18px;
    }
}

/* End letter */
.end-letter h1{
    color: rgb(255, 0, 0);
    font-family: 'Rubik Wet Paint';
    font-size: 30px;
    text-align: center;
    margin: 30px 20px 50px 20px;
}
/* Footer */
.footer-container{
    width: 100%;
    height: 400px;
    background: #000000;
    padding: 10px 10px 10px 10px;
    border-top: 1px solid rgb(72, 72, 72);
    border-radius: 50px 10px 10px 10px;
    position: relative;
}
.footer-container .newsletter-section{
    width: 100%;
    height: 100px;
}
.footer-container .footermain-section{
    width: 100%;
    height: 250px;
}
.footer-container .copyright{
    width: 100%;
    height: 40px;
}
.newsletter-section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.newsletter-section h2 span{
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-family: 'Ysabeau SC', sans-serif;
    text-shadow: 0 2px 6px red;
    margin-bottom: 10px;
    margin-left: 10px;
}

.newsletter-section span:nth-child(2){
    font-size: 12px;
    font-weight: 300;
}
.newsletter-section form{
    margin: 20px 0;
    margin-left: 50px;
}
.newsletter-section form input{
    height: 40px;
    width: 17vw;
    padding: 0 15px;
    outline: none;
    font-family: 'Ysabeau SC', sans-serif;
    border: 1px solid transparent;
    border-radius: 5px;
}
.newsletter-section form button{
    height: 40px;
    width: 5rem;
    color: white;
    background-color: #d70000;
    border: 1px solid transparent;
    border-radius: 5px;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 1rem;
    font-weight: 200;
    transition: all 0.3s;
}

.newsletter-section form button:hover{
    font-size: 1.3rem;
    padding: 10px;
    color: #000000;
    transition: 0.3s ease;
}
.social-icons{
    display: flex;
    margin-left: 30px;
}
.social-icons li{
    list-style: none;
    margin: 0 10px;
}

.social-icons li p{
    color: #d70000;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 24px;
    font-weight: 700;
}
.social-icons li a{
    text-decoration: none;
    color: #555;
    font-size: 28px;
}
.social-icons li a:hover{
    color: white;
}
#footer-hr{
    background-color:rgb(72, 72, 72);
    border: 1px solid rgb(65, 65, 65);
    margin-left: 30px;
    margin-right: 30px;
    align-items: center;
}
/* break */

.footermain-section{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 30px;
}

.footermain-section .brand{
    width:35%;
    height: 200px;
    display: block;
    color: rgb(255, 255, 255);
    margin-top: 50px;
}
.footer-logo{
    letter-spacing: 2px;
    font-family: 'Rubik Wet Paint';
    text-shadow: 0 2px 6px red;
}
.contact{
    margin-right: 20px;
}
.contact h3{
    color: #d70000;
    font-weight: 600;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 1.6rem;
    margin-top: 15px

}
.contact i {
   color: gray;
   font-size: .55rem;
   line-height: 2;
   padding-bottom: 8px;
}
.links{
    margin: 10px 0 ;
}
.links  h6{
    font-weight: 600;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 1.6rem;
    margin-top: 6px;
    color: #d70000;
}
.links ul{
    margin: 10px 0;
}
.links li{
    list-style: none;
    margin: 4px 0;
}
.links li a{
    font-size: 15px;
    text-decoration: none;
    color: gray;
    transition: 0.2s ease;
    border-bottom: 1px solid grey;
    font-family: 'Ysabeau SC', sans-serif;
}

.links li a:hover{
    font-size: 17px;
    border-bottom: 1px solid red;
    color: #d70000;
    padding: 5px;
    transition: 0.3s ease;
    font-family: 'Ysabeau SC', sans-serif;
}

.fa-solid .fa-location-dot{
    font-family: 'Ysabeau SC', sans-serif;
}
.copyright p{
    font-size: 18px;
    font-family: 'Ysabeau SC', sans-serif;
    font-weight: 300;
    color: #cccccc;
    text-align: center;
    margin-top: 5px;
}
/* End of Home page styling CSS */

/* Responsive Styles for footer*/
@media screen and (max-width: 768px) {
    .newsletter-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-section form {
        margin-left: 0;
    }

    .newsletter-section form input,
    .newsletter-section form button {
        width: 100%;
        max-width: none;
    }

    .social-icons {
        margin-left: 0;
    }

    .footermain-section {
        flex-direction: column;
    }

    .footermain-section .brand,
    .contact,
    .links {
        width: 100%;
    }

    .links li a {
        font-size: 14px;
        padding: 3px;
    }
}

/* Start of About Us page styling CSS */

.about-us{
    width: 100%;
    height: 80vh;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 4rem;
    padding: 4% 10%;
    margin-top: 100px;
}
.main-img img{
    max-width: 100%;
    width: 80%;
    height: 300px;
    margin-top: 30px;
    margin-left: 40px;
    border: 1px solid transparent;
    border-radius: 50px 10px 50px 10px;
    box-shadow:0 6px 10px #d70000;
}
.text{
    margin-bottom: 40px;
}
.text h4{
    color: #d70000;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Ysabeau SC', sans-serif;
}
.text h1{
    color: white;
    font-size: 36px;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 30px;
    font-family: 'Ysabeau SC', sans-serif;
}
#aboutus-hr{
    width: 30%;
    border: none;
    height: 2px;
    background-color: red;
    margin-bottom: 30px;
}
.text p{
    max-width: 600px;
    color: white;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}
.last-text{
    display: flex;
}
.last-text .text1{
    margin-right: 60px;
}
.last-text h3{
    color: #d70000;
    font-size: 60px;
    font-weight: 800;
    font-family: 'Ysabeau SC', sans-serif;
}
.last-text h5{
    color: #f7f5f5;
    font-size: 20px;
    font-weight: 500;
    line-height: 18px;
    font-family: 'Ysabeau SC', sans-serif;
}

/* Responsive Design */
@media(max-width:1385px){
    .about-us{
        padding: 4% 4%;
        transition: .3s;
    }
    .main-img .img{
        width: 500px;
        height: auto;
        transition: .3s;
    }
}
@media(max-width:1240px){
    .text h1{
        font-size: 30px;
        transition: .3s;
    }
}
@media(max-width:1040px){
    .about-us{
        grid-template-columns: 1fr;
        height: 100%;
    }
    .main-img .img{
        padding-top: 40px;
    }
   
}

/* Our team */

.team-container{
    text-align: center;
    height: 620px;
}
.team-container .team-title{
    padding-top: 30px;
    color: #be0000;
    font-size: 60px;
    font-weight: 800;
    margin: auto;
    line-height: 50px;
    font-family: 'Ysabeau SC', sans-serif;
}
.team-container .sub-team-container{
    max-width: 1200px;
    margin: auto;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.sub-team-container .team{
    margin: 10px;
    max-width: 30%;
    height: 480px;
    cursor: pointer;
    transition: 0.4s;
    box-sizing: border-box;
   
}
.sub-team-container .team:hover{
    background: rgb(225, 198, 161);
    border-radius: 20px;
    padding: 10px;
    transition: .3s;
}

.team .member-photo img{
    width: 180px;
    height: 180px;
    border: 5px solid rgba(255, 0, 0, 0.367);
    border-radius: 300px;
    position: absolute;
    margin-bottom: 20%;
    
}

.team .member-title-container{
    width: 100%;
    height: 320px;
    background-color: #930000;
    border: 1px solid transparent;
    border-radius: 12px;
    margin-top: 32%;
}

.team .Member-name h1{
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    padding-top: 18%;
    font-family: 'Ysabeau SC', sans-serif;
}
.team .role h2{
    font-style: italic;
    font-size: 16px;
    font-family: 'Ysabeau SC', sans-serif;
}
.team .member-intro p{
    margin: 20px 0;
    font-weight: lighter;
    color: #f0f0f0;
    text-align: center;
}
.team .social-links{
    margin: 14px;
}
.team .social-links a{
    display: inline-block;
    height: 30px;
    width: 30px;
    transition: .4s;
}
.team .social-links a:hover{
    transform: scale(1.5);
}
.team .social-links a i{
    color: rgb(27, 0, 0);
}

/* Responsive for our team */
@media screen and (max-width: 790px) {
    .team-container {
        height: auto;
    }

    .team-container .sub-team-container {
        flex-direction: column;
        align-items: center;
    }

    .sub-team-container .team {
        max-width: 100%;
        height: auto;
    }

    .team .member-photo img {
        width: 150px;
        height: 150px;
        margin-bottom: 10%;
    }

    .team .member-title-container {
        margin-top: 10%;
        height: auto;
    }

    .team .Member-name h1 {
        margin-top: 8%;
        font-size: 24px;
    }

    .team .role h2 {
        font-size: 14px;
    }
}


@media screen and (max-width:600px) {
    .team{
        max-width: 100%;
        display: block;
    }
}

.end-letter-aboutus h1{
    color: rgb(255, 0, 0);
    font-family: 'Rubik Wet Paint';
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
}
/* About Us styling CSS end */



/* Contact Us styling Css Start */


.contact-section{
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(images/contact.jpg) ;
}
.contact-section .contact-info{
    color: #cccccc;
    max-width: 500px;
    line-height: 1.6rem;
    padding-left: 50px;
    font-size: 18px;
    display: block;
}

.contact-section .contact-info i {
    margin-right: 20px;
    font-size: 30px;
}

.contact-section .contact-form{
    max-width: 700px;
    margin-right: 50px;
    
}
.contact-section .contact-info, .contact-form{
    flex: 1;
}
.contact-section .contact-form h2{
    color: white;
    text-align: center;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: 'Ysabeau SC', sans-serif;
}
.contact-section .contact-form .text-box{
    background: black;
    color: white;
    border: none;
    width: calc(50% -10px);
    height: 50px;
    padding: 12px;
    font-size: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    opacity: 0.9;
    font-family: 'Ysabeau SC', sans-serif;
}
.contact-section .contact-form .text-box:first-child{
    margin-right: 15px;
}
.contact-section .contact-form textarea{
    background: black;
    color: white;
    border: none;
    width: 100%;
    padding: 12px;
    font-size: 15px;
    min-height: 200px;
    max-height: 400px;
    resize: vertical;
    border-radius: 5px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    opacity: 0.9;
    font-family: 'Ysabeau SC', sans-serif;
}
.contact-section .contact-form .send-btn{
    float: right;
    background: white;
    color: rgb(0, 0, 0);
    border: none;
    width: 120px;
    height: 40px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: 0.3s;
    font-family: 'Ysabeau SC', sans-serif;
}
.contact-section .contact-form .send-btn:hover{
    background: #be0000;
    color: #ffffff;
    border-radius: 10px;
    transition: .3s ease;
}

/* Responsive for Contact Us */

@media screen and (max-width: 790px) {
    .contact-section {
        flex-direction: column;
        height: auto;
        padding: 45px;
    }

    .contact-section .contact-info,
    .contact-section .contact-form {
        max-width: none;
        margin-right: 0;
    }

    .contact-section .contact-info {
        padding-left: 0;
    }

    .contact-section .contact-form .text-box {
        width: 100%;
    }

    .contact-section .contact-form .text-box:first-child {
        margin-right: 0;
    }
}


@media screen and (max-width: 950px){
    .contact-section{
        flex-direction: column;
    }
    .contact-section .contact-info, .contact-form{
        margin: 30px 50px;
    }
    .contact-section .contact-form h2{
        font-size: 30px;
    }
    .contact-section .contact-form .text-box{
        width: 100%;
    }
}

/* End of Contact Us styling CSS */

/* START of Resources page */
.resource-container{
    width: 100%;
    height: 2700px;
    /* background-color: #be0000; */
}
.resource-container .poster {
    width: 100%;
    height: 650px;
    position: relative;
}

.resource-container .poster img{
    width: 100%;
    height: 700px;
    position: absolute;
}

.resource-container .poster h1 {
    color: rgb(255, 255, 255);
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    position: absolute;
    margin-top: 14%;
    margin-left: 20%;
    margin-right: 20%;
    background-color: #000000ae;
    text-align: center;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 20px;
}

.resource-container .watch-btn {
    position: absolute;
    margin-top: 30%;
    margin-left: 45%;
}

.resource-container .watch-btn p a{
    color: rgb(255, 255, 255);
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 20px;
    font-weight: 500;
   padding: 10px;
    background-color: #ea0000;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 20px;
    transition: .4s ease;
}

.resource-container .watch-btn p a:hover{
    padding: 13px;
    font-size: 21px;
    font-weight:600 ;
    background-color: rgb(56, 0, 0);
    color: #fefefe;
    border-bottom: 4px solid #f60000;
    border-radius: 20px;
    transition: .4s ease;
}

.resource-container #movie{
    width: 100%;
    height: 450px;
    margin: 30px;
    display: inline-block;
}

.resource-container #movie .movie-container{
    width: 90%;
    height: 360px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-left: 5%;
}

.resource-container #movie .review-section-title h1{
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: #be0000;
}

#movie #Movie-hr{
    width: 50%;
    border: none;
    height: 2px;
    background-color: red;
    margin-bottom: 30px;
    margin-left: 25%;
}
.resource-container #movie .movie-container .movie-display{
    width: 15%;
    height: 330px;
    display: inline-block;
    margin: 13px 28px;
    padding-right: 10px;
    position: relative;
    transition: .4s ease;
}
.resource-container #movie .movie-container .movie-display:hover{
    
    width: 18%;
    height:350px;
    transition: .4s ease;
}
#movie .movie-container .movie-display .movie-display-img img{
    width: 100%;
    height: 280px;
    position: absolute;
    transition: .4s ease;
}
#movie .movie-container .movie-display .movie-title p a{
    color: black;
    position: absolute;
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    margin-top: 128%;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    transition: .4s ease;
}
#movie .movie-container .movie-display .movie-title p a:hover{
    color: #be0000;
    padding: 3px;
}
/* Responsive for resources */

@media only screen and (max-width: 1060px){
    .resource-container .watch-btn {
        margin-top: 40%;
        margin-left: 40%;
    }
    .resource-container .poster h1 {
        font-size: 3rem;
        margin-top: 25%;
        margin-left: 7%;
        margin-right: 5%;
    }
}

@media screen and (max-width: 790px) {
    .resource-container .poster {
        height: 350px;
    }

    .resource-container .poster img {
        height: 350px;
    }

    .resource-container .poster h1 {
        font-size: 2rem;
        margin-top: 25%;
        margin-left: 5%;
        margin-right: 5%;
    }

    .resource-container .watch-btn {
        margin-top: 60%;
        margin-left: 38%;
    }

    .resource-container .watch-btn p a {
        font-size: 16px;
        padding: 8px;
    }

    .resource-container .watch-btn p a:hover {
        padding: 10px;
        font-size: 18px;
    }
}



@media only screen and (max-width: 1060px){
   .resource-container {
        height: 4000px;
    }
    #movie .movie-container .movie-display .movie-display-img img{
        width: 100%;
        height: 200px;
    }
    #movie .movie-container .movie-display .movie-title p a{
        font-size: 12px;
    }
    }

    @media only screen and (max-width: 790px){

        #movie .movie-container .movie-display .movie-display-img img{
            width: 100%;
            height: 100px;
        }
        #movie .movie-container .movie-display .movie-title p a{
            font-size: 12px;
        }
        .resource-container #movie .movie-container .movie-display{
            width: 15%;
            height: 100px;
        }
        }

/* Login */

.login-container{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(6, 2, 3, 0.8),rgba(17, 15, 15, 0.268)), url(images/login.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.form-box{
    width: 90%;
    max-width: 450px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-60%);
    background: rgb(14, 14, 14);
    padding: 50px 60px 70px;
    text-align: center;
    box-shadow:0 0 40px red;
    border: 1px solid red;
    border-radius: 15px;
    
}
.form-box h1{
    font-size: 30px;
    margin-bottom: 60px;
    color: #be0000;
    position: relative;
    font-family: 'Ysabeau SC', sans-serif;
}
.form-box h1::after{
    content: '';
    width:30px ;
    height: 4px;
    border-radius: 3px;
    background-color: #c50000;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}
 .input-field{
    background: white;
    margin: 15px 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    max-height: 65px;
    transition: max-height 0.5s;
    overflow: hidden;
 }
 .input-field input{
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 18px 15px;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #c50000;
 }
 .input-field i{
    margin-left: 15px;
    color: #bc0000;
 }
 form p{
    text-align: left;
    font-size: 13px;
    color: #cccccc;
 }
 form p a{
    text-decoration: none;
    color: #c50000;
 }

 .socialicons{
    margin-top:8px;
}
.socialicons a{
    display: inline-block;
    margin: 0px 12px;
    height: 30px;
    width: 30px;
    transition: .4s;
}
.socialicons a:hover{
    transform: scale(1.5);
}
.socialicons a i{
    color: rgb(255, 255, 255);
}
 .btn-field{
    width: 100%;
    display: flex;
    justify-content: space-between;
 }
 .btn-field button{
    flex-basis: 48%;
    background: #930000;
    color: #f0f0f0;
    height: 40px;
    border-radius: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: background 1s;
    font-size: 18px;
    font-family: 'Ysabeau SC', sans-serif;
 }
 .input-group{
    height: 280px;
 }
 .btn-field button.disable{
    background: #353535;
    color: #c9c9c9;

 }

 /* Responsive for LOGIN page */
 @media screen and (max-width: 1060px) {
    .form-box {
        width: 80%;
        padding: 40px 30px 50px;
    }

    .input-field {
        max-height: none;
    }

    .socialicons {
        margin-top: 12px;
    }

    .btn-field {
        flex-direction: column;
    }

    .btn-field button {
        flex-basis: 100%;
        margin-top: 10px;
    }

    .input-group {
        height: auto;
    }
}


 @media only screen and (max-width: 790px) {
    .form-box {
        width: 90%;
        padding: 30px 40px 50px;
    }

    .form-box h1 {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .input-field {
        max-height: 55px;
    }

    .input-field input {
        padding: 14px 12px;
        font-size: 12px;
    }

    .input-field i {
        margin-left: 10px;
    }

    form p {
        font-size: 12px;
    }

    .socialicons {
        margin-top: 4px;
    }

    .socialicons a {
        height: 25px;
        width: 25px;
    }

    .btn-field button {
        height: 35px;
        border-radius: 15px;
    }
}

 /* Login styling CSS end */

 /* BlogDetail styling CSS start */


 /* Blog image styling */
 .blog-img-container{
    width: 100%;
    height: 650px;
    position: relative;
 }

 .blog-img-container .blog-img img{
    width: 100%;
    height: 650px;
    position: absolute;
 }
 .blog-img-container .blog-img-title p{
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    color: white;
    top: 37%;
    background-color: #0000009f;
    left: 10%;
    right: 10%;
   text-align: center;
   border: none;
   border-radius: 40px 5px 40px 5px;
   padding: 5px;
 }
 .blog-img-container .blog-img-title button a{
    background-color: #0a0a0a;
    color: white;
    position: absolute;
    top: 73%;
    left: 47%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    box-shadow: 0px 3px 18px 5px rgba(250, 250, 250, 0.389);
    transition: .4s ease;
 }
 .blog-img-container .blog-img-title button a:hover{
    padding: 13px;
    background-color: white;
    color: black;
    transition: .4s ease;
 }

 /* Blog content styling */

 #blog-content-container{
    width: 98%;
    height: 6500px;
    background-color: rgb(16, 15, 15);
    /* position: absolute; */
    top: 90%;
    margin-left: 1%;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 8px 14px 5px rgb(0, 0, 0);
 }

 #blog-content-container  .content-main-title h1{
    color: rgb(255, 255, 255);
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
 }
 #blog-content-container h2{
    color: red;
    font-size: 1.7rem;
    text-align: center;
    justify-content: center;
    align-items: center;
 }
 

 #blog-content-container  p{
    color: white;
    font-size: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 10%;
    margin-right: 10%;

 }

 .part1 .sub-title h2{
    font-family: 'Ysabeau SC', sans-serif;
    border-bottom: 1px solid red;
    margin-left: 12%;
    margin-right: 5%;
 }

 .part2 .sub-title h2{
    font-family: 'Ysabeau SC', sans-serif;
    border-bottom: 1px solid red;
    margin-left: 17%;
    margin-right: 10%;
 }

 .part3 .sub-title h2{
    font-family: 'Ysabeau SC', sans-serif;
    border-bottom: 1px solid red;
    margin-left: 25%;
    margin-right: 20%;
 }

 .part4 .sub-title h2{
    font-family: 'Ysabeau SC', sans-serif;
    border-bottom: 1px solid red;
    margin-left: 12%;
    margin-right: 5%;
 }

 .part1 .part1-img{
    width: 30%;
    height: 300px;
    background-color: #930000;
   margin-left: 35%;
    position: relative;
 }
 .part1 .part1-img img{
    width: 100%;
    height: inherit;
    position: absolute;
 }
 .part2 .part2-img{
    width: 30%;
    height: 300px;
    background-color: #930000;
   margin-left: 35%;
    position: relative;
 }
 .part2 .part2-img img{
    width: 100%;
    height: inherit;
    position: absolute;
 }
 .part3 .part3-img{
    width: 30%;
    height: 300px;
    background-color: #930000;
   margin-left: 35%;
    position: relative;
 }
 .part3 .part3-img img{
    width: 100%;
    height: inherit;
    position: absolute;
 }
 .part4 .part4-img{
    width: 30%;
    height: 300px;
    background-color: #930000;
   margin-left: 35%;
    position: relative;
 }
 .part4 .part4-img img{
    width: 100%;
    height: inherit;
    position: absolute;
 }
.photo-title p{
    color: #bc0000 !important;
    font-weight: 800;
    font-family: 'Ysabeau SC', sans-serif;
    font-style: italic;
    text-align: center;
}
@media only screen and (max-width: 1060px) {
    /* Adjust styles for screens up to 1060px width */
    .blog-detail-main-container {
      height: auto; /* Adjust height for responsiveness */
    }
  
    .blog-img-container .blog-img-title p {
      font-size: 3.5rem;
    }
  
    #blog-content-container {
      height: auto;
      top: 95%; /* Adjust positioning */
    }
  
    #blog-content-container .content-main-title h1 {
      font-size: 2.5rem;
    }
  
    #blog-content-container p {
      font-size: 18px;
      margin-left: 5%;
      margin-right: 5%;
    }
  
    .part1 .sub-title h2,
    .part2 .sub-title h2,
    .part3 .sub-title h2,
    .part4 .sub-title h2 {
      margin-left: 5%;
      margin-right: 5%;
    }
  
    .part1 .part1-img,
    .part2 .part2-img,
    .part3 .part3-img,
    .part4 .part4-img {
      width: 80%; /* Adjust image width */
      margin-left: 10%; /* Center the image */
    }
  }
  
  @media only screen and (max-width: 790px) {
    /* Adjust styles for screens up to 790px width */
    .blog-img-container .blog-img-title p {
      font-size: 2.5rem;
    }
  
    #blog-content-container .content-main-title h1 {
      font-size: 2rem;
    }
  
    #blog-content-container p {
      font-size: 16px;
      margin-left: 5%;
      margin-right: 5%;
    }
  
    .part1 .sub-title h2,
    .part2 .sub-title h2,
    .part3 .sub-title h2,
    .part4 .sub-title h2 {
      margin-left: 5%;
      margin-right: 5%;
    }
  
    .part1 .part1-img,
    .part2 .part2-img,
    .part3 .part3-img,
    .part4 .part4-img {
      width: 90%; /* Adjust image width */
      margin-left: 5%; /* Center the image */
    }
  }
  
  @media only screen and (max-width: 340px) {
    /* Adjust styles for screens up to 340px width */
    .blog-img-container .blog-img-title p {
      font-size: 2rem;
    }
  
    #blog-content-container .content-main-title h1 {
      font-size: 1.8rem;
    }
  
    #blog-content-container p {
      font-size: 14px;
      margin-left: 5%;
      margin-right: 5%;
    }
  
    .part1 .sub-title h2,
    .part2 .sub-title h2,
    .part3 .sub-title h2,
    .part4 .sub-title h2 {
      margin-left: 5%;
      margin-right: 5%;
    }
  
    .part1 .part1-img,
    .part2 .part2-img,
    .part3 .part3-img,
    .part4 .part4-img {
      width: 95%; /* Adjust image width */
      margin-left: 2.5%; /* Center the image */
    }
  }
  
/* Comment, rate, subscribe styling */

/* 1: Comment display styling */
 .comment-section-container{
    width: 100%;
    height: 1250px;
    margin-top: 1%;
    margin-left: 1%;
 }
 .comment-section-container .review-section{
    width: 70%;
    float: left;
    height: 630px;
 }
 .review-section .review-title{
width: 90%;
height: 50px;
margin-top: 12px;
margin-left: 5%;
 }
 .review-section .reviews{
width: 90%;
height: 600px;
background-color: palevioletred;
margin-left: 5%;
 }
 
.review-section .review-title h1{
    font-family: 'Ysabeau SC', sans-serif;
    color: red;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom:2px solid #be0000;
}
.review-box .box-top .profile-img{
    width:50px;
    height: 50px;
    border-radius: 60%;
    overflow: hidden;
    margin-right: 10px;   
}
.profile-img img{
    width: 100%;
    height: inherit;
    object-fit: cover;
    object-position: center;
}
.profile{
    display: flex;
    align-items: center;
}

.review-section .reviews-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
.review-box{
    width: 400px;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
    border: none;
    border-radius: 10px;
}
.name-user{
    display: flex;
    flex-direction: column;
}
.name-user strong{
    color: #353535;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-family: 'Ysabeau SC', sans-serif;
}
.name-user span{
    color: #555;
    font-size: 0.8rem;
    font-family: 'Ysabeau SC', sans-serif;
}
.review-star{
    color: rgb(255, 187, 0);
}
.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.reader-comment p{
font-size: 0.9rem;
color: #353535;
}
.review-box:hover{
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

/* Responsive for comment display */
@media(max-width:1060px){
    .review-box{
        width: 45%;
        padding: 10px;  
    }
}
@media(max-width:790px){
    .review-box{
        width: 100%;
    }
}
@media(max-width:340px){
    .box-top{
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .review-star{
        margin-top: 10px;
    }
}
::selection{
    color: white;
    background-color: #000000;
}

/* Comment form styling */

.comment-section-container .comment-box{
    width: 70%;
    float: left;
    height: 600px;
 }

.comment-box .comment-title{
    width: 90%;
    height: 50px;
    margin-top: 24px;
    margin-left: 5%;
}
.comment-box .comment-form{
    width: 90%;
    height: 550px;
    margin-left: 5%;
    margin-top: 15px;
}

.comment-box .comment-title h1{
    font-family: 'Ysabeau SC', sans-serif;
    color: red;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom:2px solid #be0000;
}

.comment-box .comment-form{
    width: 600px;
}
.comment-form input{
    width: 100%;
    height: 50px;
    padding: 0 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid red;
    font-family: 'Ysabeau SC', sans-serif;
    color: rgb(160, 40, 40);
}
.comment-form input:focus{
    border: 1px solid white;
    outline: 0;
}
.comment-form textarea{
    width: 100%;
    height: 150px;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid red;
    font-family: 'Ysabeau SC', sans-serif;
    color: rgb(160, 40, 40);
}
.comment-form textarea:focus{
    border: 1px solid white;
    outline: 0;
}
.comment-form button{
    border: 2px solid transparent;
    padding: 10px 30px;
    background: rgb(241, 0, 0);
    font-size: 18px;
    border-radius: 5px;
    color: white;
    transition: .4s ease;
}
.comment-form button:hover{
    background-color: #0d0d0d;
    color: rgb(255, 255, 255);
    border: 2px solid red;
    padding: 13px 33px;
    transition: .4s ease;
}
/* Star rate styling */

.comment-section-container  .star-rate{
    width: 30%;
    float: right;
    height: 270px;
    margin-top: 1%;
 }
 .comment-section-container  .star-rate .star-rate-title{
    width: 100%;
    height:45px;
    margin-bottom: 10px;
 }
 .comment-section-container  .star-rate .star-rate-title h1{
    font-family: 'Ysabeau SC', sans-serif;
    color: red;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom:2px solid #be0000;
 }
 .star-rate .star-container{
    background: #1b1b1b;
    position: relative;
    width: 400px;
    height: 220px;
    padding: 20px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 3px;
 }

 .star-container .star-widget{
    width: 75%;
    height: 40px ;
    background-color: #222;
    border: none;
    border-radius: 10px;
    padding-right: 5px;
    margin-bottom: 50%;
 }
 .star-container .star-widget input{
    display: none;
 }
 .star-container .star-widget label{
    font-size: 25px;
    color: #444;
    padding: 10px;
    float: right;
    transition: all 0.2s ease;
 }

 input:not(:checked) ~ label:hover,
input:not(:checked) ~ label:hover ~ label{
    color: rgb(255, 179, 0);
 }

 input:checked ~ label{
    color: rgb(255, 179, 0) !important;
 }

 input#rate-5:checked ~ label{
    color: #fe7;
    text-shadow: 0 0 20px #952;
 }

 #rate-1:checked ~ .star-form form p:before{
    content: "I hate this 😠";
 }

 #rate-2:checked ~ .star-form form p:before{
    content: "I don't like this ☹️";
 }

 #rate-3:checked ~ .star-form form p:before{
    content: "It is amazing 😄";
 }

 #rate-4:checked ~ .star-form form p:before{
    content: "I like this 😎";
 }

 #rate-5:checked ~ .star-form form p:before{
    content: "Omg! I love this 😍";
 }

 .star-container .star-form form{
    display: none;
}

input:checked  ~ .star-form form{
    display: block;}

 .star-container .star-form{
    width: 100%;
    height: 120px;
    margin-top: 1%;
 }
  .star-form form p{
    width: 100%;
    font-size: 20px;
    color: rgb(255, 179, 0);
    font-weight: 500;
    margin-left: 5%;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    font-family: 'Ysabeau SC', sans-serif;
}


.star-form form .textarea{
    height: 80px;
    width: 100%;
    overflow: hidden;
}
.star-form form .textarea textarea{
    width: 100%;
    height: 100%;
    outline: none;
    color: #eee;
    border: 1px solid #333;
    background: #222;
    padding: 10px;
    font-size: 17px;
    resize: none;
    font-family: 'Ysabeau SC', sans-serif;
}
.star-form form .star-btn{
    height: 40px;
    width: 80%;
    margin-top: 1.5%;
    margin-left: 10%;
}
.star-form form .star-btn button{
    width: 100%;
    height: 100%;
    border: 1px solid #444;
    outline: none;
    background: #222;
    color: #999;
    font-family: 'Ysabeau SC', sans-serif ;
    font-size: 17px;
    font-weight: 500;
    /* text-transform: uppercase; */
    cursor: pointer;
    transition: all 0.3s ease;
}
.star-form form .star-btn button:hover{
    background: #1b1b1b;
}
/* Subscribe function styling */

.comment-section-container .subscribe-section{
    width: 30%;
    float: right;
    height: 340px;
 }

 .subscribe-section .wrapper{
    background: white;
    border-radius: 5px;
    padding: 30px;
    margin-left: 14px;
    margin-top: 3%;
    max-width: 400px;
    width: 90%;
    height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.wrapper i{
    width: 20%;
    font-size: 50px;
    color: rgb(191, 0, 0);
    position: absolute;
 }

 .wrapper .subscribe-body{
    width: 100%;
    height: 230px;
    margin-top: 9%;
 }

 .wrapper .subscribe-content{
    margin: 20px 0;
 }

 .subscribe-body .subscribe-content h1{
    color: red;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Ysabeau SC', sans-serif;
 }
 .subscribe-body .subscribe-content p{
    color: #333;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Ysabeau SC', sans-serif;
 }
 .wrapper form{
    width: 98%;
    font-family: 'Ysabeau SC', sans-serif;
 }
 .wrapper form .field{
    height: 45px;
    width: 100%;
    margin-bottom: 12px;
}
.wrapper form .field input{
    height: 100%;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgb(177, 13, 13);
    padding: 0 20px;
    outline: none;
    font-size: 17px;
    font-family: 'Ysabeau SC', sans-serif;
}
.wrapper form .field input:focus{
    border: 2px solid rgb(3, 0, 0);
}
.wrapper form .field-btn{
    height: 47px;
}

.wrapper form .field-btn{
    height: 47px;
}
.wrapper form .field-btn button{
    background: red;
    color: white;
    font-size: 19px;
    font-weight: 600;
    width: 50%;
    height: 45px;
    padding: 0 3px;
    cursor: pointer;
    transition: all .3s ease;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: 'Ysabeau SC', sans-serif;
}
.wrapper form .field-btn button:hover{
    border: 2px solid black;
    background-color: white;
    color: red;
   transition: all .3s ease;
}
.wrapper .subscribe-body .text{
    margin-bottom: 5px;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 15px;
    font-weight: 600;
} 

/* popular blog content styling  */

.comment-section-container  .popular{
    width: 30%;
    float: right;
    height: 600px;
 }

 .popular .popular-section{
    background-color: rgb(25, 25, 25);
    width: 100%;
    height: 590px;
    margin-top: 20px;
    border-radius: 10px;
 }

 .popular-section .popular-post{
    width: 90%;
    height: 90px;
    border-top: 1px solid grey;
    margin-top: 10px;
    padding-top: 10px;
    margin-left: 5%;
    margin-right: 10%;
 }

 .popular-post .popular-post-img{
    width: 25%;
    height: 60px;
    background-color: #930000;
    position: relative;
    float: left;
    margin-left:10px;
    margin-top: 12px;
 }

 .popular-post .popular-post-img img{
    width: 100%;
    height: inherit;
    position: absolute;
 }

 
.popular .popular-section-title{
    color: rgb(255, 0, 0); 
    font-size: 2rem;
    font-family: 'Ysabeau SC', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 8px;
    margin-right: 15px;
}
.popular-section .popular-post .popular-post-title h4{
    width: 70%;
    display: block;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 1.5rem;
    transition: all 0.3s;
    color: white;
    float: right;
    font-weight: 200;

}
.popular-section .popular-post .popular-post-title h4:hover{
    padding-left: 10px;
    transition: all 0.3s;
    color: #ff0000;
    font-family: 'Ysabeau SC', sans-serif;
}

@media screen and (max-width: 1060px) {

    /* Adjust the width of the main container */
    .comment-section-container {
      height: auto;
    }
  
    /* Adjust the width of the review section */
    .comment-section-container .review-section {
      width: 100%;
    }
  
    /* Adjust the width of the individual review boxes */
    .review-box {
      width: 100%;
    }
  
    /* Adjust the width of the comment box section */
    .comment-section-container .comment-box {
      width: 100%;
      height: auto;
    }
  
    /* Adjust the width of the star rate section */
    .comment-section-container .star-rate {
      width: 100%;
      height: auto;
      margin-top: 20%;
    }
  
    /* Adjust the width of the subscribe section */
    .comment-section-container .subscribe-section {
      width: 100%;
      height: auto;
    }
  
    /* Adjust the width of the popular blog section */
    .comment-section-container .popular {
      width: 100%;
      height: auto;
    }
  
    /* Adjust the font size of the popular blog post titles */
    .popular-section .popular-post .popular-post-title h4 {
      font-size: 1.2rem;
    }
  
    /* Adjust other styles as needed for responsiveness */
    
  }
  

@media only screen and (max-width: 790px) {
    .comment-section-container {
      height: auto;
    }

    .comment-section-container .review-section{
        height: 1000px;
    }
  
    .comment-section-container .review-section,
    .comment-section-container .comment-box,
    .comment-section-container .star-rate,
    .comment-section-container .subscribe-section,
    .comment-section-container .popular {
      width: 100%;
      float: none;
    }

    .comment-section-container .star-rate {
        margin-top: 20%;
      }
  
    .review-box {
      width: 100%;
      margin: 15px 0;
    }
  
    .star-rate .star-container {
      width: 100%;
      padding: 20px;
    }
  
    .star-container .star-widget {
      width: 75%;
    }
  
    .star-form form .textarea {
      height: 60px;
    }
  
    .comment-box .comment-form,
    .comment-box .comment-title {
      width: 100%;
    }
    .comment-box .comment-form{
        width: 90%;
        height: 450px;
        margin-left: 5%;
        padding-top: 40px;
    }
    .subscribe-section .wrapper {
      width: 100%;
      margin-left: 0;
    }
  
    .popular-section .popular-post {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
  
    .popular-post .popular-post-img {
      width: 30%;
    }
  
    .popular-section .popular-post .popular-post-title h4 {
      width: 100%;
      float: none;
      text-align: center;
    }
  }
  
/* End of Blog Detail Page Styling CSS */
/* ------------------------------------------------------------------------------ */

/* START of Blogs page styling CSS */

/* Blog head image */
.blogs-head{
    width: 100%;
    height: 650px;
    position: relative;
}

.blogs-head .blog-img img{
    width: 100%;
    height: 650px;
    position: absolute;
}
.blogs-head .blog-img-title h1{
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 3.6rem;
    font-weight: 800;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.514) ;
    text-shadow: 2px 2px 4px #de0000;
    border-radius: 10px;
}

/* Responsive for Blog head */
@media (max-width: 1060px) {
    .blogs-head {
        height: 500px;
    }

    .blogs-head .blog-img img {
        height: 500px;
    }

    .blogs-head .blog-img-title h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 790px) {
    .blogs-head {
        height: 300px;
    }

    .blogs-head .blog-img img {
        height: 300px;
    }

    .blogs-head .blog-img-title h1 {
        font-size: 1.5rem;
    }
}

/* Blog category */
.blog-category{
    width: 98%;
    height: 200px;
    margin-top: 2%;
    margin-left: 1%;
}
.blog-category .category-title h1{
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 3.5rem;
    color: red;
    font-weight: 800;
    margin-left: 45%;
    margin-bottom: 2%;
}
.blog-category .category-bar{
    display: flex;
    column-gap: 3rem;
    background-color: rgb(205, 0, 0);
    width: 100%;
    height: 60px;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    box-shadow: 10px 10px 30px rgba(234, 0, 0, 0.5);
}
.category-bar li{
    position: relative;
    }
    
.category-bar a{
    font-family: 'Ysabeau SC', sans-serif;
        font-size: 20px;
        font-weight: 800;
        color: rgb(32, 0, 0);
        border-radius: 30px;
        padding: 5px;
    }

 .category-bar a::after{
        content: '';
        width: 0% ;
        height: 5px;
        background:rgb(32, 0, 0);
        position: absolute;
        bottom: -4px;
        left: 0;
        transition: 0.4s;
        border-radius: 30px;
    }
    
    .category-bar a:hover::after{
         width: 100%;
     }
/* Responsive for category bar */
@media screen and (max-width: 1060px) {
    .blog-category .category-title h1 {
        margin-left: 40%;
    }
    .category-bar {
        column-gap: 1.5rem;
    }}

@media screen and (max-width: 780px) {
    .blog-category {
        height: 400px;
    }

    .blog-category .category-title h1 {
        margin-left: 25%;
        margin-bottom: 5%;
    }

    .blog-category .category-bar {
        display: flex;
        flex-direction: column;
        column-gap: 0.5rem;
        width: 100%;
        height: 300px;
    }

    .category-bar li {
        width: 50%;
        margin-bottom: 1rem;
        text-align: center;
        font-size:15px;
    }
}
     /* Warning Styling  */
     .warning{
        width: 80%;
        height: 210px;
        background-color: rgb(25, 25, 25);
        margin-left: 10%;
        margin-top: 20px;
        border-radius: 40px;
     }

     .warning .warning-icon i{
        font-size: 3.5rem;
        display: flex;
      justify-content: center;
      align-items: center;
      color: red;
      padding-top: 1%;
     }

     .warning .warning-text h1{
    
        font-size: 1.5rem;
        color: rgb(169, 169, 169);
      justify-content: center;
      align-items: center;
      text-align: center;
     }

/* Responsive for warning text */
@media screen and (max-width: 1060px){
    .warning .warning-icon i{
        font-size: 2rem;
    }
    .warning .warning-text h1{
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 790px){
    .warning .warning-icon i{
        font-size: 2rem;
    }
    .warning .warning-text h1{
        font-size: 1rem;
    }
}

     /* Post slider */
.demon-slider{
    position: relative;
}
.demon-slider .demon-slider-title{
    text-align: center;
    margin: 30px auto;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 3.5rem;
    color: red;
    border-bottom: 2px solid red;
    padding-bottom: 12px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.demon-slider .demon-post-wrapper{
    width: 84%;
    height: 420px;
    margin: 0px auto;
    margin-top: 30px;
    overflow: hidden;
    padding:10px 0px 10px 0px ;
}

.demon-slider .demon-post-wrapper .demon-post{
    width: 300px;
    height: 400px;
    margin: 0px 10px;
    display: inline-block;
    background:white;
    position: relative;
}

.demon-slider .next{
    position: absolute;
    margin-top: 170px;
    right: 30px;
    font-size: 2em;
    color: red;
    cursor: pointer;
}

.demon-slider .prev{
    position: absolute;
    margin-top: 170px;
    left: 30px;
    font-size: 2em;
    color: red;
    cursor: pointer;
}
.demon-slider .demon-post-wrapper .demon-post .demon-post-img{
    width: 100%;
    height:200px ;
    /* display: flex;
    flex-direction: column; */
    position: absolute;
}
.demon-slider .demon-post-wrapper .demon-post .demon-post-info{
    color: black;
    width: 100%;
    height: 150px;
    box-sizing: border-box;
    padding: 10px;
    position: absolute;
    margin-top: 200px;
    font-size: 1em;
}  
.demon-slider .demon-post-wrapper .demon-post .demon-post-info h2 a{
padding-bottom: 5px;
font-family: 'Ysabeau SC', sans-serif;
}
.demon-slider .demon-post-wrapper .demon-post .demon-post-info h2 a:hover{
    font-size: 1.6rem;
}
.demon-slider .demon-post-wrapper .demon-post .demon-post-info h5{
    font-family: 'Ysabeau SC', sans-serif;
    color: rgb(165, 8, 34);
}
.demon-slider .demon-post-wrapper .demon-post .demon-post-info p{
    padding-bottom: 5px;
    font-size: 12px;
    margin-top: 1%;
}
.demon-slider .demon-post-wrapper .demon-post .demon-post-info h4{
    font-size: 20px;
    font-family: 'Ysabeau SC', sans-serif;
    color: rgb(0, 0, 0);
    transition: all .3s ease;
    float: right;
}
.demon-slider .demon-post-wrapper .demon-post .demon-post-info h4:hover{
    color: rgb(155, 10, 34);
    font-size: 23px;
    transition: all .3s ease;
}

a{
    text-decoration: none;
    color: black;
}
#Demonic-cases a:hover{
    color: rgb(179, 7, 7);
    font-family: 'Ysabeau SC', sans-serif;
}

/* End of CSS of Demonic cases */

/* Paranormal Investigation */
.para-slider{
    position: relative;
}
.para-slider .para-slider-title{
    text-align: center;
    margin: 30px auto;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 3.5rem;
    color: red;
    border-bottom: 2px solid red;
    padding-bottom: 12px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.para-slider .para-container{
    width: 90%;
    height: 420px;
    margin: 0px auto;
    margin-top: 30px;
    margin-left: 5%;
    overflow: hidden;
    padding:10px 0px 10px 0px ;
}

.para-container .para-post{
    width: 90%;
    height: 350px;
    background-color: rgb(255, 255, 255);
    display: inline-block;
    position: relative;
}

.para-slider .forward{
    position: absolute;
    margin-top: 170px;
    right: 20px;
    font-size: 2em;
    color: red;
    cursor: pointer;
}

.para-slider .back{
    position: absolute;
    margin-top: 170px;
    left: 20px;
    font-size: 2em;
    color: red;
    cursor: pointer;
}

.para-slider .para-container .para-post .para-img{
    width: 47%;
    height:350px ;
    float: left;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}

.para-slider .para-container .para-post  .para-preview{
    color: black;
    width: 50%;
    height: 350px;
    font-size: 1em;
    float: right;
}  

.para-slider .para-container .para-post  .para-preview h2 a{
    font-size: 2.5rem;
    font-family: 'Ysabeau SC', sans-serif;
    font-weight: 700;
    margin-top: 12px;
    }
    .para-slider .para-container .para-post  .para-preview h5{
        font-size: 18px;
        font-family: 'Ysabeau SC', sans-serif;
        color: rgb(165, 8, 34);
    }
    .para-slider .para-container .para-post  .para-preview p{
        padding-bottom: 5px;
        font-size: 20px;
        margin-top: 1%;
    }
    .para-slider .para-container .para-post  .para-preview h4{
        font-family: 'Ysabeau SC', sans-serif;
        color: rgb(0, 0, 0);
        transition: all .3s ease;
        font-size: 23px;
        float: right;
        margin-right: 12px;

    }
    .para-slider .para-container .para-post  .para-preview h4:hover{
        color: rgb(155, 10, 34);
        font-size: 25px;
        transition: all .3s ease;
    }
    /* Responsive for Paranormal investigation */
    @media only screen and (max-width: 1060px){
        .para-slider .para-container .para-post  .para-preview h2 a{
            font-size: 1.5rem;
        }
    }

    @media only screen and (max-width: 790px) {
        .para-slider .para-slider-title {
            font-size: 2.5rem;
            margin-left: 20px;
            margin-right: 20px;
        }
    
        .para-container {
            width: 100%;
            margin-left: 0;
        }
    
        .para-container .para-post {
            width: 100%;
        }
    
        .para-slider .para-container .para-post .para-img {
            width: 100%;
            height: 120px;
        }
    
        .para-slider .para-container .para-post .para-preview {
            width: 100%;
            padding: 10px;
            box-sizing: border-box;
        }
    
        .para-slider .para-container .para-post .para-preview h2 a {
            font-size: 1rem;
            margin-top: 8px;
        }
    
        .para-slider .para-container .para-post .para-preview h5 {
            font-size: 16px;
        }
    
        .para-slider .para-container .para-post .para-preview p {
            font-size: 12px;
            margin-top: 1%;
        }
    
        .para-slider .para-container .para-post .para-preview h4 {
            font-size: 18px;
            margin-right: 10px;
        }
    
        .para-slider .para-container .para-post .para-preview h4:hover {
            font-size: 20px;
        }
    }

    /* Haunted places Styling */

    #Haunted-places{
        margin-top: 5%;
    }
    .haunt-slider{
        position: relative;
    }
    .haunt-slider .haunt-slider-title{
        text-align: center;
        margin: 30px auto;
        font-family: 'Ysabeau SC', sans-serif;
        font-size: 3.5rem;
        color: red;
        border-bottom: 2px solid red;
        padding-bottom: 12px;
        margin-left: 50px;
        margin-right: 50px;
        margin-bottom: 30px;
        margin-top: 30px;
    }
    .haunt-slider .haunt-post-wrapper{
        width: 84%;
        height: 480px;
        margin: 0px auto;
        margin-top: 30px;
        overflow: hidden;
        padding:10px 0px 10px 0px ;
    }
    
    .haunt-slider .haunt-post-wrapper .haunt-post{
        width: 300px;
        height: 380px;
        margin: 0px 10px;
        display: inline-block;
        background:white;
        position: relative;
        margin-top: 20px;
    }
    
    .haunt-slider .gonext{
        position: absolute;
        margin-top: 170px;
        right: 30px;
        font-size: 2em;
        color: red;
        cursor: pointer;
    }
    
    .haunt-slider .goprev{
        position: absolute;
        margin-top: 170px;
        left: 30px;
        font-size: 2em;
        color: red;
        cursor: pointer;
    }
    .haunt-slider .haunt-post-wrapper .haunt-post .haunt-post-img{
        width: 100%;
        height:200px ;
        /* display: flex;
        flex-direction: column; */
        position: absolute;
    }
    .haunt-slider .haunt-post-wrapper .haunt-post .haunt-post-info{
        color: black;
        width: 100%;
        height: 150px;
        box-sizing: border-box;
        padding: 10px;
        position: absolute;
        margin-top: 200px;
        font-size: 1em;
    }  
    .haunt-slider .haunt-post-wrapper .haunt-post .haunt-post-info h2 a{
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 23px;
    padding-bottom: 5px;
    text-align: center;
    }
    .haunt-slider .haunt-post-wrapper .haunt-post .haunt-post-info h5{
        font-family: 'Ysabeau SC', sans-serif;
        color: rgb(165, 8, 34);
    }
    
    .haunt-slider .haunt-post-wrapper .haunt-post .haunt-post-info h4{
    background-color: #0a0a0a;
    font-family: 'Ysabeau SC', sans-serif;
    color: white;
    padding: 5px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0px 3px 10px 3px rgba(25, 1, 1, 0.389);
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    .haunt-slider .haunt-post-wrapper .haunt-post .haunt-post-info h4:hover{
        background-color:rgb(155, 10, 10) ;
        font-size: 22px;
        transition: all .3s ease;
    }
    
    a{
        text-decoration: none;
        color: black;
    }
    #Haunted-places a:hover{
        color: rgb(179, 7, 7);
        font-family: 'Ysabeau SC', sans-serif;
    }

    /* Center mode */
    .slick-slide{
        transform: scale(0.8);
        transition: all 0.4s ease-in-out;
    }
    .slick-slide img{
        max-width: 100%;
        transition: all 0.4s ease-in-out;
    }
    .slick-center{
        transform: scale(1.1);
        border-radius: 20px;
        box-shadow: 0px 3px 13px 5px rgba(230, 230, 230, 0.389);
    }
    /* Responsive for Haunted places */
    @media only screen and (max-width: 1060px){
        .haunt-slider .haunt-post-wrapper .haunt-post .haunt-post-info h2 a{
            font-size: 15px;
        }
        .haunt-slider .haunt-post-wrapper .haunt-post .haunt-post-info h4{
            font-size: 15px;
        }
    }
    /* Weekly blog */
    #Devil-summon .weekly-blog-container{
        width: 90%;
        height: 450px;
        margin-left: 5%;
    }
    #Devil-summon .weekly-blog-title h1{
        text-align: center;
        margin: 30px auto;
        font-family: 'Ysabeau SC', sans-serif;
        font-size: 3.5rem;
        color: red;
        border-bottom: 2px solid red;
        padding-bottom: 12px;
        margin-left: 50px;
        margin-right: 50px;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .weekly-blog-container .blog-photo{
        float: left;
        width: 48%;
        height: inherit;
       
    }
    .weekly-blog-container .blog-photo img{
        width: 100%;
        height: inherit;
        border-radius: 30px;
    }
    .weekly-blog-container .blog-text{
        float: right;
        width: 50%;
        height: 400px;
        border-left: 3px solid rgb(225, 0, 0);
        padding-left: 12px;
        margin-bottom: 30px;
        margin-top: 20px;
    }
    .weekly-blog-container .blog-text p{
        font-family: 'Ysabeau SC', sans-serif;
        color: rgb(212, 4, 4);
        font-size: 25px;
    }
    .weekly-blog-container .blog-text h1{
        font-family: 'Ysabeau SC', sans-serif;
        color: rgb(248, 248, 248);
        font-size: 4rem;
    }
    .weekly-blog-container .blog-text h4{
        background-color: #d00000;
        font-family: 'Ysabeau SC', sans-serif;
        color: rgb(13, 13, 13);
        padding: 5px;
        border: none;
        border-radius: 10px;
        font-size: 18px;
        box-shadow: 0px 3px 10px 3px rgba(240, 7, 7, 0.389);
        transition: all .3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .weekly-blog-container .blog-text h4:hover{
        background-color:rgb(210, 210, 210) ;
        font-size: 22px;
        transition: all .3s ease;
    }
    /* Responsive for weekly blog */
    @media only screen and (max-width: 1060px) {
        #Devil-summon .weekly-blog-container {
            width: 100%;
            margin-left: 0;
        }
    
        #Devil-summon .weekly-blog-title h1 {
            margin-left: 0;
            margin-right: 0;
        }
    }
    
    /* Media Query for max-width: 790px */
    
    @media only screen and (max-width: 790px) {
        #Devil-summon .weekly-blog-container {
            height: auto;
        }
    
        .weekly-blog-container .blog-photo,
        .weekly-blog-container .blog-text {
            width: 100%;
            float: none;
        }
    
        .weekly-blog-container .blog-text {
            border-left: none;
            padding-left: 0;
            height: auto;
        }
    
        .weekly-blog-container .blog-text h1 {
            font-size: 3rem;
        }
    }
    /* Demonic objects */

    #Demonic-objs{
        width: 100%;
        height: 900px;
    }

    #Demonic-objs .demonic-obj-title h1{
        text-align: center;
        margin: 30px auto;
        font-family: 'Ysabeau SC', sans-serif;
        font-size: 3.5rem;
        color: red;
        border-bottom: 2px solid red;
        padding-bottom: 12px;
        margin-left: 50px;
        margin-right: 50px;
        margin-bottom: 30px;
        margin-top: 30px;
    }
    
    #Demonic-objs .demonic-obj-post{
        width: 100%;
        height: 450px;
        margin: 30px;
        display: inline-block;
    }
    
    #Demonic-objs .demonic-obj-post .demonic-obj-container{
        width: 90%;
        height: 360px;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        margin-left: 5%;
    }
    #Demonic-objs .demonic-obj-post .demonic-obj-container .demonic-obj-display{
        width: 15%;
        height: 330px;
        display: inline-block;
        margin: 13px 28px;
        padding-right: 10px;
        position: relative;
        transition: .4s ease;
    }
    #Demonic-objs .demonic-obj-post .demonic-obj-container .demonic-obj-display:hover{
        
        width: 18%;
        height:350px;
        transition: .4s ease;
    }
    .demonic-obj-post .demonic-obj-container .demonic-obj-display .demonic-obj-display-img img{
        width: 100%;
        height: 280px;
        position: absolute;
        transition: .4s ease;
    }
    .demonic-obj-post .demonic-obj-container .demonic-obj-display .demonic-obj-title p a{
        color: black;
        position: absolute;
        width: 100%;
        height: 50px;
        background-color: #ffffff;
        margin-top: 128%;
        font-family: 'Ysabeau SC', sans-serif;
        font-size: 18px;
        text-align: center;
        font-weight: 600;
        transition: .4s ease;
    }
    .demonic-obj-post .demonic-obj-container .demonic-obj-display .demonic-obj-title p a:hover{
        color: #be0000;
        padding: 3px;
    }

    /* Responsive for demonic objects */
    @media only screen and (max-width: 1060px){
        #Demonic-objs {
            width: 100%;
            height: 1200px;
        }
        .demonic-obj-post .demonic-obj-container .demonic-obj-display .demonic-obj-display-img img{
            width: 100%;
            height: 200px;
        }
        .demonic-obj-post .demonic-obj-container .demonic-obj-display .demonic-obj-title p a{
            font-size: 12px;
        }
        }

        @media only screen and (max-width: 790px){
            #Demonic-objs {
                width: 100%;
                height: 800px;
            }
            .demonic-obj-post .demonic-obj-container .demonic-obj-display .demonic-obj-display-img img{
                width: 100%;
                height: 100px;
            }
            .demonic-obj-post .demonic-obj-container .demonic-obj-display .demonic-obj-title p a{
                font-size: 12px;
            }
            #Demonic-objs .demonic-obj-post .demonic-obj-container .demonic-obj-display{
                width: 15%;
                height: 120px;
            }
            }
    /* Satanist */

    .satan-slider{
        position: relative;
    }
    .satan-slider .satan-slider-title{
        text-align: center;
        margin: 30px auto;
        font-family: 'Ysabeau SC', sans-serif;
        font-size: 3.5rem;
        color: red;
        border-bottom: 2px solid red;
        padding-bottom: 12px;
        margin-left: 50px;
        margin-right: 50px;
        margin-bottom: 30px;
        margin-top: 30px;
    }
    .satan-slider .satan-container{
        width: 90%;
        height: 420px;
        margin: 0px auto;
        margin-top: 30px;
        margin-left: 5%;
        overflow: hidden;
        padding:10px 0px 10px 0px ;
    }
    
    .satan-slider .satan-post{
        width: 90%;
        height: 350px;
        background-color: rgb(255, 255, 255);
        display: inline-block;
        position: relative;
    }
    
    .satan-slider .go-next{
        position: absolute;
        margin-top: 170px;
        right: 20px;
        font-size: 2em;
        color: red;
        cursor: pointer;
    }
    
    .satan-slider .go-prev{
        position: absolute;
        margin-top: 170px;
        left: 20px;
        font-size: 2em;
        color: red;
        cursor: pointer;
    }
    
    .satan-slider .satan-container .satan-post .satan-img{
        width: 47%;
        height:350px ;
        float: left;
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
    }
    
    .satan-slider .satan-container .satan-post .satan-preview{
        color: black;
        width: 50%;
        height: 350px;
        font-size: 1em;
        float: right;
    }  
    
    .satan-slider .satan-container .satan-post .satan-preview h2 a{
        font-size: 2.5rem;
        font-family: 'Ysabeau SC', sans-serif;
        font-weight: 700;
        margin-top: 12px;
        }
        .satan-slider .satan-container .satan-post .satan-preview h5{
            font-size: 18px;
            font-family: 'Ysabeau SC', sans-serif;
            color: rgb(165, 8, 34);
        }
        .satan-slider .satan-container .satan-post .satan-preview p{
            padding-bottom: 5px;
            font-size: 20px;
            margin-top: 1%;
        }
        .satan-slider .satan-container .satan-post .satan-preview h4{
            font-family: 'Ysabeau SC', sans-serif;
            color: rgb(0, 0, 0);
            transition: all .3s ease;
            font-size: 23px;
            float: right;
            margin-right: 12px;
    
        }
        .satan-slider .satan-container .satan-post .satan-preview h4:hover{
            color: rgb(155, 10, 34);
            font-size: 25px;
            transition: all .3s ease;
        }
        /* Responsive for satanist */

        @media only screen and (max-width: 1060px){
            .satan-slider .satan-container .satan-post  .satan-preview h2 a{
                font-size: 1.5rem;
            }
        }

        @media only screen and (max-width: 790px) {
            .satan-slider .satan-slider-title {
                font-size: 2.5rem;
                margin-left: 20px;
                margin-right: 20px;
            }
        
            .satan-container {
                width: 100%;
                margin-left: 0;
            }
        
            .satan-container .satan-post {
                width: 100%;
            }
        
            .satan-slider .satan-container .satan-post .satan-img {
                width: 100%;
                height: 120px;
            }
        
            .satan-slider .satan-container .satan-post .satan-preview {
                width: 100%;
                padding: 10px;
                box-sizing: border-box;
            }
        
            .satan-slider .satan-container .satan-post .satan-preview h2 a {
                font-size: 1rem;
                margin-top: 8px;
            }
        
            .satan-slider .satan-container .satan-post .satan-preview h5 {
                font-size: 16px;
            }
        
            .satan-slider .satan-container .satan-post .satan-preview p {
                font-size: 12px;
                margin-top: 1%;
            }
        
            .satan-slider .satan-container .satan-post .satan-preview h4 {
                font-size: 18px;
                margin-right: 10px;
            }
        
            .satan-slider .satan-container .satan-post .satan-preview h4:hover {
                font-size: 20px;
            }
        }