:root {
    --card: #F5F5F7;
    --background-light: #F6F6F6;
    --background-dark: #202020;
    --stroke: #333335;
    --primary: #0071E3;
    --hover: #318BE7;
    --head: #101010;
    --main-text: #D8D8D8;
}

#scud-block {
    position: relative;
    margin-bottom: 80px;
}


#scud-block .title_abuze {
    color: var(--card);
    font-family: Roboto Condensed;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

#scud-block .swiper-arrows {
    padding-top: unset;
}

#scud-block .tasks_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

#scud-block .swiper-slide {
    opacity: 0.5;
}

#scud-block .swiper-slide.swiper-slide-active,
#scud-block .swiper-slide.swiper-slide-next,
#scud-block .swiper-slide.swiper-slide-next+.swiper-slide {
    opacity: 1;
}

#scud-block .swiper-wrap {
    width: 100%;
    overflow: hidden;
}

#scud-block .swiper-tasks {
    width: 100%;
    overflow: visible;
}

#scud-block .tasks_up {
    height: 100%;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#scud-block .tasks_up img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
}

#scud-block .names_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-top: 30px;
}

#scud-block .task-item {
    height: auto;
}

.task-holder {
    width: 100%;
    position: relative;
}

#scud-block .name_title {
    color: var(--card, #F5F5F7);
    font-family: "Roboto Condensed";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

#scud-block .name_subtitle {
    color: var(--main-text, #D8D8D8);
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    max-width: 370px;
}


#scud-block .name_subtitle ul {
    list-style: none;
}

#scud-block .name_subtitle ul li {
    display: flex;
    color: var(--main-text, #D8D8D8);
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

#scud-block .name_subtitle ul li::before {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin: 12px 15px 0;
    background-color: currentColor;
}

#scud-block .task_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

#scud-block .btn_tasks {
    display: flex;
    padding: 17px 40px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 100px;
    background: var(--primary);
    max-height: 56px;
    max-width: 283px;
}

#scud-block .text_btn {
    color: var(--card);
    font-family: Roboto Condensed;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-align: center;
}

#scud-block .btn_tasks:hover {
    background-color: var(--hover);
}

#scud-block .swiper-nav-wrap {
    margin-top: 40px;
    display: flex;
    width: 727px;
    justify-content: space-between;
    align-items: flex-start;
}

#scud-block .btn_text {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary, #0071E3);
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    transition: 0.5s;
    cursor: pointer;
}

#scud-block .btn_text:hover {
 color: var(--hover);
}

@media (max-width: 1919px) {
    #scud-block .swiper-tasks {
        overflow: hidden;
    }
}

@media (max-width: 770px) {
    #scud-block .swiper-nav-wrap {
        justify-content: unset;
        width: unset;
        flex-direction: column;
        align-items: center;
    }

    #scud-block .btn_tasks {
        margin-top: 20px;
    }
}

@media (max-width: 785px) {
    #scud-block .tasks_up img {
        width: 95%;
    }

    #compar-block .swiper-arrows {
        padding-top: unset;
    }
    #scud-block .names_wrap {
        margin-left: auto;
        margin-right: auto;
    }
    #scud-block .title_abuze {
        font-size: 38px;
    }
}

@media (max-width: 360px) {
    #scud-block .name_title {
        font-size: 20px;
    }

    #scud-block .name_subtitle ul li {
        font-size: 14px;
        padding-right: 40px;
    }
}