/* -- General -- */

.maincontent {
    display: block !important;
    border: none;
}

.h2-heading {
    font-weight: 600;
    color: #181818;
    margin: 20px 0;
    text-align: inherit;
    font-size: 2.2rem;
}
.h2-sup {
    display: block;
    line-height: 1.15em;
    font-size: .6em;
    font-style: italic;
    margin-bottom: 10px;
    font-weight: 400;
    color: #888;
}
.h3-heading {
    font-size: 1.15rem;
    margin: 20px auto 15px;
    font-weight: 500;
}
.highlight {
    font-weight: 700;
}
.underline {
    border-top: 2px solid #fe0100;
    margin: 20px auto;
    width: 150px;
}

.content-wrapper,
.content-wrapper-md,
.content-wrapper-sm,
.content-wrapper-x-sm {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.content-wrapper {
    max-width: 1550px;
}
.content-wrapper-md {
    max-width: 1400px;
}
.content-wrapper-sm {
    max-width: 1250px;
}
.content-wrapper-x-sm {
    max-width: 950px;
}

.g_space-around,
.g_space-around-sm {
    position: relative;
    z-index: 0;
}
.g_space-around {
    padding: 80px 5%;
}
.g_space-around-sm {
    padding: 60px 5%;
}
.g_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.g_wrapper-align-top {
    align-items: flex-start;
}
.g_wrapper-reverse {
    flex-direction: row-reverse;
}
.g_col-sm {
    width: 45%;
    padding: 20px 25px;
}
.g_col-lg {
    width: 55%;
    padding: 20px 25px;
}
.g_img-wrapper {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
}
.g_img-wrapper img {
    width: 100%;
    height: auto;
    background-color: #eee;
}
.g_text-center {
    text-align: center;
}



/* -- Services -- */

.gutter-svc-nav-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 80px auto 40px;
    padding: 0;
    list-style: none;
    overflow: hidden;
    border-bottom: 2px solid #888;
}
.gutter-svc-nav-disabled::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    cursor: pointer;
}
.gutter-svc-nav-item {
    width: 25%;
    z-index: 0;
}
.gutter-svc-nav-button {
    position: relative;
    width: 100%;
    background-color: transparent;
    border: none;
    text-align: center;
    padding: 15px 10px;
    font-size: .85rem;
    font-weight: 700;
    color: #181818;
    text-transform: uppercase;
    transition: color .2s, background-color .2s;
}
.gutter-svc-nav-button:hover {
    background-color: #f0f0f0;
    color: #181818;
}
.gutter-svc-nav-button-active {
    background-color: #282828;
    color: #fff;
}

.gutter-svc-wrapper {
    transition: all .3s;
}
.gutter-svc-wrapper-fade-out {
    opacity: 0;
    transform: translateX(-30px);
}
.gutter-svc-content {
    display: none;
    text-align: left;
}
.gutter-svc-content-visible {
    display: flex;
}

.gutter-svc-content h3 {
    font-size: 1.33rem;
    font-weight: 700;
}



/* -- Gutter Styles -- */

#gs_section {
    background-color: #f0f0f0;
}
.gs-list {
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto 20px;
    padding: 0;
    list-style: none;
    gap: 2%;
}
.gs-item {
    width: 32%;
    margin-block: 20px;
    box-shadow: 0 4px 12px rgba(5, 5, 5, .2);
    padding: 40px 30px;
    background-color: #fff;
    text-align: left;
}
.gs-img {
    display: block;
    max-width: 215px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
}
.gs-features-list {
    margin: 30px auto 0;
    padding: 0;
    list-style: none;
}
.gs-features-item {
    margin-bottom: 15px;
}
.gs-item p {
    font-size: .9rem;
}



/* -- Colors -- */

.colors-list {
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto 20px;
    padding: 0;
    list-style: none;
    gap: 1%;
}
.colors-item {
    width: calc((100% - 5%) / 6);
    margin-block: 20px;
    text-align: left;
}
.colors-preview {
    display: block;
    margin: 0 auto 5px;
    height: 100px;
}
.colors-item p {
    font-size: .9rem;
    font-weight: 500;
    margin-right: 15px;
}



/* -- Responsiveness -- */

@media (max-width: 1200px) {
    .gs-item {
        width: 49%;
    }

    .colors-item {
        width: calc((100% - 4%) / 5);
    }
}

@media (max-width: 981px) {
    .g_wrapper {
        max-width: 750px;
        width: 100%;
        margin-inline: auto;
    }
    .g_col-sm,
    .g_col-lg {
        width: 100%;
        padding: 0;
    }
    .g_img-wrapper {
        margin-bottom: 30px;
    }

    .colors-item {
        width: calc((100% - 3%) / 4);
    }
}

@media (max-width: 750px) {
    .h2-heading {
        font-size: 2rem;
    }

    .gutter-svc-nav-item {
        width: 50%;
    }

    .gs-item {
        width: 100%;
    }

    .colors-item {
        width: calc((100% - 2%) / 3);
    }
}

@media (max-width: 600px) {
    .colors-item {
        width: calc((100% - 1%) / 2);
    }
}

@media (max-width: 480px) {
    .h2-heading {
        font-size: 1.8rem;
    }

    .g_space-around,
    .g_space-around-sm {
        padding-inline: 20px;
    }
    .g_text-center {
        text-align: left;
    }
    .g_text-center .underline {
        margin-left: 0;
    }

    .gutter-svc-nav-item {
        width: 100%;
    }
}