/* body {
    margin: 0;
    padding: 0;
    overflow: hidden;
} */


.in_developing {
    box-sizing: border-box;
    background-size: cover;
    background-image: url(../img/background.jpg);
    width: 100%;
    min-height: 1200px;
    height: 100%;

}






.in_developing .container {
    width: 100%;
    /* height: auto; */
}

.in_developing .container .header {
    width: 100%;
    height: 75px;
    background-color: #242424;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.in_developing .container .header .logo {
    margin-left: 20px;
}

.in_developing .container .header .logo img {
    width: 40%;
}

.in_developing .container .content {
    width: 100%;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    padding-top: 50px;
}

.in_developing .container .content a {
    margin-top: 20px;
    padding: 10px;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    border: 2px solid #000;
    transition: .3s;
    font-weight: 700;
}

.in_developing .container .content a:hover {
    transition: .3s;
    background-color: #999999;
}


@media screen and (max-width:380px) {
    .in_developing .container .content {
        font-size: 18px;
        text-align: center;
    }
}