section.top_contacts .left_site
{
    margin-right: 0;
    margin-bottom: 30px;
}

section.top_contacts .big_block
{
    display:flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-device-width: 600px){
    section.top_contacts .big_block {
        display: grid;
    }
}


section.top_contacts .contact
{
    margin-bottom: 20px;
}

section.top_contacts .contact:first-child
{
    margin-top: 10px;
}

section.top_contacts .contact:last-child
{
    margin-bottom: 0;
}

section.top_contacts .contact
{
    display: inline-flex;
    align-items: center;
    font-size: 20px;
}

@media screen and (max-device-width: 600px){
    section.top_contacts .contact {
        margin-bottom: 7px;
    }
}


section.top_contacts .contact .icon
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-device-width: 600px){
    section.top_contacts .contact .icon img {
        width: 12px;
        height: 12px;
    }
}

section.top_contacts .contact .text_contact
{
    margin-left: 20px;
}

@media screen and (max-device-width: 600px){
    section.top_contacts .contact .text_contact {
        font-size: 10px;
        margin-left: 7px;
    }
}


section.top_contacts .left_side
{
    width:55.9%;
}

@media screen and (max-device-width: 600px){
    section.top_contacts .left_site {
        margin-bottom: 10px;
    }
}


@media screen and (max-device-width: 600px){
    section.top_contacts .left_side {
        width: 100%;
    }
}


section.top_contacts .right_side
{
    width: 44.1%;
    object-fit: cover;
}

@media screen and (max-device-width: 600px){
    section.top_contacts .right_side {
        width: 100%;
        margin-top: 10px;
    }
}


section.top_contacts .right_side img
{
    width: 100%;
}

section.bottom_contacts p
{
    width: 100%;
}

section.bottom_contacts .text p
{
    text-indent: 20px;
}

section.bottom_contacts img{
    width: 100%;
}

@media screen and (max-device-width: 600px){
    section.bottom_contacts img {
        height: 288px;
        width: 100%;
        object-fit: cover;
        text-align: center;
    }
}


section.bottom_contacts ol 
{
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    list-style-type: none; 
    counter-reset: my-counter;
}

section.bottom_contacts ol li
{
    margin-bottom: 28px;
    font-size: 14px;
    color:#2B455C;
    font-family: "FiraSans";
}

@media screen and (max-device-width: 600px){
    section.bottom_contacts ol li {
        font-size: 10px;
    }
}


section.bottom_contacts ol li::before
{
    content: counter(my-counter) '.';
    counter-increment: my-counter;

    font-family: "FiraSansBold";
    color:#004F98;
    font-size: 17px;
    margin-right: 3px;
}

@media screen and (max-device-width: 600px){
    section.bottom_contacts ol li::before {
        font-size: 11px;
    }
}


section.bottom_contacts ol li p
{
    width: 100%;
    margin-top: 2px;
    margin-left: 17px;
}

section.bottom_contacts ol li p:first-child
{
    margin-top: 10px;
}

section.bottom_contacts ol li p a
{
    text-decoration: none;
    font-family: "FiraSansBold";
    color:#004F98;
    font-size: 17px;
}

@media screen and (max-device-width: 600px){
    section.bottom_contacts ol li p a{
        font-size: 12px;
    }
}

section.bottom_contacts ol li p a:hoverr
{
    text-decoration: underline;
}