.contact-info{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 100px;
    justify-content: space-between;
}
.contact-info dl{
    color: #666;
}
.contact-info dl dt{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EEE;
    padding: 0 30px 2px 0;
    font-size: 24px;
}
.contact-info dl dt img {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}
.contact-info dl:hover dt img {
    transform: scale(1.1);
}
.contact-info dl dd{
    padding-top: 2px ;
    font-size: 16px;
}

.map img{
    width: 100%;
}

@media (max-width: 1590px) {
    .contact-info{
        gap: 10px;
    }
}