.slider-carousel {
    height: 550px;
    width: 100vw;
    overflow-x: hidden;
    position: relative;
    background: transparent;
}

    .slider-carousel .slider-list .slider-item {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0 0 0 0;
    }

        .slider-carousel .slider-list .slider-item img {
            width: 100%;
            height: 100%;
        }

        .slider-carousel .slider-list .slider-item .slider-content {
            position: absolute;
            top: 10%;
            width: 1140px;
            max-width: 80%;
            left: 50%;
            transform: translateX(-50%);
            padding-right: 30%;
            box-sizing: border-box;
            color: black;
        }

        .slider-carousel .slider-list .slider-item .author {
            font-weight: bold;
            letter-spacing: 10px;
        }

        .slider-carousel .slider-list .slider-item .slider-title,
        .slider-carousel .slider-list .slider-item .topic {
            font-size: 5em;
            font-weight: bold;
            line-height: 1.3em;
        }

        .slider-carousel .slider-list .slider-item .topic {
            color: #f1683a;
        }

        .slider-carousel .slider-list .slider-item .buttons {
            display: grid;
            grid-template-columns: repeat(2, 130px);
            grid-template-rows: 40px;
            gap: 5px;
            margin-top: 20px;
        }

            .slider-carousel .slider-list .slider-item .buttons button {
                border: none;
                background-color: #eee;
                letter-spacing: 3px;
                font-family: Poppins;
                font-weight: 500;
            }

                .slider-carousel .slider-list .slider-item .buttons button:nth-child(2) {
                    background-color: transparent;
                    border: 1px solid #fff;
                    color: #eee;
                }

.slider-thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-slider-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

    .slider-thumbnail .slider-item {
        width: 150px;
        height: 220px;
        border: 1px solid #c1bcbc;
        border-radius: 20px;
        flex-shrink: 0;
        position: relative;
    }

        .slider-thumbnail .slider-item img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
        }

        .slider-thumbnail .slider-item .slider-content {
            color: #fff;
            position: absolute;
            bottom: 10px;
            left: 10px;
            right: 10px;
        }

            .slider-thumbnail .slider-item .slider-content .slider-title {
                font-weight: 500;
            }

            .slider-thumbnail .slider-item .slider-content .slider-description {
                font-weight: 300;
            }

.slider-arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-slider-items: center;
}

    .slider-arrows button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: black;
        border: none;
        color: #fff;
        font-family: monospace;
        font-weight: bold;
        transition: .5s;
    }

        .slider-arrows button:hover {
            background-color: #fff;
            color: #000;
        }

.slider-carousel .slider-list .slider-item:nth-child(1) {
    z-index: 1;
}


    .slider-carousel .slider-list .slider-item:nth-child(1) .slider-content .author,
    .slider-carousel .slider-list .slider-item:nth-child(1) .slider-content .slider-title,
    .slider-carousel .slider-list .slider-item:nth-child(1) .slider-content .topic,
    .slider-carousel .slider-list .slider-item:nth-child(1) .slider-content .slider-des,
    .slider-carousel .slider-list .slider-item:nth-child(1) .slider-content .buttons {
        transform: translateY(50px);
        filter: blur(20px);
        opacity: 0;
        animation: showslider-content .5s 1s linear 1 forwards;
    }

@keyframes showslider-content {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.slider-carousel .slider-list .slider-item:nth-child(1) .slider-content .slider-title {
    animation-delay: 1.2s !important;
}

.slider-carousel .slider-list .slider-item:nth-child(1) .slider-content .topic {
    animation-delay: 1.4s !important;
}

.slider-carousel .slider-list .slider-item:nth-child(1) .slider-content .slider-des {
    animation-delay: 1.6s !important;
}

.slider-carousel .slider-list .slider-item:nth-child(1) .slider-content .buttons {
    animation-delay: 1.8s !important;
}

.slider-carousel.slider-next .slider-list .slider-item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.slider-carousel.slider-next .slider-thumbnail .slider-item:nth-last-child(1) {
    overflow: hidden;
    animation: showslider-thumbnail .5s linear 1 forwards;
}

.slider-carousel.slider-prev .slider-list .slider-item img {
    z-index: 100;
}

@keyframes showslider-thumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.slider-carousel.slider-next .slider-thumbnail {
    animation: effectslider-next .5s linear 1 forwards;
}

@keyframes effectslider-next {
    from {
        transform: translateX(150px);
    }
}

.slider-carousel .slider-time {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.slider-carousel.slider-next .slider-time,
.slider-carousel.slider-prev .slider-time {
    animation: runningTime 3s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 100%
    }

    to {
        width: 0
    }
}

.slider-carousel.slider-prev .slider-list .slider-item:nth-child(2) {
    z-index: 2;
}

    .slider-carousel.slider-prev .slider-list .slider-item:nth-child(2) img {
        animation: outFrame 0.5s linear 1 forwards;
        position: absolute;
        bottom: 0;
        left: 0;
    }

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.slider-carousel.slider-prev .slider-thumbnail .slider-item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showslider-thumbnail .5s linear 1 forwards;
}

