body>header{
    display: none;
}
.header_container{
    width: 100%;
    height: 675px;
    position: relative;
    overflow: hidden;
}
.header_container>img{
    height: 675px;
}
.header{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.bg-grey{
    position: relative;
}
.bg-grey:before {
    content: '';
    background: rgba(130, 130, 130, .5);
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.header_body{
    width: 100%;
}
.header_body_block{
    width: 1170px;
    margin: 0 auto;
}
.body_headline{
    font-family: Montserrat;
    font-weight: bold;
    font-size: 40px;
    text-transform: uppercase;
    color: #F2F2F2;
    text-align: center;
    line-height: 40px;
}
.body_desc{
    font-family: Montserrat;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #F2F2F2;
    margin-top: 30px;
    line-height: 30px;
}
.body_button{
    font-family: Montserrat;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    color: #F2F2F2;
    margin: 120px auto 0 auto;
    width: max-content;
    background: #27AE60;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    padding: 18px 62px;
    cursor: pointer;
}
.body_shortDesc{
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    color: #F2F2F2;
    margin: 70px 15px 20px 15px;
}

.marquee {
    position: relative;
    overflow: hidden;
    --offset: -55vw;
    --move-initial: calc(0 + var(--offset));
    --move-final: calc(-5% + var(--offset));
}

.marquee__inner{
    width: fit-content;
    display: flex;
    position: relative;
    transform: translate3d(var(--move-initial), 0, 0);
    animation: marquee 15s linear infinite;
    animation-delay: 2s;
    white-space: nowrap;
    /*animation-play-state: paused;*/
}
.marquee span {
    font-size: 10vw;
    padding: 0 2vw;
}

/*.marquee:hover .marquee__inner {*/
/*    animation-play-state: running;*/
/*}*/

@keyframes marquee {
    0% {
        transform: translate3d(var(--move-initial), 0, 0);
    }

    100% {
        transform: translate3d(var(--move-final), 0, 0);
    }
}
@keyframes marquee2 {
    0% {
        transform: translate3d(var(--move-initial), 0, 0);
        color: transparent;
        text-shadow: 0 0 5px #fff;
    }

    100% {
        transform: translate3d(var(--move-final), 0, 0);
        color: transparent;
        text-shadow: 0 0 5px #fff;
    }
}



@media (max-width: 1200px) {
    .header_body_block{
        width: calc(100% - 30px);
    }
    .body_headline{
        font-size: 35px;
    }
    .body_shortDesc {
        font-size: 16px;
    }
}
@media (max-width: 1090px) {
    .logo {
        font-size: 10px;
    }
    .body_headline{
        font-size: 30px;
    }
    .body_desc {
        font-size: 18px;
        margin-top: 60px;
    }
}
@media (max-width: 880px) {
    .body_button {
        margin: 60px auto 0 auto;
        font-size: 18px;
        padding: 14px 52px;
    }
    .body_shortDesc {
        font-size: 14px;
    }
    .header_container > img,.header_container {
        height: 600px;
    }
}
@media (max-width: 750px) {
    .body_headline {
        font-size: 25px;
    }
    .body_desc {
        font-size: 16px;
    }
    .body_shortDesc {
        font-size: 12px;
        margin-bottom: 10px;
    }
}
@media (max-width: 500px) {
    .header_container > img,.header_container {
        height: 480px;
    }
    .body_shortDesc{
        font-size: 12px;
        margin: 40px 15px 5px 15px;
    }
    .body_button {
        margin-top: 40px;
        font-size: 16px;
        padding: 15px 40px;
    }
    .body_desc {
        margin-top: 40px;
        font-size: 14px;
        line-height: 20px;
    }
    .body_headline {
        font-size: 20px;
        line-height: 30px;
    }
}
@media (max-width: 380px) {
    .body_headline {
        font-size: 18px;
    }
    .body_desc {
        font-size: 14px;
    }

}



