


body {
    display: flex;
    justify-content: center;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 16px;
    margin: 0;
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

header {
    position: relative;
    height: 81px;
    z-index: 20;
    margin-bottom: 10px;
    margin-top: 20px;
}

section {
    width: 100%;
}

.container {
    max-width: 1200px;
}

#topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.background-wrapper {
    display: flex;
    width: 100%;
    justify-content: right;
    background-color: #87898c;
    padding: 15px 30px 15px 10px;
    border-top-right-radius: 35px;
    
}

#start-wrapper {
    height: auto;  
}

#start-img {
    width: 100%;
    height: 400px;
    object-fit: cover; 
}

#content-container {
}

.main-heading-wrapper {
    display: flex;
    justify-content: center;
}

.main-heading {
    color: #87898c;
    font-size: 30px;
}

.list-heading {
    font-size: 20px;
    color: #005971;
}

.list-wrapper ol > li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.list-wrapper {
    margin-bottom: 50px ;
    width: 100%;
}

#footer {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    padding-bottom: 15px;
}

.footer-wrapper {
    display: flex;
}

.footer-link {
    color: #005971;
    padding: 10px;
    transition: 300ms ease;
}

.footer-link:hover {
    color: #4f8d9e;
}


/*MEDIA QUERIES*/

@media (max-width: 920px) {
    .container {
        width: 650px;
    }
    #header-logo {
        width: 450px;
    }
}

@media (max-width: 680px) {
    .container {
        width: 480px;
    }
    #header-logo {
        width: 350px;
    }
}

@media (max-width: 510px) {
    .container {
        width: 320px;
    }
    #header-logo {
        width: 200px;
    }
}

@media (max-width: 350px) {
    .container {
        width: 250px;
    }
    #header-logo {
        width: 200px;
    }
}

