:root {
    --white-color: #FFFFFF;
    --dark-grey-color: #141C1A;
}
.banner-container {
    position: relative;
    color: var(--white-color);
    margin-bottom: 30px;
}
.inside-container {
    position: absolute;
    padding: 30px;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.banner-title {
    color: var(--white-color);
    font-size: 24px;
    line-height: 29px;
    font-weight: bold;
}
.banner-desc {
    margin-top: 11px;
    color: var(--dark-grey-color);
    font-size: 13px;
    line-height: 16px;
    font-weight: bold;
}
.button-block {
    margin-top: 18px;
    display: flex;
}
.button-block a {
    color: var(--white-color);
    font-size: 12px;
    line-height: 15px;
    display: block;
    padding: 12px 24px;
    background-color: var(--dark-grey-color);
    transform: scale(1);
    transition: 0.15s all ease;
}
.button-block a:hover {
    transform: scale(1.1);
}
.button-block a svg {
    margin-left: 8px;
}
