#contact-block {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #5b692c;
}

#contact-block .contact-container {
    display: flex;
    justify-content: space-between;
}

#contact-block .block-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;

}

#contact-block .block-title {
    margin-bottom: 0px;
    text-transform: uppercase;
    color: #ffffff;
}

#contact-block .contact-wrapper {
    display: flex;
    flex-direction: column;
}

#contact-block .map {
    width: 60%;
}

#contact-block .info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

#contact-block .info-item .info-name {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 10px;
}

#contact-block .info-value p,
#contact-block .info-value {
    font-family: 'Oswald';
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 0px;

}

#contact-block .info-item:hover a {
    color: #dce0a5;
}

#contact-block .info-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#contact-block .info-icon img {
    width: 20px;
    height: 20px;

}

#contact-block .social-holder {
    display: flex;
    gap: 15px;
    padding-left: 20px;
}

#contact-block .social-holder .soc-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

#contact-block .social-holder .soc-item:hover svg path {
    fill: #151515;
}

#contact-block .map-holder {
    min-height: 100% !important;
}

@media (max-width: 776px) {
    #contact-block .block-top {
        flex-direction: column;
        align-items: flex-start;
    }

    #contact-block .block-title {
        margin-bottom: 20px;
    }

    #contact-block .contact-container {
        flex-direction: column;
    }

    #contact-block .info-item {
        margin-bottom: 15px;
    }

    #contact-block .map-holder {
        min-height: 400px !important;
    }

    #contact-block .map {
        width: 100%;
        margin-top: 20px;
    }
}