.hero.hero--dynamic .actions{
    justify-content: flex-start;
}

.display .twoColumnsBlock{
    padding: 40px 0;
    box-sizing: border-box;
    min-height: 600px;
}

.money{
    background-image: url("../../../images/landing/dynamic-display/money/bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 112px 0;
}

.money-content{
    padding: 180px 40px;
    text-align: center;
    border-radius: 40px;
    backdrop-filter: blur(25px);
    background: radial-gradient(100% 100% at 0% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

.money-heading{
    margin-bottom: 56px;
}

.money-coins{
    position: absolute;
}

.money-coins.money-coins--left{
    top: 90px;
    left: 54px;
}

.money-coins.money-coins--right{
    top: 68px;
    right: 86px;
}

.money-coins.money-coins--bottom{
    bottom: 70px;
    left: 55%;
}

.media{
    padding: 108px 0 168px;
}

.media-heading{
    max-width: 672px;
    margin-bottom: 48px;
}

.media-heading span{
    color: var(--primary-accent-color);
}

.media-cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 124px 32px;
}

.media-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s ease-in-out;
}
.media-card:hover{
    transform: scale(1.1);
}

.media-card-overline{
    margin-bottom: 8px;
}

.media-card-title{
    margin-bottom: 8px;
}

.media-card-description{
    margin-bottom: 32px;
}

@media only screen and (max-width: 1199px){
    .hero.hero--dynamic .actions{
        justify-content: center;
    }
    .hero.hero--dynamic .hero-img{
        margin: 0 auto;
    }
    .display .twoColumnsBlock, .display .twoColumnsBlock.twoColumnsBlock--reversed{
        flex-direction: column;
    }
    .display .twoColumnsBlock-imgWrapper{
        margin-bottom: 0;
        margin-top: 56px;
    }
}

@media only screen and (max-width: 991px){
    .media{
        padding: 48px 0 72px;
    }
    .media-cards{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px;
    }
    .money-coins.money-coins--left {
        top: -160px;
        left: -24px;
        width: 200px;
    }
    .money-coins.money-coins--bottom {
        bottom: -20px;
        left: 25%;
        width: 150px;
    }
    .money-coins.money-coins--right {
        top: -12px;
        right: -34px;
        width: 110px;
    }
}

@media only screen and (max-width: 767px){
    .money{
        padding: 90px 0 100px;
    }
    .money-heading{
        margin-bottom: 32px;
    }
    .money-content{
        padding: 68px 16px 72px;
    }
}

@media only screen and (max-width: 575px){
    .media-cards{
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
}

