.blog-section {
    padding-top: 50px;
    width: 100%;
    margin: 50px auto;
    position: relative;
}

@media screen and (max-width: 767px) {
    .blog-section {
        margin: 20px auto;
    }
}

.blog-section .blog-content {
    width: 100%;
    margin-bottom: 20px;
}

.blog-section .blog-content .title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    color: #243757;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .blog-section .blog-content .title {
        font-size: 30px;
        line-height: 40px;
    }
}

.blog-section .blog-gallery {
    position: relative;
    width: 100%;
    min-height: 600px;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
}

@media screen and (max-width: 767px) {
    .blog-section .blog-gallery {
        min-height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .blog-section .blog-gallery {
        min-height: 300px;
    }
}

.blog-section .blog-gallery img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.blog-section .blog-gallery img.active {
    opacity: 1;
    z-index: 1;
}

.blog-section .blog-gallery .controls {
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 50%;
    max-width: max-content;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    gap: 30px;
    box-sizing: border-box;
    z-index: 100;
    background-color: #fff;
    padding: 8px 18px;
    min-height: 52px;
    border-radius: 43px;
}

@media screen and (max-width: 767px) {
    .blog-section .blog-gallery .controls {
        min-height: unset;
    }
}

.blog-section .blog-gallery .controls button {
    background: transparent;
    border: 4px solid #040033;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-section .blog-gallery .controls button svg path {
    transition: fill 0.3s ease;
}

.blog-section .blog-gallery .controls button:hover {
    background-color: #243757;
    border-color: #243757;
}

.blog-section .blog-gallery .controls button:hover svg path {
    fill: #fff;
}

.blog-section .blog-data {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 15px;
    margin: 10px auto;
}

.blog-section .blog-data .main {
    width: 100%;
}

.blog-section .blog-data .main .data-container {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 17px;
    padding: 22px;
}

.blog-section .blog-data .main .data-container .blog-body {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    color: #243757;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    transition: height 0.5s ease;
}

.blog-section .blog-data .main .data-container .blog-body h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 36px;
    color: #243757;
    margin: 20px auto;
}

.blog-section .blog-data .main .data-container .blog-body h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    color: #243757;
    margin: 18px auto;
}

.blog-section .blog-data .main .data-container .blog-body h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 36px;
    color: #243757;
    margin: 15px auto;
}

.blog-section .blog-data .main .data-container .blog-body h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 36px;
    color: #243757;
    margin: 10px auto;
}

.blog-section .blog-data .main .data-container .blog-body h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 36px;
    color: #243757;
    margin: 10px auto;
}

.blog-section .blog-data .main .data-container .blog-body h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 36px;
    color: #243757;
    margin: 10px auto;
}

.blog-section .blog-data .main .data-container .blog-body p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #243757;
    margin: 10px auto;
}

.blog-section .blog-data .main .data-container .blog-body a {
    color: #040033;
    font-weight: bold;
    cursor: pointer;
}

.blog-section .blog-data .main .data-container .blog-body ul {
    margin-top: 10px;
    width: 100%;
    list-style: none;
}

.blog-section .blog-data .main .data-container .blog-body ul li {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.5px;
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.blog-section .blog-data .main .data-container .blog-body ul li::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("../images/valid-icon-2.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.blog-section .blog-data .main .data-container .blog-body img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin: 10px auto;
    border-radius: 15px;
}

.blog-section .blog-data .main .data-container .read-more-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.blog-section .blog-data .main .data-container .read-more-container a {
    max-width: max-content;
    background-color: #040033 !important;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 0px;
}

@media screen and (max-width: 767px) {
    .blog-section .blog-data .main .data-container .read-more-container a {
        padding: 10px 20px;
        font-size: 13px;
        line-height: 20px;
    }
}

.blog-section .blog-data .main .data-container .read-more-container a:hover {
    background-color: #243757;
    color: #FFFFFF;
}

.blog-section .blog-data .main .data-container .blog-footer {
    margin: 10px auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

@media screen and (max-width: 767px) {
    .blog-section .blog-data .main .data-container .blog-footer {
        margin: 20px auto 10px auto;
        gap: 15px;
        align-items: start;
        justify-content: start;
        flex-direction: column-reverse;
    }
}

.blog-section .blog-data .main .data-container .blog-footer .fdev {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.blog-section .blog-data .main .data-container .blog-footer .fdev:first-child {
    flex: 1;
}

.blog-section .blog-data .main .data-container .blog-footer .fdev span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #040033;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .blog-section .blog-data .main .data-container .blog-footer .fdev span {
        font-size: 16px;
        line-height: 24px;
    }
}

.blog-section .blog-data .main .data-container .blog-footer .fdev .wrapper {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.blog-section .blog-data .sidebar {
    position: sticky;
    top: 110px;
    width: 100%;
    max-width: 440px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 17px;
    padding: 20px 15px;
}

@media screen and (max-width: 767px) {
    .blog-section .blog-data {
        flex-direction: column-reverse;
    }

    .blog-section .blog-data .sidebar {
        position: static;
    }
}

.date-icon {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #243757;
}

@media screen and (max-width: 767px) {
    .date-icon {
        font-size: 14px;
        line-height: 20px;
    }
}

.blog-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #243757;
    max-width: fit-content;
    padding: 10px 15px;
    border: 1px solid #E5E7EB;
    border-radius: 30px;
}

@media screen and (max-width: 767px) {
    .blog-tag {
        font-size: 12px;
        line-height: 18px;
        padding: 5px 10px;
    }
}

.social-link {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #040033;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

@media screen and (max-width: 767px) {
    .social-link {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
    }
}

.social-link:hover {
    background-color: #040033;
}

.social-link:hover svg path {
    fill: #fff;
    stroke: #fff;
}
