.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 > iframe {
    width: 100%;
    height: 100%;

    border: none;
}

.section:not(#fold) {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.about-us-paragraph {
    margin: 0;
}

@media only screen and (max-width: 900px) {
    .main {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 700px) {
    .section:not(#fold) {
        align-items: center;
    }

    .section:not(#fold) > h2 {
        text-align: center;
    }
}