/* .third-section{
    height: 100vh;
} */

.third-section-content > div{
    padding: 5rem 0;
}

.third-section-content > div > h3{
    color: #6d6d6d;
    font-size: 18px;
    word-spacing: 2px;
    line-height: 32px;
    font-weight: 200 !important;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

.third-section-content > div > h1{
    font-size: 40px;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    margin-bottom: 4rem;
    padding: 0.5rem 0;
    color: #232323;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
}
.third-section-content >div > h1::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 1px;
    background-color: #232323;
}

.third-section img{
    max-width: 100%;
    /* height: 100%; */
    display: block;
    object-fit: cover;
    overflow: hidden;
    height: auto;
    
    transition: all 0.3s ease;
}

.third-section img:hover{
    opacity: 0.7;
}

.third-section .our-work{
    display: flex;
}

.third-section .our-work > div{
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    background-color: black;
}
.third-section .second-row .first-opp{
    order: 2;
}
.third-section .our-work .second-opp{
    order: 1;
}

/* .third-section .our-work .first-opp{
    flex: 3;
}
.third-section .our-work .second-opp{
    flex: 1;
} */

@media(max-width: 700px){
    .third-section-content > div > h1{
        font-size: 35px;
    }
}


@media(max-width: 500px){
    .third-section .our-work{
        display: block;
    }
    
    .third-section .our-work > div{
        display: block;
    }
    .third-section-content > div > h1{
        font-size: 25px;
    }
}