
html {
    --standard-margin: 10px;
    --header-height: 50px;
    --standard-padding: 10px;
}

span.green {
    color: #32CD32;
}

div.section:nth-of-type(odd) {
    background-color: #333333;
}

div.section:nth-of-type(even) {
    background-color: #1E1E1E;
}

div.section:first-of-type {
    height: calc(100vh - var(--header-height) - var(--alert-height));
    background: linear-gradient(0deg, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0) 70.71%),
    linear-gradient(127deg, rgba(0, 255, 0, 0.8), rgba(0, 255, 0, 0) 70.71%),
    linear-gradient(336deg, rgba(0, 0, 255, 0.8), rgba(0, 0, 255, 0) 70.71%);
}

div.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 100vh;
    height: fit-content;
    overflow-y: clip;
    margin: 0;
    width: 100%;
}

div.section > * {
    max-width: 1140px;
}

div.section > div {
    display: flex;

    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0;

    width: 100%;
}

/* Desktop & Tablet Layout */
@media (min-width: 768px) {
    /* Adjusting Desktop Layout */
    div.section {
        padding: 15% 4.51%;
        margin: 0;
    }
}

/* Phone Layout */
@media (max-width: 767px) {
    /* Adjusting Mobile Layout */
    div.section {
        padding: 1% 5%;
        margin: 0;
    }
}

div.section > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc(var(--standard-margin) * 2);
}

div.quote {
    box-sizing: content-box;
    padding: 15px 20px;
    margin: 0;
    background-color: #333333;
    border-radius: 8px;
}

/* My Services */
div#services {
    display: flex;
    flex-direction: column;
    background-color: #333333;
    width: 100%;

    justify-content: center;
    align-items: center;

    gap: 1rem;

    padding-bottom: 3rem;
}

div#services > div.services-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    flex-wrap: wrap;

    height: fit-content;
}

div#services > * > .services-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 15px 20px;
    border-radius: 8px;
    background-color: #1E1E1E !important;

    height: 100%;
}

div#services > * > .services-block > img.services-icon {
    width: 50px;
    height: 50px;
}

div#services > * > .services-small {
    flex: 1 1 35%;
    min-width: 300px;
    height: auto;
}

div#services > * > .services-big {
    flex: 1 1 55%;
    min-width: 300px;
    height: auto;
}