@media only screen and (max-width: 1190px) {
    
    .menu {
        flex-wrap: wrap;
        width: 100%;
        height: auto;
    }

    .content_bg {
        display: block;
        width: 100%;
        border-top: 1px solid #4A4857;
        order: 3;
    }

    .content_bg ul {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 0;
        margin: 20px 0;
    }

    .content_bg ul li{
        margin: 0;
    }

    .logo {
        order: 1;
    }

    .social {
        width: 95px;
        order: 2;
    }

    .content_block {
        width: calc(100% - 60px);
        padding: 30px;
    }

    .content_title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .phone_bottom {
        margin-right: 10px;
    }

    .lang {
        padding-left: 0;
        border-left: 0;
    }

}

@media only screen and (max-width: 730px) {

    .content_bg {
        display: none;
    }

    .content_bg ul {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 0;
        margin: 20px 0;
    }

    .content_bg ul li{
        margin: 0;
    }

    .content_block {
        width: calc(100% - 20px);
        padding: 30px 10px;
    }

    .content_title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .content_title div {
        width: 100%;
        text-align: center;
    }

    .arrow {
        display: none;
    }

    .social {
        width: 135px;
    }

    .menu_icon {
        width: 30px;
        height: 30px;
        background-image: url(../../images/menu.png);
        background-color: #E99954;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 70%;
        margin-left: 10px;
        cursor: pointer;
    }

    .content_bg ul li{
        width: 100%;
        text-align: center;
        margin-top: 20px;
        margin-right: 0px;
        padding-bottom: 20px;
        border-bottom: 1px solid #4A4857;
    }

    .content_bg ul li:first-child{
        margin-top: 0px;
    }

    .content_bg ul li:last-child{
        padding-bottom: 0px;
        border-bottom: 0;
    }

}