.first-screen {
    margin-top: 40px;
}
.first-screen .bg-image {
    background-color: transparent;
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 40px;
}
@media all and (max-width: 575px) {
    .first-screen .bg-image {
        background: none !important;
    }
}
@media all and (max-width: 991px) {
    .first-screen .bg-image {
        padding-bottom: 30px;
    }
}

.hero-mob-images {
    border-radius: 24px;
}

.first-screen-title__highlighted {
    color: var(--Green);
}

.first-screen-title {
    margin: 65px 0 40px 0;
}

.first-screen__video-screens {
    margin-top: 60px;
    gap: 32px;
}
.first-screen__video-screens * {
    transition: all 0.2s ease;
}
@media all and (max-width: 767px) {
    .first-screen__video-screens {
        margin-top: 40px;
    }
}

.video-screen {
    padding: 16px;
    border-radius: 24px;
    background-color: rgba(245, 245, 245, 0.80);
}

.video-screen__img {
    border-radius: 16px;
    width: 100%;
    max-width: 194px;
    max-height: 155px;
}
@media all and (max-width: 991px) {
    .first-screen__video-screens {
        gap: 22px;
    }
    .video-screen {
        padding: 14px;
        border-radius: 20px;
    }
    .video-screen__img {
        border-radius: 10px;
        max-width: 144px;
    }
}

.play-video-icon {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.20) url(../../images/play-icon.svg) no-repeat center;
    backdrop-filter: blur(2px);
}

.video-screen:hover .video-screen__img {
    filter: grayscale(70%) brightness(1.1);
}
.video-screen:hover .play-video-icon {
    width: 50px;
    height: 50px;
}

/*.challenge-slider__item {
    padding: 0 13px;
}*/

.challenge-card {
    position: relative;
    background: #2A2A2A;
    /*min-height: 373px;*/
    /*width: 373px;*/
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    /*padding: 24px;*/
    text-decoration: none;
    overflow: hidden;
}
@media all and (max-width: 679px){
    .challenge-card {
        max-width: 310px;
    }
}

.challenge-card__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    padding: 24px;
}

.challenge-card__img {
    /*position: absolute;*/
    /*top: 0;*/
    height: auto;
    /*left: 0;*/
    /*width: 100%;*/
    /*z-index: 1;*/
}

.complete-chip {
    display: none;
}

.challenge-card.completed:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.80);
    border-radius: 24px;
    z-index: 3;
}

.challenge-card.completed .complete-chip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    z-index: 3;
}

.challenge-card__label {
    top: 24px;
}

.challenge-card__title {
    color: var(--White);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    width: 40%;
}

.subscription .card {
    height: 236px;
}

.instagram-slider img {
    max-width: 272px;
    border-radius: 24px;
}

.copyright {
    color: var(--Black);
    font-size: 12px;
    font-weight: 400;
    opacity: 60%;
}

.instagram-slider__item {
    /*padding: 0 13px;*/
}

@media screen and (max-width: 767px) {
    .first-screen-title {
        margin: 40px auto 25px;
    }

    .footer-menu li {
        width: calc(50% - 10px);
    }

    /*.challenge-card {
        width: 310px;
        height: 310px;
    }*/
}

@media screen and (max-width: 576px) {
    .first-screen {
        padding-top: 0;
    }
}

@media screen and (max-width: 375px) {
    .first-screen__choose-btn {
        align-self: baseline !important;
    }
}

@media screen and (max-width: 350px) {
    .challenge-card {
        width: 280px;
        height: 280px;
    }
}

@media screen and (min-width: 1200px) {
    .subscription div.main-card {
        max-width: 25%;
    }
}

@media screen and (min-width: 768px) {
    .subscription div.main-card {
        max-width: calc(50% - 32px);
    }
}