.contact-section {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.contact-section .contact-header{
    display: flex;
    justify-content: end;
    width: 100%;
    
}
.contact-section .contact-info{
    width: 100%;
    text-align: justify;
    padding-left: 2rem ;
    padding-bottom: 2rem;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.contact-item i {
    background: #000;
    padding: 10px;
    border-radius: 100%;
}
.whatsapp-link i {
    color: #000;
    background: #f5a623;
    padding: 10px;
    border-radius: 100%;
}
.title{
        color: #f5a623;
}
span{
    font-weight: bold;
}
@media (min-width: 768px) {
    .contact-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 80vh;
    }
    .contact-section .contact-header{
        grid-column: 2;
        
    }
    .contact-section .contact-header img{
        width: 100%;
        object-fit: cover;
        object-position: center;
        
    }
    .contact-section .contact-info{
        grid-row: 1;
        height: 100%;
        justify-content: center;
        padding: 2rem;
    }
    .contact-info h2 {
        font-size: 2.5rem;
        
    }
    

    
}