/* About Section */
.about-section{
    padding: 2rem 0;
}
.about-section h2{
    text-align: center;
    margin-bottom: 1rem;
}
.sweater-section
{
    padding: 2rem 0;
}
.sweater-section h2{
    text-align: center;
}
.sweater-section .row img{
    width: 100%;
    height: fit-content;
}
.sweater-section .images{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: hidden;
    margin-top: 2rem;
}
.sweater-section .images img{
    width: fit-content;
    height: 180px;
    margin: .5rem;
}
.capacity-section{
    padding: 2rem 0;
}
.capacity-section h2,
.capacity-section h5{
    text-align: center;
}
/* Road Map Section */
.roadmap-section{
    padding: 2rem 0;
}
.roadmap-section h2{
    text-align: center;
    margin-bottom: 1rem;
}
.roadmap-section ol{
    list-style: lower-alpha;
}
.roadmap-section .roadmap-card{
    background-color: transparent;
    box-shadow: 5px 5px 15px #555;
    padding: 10px;
    height: 500px;
    margin: 1rem .2rem;
}
.roadmap-section .roadmap-card h5{
    text-align: center;
    margin-bottom: 1rem;
}

/* Partner */
.partner-section,
.sustain-section{
    padding: 2rem 0;
}
.partner-section h2,
.sustain-section h2{
    text-align: center;
    margin-bottom: 1rem;
}
.partner-section .images,
.sustain-section .images{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: hidden;
    margin-top: 2rem;
}
.partner-section .images img,
.sustain-section .images img{
    width: fit-content;
    height: 150px;
    margin: .5rem;
}

/* Design */
.design-section{
    padding: 2rem 0;
}
.design-section h2{
    text-align: center;
}
.design-section img{
    width: 100%;
    height: fit-content;
}

@media only screen and (max-width: 767px) {
    .roadmap-section .roadmap-card{
        height: fit-content;
        margin: 1rem auto;
    }
    .partner-section .images,
    .sustain-section .images{
        display: block;
    }
    .partner-section .images img,
    .sustain-section .images img{
        width: 100%;
        height: fit-content;
        margin: .7rem 0;
    }
}