.home {
    overflow-x: hidden;
    margin-top: 0;
}

/* Hero */

.home-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 0;
    padding-top: calc(var(--header-height) + 20px);
}

.home-hero::before {
    content: "";
    position: absolute;
    left: 50%;
    z-index: -1;
    background: linear-gradient(0deg, #DF86AA 19.48%, rgba(46, 32, 255, 0.27) -13.62%, #000000 100%);
    filter: blur(225px);
    top: -700px;
    width: 1500px;
    height: 1200px;
    transform: translate(-50%, 0);
    border-radius: 0 0 50% 50%;
}

.home-hero__inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.home-hero__title {
    max-width: 800px;
    font-size: 50px;
    margin-bottom: 24px;
    letter-spacing: -2.6px;
}

.home-hero__title span {
    background: linear-gradient(180deg, #c461d5 0%, #9C27B0 100%);
    background-clip: text;
    color: transparent;
}

.home-hero__desc {
    max-width: 650px;
    margin-bottom: 30px;
}

.ripple-shape {
    transform: skewX(240deg);
    position: absolute;
    z-index: -1;
    opacity: 0.3;
    top: 0;
    left: 20%;
}

.ripple-1,
.ripple-2,
.ripple-3,
.ripple-4,
.ripple-5,
.ripple-6,
.ripple-7 {
    width: 700px;
    height: 700px;
    position: absolute;
    left: 30%;
    top: 0;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: 1px solid white;
    border-radius: 50%;
    animation: ripple 10s linear infinite;
    opacity: 0;
    transition: 0.4s;
}

.ripple-1 {
    animation-delay: 0;
}
.ripple-2 {
    animation-delay: 1s;
}
.ripple-3 {
    animation-delay: 3s;
}
.ripple-4 {
    animation-delay: 4s;
}
.ripple-4 {
    animation-delay: 5s;
}
.ripple-5 {
    animation-delay: 6s;
}
.ripple-6 {
    animation-delay: 7s;
}
.ripple-7 {
    animation-delay: 8s;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    10% {
        opacity: 0.6;
    }
    30% {
        opacity: 0.4;
    }
    40% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.14;
    }
    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

/* Jobs */

.home-hero .job_listings:not(.job_listings-items) {
    border-radius: 20px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 24px;
    border: none;
    width: 100%;
}

.home-hero .job_listings.job_listings-items {
    gap: 0;
}

.home-hero .job_listing {
    background: #ffffff0f;
    backdrop-filter: blur(10px);
    transition: .3s;
    border-bottom: 1px solid #ffffff26;
    border-radius: 0;
}

.home-hero .job_listing:last-child {
    border: none;
}

.home-hero .job_listing:hover {
    backdrop-filter: none;
}

.home-hero .load_more_jobs {
    display: none !important;
}

@media (max-width: 768px){
    .home-hero__title {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .home-hero .job_listings {
        margin-bottom: 16px;
    }
}

/* Talents */

.home-talents {
    margin: 80px 0;
}

.home-talents__title {
    text-align: center;
    margin-bottom: 8px;
}

.home-talents__desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.home-talents .um-directory {
    margin-top: 40px;
}

.home-talents .talent {
    max-width: 900px;
}

.home-talents__more {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.home__content {
    margin: 40px 0;
}
.home__content-row .wp-block-heading{
    margin-bottom: 20px;
    text-align: center;
}
.home__content-row p{
    text-align: justify;
}
.latest-news__title {
    text-align: center;
    margin-bottom: 10px;
}
.latest-news__slider {
    overflow: hidden;
    max-width: 100%;
}
.latest-news__slider .swiper-wrapper {
    display: flex;
    transition-timing-function: linear;
}
.latest-news__slider {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    max-width: 100%;
}

.latest-news__slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.latest-news__slider .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    height: auto;
}
.latest-news__slider article {
    height: 100%;
}


.home .wp-block-group {
    margin-bottom: 40px;
}

.home-buttons {
    display: flex;
    gap: 60px;
    justify-content: center;
}
.home-buttons a{
    padding: 10px 20px;
    border-radius: 7px;  
    background-color: #23adad; 
    color: #fff;
    min-width: 200px;
    text-align: center;
}
/* FAQ */
.faq {
    position: relative;
}
.faq__title {
    margin-bottom: 20px;
    text-align: center;
}
.faq__accordion-box {
    padding: 24px;
    box-shadow: 0px 4px 20px rgba(30, 30, 30, 0.04);
    margin-bottom: 20px;
}
.faq__accordion-header h6{
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
}
.faq__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: justify;
}

.faq__accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__accordion-box img {
    width: 30px;
    transition: transform 0.3s ease;
}

.faq__accordion-box.active .faq__accordion-content {
    padding: 20px 0;
    max-height: 600px;
}

.faq__accordion-box.active img {
    transform: rotate(-90deg);
}
.faq__shadow-1{
    position: absolute;
    z-index: 10px;
    top: -450px;
    left: 0px;
}
.faq__accordion-content ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
.faq__accordion-content p {
    margin-bottom: 10px;
}

.faq__accordion-content li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

.faq__accordion-content li::before {
    content: "\2022"; /* Точка как маркер */
    color: #23adad;
    position: absolute;
    left: 0;
    font-size: 18px;
    line-height: 1;
}
@media (max-width: 581px) {
    .home-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }
    .faq__accordion-content {
        font-size: 14px;
    }
    .faq__accordion-header h6 {
        font-size: 20px;
    }
    .faq__accordion-box {
        padding: 16px;
        margin-bottom: 12px;
    }
    .faq__accordion-box img {
        width: 20px;
    }
}
@media (max-width: 421px) {
    .faq__accordion-content {
        font-size: 12px;
    }
    .faq__accordion-header h6 {
        font-size: 18px;
    }
}