.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    width: 100%;
    height: 100vh;
    position: relative;
}

.swiper-slide .swiper-bg {
    width: 100%;
    height: 100vh;
    object-fit: none;
    object-position: center center;
    filter: brightness(.8);
}

.swiper-content {
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
}

.swiper-text {
    transform: translateY(-50%);
    top: 50%;
    position: relative;
}

.swiper-data h1 {
    line-height: 1.2;
}

.swiper-data h4 {
    font-size: 2em;
    font-weight: 700;
    line-height: 1.1;
    display: block;
    color: #fff;
}

.right-container {
    display: flex;
    margin: 20px auto;
}

.right-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 30px;
    padding: 5px 10px;
    border-radius: 20px;
}

.right-item div {
    margin-right: 15px;
    color: #fff;
    z-index: 99;
}

.right-item img {
    width: 18px;
    height: 18px;
    z-index: 99;
}

.right-item::before {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 34px;
    background: #5856ff;
    left: 0;
    top: 0;
    margin-right: 30px;
    overflow: hidden;
    border-radius: 18px;
    transition: width 0.5s ease-out;
}

.right-item:hover::before {
    width: 100%;
}

.about-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}



.about-title {
    display: inline-block;

}

.about-title-content {
    padding: 0px 10px;
    border: 1px solid;
    border-color: gray;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;

}

.about-title-content span {
    display: block;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    border: 1px solid #050519;
    margin-right: 10px;
    background-color: #f8ff00;
}

.team-left {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}


.all-btn {
    width: 200px;
    height: 120px;
    background-color: #d7ddfb;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    align-content: space-between;
    cursor: pointer;
    background-image: linear-gradient(#5856ff, #5856ff);
    background-repeat: no-repeat;
    background-size: 100% 0;
    background-origin: content-box;
    background-position: bottom;
    transition: background-size 0.3s ease;
    border-radius: 10px;
}

.button-box {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    padding: 15px;
}

.button-box_arrow {
    justify-content: center;
    align-items: center;
    width: 1.875em;
    height: 1.875em;
    transition-property: transform;
    transition-duration: .5s;
    transition-timing-function: ease;
    display: flex;
    inset: 1em 1em auto auto;

}

.all-text {
    width: 100%;
    padding: 15px;
}

.all-btn:hover {
    background-size: 100% 100%;
}

.all-btn:hover .all-text {
    color: #fff;
}

.all-btn:hover .button-box_arrow {
    transform: rotateZ(45deg);
    color: #fff;
}

.all-btn:hover .button-box_arrow .c-arrow {
    fill: #000;
}

.experts-container {
    width: 100%;
    height: 400px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.experts-container img {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 400px;
    object-fit: none;
    object-position: center center;
    filter: brightness(.7);
}



.experts-container h2 {
    z-index: 99;
}



.new-card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.new-card img {
    transition: transform 0.3s ease;
}

.content {
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}




@media screen and (min-width : 767px) {
    .about-left {
        width: 20%;
        margin-left: 10%;
    }

    .about-right {
        width: 40%;
    }

    .services-right {
        width: 70%;
    }

    .experts-content {
        position: absolute;
        left: 10%;
        top: 20%;
        width: 50%;
        height: 80%;
    }
}

@media screen and (max-width : 767px) {
    .about-left {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-right {
        width: 100%;
    }

    .services-right {
        width: 100%;
    }

    .all-btn {
        display: none;
    }

    .experts-content {
        position: absolute;
        left: 5%;
        top: 20%;
        width: 90%;
        height: 80%;
    }
}