.actions-banner {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    height: 500px;
    margin-top: 40px;
    background-color: #0c0c0c;
}

.actions-banner__img img {
    object-fit: cover;
    object-position: right bottom;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.actions-banner__info {
    padding: 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 870px;
    height: 100%;
}

.actions-banner__text {
    margin-top: auto;
    color: var(--White, #FFF);
    font-family: Gilroy;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 133.333%;
    letter-spacing: 1px;
}

.actions-banner__title {
    color: var(--White, #FFF);
    font-family: 'Grandis Extended';
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 1px;
}

.actions-banner__title span {
    color: var(--Blue, #026EF9);
}


.actions__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 45px;
}

.actions__item {
    width: 25%;
    padding: 15px;
}

.actions-item__subtitle {
    color: var(--Blue, #026EF9);
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
    margin-bottom: 12px;
}

.actions-item__inner {
    padding: 15px;
    transition: box-shadow .3s;
    border-radius: 10px;
    height: 100%;
    background: var(--White, #FFF);
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 30px 0px rgba(178, 178, 178, 0.30);
}



.actions-item__img {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 28px;
    height: 315px;
    border-radius: 4px;
    overflow: hidden;
}


.actions-item__title {
    color: var(--Black, #232323);
    font-family: Gilroy;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 1px;
    margin-bottom: 12px;
        transition: color .3s;
}



.actions-item__text {
    color: rgba(33, 33, 33, 0.80);
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    margin-bottom: 28px;
        transition: color .3s;
}

.actions-item__btn {
    color: var(--White, #FFF);
    text-align: center;
    padding: 8px;
    background-color: #026EF9;
    font-family: Gilroy;
    font-size: 18px;
    font-style: normal;
    border-radius: 8px;
    font-weight: 500;
    line-height: 28px; /* 155.556% */
    margin-top: auto;
    width: 238px;
    transition: background-color .3s;
}

.countdown-acd__outer {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 24px;
}
.actions__item:hover .actions-item__inner {
    box-shadow: 0px 0px 30px 0px rgba(25, 123, 178, 0.30);
}

.actions__item:hover .actions-item__title,
.actions__item:hover .actions-item__text
{
    color: var(--Blue, #026EF9);
}
.actions__item:hover .actions-item__btn{
    background-color: #0B51AA;
}

@media (max-width: 1680px) {
    .actions__wrap {
        margin-top: 40px;
    }

    .actions-item__title {
        font-size: 22px
    }

    .actions-item__img {
        margin-bottom: 16px;
    }

    .actions-banner__info {
        max-width: 450px
    }

    .actions-banner__title {
        font-size: 32px;
        line-height: 32px;
    }

    .actions-banner__text {
        font-size: 22px;
    }
}


@media (max-width: 1440px) {
    .actions__item {
        width: 33.33%;
    }

    .actions-banner {
        height: 400px;
    }

    .actions-banner__text {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .actions-banner__info {
        max-width: 380px;
    }

    .actions-banner__title {
        font-size: 26px;
        line-height: 29px;
    }

    .actions-banner__text {
        font-size: 18px;
    }
}

@media (max-width: 1023px) {
    .actions__item {
        width: 50%;
    }

    .actions-banner__img {
        position: relative;
        height: 260px;
        overflow: hidden;
        width: 100%;
    }

    .actions-banner {
        height: auto;
    }

    .actions-banner__img img {
        width: auto;
        left: auto;
        right: 0;
    }

    .actions-banner__info {
        max-width: 600px;
        padding: 65px 30px;
    }

    .actions-banner__title {
        margin-bottom: 10px;
    }

    .actions-banner__text {
        font-size: 16px;
    }

    .actions-item__title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .actions-item__title {
        font-size: 18px;
    }

    .actions__item {
        width: 100%;
    }

    .actions-item__text {
        font-size: 15px;
    }

    .actions__wrap {
        margin-top: 15px;
    }


    .actions-banner__info {
        padding: 30px 15px 30px 15px;
    }
}