#hero{
    height: 100vh;
    background-size: cover;
    position: relative;
    z-index: 0;
    margin-top: -84px
}

#hero::before{
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.45)
}

#hero h1{
    text-align: center;
    font: normal normal bold 61px/68px futura-pt;
    color: var(--white);
    background: var(--blue);
    width: fit-content;
    padding: 20px 35px;
    margin: 0 auto 5px;;
}

#hero h2{
    text-align: center;
    font: normal normal bold 61px/71px futura-pt;
    color: var(--white);
    background: var(--darkBlue);
        width: fit-content;
    padding: 20px 35px;
    margin: 0 auto 30px;;
}

#hero p{
    text-align: center;
    color: var(--white);
    font: normal normal normal 19px/28px futura-pt;
    width: 600px;
    margin: 0 auto;
}

#hero .content{
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    position: absolute;
}

@media(max-width:1670px){
    #hero h1{
        width: 833px;
    }
    #hero h2{
        width: 788px;
    }
}

@media(max-width:991px){
    #hero h1{
        font: normal normal bold 45px/55px futura-pt;
        width: 650px;
    }
    #hero h2{
        font: normal normal bold 45px/55px futura-pt;
        width: fit-content
    }
}

@media(max-width:767px){
    #hero h1{
        font: normal normal bold 45px/55px futura-pt;
        width: 100%;
    }
    #hero h2{
        font: normal normal bold 45px/55px futura-pt;
        width: 100%;
    }
    #hero .content{
        width: 100%;
        padding: 0 15px;
    }
    #hero p{
        width: fit-content;
    }   
}

@media(max-width:576px){
    #hero h1{
        font: normal normal bold 35px/45px futura-pt;
        width: 100%;
    }
    #hero h2{
        font: normal normal bold 35px/45px futura-pt;
        width: 100%;
    }
}

#traditional{
    background-size: cover;
    padding: 50px 0;
}

#traditional .inner{
    background: var(--orange);
    padding: 30px;;
}

#traditional h2{
    color: #001A2E;
    font: normal normal bold 41px/42px futura-pt
}

#traditional p{
    color: var(--black);
    font: normal normal normal 18px/26px futura-pt
}

#traditional .click{
    margin-top: 50px;
}

#blocks{
    padding: 10px 100px;
    position: relative;
}

#blocks .bg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#blocks .inner{
    height: 520px;
    background-size: cover;
    display: flex;
    align-items: end
}

#blocks .wrap{
    text-align: center;
    padding: 25px;
}

#blocks .wrap p{
    margin: 0;
    min-height: 96px
}

#blocks .block:nth-of-type(odd) .wrap{
    background: rgba(0, 57, 100, 0.79);
    color: var(--white);
}

#blocks .block:nth-of-type(odd) .wrap h3{
    color: var(--white);
}

#blocks .block:nth-of-type(even) .wrap{
    background: rgb(250,161,59, 0.9);
    color: #001A2E
}

#blocks .block:nth-of-type(even) .wrap h3{
    color: #001A2E;
}

@media(max-width:1600px){
    #blocks .wrap p{
        margin: 0;
        min-height: 120px
    }
    #blocks{
        padding: 10px 50px;
    }
}

@media(max-width:1470px){
    #blocks .wrap h3{
        min-height: 64px;
    }
}

@media(max-width:1200px){
    #blocks .wrap h3{
        min-height: 0;
    }#blocks .wrap p{
        margin: 0;
        min-height: 0
    }
}

@media(max-width:767px){
    #blocks{
        padding: 10px 15px;
    }
}

#news{
    position: relative;
    z-index: 1;
    padding: 50px 0;
    background: var(--darkBlue)
}

#news .bg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

#news h2{
    color: var(--white);
    font: normal normal bold 41px/42px Futura-PT;
    text-align: center;
    margin-bottom: 50px;
}

#news .image img{
    width: 190px;
    height: 190px;
    object-fit: cover;
}

#news .inner{
    display: flex;
    align-items: center;
}

#news .right{
    margin-left: 20px;
}

#news a{
    text-decoration: none;
}

#news .date{
    margin-bottom: 10px;
    color: var(--orange);
    font: normal normal bold 19px/30px Futura-PT;
}

#news p{
    font: normal normal normal 17px/27px Futura-PT;
    margin: 0;
    color: var(--white);
}

#news h3{
    color: var(--white);
    font: normal normal bold 27px/32px Futura-PT;
}

@media(max-width:576px){
    #news .inner{
        flex-direction: column;
    }
    #news .right{
        margin-left: 0px;
        margin-top: 20px
    }
}

#blocks .block:nth-of-type(odd) .wrap .btn{
    background: var(--orange);
    width: 270px;
    text-transform: uppercase;
    font: normal normal bold 16px/28px futura-pt;
    border: 1px solid var(--orange);
    color: var(--black);
}

#blocks .block:nth-of-type(odd) .wrap .btn:hover{
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--white);
}