.large-content-block-с:nth-child(3) {
    margin-top: 5em;
}

.contacts-table {
    font-size: 1em;
    width: 80%;
    border-style: none;
    border-collapse: collapse;
    margin: 0 auto;
    word-break: break-all;
    column-width: 100px;
}
.contacts-table>caption>h2 {
    font-size: 1.25em;
}
.contacts-table>tbody>tr>td {
    padding: 0.5em 0;
    border-left: 1px solid #3a3a3a;
    text-align: center;
}
.contacts-table tr td:nth-child(1) {
    width: 20%;
}
.contacts-table tr td:nth-child(2) {
    border-left: 1px solid #3a3a3a;
    width: 20%;    
}
.contacts-table tr td:nth-child(3) {
    border-left: 1px solid #3a3a3a;
    width: 30%;    
}
.contacts-table tr td:nth-child(4) {
    border-left: 1px solid #3a3a3a;
    width: 30%;    
}
.contacts-table tr>td:first-child {
    text-align: left;
}
.contacts-table tr:first-child {
    border-top: 1px solid #3a3a3a;;
}
.contacts-table tr:last-child {
    border-bottom: 1px solid #3a3a3a;;
}
.contacts-table tr>td:last-child {
    border-right: 1px solid #3a3a3a;;
}

.contacts-table tr:nth-child(even) {
    background-color: #87888A;
}

.contacts-table tr td a {
    display: block;
    margin: 0.25em 0.1em ;
    color: #ffa500;
}

.contacts-table tr>td>a[href^="mailto"]::before {
    content: "mail - ";
}
.contacts-table tr>td>a[href^="viber"]::before {
    content: "viber - ";
}

.contacts-table:first-of-type {
    padding-top: 5em;
}
  

@media all and (max-width: 1400px)
{
    .contacts-table {
        width: 100%;
    }
}
@media all and (max-width: 1000px)
{
    .contacts-table>caption>h2 {
        font-size: 1.25em;
    }
    .contacts-table {
        font-size: 0.85em;
    }
    
}
@media all and (max-width: 800px)
{
    .contacts-table>caption>h2 {
        font-size: 0.75em;
    }
    .contacts-table {
        font-size: 0.75em;
    }
    .contacts-table tr td a {
        
        margin: 0.75em 0.1em ;
    }

    .contacts-table tr td:nth-child(1) {
        width: 30%;
    }
    .contacts-table tr td:nth-child(2) {
        width: 20%;    
    }
    .contacts-table tr td:nth-child(3) {
        width: 30%;    
    }
    .contacts-table tr td:nth-child(4) {
        width: 20%;    
    }

}

#contact-info {
    min-width: 40%;
}
#loc-on-map {
    min-height: 500px;
    width: 100%;
}

/*--------------- Message form style -------------------*/
.message-form {
    display: grid;
    width: 30%;
    margin: 0 auto;
}
.message-form div {
    margin-bottom: 1em;
}

.message-form>div * {
    display: inline;
}

.message-form>div p {
    width: auto;
}

.input_txt {
    font-weight: 300;
    font-size: 1em;
    border-style: none;
    height: 2em;
    width: 100%;
    
}
.input_txt::placeholder {
    font-weight: 300;
    font-size: 1em;
}
#input_field {
    min-height: 300px;
    font-size: 1.15em;
    resize: none;
}
.input_button {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 1em;
    cursor: pointer;
    border-style: none;
    height: 3em;
    margin-top: 2em;
}
@media all and (max-width: 1200px)
{
    .message-form {
        width: 60% !important;
    }
}
@media all and (max-width: 900px)
{
    #loc-on-map {
        min-height: 500px;
        width: 100%;
    }
    #loc-on-map>iframe {
        min-height: 500px;
        width: 100%;
    }
    .message-form {
        width: 80% !important;
    }
}