@charset "utf-8";
#header {
    border-style: none;
    width: 100%;
    height: auto;
}
#wrapper {
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFFFF;
    width: 100%;
}
body {
    background-color: #E0E0E0;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 0.9em;
    text-align: justify;
    color: #474747;
}
h1 {
    color: #270c39;
}
#footer {
    text-align: center;
    font-size: 0.8em;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #FFFFFF;
    border-top: thin solid #BBBBBB;
    clear: both;
    color: #969696;
}
#nav li {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1em;
    list-style-type: none;
    border-bottom: thin solid #e0e0e0;
    color: #1e9d36;
    left: 0px;
    list-style-position: inside;
}
#nav li a {
    text-decoration: none;
}
#rightsidebar {
    width: 180px;
    height: 350px;
    float: right;
    padding-right: 20px;
    position: sticky;
    top: 20px;
}
#main {
    width: 560px;
    float: left;
    margin: 0 10px 50px 20px;
    padding-right: 10px;
}
#logo {
    padding: 10px;
    float: left;
}
#top_menu {
    float: right;
    padding: 50px 20px 0px 0px;
    font-size: 1.2em;
    color: #270c39;
}
ul.errorlist {
    margin: 0;
    padding: 0;
}
.errorlist li {
    border: 1px solid red;
    color: red;
    background: rgba(255, 0, 0, 0.15);
    list-style-position: inside;
    display: block;
    font-size: 1.2em;
    margin: 0 0 3px;
    padding: 4px 5px;
    text-align: center;    
    border-radius: 3px;
}
input, textarea, select {
    width: 100%;
    padding: 5px!important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(169,169,169)
}
button {
    padding: 5px!important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(169,169,169)
}
input, button { 
    height: 30px;
}
select {
    height: 30px;
}
.success {
    background-color: rgba(0, 128, 0, 0.15);
    padding: 10px;
    text-align: center;
    color: green;
    border: 1px solid green;
    border-radius: 3px;
}





/*=========================================
	Our Works
==========================================*/

.work-filter {
    margin-bottom: 35px;
  }
  
  .work-filter ul li {
      display: inline-block;
  }
  
  .work-filter ul li a {
    color: #062033;
    display: block;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 17px;
    border-radius: 6px;
    text-transform: capitalize;
  }
  
  .work-filter ul li a:hover,
  .work-filter ul li a.active {
    background-color: #0eb493;
    border-radius: 6px;
    color: #fff;
    padding: 5px 17px;
  }
  
  .mix {
      display: none;
  }
  
  .work-item {
      float: left;
      width: 25%;
      position: relative;
  }
  
  .work-item > img {
    display: block;
    height: auto;
    max-width: 100%;
  }
  
  .overlay {
      background-color: rgba(14,180,147,.9);
      text-align: center;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      color: #fff;
      
      opacity: 0;
      filter: alpha(opacity=0);
      
      -webkit-transition: all 450ms ease-out 0s;	
         -moz-transition: all 450ms ease-out 0s;
           -o-transition: all 450ms ease-out 0s;
              transition: all 450ms ease-out 0s;
            
      -webkit-transform: rotateY(180deg) scale(0.5,0.5);
         -moz-transform: rotateY(180deg) scale(0.5,0.5);
          -ms-transform: rotateY(180deg) scale(0.5,0.5);
           -o-transform: rotateY(180deg) scale(0.5,0.5);
              transform: rotateY(180deg) scale(0.5,0.5);
  }
  
  .work-item:hover .overlay {
      opacity: 1;
      filter: alpha(opacity=100);
      
      -webkit-transform: rotateY(0deg) scale(1,1);
         -moz-transform: rotateY(0deg) scale(1,1);
          -ms-transform: rotateY(0deg) scale(1,1);
           -o-transform: rotateY(0deg) scale(1,1);
              transform: rotateY(0deg) scale(1,1);
  }
  
  .work-item .overlay a {
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    margin-top: 20%;
    padding: 7px 10px;
  }
  
  .work-item .overlay a:hover {
    color: #fff;
  }
  
  .work-item .overlay h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin: 25px 0 8px;
  }
  
  .work-item .overlay p {
    font-size: 14px;
    line-height: 24px;
  }
  
  