        body {            
            margin: 0;            
            padding: 0;
            height: 100vh;
            background-color: #B2B2B2;
            font-family:Verdana, Geneva, Tahoma, sans-serif;
            line-height: 2.4;
         
        }
        .container_main {
            box-sizing: border-box;
            width: 100%;
            max-width: 1000px;
            background: #FAD2E0;
            padding: 20px;
            z-index: 1;
            margin: 0 auto;
            -webkit-box-shadow: 10px 7px 40px 0px rgba(66, 68, 90, 1);
            -moz-box-shadow: 10px 7px 40px 0px rgba(66, 68, 90, 1);
            box-shadow: 10px 7px 40px 0px rgba(66, 68, 90, 1);
            /* display: flex; */
            /* flex-direction: column;
            align-items: center;
            justify-content: center; */
        }
        .inner_wire_main{
            font-family:Verdana, Geneva, Tahoma, sans-serif;
            line-height: 1.5;
            margin: 0 auto;
            border: 1px solid #000;
            box-sizing: border-box;
            padding: 50px;
            text-align: center;
            max-width: 600px;
        }    
        .menu {
            position: fixed;
            left: -250px;
            top: 0;
            width: 250px;
            height: 100%;
            background: #333;
            color: #fff;
            transition: 0.3s;
            padding-top: 75px;
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            z-index: 2;

        }
        .menu a {
            display: block;
            color: white;
            padding: 15px;
            text-decoration: none;
            transition: 0.3s;
        }
        .menu a:hover {
            background: #575757;
        }
        .menu.active {
            left: 0;
            box-shadow: 5px 0 15px #C52CD5;
        }
        .hamburger {
            position: absolute;
            top: 20px;
            left: 20px;
            cursor: pointer;
            font-size: 30px;
            background: none;
            border: none;
            color: white;
            background-color: #df338cf7;
            padding: 10px;
            border-radius: 5px;
            z-index: 3;
        }      
        table {
            width: 100%;
            border-collapse: collapse;
            text-align: center;
        }
        td {
            padding: 50px;
            border: 1px solid #ddd;
            font-size: 18px;
        }
        .logo{
            text-align: center;
            margin: 50px auto;
            background-image: url(../img/logo_wp.png);
            background-size: contain;
            background-position: 100% 100%;
            background-repeat: no-repeat;
            width: 133px;
            height: 133px;
            background-color: transparent;
            filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5));
        }                
        .pages{display: none;}
        .pages.show{display: block;}

        #news>div{
            display: flex;            
        }        
        #news>div>div{
            width: 50%;
        }
        #news>div>div>img{
            width: Calc(100% - 20px);
            height: auto;            
        }
        #news>div>div:nth-of-type(2){
            padding: 0 30px 30px;
            text-align: center;            
            line-height: 1.5;
            
        }
        .gallery_items>div{
            padding-bottom: 20px;
        }
        .gallery_items>div>img{
            -webkit-transition:.4s all;
            transition:.4s all;
        }
        .header_title{
            text-align: center;
            margin-bottom: 40px;
            font-weight: bold;
            font-size: 130%;
        }
        .statute{            
            text-align: left;
        }
        #prices{
            text-align: left;
            padding-left: 50px;
        }
        .social_icons{
            width: 40px;
            height: auto;
        }

        @media screen and (max-width: 450px) {
            .container_main {
                box-sizing: border-box;
                width: 100%;                                
                padding: 5px;
                font-size: 1rem;
            }
            #news>div{                
                flex-direction: column-reverse;
            }
            #news>div>div{
                width: 100%;
            }
            #news>div>div:nth-of-type(2){
                padding: 0 5px 30px;
                text-align: center;
            }

            #prices {
                font-size: 0.9rem;
                text-align: left;
                padding-left: 2px;                
            }
            
        }