body{
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

body a{
    text-decoration: none;
}

.main-header{
    padding-top: 50px;
    padding-bottom: 40px;
    font-size: 35px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #bcaf10;
}

#contacts-page-main-part{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #161616;
    padding-bottom: 36px;
}

#contacts-page-contact-data{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#contacts-page-contact-data .col{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contacts-page-contact-data .col .row{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    flex-wrap: nowrap;
}

#contacts-page-contact-data .col:first-child{
    border-right: 3px solid #202020;
}

#contacts-page-contact-data .col .row p:first-child:not(#contacts-page-contact-data .col .row a p){
    color: #bcaf10;
    text-transform: uppercase;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-weight: 600;
}

#contacts-page-contact-data .col .row p:not(#contacts-page-contact-data .col .row p:first-child){
    color: #bb8645;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-weight: 500;
}

#contacts-page-contact-data .col .row a p{
    color: #bb8645;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-weight: 500;
}

#contacts-page-map{
    background-color: #161616;
    height: fit-content;
    padding: 0px 0 70px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

#contacts-page-main-part-mobile{
    display: none;
}

@media only screen and (max-width: 625px) {
    body{
        position:static !important;
    }

    #contacts-page-contact-data .row, #contacts-page-contact-data .col{
        width: 100%;
    }

    #contacts-page-contact-data{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #contacts-page-contact-data p{
        text-align: center;
    }

    #contacts-page-contact-data .col:first-child{
        border-right: 0;
    }
}

@media only screen and (max-width: 576px) {
    #contacts-page-contact-data {
        display: none;
        width: 100%;
    }

    #contacts-page-main-part-mobile {
        display: flex;
        width: 100%;
        align-items: center;
        flex-direction: column;
    }

    .mobile-row *{
        text-align: center;
    }

    .mobile-row{
        width: 100%;
    }

    .mobile-row p:first-child:not(.mobile-row a p) {
        color: #bcaf10;
        text-transform: uppercase;
        font-size: 18px;
        font-family: "Roboto", sans-serif;
        text-align: center;
        font-weight: 600;
    }

    .mobile-row p:not(.mobile-row p:first-child), .mobile-row a p {
        color: #bb8645;
        font-size: 17px;
        font-family: "Roboto", sans-serif;
        text-align: center;
        font-weight: 500;
    }

    .mobile-row:not(.mobile-row:last-child) {
        margin-bottom: 20px;
    }

    .mobile-row:nth-child(3) a p{
        color: #bb8645;
        font-size: 17px I !important;
        font-family: "Roboto", sans-serif;
        text-align: center;
        font-weight: 500;
    }
}