.slider-carousel.slider-next .slider-arrows button,
.slider-carousel.slider-prev .slider-arrows button {
    pointer-events: none;
}

.slider-carousel.slider-prev .slider-list .slider-item:nth-child(2) .slider-content .author,
.slider-carousel.slider-prev .slider-list .slider-item:nth-child(2) .slider-content .slider-title,
.slider-carousel.slider-prev .slider-list .slider-item:nth-child(2) .slider-content .topic,
.slider-carousel.slider-prev .slider-list .slider-item:nth-child(2) .slider-content .slider-des,
.slider-carousel.slider-prev .slider-list .slider-item:nth-child(2) .slider-content .buttons {
    animation: slider-contentOut 1.5s linear 1 forwards !important;
}

@keyframes slider-contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and (max-width: 450px) {
    .slider-content {
        max-width: 100% !important;
        margin-left: 20px;
    }

    .slider-des {
        width: 100% !important;
    }
}

@media screen and (max-width: 950px) {
    .slider-carousel {
        height: 500px;
    }

    .slider-content {
        top: 5% !important;
    }

    .slider-title {
        font-size: 40px !important;
    }

    .slider-des {
        width: 100% !important;
        overflow: hidden;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 7;
    }

    .slider-thumbnail .slider-item img {
        margin-top: 80px;
        height: 170px;
    }

    .slider-thumbnail .slider-item .slider-content .slider-title {
        font-size: 20px !important;
        margin-top: 200px;
    }
}

