/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 24, 2019, 1:57:05 PM
    Author     : DWDDesigner
*/

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
body{
    background-image: url('../image/page-construction/bg.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    -moz-background-size: cover;
}
.container{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:100vh;
}
.box-logo{}
.logo {
  width: 100%;
  max-width: 768px;
  height: auto;
  padding-bottom: 2em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  box-sizing: border-box
}

.box-text{
    width: 100%;
    background: rgba(255,255,255,0.7);
    color: #000;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    text-align: center;
}
.box-text > h2{font-size: 1.75em;}

.box-msocial{
    display:flex;
    flex-direction: row;
    list-style-type: none;
    padding-top: 2em;
}
.box-msocial a{
    width: 50px;
    height: 50px;
    text-align: center;
    padding-top: 0;
    border-radius: 50%;
    font-size: 1.75em;
    color: #fff;
}
.box-msocial a:not(:first-child){
    margin-left: 1em;
}
.msocial-whatsapp {
    border: 5px solid #4DC247;
    background:#4DC247;
    display: block;
}

.msocial-mail {
    border: 5px solid #D4AF37;
    background:#D4AF37;
    display: block;
}
.msocial-facebook {
    border: 5px solid #4776c2;
    background:#4776c2;
    display: block;
}
/*RESPONSIVE*/
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 640px) {
    .box-text > h2{font-size: 1.20em;}
}
@media only screen and (max-width: 480px) {
}