body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 0.5s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.blog-section1 {
    display: flex;
    justify-content: center;
}
.blog-section1-wrapper {
    max-width: 1224px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 100px 35px;
}
.blog-section1-wrapper h2 {
    box-sizing: border-box;
	color: #1A1A1A;
	font-family: "Open Sans", sans-serif;
	font-size: 48px;
	font-weight: 600;
	line-height: 62.4px;
	margin: 0px 0px 40px;
	text-align: left;
}

.blog-section1-wrapper a {
    text-decoration: none;
}

.blog-section1-wrapper .blogs {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.blog-section1-wrapper .box {
    background-color: #efefef;
    border-radius: 20px;
    min-width: 48%;
    max-width: 48%;
}

@media screen and (max-width: 1024px) {
    .blog-section1-wrapper .box {
        min-width: 100%;
        max-width: 100%;
    }
}


.blog-section1-wrapper .box .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 28px 32px 36px 32px;
}
.blogs .box:hover {
    background-color: rgb(245,55,55);
}

.blogs .box:hover * {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important; /* for gradients */
}

.blog-section1-wrapper .box .content .upper-part .head {
    color: #0E0F1E;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.2px;
    text-decoration: none;
}

.blog-section1-wrapper .box .content .upper-part p {
    color: rgba(0, 0, 0, 0.65);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-top: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-section1-wrapper .box .content .data {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-section1-wrapper .box .content .data p {
    margin: 0px;
    color: #000;
}

.blog-section1-wrapper .box .content .data .user {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
}