.a-btn {
    box-shadow: inset 0 0 0 0 #54b3d6;
    color: black;
    margin: 0 -.25rem;
    padding: 0 .25rem;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

    .a-btn:hover {
        box-shadow: inset 2000px 0 0 0 #54b3d6;
        color: white;
    }


.three-sec .col-sm-3 {
    border: 1px solid #8bc53f;
    background-color: white;
    padding: 10px;
    margin-bottom: 30px;
    position: relative;
}

.three-sec p {
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
}

.icon-three {
    margin-top: -15%;
    background-color: white;
    border: 1px solid #8bc53f;
    border-radius: 50PX;
}
.details{
    font-weight: 400;
}
.details:hover {
    transition: 2s ease;
    transform: rotateY(360deg);
    color: #043a51;
}

.three-button {
    background-color: #8bc53f !important;
    color: white !important;
    font-weight: bold !important;
}

.top-btn {
    text-decoration: none;
    border: 1px solid #8bc53f;
    border-radius: 5px;
    background-color: #8bc53f;
    color: white;
    padding: 10px;
}

.slider-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px black;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .slide p {
        margin-right: 70px;
    }

@media screen and (max-width: 767px) {
    .slide p {
        font-size: 12px;
    }

    .s-btn {
        padding: 3px !important;
    }

    .slider-carousel {
        height: 234px;
    }

    .slider-thumbnail .slider-item img {
        margin-top: 170px;
        height: 100px;
    }
}

@media screen and (min-width: 534px) and (max-width: 767px) {
    .slider-carousel {
        margin-top: -30px;
        height: 400px;
    }
}

@media screen and (max-width: 375px) {
    .slide p {
        font-size: 11px;
    }

    .s-btn {
        padding: 3px !important;
    }
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
}

.slide:not(.active) {
    transform: translateY(20px);
}

.button-container {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.s-btn {
    margin: 10px 0;
    padding: 10px;
    background-color: #8bc53f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .s-btn:hover {
        background-color: #4b807a;
        transform: scale(1.05);
    }

.sideimage {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 0 10px black;
}

@media screen and (max-width: 576px) {
    .sideimage {
        width: 100%;
        height: 209px;
    }
    .blog-sec .col-sm-8{
        transform: translateY(-10%) !important;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .sideimage {
        margin-left: -20px;
        width: 400px;
        height: 390px;
    }

    .sideimagecontent {
        margin-left: -30px;
        width: 63% !important;
    }
}

.p-card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid #fff;
    position: relative;
}

.p-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.p-card-body {
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    position: absolute;
    background-color: #1f3d4738;
    backdrop-filter: blur(5px);
    border-radius: 15px;
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 2s;
}

.p-card:hover .p-card-body {
    right: 0;
}

.p-card-title {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: bold;
}

.main-image {
    position: relative;
    width: 100%;
    height: 400px;
}

    .main-image img {
        width: 100%;
        height: 470px;
        border-radius: 20px;
    }

.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.img-title,
.img-description {
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    margin: 5px;
    min-width: 150px;
    color: white;
}

.img-thumbnails {
    margin-top: 65px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.img-thumbnail {
    margin: 5px;
    text-align: center;
}

    .img-thumbnail img {
        background-color: green;
        width: 50px;
        height: auto;
        cursor: pointer;
        border: 2px solid #ddd;
        border-radius: 4px;
        transition: border-color 0.3s;
    }

        .img-thumbnail img:hover {
            border-color: #333;
        }

.info {
    display: none;
}

.info-title,
.info-description {
    color: black;
    background: white;
    padding: 5px;
    border-radius: 5px;
    margin: 2px 0;
}

@media screen and (max-width: 375px) {
    .caption {
        width: 80% !important;
    }
}

.diffe {
    background: linear-gradient(135deg, #325672 0%, #4893ca 100%);
}

* {
    transition: all .3s ease-in-out;
}

.three-card {
    background-color: white;
    color: black;
    border-radius: 20px;
    box-shadow: 0 1px 1px rgba(72, 78, 85, .6);
}

.three-card-body {
    padding: 10px;
}

    .three-card-body .btn {
        background-color: #8bc53f;
        color: white;
    }

.three-card img {
    border-radius: 20px 20px 0 0;
    height: 218px;
}

.three-card:hover {
    background-color: white;
    color: black;
    box-shadow: 0 20px 40px rgba(72, 78, 85, .6);
    transform: translateY(-15px);
}

.all-link {
    overflow: hidden;
    position: relative;
    display: inline-block;
    font-size: 19px;
}

    .all-link::before,
    .all-link::after {
        content: '';
        position: absolute;
        width: 100%;
        left: 0;
    }

    .all-link::before {
        background-color: orangered;
        height: 2px;
        bottom: 0;
        transform-origin: 100% 50%;
        transform: scaleX(0);
        transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
    }

    .all-link::after {
        content: attr(data-replace);
        height: 100%;
        top: 0;
        transform-origin: 100% 50%;
        transform: translate3d(200%, 0, 0);
        transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
        color: orangered;
    }

    .all-link:hover::before {
        transform-origin: 0% 50%;
        transform: scaleX(1);
    }

    .all-link:hover::after {
        transform: translate3d(0, 0, 0);
    }

    .all-link span {
        display: inline-block;
        transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
    }

    .all-link:hover span {
        transform: translate3d(-200%, 0, 0);
    }

.something {
    background-color: #325672;
    color: white;
}

    .something a {
        text-decoration: none;
    }

.slide_right:hover {
    box-shadow: inset 400px 0 0 0 #333;
    color: white !important;
}

.something .a-linked {
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    color: black;
    background-color: white;
    cursor: pointer;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: all ease-out 0.2s;
}

.s-card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 0 10px #959595;
    overflow: hidden;
    border: 8px solid #fff;
    position: relative;
}

.s-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.s-card-body {
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    position: absolute;
    background-color: #1f3d4738;
    backdrop-filter: blur(5px);
    border-radius: 15px;
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 2s;
}

.s-card:hover .s-card-body {
    right: 0;
}

.s-card-title {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: bold;
}

.s-card-sub-title {
    text-transform: capitalize;
    font-size: 24px;
    font-weight: bold;
}

.slider-containers {
    position: relative;
    max-width: 700px;
    overflow: hidden;
    border-radius: 10px;
    height: 280px;
}


.n-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.n-slider-item {
    min-width: 100%;
    box-sizing: border-box;
    display: none;
}

    .n-slider-item.active {
        display: block;
    }

    .n-slider-item img {
        width: 100%;
        height: 217px;
        border-bottom: 3px solid #ddd;
    }

a {
    text-decoration: none;
}

.n-caption {
    padding: 20px;
    text-align: center;
    background-color: #838383 !important;
    width: 100%;
    color: white;
}

.n-p {
    color: white !important;
    width: 100%;
    height: auto;
    font-size: 20px;
    background-color: #838383;
    transition: opacity 0.3s ease;
}

.n-slider-item:hover .n-caption {
    transition: all 0.1s ease-in-out;
}

.n-caption h6 {
    text-shadow: 0 0 10px white;
    color: black;
    margin-bottom: 10px;
    font-weight: bolder;
}

.n-caption p {
    font-size: 15px;
    color: #666;
}

.n-prev,
.n-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    z-index: 2;
}

.n-prev {
    left: 10px;
}

.n-next {
    right: 10px;
}

    .n-prev:hover,
    .n-next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

@media (max-width: 768px) {
    .n-caption h3 {
        font-size: 18px;
    }

    .n-caption p {
        font-size: 14px;
    }

    .n-prev,
    .n-next {
        padding: 10px;
    }
}

.n-para {
    text-align: justify;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-sec {
    background-color: #ddd;
}

.hover-2 {
    color: #0000;
    font-weight: bold;
    background: linear-gradient(90deg, white 50%, #6eb8b1 0) var(--_p, 100%)/200%, linear-gradient(90deg, white 50%, #6eb8b1 0) var(--_c, 0%)/200% no-repeat;
    -webkit-background-clip: text, padding-box;
    background-clip: text, padding-box;
    transition: .4s;
}

    .hover-2:hover {
        --_p: 0%;
        --_c: 100%;
    }

.hover-4 {
    line-height: 1.1em;
    padding: calc(2.1*.15em);
    background: linear-gradient(to top, red, red) left 0 var(--a, bottom) var(--e, 0%)/calc(2*.01em) .05em repeat-x, linear-gradient(to top, #1095c1, #1095c1) var(--b, right) var(--e, 0%) bottom 0%/calc(2*.03em) .05em repeat-y, linear-gradient(to top, red, red) var(--c, left) var(--e, 0%) top .15em/calc(2*.03em) .15em repeat-y, linear-gradient(to top, #1095c1, #1095c1) left .15em var(--d, top) var(--e, 0%)/calc(2*.15em) .05em repeat-x;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) 0/var(--_p, 100%) padding-box no-repeat;
    transition: .5s;
}

    .hover-4:hover {
        --a: top;
        --b: left;
        --c: right;
        --d: bottom;
        --e: 40%;
        --_p: 100%;
        color: #1095c1;
    }

.wmud {
    background: linear-gradient(135deg, #325672 0%, #4893ca 100%);
}

.b-carousel .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

.b-carousel {
    height: auto;
}

    .b-carousel .responsive-container-block.Container {
        max-width: 1320px;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        position: relative;
    }

    .b-carousel .cardImg {
        width: 100%;
    }

    .b-carousel .container-block {
        min-height: 75px;
        height: fit-content;
        width: 100%;
        display: block;
    }

.b-b-carousel .swiper.mySwiper {
    width: 100%;
}

.b-b-carousel .swiper-slide2 {
    width: 100%;
    padding: 10px;
}

.b-carousel .swiper-wrapper {
    padding-bottom: 30px;
    width: 100%;
}

.b-carousel .swiper-pagination.container-block {
    top: auto;
    bottom: 5px;
    min-height: 20px;
}

.card-img-top {
    height: 216px;
}

.card-title {
    font-size: 20px;
}

.card-text {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.t-slider-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.t-card {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s;
}

    .t-card:hover {
        transform: scale(1.05);
    }

.t-image-container {
    width: 100%;
    height: 350px;
    padding: 5px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(84, 179, 214, 0.5);
}

    .t-image-container img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

.user-name {
    margin: 10px 0 0;
    font-size: 1.2rem;
    text-align: center;
    color: #333;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.t-swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.t-swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .t-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .t-image-container {
        height: 280px;
    }

        .t-image-container img {
            height: 270px;
        }
}

@media (max-width: 480px) {
    .t-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .t-image-container {
        height: 280px;
    }

        .t-image-container img {
            height: 270px;
        }
}