:root{
    --seablue: #0C5678; 
    --black: #000000;
    --white: #FFFFFF;
}
*{
    padding: 0;
    margin: 0;
}
html{
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    line-height: 1.5;
}
h1{
    font-size: 2.1rem;
    line-height: 1.19;
    color: var(--white);
}
h2{
    font-size: 1.5rem;
    line-height: 1.66;
    color: var(--white);
    font-weight: 400;
}
h3{
    font-size: 1rem;
    line-height: 1.5;
}
.active{
    font-weight: bold;
}
.mainContainer{
    margin: 0 3.906%; /*75/1920*/
}
.slideLeft{
    margin-right: 7.3446327683616%;
}

.headerContainer{
    margin: 30px auto;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.headerContainer p{
    position: absolute;
    right: 0;
    bottom: 0;
    color: var(--seablue);
}
.headerContainer a{
    text-decoration: none;
    color: inherit;
}
.heroSection{
    margin-bottom: 90px;
}
.heroContainer{
    background: transparent linear-gradient(90deg, rgba(7,136,174,1) 21%, rgba(6,34,47,1) 100%);
    display: flex;
    justify-content: space-between ;
    align-items: center;
}
.heroContainer .titles{
    margin: 0 auto;  
}
.heroContainer .heroImage{
    max-width: 50%;
    margin: 70px 0;
    position: relative;
    right:  -7.9%;
}
.infoSection{
    margin: 90px auto 100px;
    width: 81.356%; /*(1128 + 192+120) /1920*/
}
.infoSection{
    display: flex;
    flex-wrap: wrap;
    column-gap: 8.33%;
    row-gap: 44px;
    justify-content: center;
    align-items: stretch;
}
.infoContainer{
    max-width: 17%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
    text-align: center;
    width: 100%;
    height: 100%;
}
.infoContainer .infoImg{
    margin: 0 auto;
    max-width: 57px;    
}
.infoContainer .infoContent{
    margin-top: 22px;
}
footer{
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 58px;
    font-size: 400;
    color: var(--white);
    background-color: var(--black);
}
img{
    display: block;
    max-width: 100%;
    height: auto;
}