*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

:root{
    --deep-dark: #0E0504;
    --dark: #4B1F0E;
    --off-white: #EEE2DC;
    --medium: #794028;
    --medium-light: #A07855FF;
    --light-coffee: #F2EBE6;
    --light: #DFCDC0;
}

.contact-body{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.address{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.org-part h1{
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dark);
}

.org-part h3{
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--dark);
}

.contact-no{
    width: fit-content;
}

.address-part p, .contact-no p{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--dark);
}

.contact-no p:hover{
    color: var(--medium);
}
.location img{
    transition: 400ms ease-in-out;
}

.location img:hover{
    transform: scale(0.9);
    opacity: 0.8;
}

@media screen and (max-width: 670px){
    .location img{
        width: 90%;
        height: auto;
    }
}

@media screen and (max-width: 500px){
    .location img{
        width: 100%;
    }
}

@media screen and (max-width: 430px){
    .org-part h1{
        font-size: 2rem;
    }

    .org-part h3{
        font-size: 1.1rem;
    }

    .org-part p{
        font-size: 0.9rem;
    }
}