.container {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.main {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;

    padding: 0 60px;
}

.section {
    width: 100%;
}

#fold {
    width: 100%;
    height: 400px;

    border-radius: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    overflow: hidden;
}

#fold > h1 {
    color: #ffffff;

    font-weight: bold;

    position: absolute;

    margin: 20px;

    text-align: center;
    text-transform: uppercase;

    z-index: 1;
}

#fold > img {
    width: 100%;
    height: 100%;

    filter: brightness(60%);

    object-fit: cover;
}

.section:not(#fold, #store) {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

#featured > div {
    width: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.featured-service {
    width: calc(25% - 15px);

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.featured-service-icon {
    border-radius: 5px;

    background: #f2f3f7;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 10px;
}

.about-us-paragraph {
    margin: 0;
}

#gallery > div {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-image {
    width: calc(25% - 15px);
    
    border-radius: 5px;
    
    display: flex;
    
    overflow: hidden;
}

.gallery-image > img {
    width: 100%;
    height: calc(((100vw - 120px) / 4) - 15px);

    object-fit: cover;
}

#store {
    width: 100%;

    border-radius: 5px;

    background: #1c242d;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    
    padding: 20px;
}

#store > span {
    color: #f2f3f7;

    font-size: 14px;

    text-transform: uppercase;
}

#store > h2 {
    color: #f2f3f7;

    text-align: center;
    text-transform: uppercase;
}

#store > a {
    border: none;
    border-radius: 5px;

    color: #1c242d;
    background: #f2f3f7;

    font-size: 16px;

    padding: 10px;
}

@media only screen and (max-width: 900px) {
    .main {
        padding: 0 20px;
    }
    
    .featured-service {
        width: calc(50% - 20px);
        
        flex-direction: column;
        align-items: center;
    }
    
    .featured-service > span {
        text-align: center;
    }

    .gallery-image {
        width: calc(50% - 10px);
    }

    .gallery-image > img {
        height: calc(((100vw - 40px) / 2) - 10px);
    }
}

@media only screen and (max-width: 700px) {
    #fold > h1 {
        font-size: 24px;
    }

    .section:not(#fold, #store) {
        align-items: center;
    }

    .section:not(#fold) > h2 {
        text-align: center;
    }
}