header{
    background-color: #F4F8FB;
}

#page-top{
    width: 100%;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-top: 120px;
}
#page-top::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 41, 91, .75);
    display: block;
    position:absolute;
    top: 0;
    z-index: 0;
}

#page-top .inner{
    width: 100%;
    height: fit-content;
    min-height: 500px;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    position: relative;

}


#page-top h1{
    font-family: "Barlow", sans-serif;
    font-size: 60px;
    font-weight: 600;
    padding: 0 30px;
}

#page-top .qoute{
    font-size: 20px;
    max-width: 60ch;
    text-align: center;
}

section{
    padding: 30px 0;
}

section .inner{
    padding: 0 30px;
}

section.gray{
    background-color: rgb(209, 209, 209);
}

h2{
    color:var(--accent-color);
}

.top_content p{
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}

@media screen and (max-width: 870px) {
    #page-top h1{
        font-size: 46px;
    }
    #page-top .inner{
        padding: 0 30px;
    }
}

@media screen and (max-width: 640px) {
    #page-top{
        margin-top: 80px;
    }
}