body {
    margin: 0;
    padding: 0;
    line-height: 20px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.clear {
    clear: both;
}

/******* banner start******/
.blog-contentIN {
    background-image: url(../images/all-blogsbody.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.blog-contentIN::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(13, 12, 12, 0.707) 57%, rgba(255, 255, 255, 1) 100%);
}

.blog-contentIN .container {
    position: relative;
    z-index: 10;
}

.allblogs-banner {
    background-image: url(../images/banner-carouselON.jpeg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.allblogs-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.631);
    /* Shadow effect */
    z-index: -1;
}

.al-bloghead {
    width: 50%;
    margin: 70px 0px 0px auto;

}

.allblogs-banner .al-bloghead h2 {
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 600;
    color: #cff185;
    position: relative;
    z-index: 1;
    text-align: justify;
    background-color: #000000;
    padding: 10px 20px;
    border-bottom: 2px solid #bdfa39;
    display: inline-block;
    border-radius: 15px;
}

/* .allblogs-banner h2 {
  position: relative;  
  font-size: 50px;
  font-weight: bold;
  color: white;
} */

.allblogs-banner h2::before {
    content: attr(data-text);
    position: absolute;
    top: 0px;
    left: 0px;
    color: rgb(255, 255, 255);
    filter: blur(2px);
    text-shadow: rgb(255, 255, 255) 0px 0px 5px,
        rgb(255, 255, 255) 0px 0px 10px,
        rgb(255, 255, 255) 0px 0px 20px;
    opacity: 0.5;
    transform: scale(1);
    z-index: -1;
    animation: glowTextShape 2s ease-out infinite;
    white-space: nowrap;
}

@keyframes glowTextShape {
    0% {
        opacity: 0.6;
        transform: scale(1);
        filter: blur(2px);
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
        filter: blur(8px);
    }
}

@media screen and (min-width:200px) and (max-width:425px) {
    .allblogs-banner {
        padding: 70px 0;
    }

    .allblogs-banner h2 {
        font-size: 20px;
        margin-left: 0;
    }
}

/******* banner end******/
.blog-contentIN {
    padding: 80px 0;
}


/******* left-side start******/
.blog-contentIN .blog-card img {
    border-radius: 10px;
    max-height: 200px;
    object-fit: cover;
}

.blog-contentIN .card-body h5 {
    padding: 10px 0;
}

.blog-contentIN .card-body p {
    padding-bottom: 10px;
}

.blog-contentIN .blog-card {
    background-color: #ffffff;
    box-shadow: 0px 4px 4px 4px rgba(90, 88, 88, 0.583);
    padding: 10px;
    border-radius: 10px;
    border-left: 3px solid #cff185;
    border-right: 3px solid #cff185;
    border-top: 1px solid #cff185;
    margin: 20px 0;
}

.blog-contentIN .left-blog a {
    color: black;
}

.blog-contentIN .blog-card .btn-viewread {
    background-color: black;
    border-radius: 10px;
    color: #eee;
}

.blog-contentIN .blog-card .btn-viewread:hover {
    background-color: #baee4a;
    border: none;
    transition: 0.9s;
    color: black;
}

.blog-contentIN .blog-titel {
    display: flex;
    justify-content: space-between;
}

.blog-contentIN .blog-titel p {
    padding-top: 8px;
    font-size: 15px;
    color: #6e9e07;
}

/******* left-side end******/
/******* right-side end******/
.right-blog img {
    width: 100%;
    border-radius: 10px;
    border-left: 5px solid #cff185;
    border-right: 5px solid #cff185;
    background-color: #fff;
    height: 300px;
}

.right-blog h2 {
    font-weight: bold;
    font-size: 27px;
    padding-bottom: 20px;
    color: white;
}

.right-blog ul {
    padding: 20px;
}

.right-blog ul p {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.right-blog ul li {

    padding: 10px 0;
    font-size: 17px;
    font-weight: bold;
    list-style: decimal;
    color: #d3ff74;
}

/******* right-side end******/
@media screen and (min-width:200px) and (max-width:990px) {
    .blog-content {
        padding: 0;
    }
}