#hero{
    padding: 100px 0 70px;
    background: #04143B;
}

#hero h1{
    color: #fff;
    text-align: center;
    font-size: 40px;
	line-height: 50px;
    font-weight: 700;
    margin-bottom: 25px;
}

#hero p{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    margin: 0;
    font-family: 'Oswald';
}

#hero .click{
    display: flex;
    justify-content: center;
    margin-top: 50px
}

#hero .btn-h-orange{
    color: #fff;
    margin-left: 20px;
}

#hero .btn-h-orange:hover{
    color: #000;
}

@media(max-width:576px){
    #hero .click{
        flex-direction: column;
    }
    #hero .btn-h-orange{
        margin: 20px 0 0 0;
    }
}

#block{
    padding: 50px 0;
}

#block:nth-of-type(odd){
    background: #F8F8F8;
}

#block img{
    width: 100%;
    max-width: 674px;
    max-height: 441px;
    height: auto;
    aspect-ratio: 674/441;
}

#block .row{
    align-items: center;
}

#block:nth-of-type(odd) .content{
    padding: 0 0 0px 50px;
}

#block .content{
    padding-right: 50px;
}

#block h2{
    color: #0E192E;
}

#block p:first-of-type{
    color: #0E192E;
    font-family: 'Oswald';
    font-size: 20px;
    font-weight: 700;
}

#block p{
    color: #0E192E
}

#block .click{
    margin-top: 40px;
}

#block .btn-orange{
    margin-right: 7px;
}

#block .btn-orange:hover{
    color: #0E192E;
}

@media(max-width:1200px){
    #block .content{
        padding: 0!important;
    }
    
    #block img{
        margin: 0 auto;
        display: block;
    }
}

@media(max-width:576px){
    #block .btn-orange{
        margin-bottom: 20px;
    }
}