*{
    text-align: center;
    color: #494241;
    font-family: 'Gotu', sans-serif;
}

.header{    
    max-width: 285px;
    padding: 20px 0;
}

.title{
    font-size: 24pt;
    font-weight: 600;
}

nav ul{
    align-items: center;
    list-style: none;
    padding-left:0;
}

form{
    text-align: left;
}

nav ul li{
    display: inline-block;
    margin: 15px 18px;
    font-size: 15px;
    font-weight: bold;
}

@media (max-width: 540px)
    {nav ul li {margin: 15px 15px;}             
}

body{
    padding:10px;
    background-color: white;
    text-align: center;
}

.img-responsive {
    margin: 15px 0;
    max-width:100%; 
    height: auto;
}

.img-responsive-home {
    margin: 12px 0;
    max-width:100%; 
    height: auto;
}

@media (max-width: 1200px)
    {.img-responsive-home {margin: 9px 0px;}             
}

@media (max-width: 992px)
    {.img-responsive-home {margin: 6px 0px;}             
}

.link{    
    -webkit-filter: opacity(100%);
    filter: opacity(100%);
    transition: .5s;}

.link:hover {
   -webkit-filter: opacity(50%);
    filter: opacity(50%);
}

.current{
    filter: opacity(20%);
}

.footer{    
    max-width: 210px;
    padding: 40px 0;
}

footer p{
    font-size: 9pt;
    font-weight:bold;    
}

footer ul{
    align-items: center;
    font-size: 30px;
    list-style: none;
    margin: 10px;
    padding-left:0;
}

footer ul li{
    display: inline-block;
    padding: 0 10px;
} 

.overlay {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    top:-15px;
    overflow:hidden;
    width: 100%;
    height:0;
    transition: .25s ease;
    margin:15px 0;
    padding-left:15px;
    padding-right:15px;
  }

  .col-xs-12:hover .overlay{
    bottom: 0;
    width:100%;
    height: 100%;
  }

textarea{
    text-align: left;
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */  
    margin: 15px 0px;
    border: 1px solid #d3d1d1; /* Gray border */
    border-radius: 3px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

input[type=text]{
    text-align: left;
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */  
    margin: 12px 0px;
    border: 1px solid #d3d1d1; /* ORANGEW border */
    border-radius: 3px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

select{
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */
    margin: 12px 0px;
    border: 1px solid #d3d1d1; /* Gray border */
    border-radius: 3px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
    background-color: #d3d1d1;
    color: white;
    padding: 12px 20px;
    margin: 9px 0px;
    border: 1px solid #d3d1d1;
    border-radius: 30px;
    cursor: pointer;
}

/* When moving the mouse over the submit button*/
input[type=submit]:hover {
    background-color: #e68e77;
    color: white;
    padding: 12px 20px;
    margin: 9px 0px;
    border: 1px solid #e68e77;
    border-radius: 30px;
    cursor: pointer;  
}