.top_banner {
    background-color: #262e39;
    overflow: hidden;
    min-height: calc(100vh - 200px);
    height: auto;
}

.top_banner__wrapper {
    padding: 100px 0;
}

.top_banner__wrapper > div {
    width: 48%;
}

.top_banner__title h1 {
    color: #fff;
    font-family: 'Raleway';
    font-weight: 900;
    font-size: 4vw;
    line-height: 120%;
    margin-bottom: 0;
    margin-top: 0;
}

.top_banner__image img {
    width: 100%;
    height: auto;
}

.top_banner__tags {
    margin-top: 50px;
}

.top_banner__tags_item {
    margin-right: 10px;
    margin-bottom: 10px;
}

.top_banner__tags_item a {
    font-size: .9375vw;
    line-height: 1.40625vw;
    font-weight: 400;
    padding: .625vw 1.458333333333333vw;
    color: silver;
    display: block;
    width: max-content;
    background: 0 0;
    z-index: 1;
    position: relative;
    border-radius: 1.5625vw;
    border: 1px solid #fe6604;
}

.top_banner__tags_item a:hover {
    background-color: #fe6604;
    color: #fff;
}

@-moz-keyframes bounce {
    0% {
        bottom:20px
    }
    50% {
        bottom:10px
    }
    100% {
        bottom:20px
    }
}

@-webkit-keyframes bounce {
    0% {
        bottom:20px
    }
    50% {
        bottom:10px
    }
    100% {
        bottom:20px
    }
}

@-o-keyframes bounce {
    0% {
        bottom:20px
    }
    50% {
        bottom:10px
    }
    100% {
        bottom:20px
    }
}

@keyframes bounce {
    0% {
        bottom:20px
    }
    50% {
        bottom:10px
    }
    100% {
        bottom:20px
    }
}

.top_banner__arrow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    animation: bounce 2s infinite;
    position: relative;
    bottom: 20px;
}