/* HERO */

#contact-hero {
    width: 100%;
    padding: 50px 0 10px 0;
    justify-content: center;
    display: flex;
}

#contact-hero svg {
    width: 88%;
    height: auto;
    object-fit: cover;
}

#contact-hero svg .cls-1 {
    fill: #373534;
}

#contact-hero svg .cls-2 {
    fill: #97AB8C;
}

/* EXTRA BREAKPOINT */

@media screen and (max-width:1150px){

}

 /* RESPONSIVE TABLET L */

@media screen and (max-width:1024px){

}

 /* RESPONSIVE TABLET S TO M */

@media screen and (max-width:768px){

}

 /* RESPONSIVE M TO L MOBILE */

@media screen and (max-width:430px){

}
 /* RESPONSIVE S TO M MOBILE */

@media screen and (max-width:360px){

}

/* CONTENT */

#contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 40px 0 0 0;
}

#contact-container img {
    width: 100%;
    height: auto;
}

#contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px 0 100px;
    gap: 20px;
}

#contact-text p {
    width: 380px;
}

.contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.contact-info h4 {
    font-size: 16pt;
}

.contact-info svg {
    width: 50px;
    height: auto;
    fill: #373534;
    transition: fill 0.3s ease-in-out;
}

/* EXTRA BREAKPOINT */

@media screen and (max-width:1150px){
    #contact-container img {
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    
    #contact-text {
        gap: 10px;
        padding: 0 30px 0 50px;
    }
    
    .contact-info {
        padding: 0;
    }
}

 /* RESPONSIVE TABLET L */

@media screen and (max-width:1024px){

}

 /* RESPONSIVE TABLET S TO M */

@media screen and (max-width:768px){
    #contact-text {
        padding: 0 10px 0 30px;
    }
}

 /* RESPONSIVE M TO L MOBILE */

@media screen and (max-width:431px){
    #contact-container {
        grid-template-columns: none;
        gap: 4%;
        padding: 40px 0 20px 0;
    }
}
 /* RESPONSIVE S TO M MOBILE */

@media screen and (max-width:360px){

}