@import url(menu.css);
@import url(form.css);
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.125em;
	color: #000;
	font-weight: 300;

}
p { font-size: 1em;
    margin: 0;}
p span{
    font-weight: 400;
}
img{ max-width: 100%; }

/* Clearfix */

.clearfix:before, .clearfix:after {
  content:"";
  display:table;
}
.clearfix:after {
    clear: both;
}

.clearfix {
  *zoom:1;
}

.container{
    width: 95%;
    margin: auto;
}

/* HEADER */

header{
    background: #000;
    color: #fff;
    width: 100%;
    height: 120px;
    padding: 10px 0px;
    position: fixed;
    z-index: 100;
    top: 0;
    left:0;
    
}
header .container{
    display: table; 
}
.logo{
    float: left;  
}

/* SLIDER */
.headers {
    text-shadow: 2px 2px 4px #333;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    min-width: 80%;
    z-index: 10;
    
}
.headers h1{
    font-weight: 400;
    font-size: 3.75em;
    background: #990027;
}
.headers p {
    color: #fff;
    font-size: 2.75em;
    font-weight: 200;
    text-transform: normal;
}
.break{
    background: #990027;
    border-radius: 2px;
    width: 60px;
    height: 2px;
    margin: 20px auto;
}
.scrolldown {
    position: absolute;
    z-index: 10;
    bottom: 15px;
    left: 50%;
    margin-left: -20px;
    width: 58px;
    height: 51px;
    background: url("../images/down.png") center bottom no-repeat;  
}

/* SECTION INFO */

#info .container{
    text-align: center;
    padding: 60px 0px;
}
h2{
    font-weight: 200;
    font-size: 3em;
    margin-bottom: 40px;
}

/* SECTION SERVICES */

.divfeature{
    padding: 0px 0px 60px 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.divfeature article{
    margin:20px 40px;
    max-width: 300px;
    padding: 0px 0px;
    text-align: left;
    position: relative;
    background: #efefef;
}
.divfeature img{
    width: 100%;
    border-top: solid #990027 5px;
}
.divfeature h3{
    text-align: center;
    font-size: 1.125em;
    font-weight: 300;
    margin: 20px 0px; 
}
.divfeature p{
    font-size: .937em;
    font-weight: 300;
    text-align: center;
    padding-bottom: 15px;
}
.divfeature div{
    width: 100%;
    text-align: center;
    margin: 20px 0px;
}
.divfeature div a{
    font-size: .75em;
    color: #990027;
    font-weight: 400;
}


/* SECTION FOOTER */
footer {
    clear: both;
    width: 100%;
    background: #000;
   
}
.infocontact{
    background: #5a5a5d;
    color: #fff;
    font-size: .8125em;
    padding: 5px 30px;
    text-align: center;
    
}
.infocontact span{
    font-weight: 400;
}
.foot{
    padding: 30px 0px;
    text-align: center;
    font-size: .8125em;
    color: #fff;
    overflow: hidden;
   
}
.foot .legal{
    float: left;
    margin-top: 18px;
}
.foot .legal a{
    margin: 0px 40px 0px 0px;
    color: #fff;
}
.foot .logoFoot {
    width: 120px;
    float: right;
  
}

/*Styles for screen 1200px*/
@media screen and (min-width: 1200px){
    .divfeature {
        max-width: 1200px;
        margin: 0px auto;
    }
}

/*Styles for screen 640px*/
@media only screen and (max-width : 640px) {
    
    header{
    height: 90px;
    
}
    
    .logo img{
    width: 70%;
}
    .headers h1{
    font-weight: 400;
    font-size: 2em;
}
    .headers p{
    font-weight: 300;
    font-size: 1.5em;
}
    .foot .legal, .foot .logoFoot{
    float: none;
    width: 100%;
    text-align: center;
}
    .logoFoot{
    display: none;
}
    .foot .legal {
    margin: 0px;
    color: #fff;
    font-size: .937em;
    }
}


