

body {
    background:  #0C4E69;

    .navbar {
        align-self: self-end;
        margin-top: 2em;
        margin-right: 3em;
        background: #b9c4c8;
    }
}

.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3em;

    h1 {
        margin-top: 1em;
        font-size: 2em;
        color: #FFF;
    }

    .inner {
        max-width: 100vw;
        padding: 0 1em 0 1em;
        display: flex;
        justify-content: space-around;
        gap: 2em;

        .first-banner {
            background-image: url('imgs/section-service-first-banner-background.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .second-banner {
            background-image: url('imgs/section-service-second-banner-background.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .third-banner {
            background-image: url('imgs/section-service-third-banner-background.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .fourth-banner {
            background-image: url('imgs/section-service-fourth-banner-background.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        ul {
            color: #FFF;
            display: flex;
            flex-direction: column;
            padding-left: 0.5em;
            border: 1px solid #FFF;
            border-radius: 1em;
            gap: 3em;
            height: 666px;

            li {
                padding: 1em 0 0 1em;
                color: #FFF;
                max-width: 32ch;
            }

        }

        .banner {
            max-width: 42ch;
            border-radius: 1em;
            margin-bottom: 4em;
            
        }
    }
}


@media (width <= 1200px) {
    .inner {
        flex-direction: column;
    }
}