.header {
    min-height: 400px;
    background: #D9D9D9;
    position: relative;
}
.header .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
}
.header .main-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header .header-icon {
    max-width: 350px;
    object-fit: cover;
}
.blogs {
    position: relative;
    background: #FFFFFF;
    padding: 2rem 0;
    margin-top: 2rem;
    width: 100%;
}
.blogs .blog {
    min-width: 350px;
    min-height: 600px;
    border-radius: 1.5rem;
    border: thin solid #0000001A;
}
.blogs .blog .bg {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}
.blogs .blog .content {
    padding: 1rem;
}
.content .categories {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    direction: rtl;
}
.blogs .arrow {
    min-width: 75px !important;
    min-height: 75px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(32, 106, 127, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blogs .arrow.left-arrow {
    left: -1rem;
}
.blogs .arrow.right-arrow {
    right: -1rem;
}
.blogs .arrow.active, .blogs .arrow:hover {
    background: #206A7F;
}
.content .categories li {
    background: #F1FBFE;
    color: #206A7F;
    padding: 0.5rem;
    border: thin solid #DEF6FD;
    border-radius: 0.25rem;
    cursor: pointer;
}
.single-blog {
    border: thin solid #DCDCDC;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    align-items: stretch;
    margin: 2rem 0;
}
.single-blog .image {
    height: 100%;
    flex-grow: 1;
}
.single-blog .bg-wrapper {
    position: sticky;
    top: 20px;
    height: 500px;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
}
.single-blog .bg-wrapper img.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.single-blog .bg-wrapper .share-btn {
    top: 1rem;
    left: 1rem;
    z-index: 10;
}
.single-blog .content {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 1.5rem;
}
.single-blog .content .paragraph-img {
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    padding-top: 2rem;
}
.other-blogs {
    background: #FFFFFF;
    border-radius: 1.5rem;
    padding: 3rem 3rem 0;
    margin-bottom: 3rem;
}
.scroll-container {
    direction: rtl;
    overflow-x: hidden;
    scroll-behavior: smooth;
    white-space: nowrap;
}
.scroll-container .blog {
    display: inline-block;
    width: 100%;
    min-width: 420px;
    margin-left: 1rem;
    white-space: normal;
}
.scroll-container .blog:last-child {
    margin-left: 0;
}
