.contact-information__container {
    display: flex;
    gap: 14px;
}

.contact-information__element {
    width: 577px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-information__sub-element {
    width: 577px;
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.05));
    border-radius: 12px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
    padding: 36px 36px;
    height: 100%;
    background: white;
}

.contact-information__address span {
    color: rgba(255, 137, 0, 1);
}

.section > h1 {
    margin-bottom: 20px;
    margin-top: 21px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 25px;
}

.contact-information__address > div {
    margin-bottom: 10px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 23px;
}

.contact-information__sub-element a {
    color: rgba(58, 137, 225, 1);
    text-decoration: underline;
}

.contact-information__element-title {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 27px;
}

.contact-information__element-title > h3 {
    display: inline-block;
    margin: 0;
    /* otr-soft.ru/Semantic/Heading 3 */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 19px;
    line-height: 21px;
    color: #000000;
}

.contact-information__element-content {
    display: flex;
}

.contact-information__contacts {
    padding-right: 36px;
    border-right: 1px solid black;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000000;
    text-wrap: nowrap;
}

.contact-information__contacts > br, .contact-information__schedule > br {
    margin-bottom: 2px;
}

.contact-information__schedule {
    padding-left: 36px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 23px;
    color: #000000;
}

.contact-information__additional-schedule {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 200;
    font-size: 16px;
    line-height: 23px;
    color: rgba(255, 122, 0, 1);
    margin-top: 18px;
}

.contact-information__additional-title {
    font-weight: 400;
}

.contact-information__additional {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000;
    margin-bottom: 10px;
}

.red {
    color: red;
}

.contact-information__additional-content {
    padding: 12px 16px;
    background: rgba(255, 240, 223, 1);
    border-radius: 12px;
    margin-top: 17px;
    margin-bottom: 22px;
}

.contact-information__additional-row {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    font-size: 16px;
    line-height: 23px;
    color: #000;
}

.contact-information__additional-notice {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;
    font-size: 15px;
    line-height: 23px;
    color: #000000;
    text-wrap: nowrap;
}

.second-container, .second-container > .contact-information__sub-element {
    width: 571px;
}

.contact-information__notice {
    padding: 36px 36px;
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.05));
    border-radius: 12px;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05);
    margin-top: 14px;
    margin-bottom: 114px;
    width: 1136px;
}

.contact-information__notice > h3 {
    margin: 0;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 19px;
    line-height: 155%;
    color: #000000;
    margin-bottom: 26px;
}

.contact-information__notice > p {
    margin-bottom: 16px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    line-height: 23px;
}

@media (max-width: 1140px) {
    .contact-information__element, .contact-information__element, .contact-information__notice, .contact-information__sub-element, .second-container, .second-container > .contact-information__sub-element {
        width: auto;
    }
}

@media (max-width: 768px) {
    .contact-information__container {
        flex-direction: column;
    }

    .contact-information__contacts {
        border: none;
        padding: 0;
        margin-bottom: 18px;
    }

    .contact-information__element-content {
        flex-direction: column;
    }

    .contact-information__schedule {
        padding: 0;
    }

    .contact-information__additional-notice {
        text-wrap: wrap;
    }
}