/*
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/background.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    -moz-background-size: cover;
    background-color: #000;
}
.container{
    display:flex;
    flex-direction: column;
    align-items: center;
    height:100vh;
}
.box-logo{
    margin: 2.2rem 0 0 0;
}
.logo {
  width: 100%;
  max-width: 428px;
  height: auto;
  padding-bottom: 2em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  box-sizing: border-box;
}

.box-text{
    width: 32%;
    background: rgba(255,255,255,0.6);
    color: #000;
    padding-top: .5em;
    padding-bottom: .5em;
    text-align: center;
    border-radius: 5px;
    margin: .35rem 0;
    transition: .5s;
}
.box-text > h2{font-size: 1.75em;}

.box-msocial a{
    display:flex;
    flex-direction: row;
    list-style-type: none;
    color: #000;
    font-size: 1.75em;
    text-align: center;
    text-decoration: none;
    outline: none;
    transition: .5s;
    margin-left: 25%;
}
.box-text:hover,
.box-text:focus{
    width: 35%;
    background: rgba(255,255,255,0.8);
}
.box-msocial a .msocial-icon{
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 1rem;
    display: flex;
    justify-content:center;
    align-items: center;
    font-size: 1.35em;
  }
/*.box-msocial a.msocial:not(:first-child){
    margin-left: 1em;
}*/

img.icosocial {
    width: 60px;
    height: auto;
    margin-right: 1rem;
  }

.msocial-text {
    margin: auto 0;
    padding: 0;
    line-height: 0;
    font-weight: bold;
  }
  .box-msocial a:hover,
  .box-msocial a:focus {
    color: #666;
  }

.msocial-whatsapp {
    border: 5px solid #4DC247;
    background:#4DC247;
    display: block;
}
.msocial-instagram {
    background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    display: block;
}

.msocial-mail {
    border: 5px solid #D4AF37;
    background:#D4AF37;
    display: block;
}
.msocial-facebook {
    border: 5px solid #4776c2;
    background:#4776c2;
    display: block;
}

.box-footer{
    color: #666;
    text-align: center;
    width: 100%;
    font-size: 0.8em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
/*RESPONSIVE*/
@media only screen and (max-width: 980px) {
    .box-logo{
        width: 100%;
        margin: 1.5rem 0 0 0;
    }
    .box-text{
        width: 90%;
        padding-top: 0.25em;
        padding-bottom: 0.25em;
    }
    .box-text:hover,
    .box-text:focus{
        width: 98%;
        background: rgba(255,255,255,0.8);
    }
    .box-msocial a{margin-left: 5%;font-size: 1.25em;
    }
    .box-msocial a .msocial-icon{
        width: 50px;
        height: 50px;
    }
}
@media only screen and (max-width: 768px) {
    .box-logo{
        width: 65%;
        margin: margin: 1rem 0 0 0;
    }
    .box-text{
        width: 95%;
        padding-top: 0.25em;
        padding-bottom: 0.25em;
    }
    .box-text:hover,
    .box-text:focus{
        width: 98%;
        background: rgba(255,255,255,0.8);
    }
    .box-msocial a{margin-left: 15%;font-size: 1.25em;
    }
    .box-msocial a .msocial-icon{
        width: 50px;
        height: 50px;
    }
}
@media only screen and (max-width: 640px) {
    .box-logo{
        width: 65%;
        margin: margin: 1rem 0 0 0;
    }
    .box-text{
        width: 95%;
        padding-top: 0.25em;
        padding-bottom: 0.25em;
    }
    .box-text:hover,
    .box-text:focus{
        width: 98%;
        background: rgba(255,255,255,0.8);
    }
    .box-msocial a{margin-left: 15%;}
}
@media only screen and (max-width: 480px) {
    .box-logo{
        width: 65%;
        margin: margin: 1rem 0 0 0;
    }
    .box-text{
        width: 95%;
        padding-top: 0.25em;
        padding-bottom: 0.25em;
    }
    .box-text:hover,
    .box-text:focus{
        width: 98%;
        background: rgba(255,255,255,0.8);
    }
    .box-msocial a{
        margin-left: 3%; 
        font-size: 1.25em;
    }
    .box-msocial a .msocial-icon{
        width: 40px;
        height: 40px;
    }
    
}