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******/


.allblogs-banner {
    background-image: url(../images/all-blogbg.png);
    background-position: center;
    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.55); /* Shadow effect */
    z-index: -1;
}
.al-bloghead{
    display: flex;
    justify-content: center;

}
.allblogs-banner .al-bloghead h2 {
    font-size: 50px;
    text-transform: capitalize;
    font-weight: bold;
    color: #000000;
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: #f7c71e;
    padding: 10px 20px;
    border-bottom: 2px solid #fff;
    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;
    background-image: url(../images/approach-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
position: relative;
}
.blog-contentIN::after{
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
background: #000000;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.881) 0%, rgba(0, 0, 0, 0.659) 19%, rgba(0, 0, 0, 0.642) 88%, rgba(255, 255, 255, 1) 100%);
}
.blog-contentIN .container{
    position: relative;
    z-index: 10;
}
/******* 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 #f7c71e;
    border-right: 3px solid #f7c71e;
    border-top: 1px solid #f7c71e;
    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: #f7c71e;
    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: #f7c71e;
}

/******* left-side end******/
/******* right-side end******/
.right-blog img {
    width: 100%;
    border-radius: 10px;
    border-left: 5px solid #f7c71e;
    border-right: 5px solid #f7c71e;
}

.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: #f7c71e;
}

/******* right-side end******/
@media screen and (min-width:200px) and (max-width:990px) {
    .blog-content {
        padding: 0;
    }
}


