#about{
    /* background-color: #33706a; */
    background-color: #21b2a6;
    color: #fff;
}
.custom-shape-divider-bottom-1698765849 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1698765849 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 53px;
}

.custom-shape-divider-bottom-1698765849 .shape-fill {
    fill: #21B2A6;
    position: relative;
    bottom: 0;
}

#about h2{
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 24px;
}
#about p{
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-size: 18px;
    color: #c8ece9;
    line-height: 1.5rem;
} 

.container h2{
    border-bottom: solid 3px rgba(128, 128, 128, 0.356);
    padding-bottom: 1rem;
}

.container__icons{
    display: flex;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.container__icons span{
    padding: 1rem;
    font-size: 64px;
    text-align: center;
    margin-right: 3rem;
}

.diamond{
    color: #00ffcc;
}

.partner_exchange{
    color: #00f0ff;
}

.build_circle{
    color: #76ddff;
}


.about-2-img-1{
    width: 100%;
    height: 100%;
    background-color: #29313a;
    background-image: url('../imgs/yello\ truck\ welded.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;    
}
.about-2-img-2{
    width: 100%;
    height: 100%;
    background-image: url('../imgs/custom\ welding\ solution.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.about-2-img-3{
    width: 100%;
    height: 100%;
    background-image: url('../imgs/on\ demand\ service.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about-2 {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: 
    'exp-img exp exp'
    'custom custom custom-img'
    'conv-img conv conv';
}

.about-2-item-1 {
    grid-area: exp-img;
    min-height: 40vh;
}
.about-2-item-2 {
    grid-area: exp;
    background-color: #2e3842;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}
.about-2-item-3 {
    grid-area: custom;
    background-color: #29313a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}
.about-2-item-4 {
    grid-area: custom-img;
    min-height: 40vh;
}
.about-2-item-5 {
    grid-area: conv-img;
    min-height: 40vh;
}
.about-2-item-6 {
    grid-area: conv;
    background-color: #2e3842;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.make__span__italic__color{
    font-style: italic;
    color: #00ffcc;
}

@media screen and (max-width: 987px) {

    .container__icons{
        display: flex;
        justify-content: center;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .container__icons span{
        padding: 1rem;
        font-size: 44px;
        text-align: center;
        margin-right: 1rem;
    }

    .about-2 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: 
        'exp-img exp'
        'custom custom-img'
        'conv-img conv';
    }

}

@media (width < 765px) {
    .about-2 {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: 
        'exp-img'
        'exp'
        'custom-img'
        'custom'
        'conv-img'
        'conv';
    }
}


