/*---------------------------------------------------
   Main style stylesheet
   project:       ASPANY- Personal Portfolio Template
   Version:       1.0
   Author:        MTthemes22
   primary use:   personal
-----------------------------------------------------*/

/*----------------------------------------------------
body
  +loading page
  +navbar
  +header section'
  +video-container section
  +about section
  +services section
  +team section
  +my-portfolio section
  +clients section
  +blog section
  +contact section
  +scroll to top button

------------------------------------------------------*/
*{
   -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
        -o-box-sizing: border-box;
           box-sizing: border-box;
}

body {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
}

.fa {
  font-family: 'FontAwesome';
  font-style: normal;
}

.heading{
    font-weight: 800;
    font-size: 30px;
    letter-spacing: 5px;
    line-height: 1.5em;
    margin-bottom: 40px;
    text-align: center;
}

.a-btn{
    font-weight: 600;
    padding: 5px 10px;
}

.a-btn:hover{
    text-decoration: none;
}

/*----------------------------------------------------
Start Section Loading
----------------------------------------------------*/
.loading-overlay {
  background:#000;
  color:#fff;
  position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  z-index:99999
}

.spinner {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 300px auto;
}

.spinner span{
    display: block;
    position: absolute;
    bottom: 0;
    height: 200px;
    width: 8px;
    animation: move 1.5s infinite ease-in-out;
}

.spinner span:nth-of-type(2) {
    animation-delay: 0.2s;
    left: 10px;
}
.spinner span:nth-of-type(3) {
    left: 20px;
    animation-delay: 0.4s;
}
.spinner span:nth-of-type(4) {
    left: 30px;
    animation-delay: 0.6s;
}
.spinner span:last-of-type {
    left: 40px;
    animation-delay: 0.8s;
}

@keyframes move {
    
    0%, 50%, 100% {
        height: 20px;
        background-color: #bbb;
        transform: translateY(0);
    }
25% {
        height: 70px;
        background-color: #fff;
        transform: translateY(15px);
    }    
}
/*----------------------------------------------------
End Section Loading
----------------------------------------------------*/

/*----------------------------------------------------
Start Section header
----------------------------------------------------*/
.header { 
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    border-radius: 0; 
    -webkit-transition: all 0.4s ease-in-out;
       -moz-transition: all 0.4s ease-in-out;
         -o-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
} 

.navbar-brand {
    height: auto;
    display: block;
    font-size: 28px;
    line-height: 30px;
    color: #fff;
    font-weight: 500;
    padding-top: 25px;
    padding-bottom: 25px;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out; 
} 

.navbar-brand:hover, 
.navbar-brand:focus {
    color: #fff;
}

.navbar-collapse {
    padding-left: 0;
    padding-right: 0;
}

.header .navbar-nav {
    font-weight: 700; 
    margin: 0;
    float: right;
}  

.header .navbar-nav li a {
    padding: 30px 15px;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
}

.header .navbar-nav li a:hover,
.header .navbar-nav li a:focus{
    background: none;
} 

.header .navbar-nav li.active a {
    color: #aaa;
}

.header .navbar-toggle { 
    margin-top: 20px;
    padding: 10px;
}

.header .navbar-toggle .icon-bar {
    background: #fff;
    height: 3px; 
}
 
.header.shrink {
    position: fixed;
    top: 0;
    background: #111;
} 

.header.shrink .navbar-brand {
    padding-top: 15px;
    padding-bottom: 15px;
    color: #fff;
}

.header.shrink .navbar-nav li a {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
}

.header.shrink .navbar-nav li.active a {
     color: #aaa;
}

.header.shrink .navbar-toggle { 
    margin-top: 10px;
    padding: 10px;
}

.header.shrink .navbar-toggle .icon-bar {
    background: #fff;
    height: 3px; 
}
/*----------------------------------------------------
end Section header
----------------------------------------------------*/

/*----------------------------------------------------
start section home
----------------------------------------------------*/
.home{
    height: 600px;
    background-image: url('../images/back2.jpeg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    text-align: center;
    overflow: hidden;
}

.home .overlay{
    background-color: rgba(0, 0, 0, 0.6);
    height: 600px;
    padding: 70px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.home .overlay .title .image{
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.7);
}

.home .overlay .title img{
    height: 182px;
    width: 182px;
    -webkit-transition: all 0.4s ease-in-out;
       -moz-transition: all 0.4s ease-in-out;
         -o-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}

.home .overlay .title img:hover{
    transform: scale(1.2)
}

.home .overlay .title h1{
    font-size: 40px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 20px;
}

.typed-cursor{
    font-weight: 100;
}

.home .overlay .title p{
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.7em;
    color: #ccc;
    font-size: 15px;
    font-weight: 400;
}
.home .overlay .title a{
    color: #fff;
    font-weight: 400;
    line-height: 1.6em;
    font-size: 16px;
    margin-right: 10px;
}

.home .overlay .title a:hover{
    color: #aaa;
}

/*----------------------------------------------------
end section home 
----------------------------------------------------*/

/*----------------------------------------------------
Start Section about
----------------------------------------------------*/
.about{
    padding: 70px 0;
}

.about .words,
.about .image{
    margin-bottom: 30px;
}

.about .words h3{
    color: #111;
    font-weight: 700;
    font-size: 22px;
}

.about .words p{
    line-height: 2em;
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin-bottom: 40px;
}

.about .words .progress{
    height: 15px;
    margin-bottom: 15px;
}

.about .words .progress .progress-bar{
    background-color: #444;
    line-height: 15px;
}
/*----------------------------------------------------
end Section about
----------------------------------------------------*/

/*----------------------------------------------------
Start Section services
----------------------------------------------------*/
.services{
    /*background-image: url(../images/stockvault-work186315.jpg);*/
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.services .overlay{
    padding: 70px 0;
    background-color: rgba(245, 245, 245, 0.95); 
}

.services .overlay .item{
    margin-bottom: 30px;
    box-shadow: 0px 0px 33px -6px #888;
    padding: 20px 15px;
    background-color: #f5f5f5;
     -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}

.services .overlay .item:hover{
    background-color: #333
}

.services .overlay .item .fa{
    color: #fff;
    font-size: 30px;
    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
    border-radius: 50%;
    padding: 15px;
    background-color: #333;
}

.services .overlay .item:hover .fa{
    background-color: #fff;
    color: #333
}

.services .overlay .item h3{
    color: #333;
    font-size: 24px;
    font-weight: 600;
    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}

.services .overlay .item:hover h3{
    color: #fff;
}

.services .overlay .item p{
    color: #666;
    font-size: 15px;
    font-weight: 400;
}

.services .overlay .item:hover p{
    color: #ccc;
}
/*----------------------------------------------------
end Section services
----------------------------------------------------*/

/*----------------------------------------------------
start my-portfolio section   
 ----------------------------------------------------*/
.my-portfolio{
    padding: 70px 0;
    width: 100%;
    
}

.my-portfolio ul{
    list-style: none;
    margin-bottom: 40px;
    text-align: center;
}

.my-portfolio ul li{
    display: inline-block;
    margin-right: 10px;
    font-size: 15px;
    cursor: pointer;
    color: #aaa;
    font-weight: 300;
}

.my-portfolio .selected{
    color: #111 !important;
    text-decoration: line-through;
}

.my-portfolio .work-area{
    position: relative;
    margin-bottom: 30px;
}

.my-portfolio .work-area .image{
    overflow: hidden
}

.my-portfolio .work-area .image img{
    width: 100%;
    height: auto;
    -webkit-transition: all 1.5s ease-in-out;
       -moz-transition: all 1.5s ease-in-out;
         -o-transition: all 1.5s ease-in-out;
            transition: all 1.5s ease-in-out;
}

.my-portfolio .work-area:hover .image img{
    transform: scale(1.2);
}

.my-portfolio .work-area .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    padding: 10%;
}

.my-portfolio .work-area .overlay h3{
    color: #333;
    font-weight: 400;
}

.my-portfolio .work-area .overlay p{
    color: #888;
    font-size: 15px;
}

.my-portfolio .work-area .overlay i{
    color: #222;
    -webkit-transition: all 0.4s ease-in-out; 
       -moz-transition: all 0.4s ease-in-out; 
         -o-transition: all 0.4s ease-in-out; 
            transition: all 0.4s ease-in-out;
    position: absolute;
    bottom: 20%;
    font-size: 25px;
}

.my-portfolio .work-area:hover .overlay{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
} 

.my-portfolio .work-area .overlay i:hover{
    transform: translateX(10px)
}

@media (max-width: 335px){
    .my-portfolio .work-area .overlay{
        padding: 1%;
    }
    
    .my-portfolio .work-area .overlay h3{
        font-size: 17px;
    }
    
    .my-portfolio .work-area .overlay p{
        font-size: 12px;
    }
}
/*----------------------------------------------------
end my-portfolio section 
----------------------------------------------------*/

/*----------------------------------------------------
start clients section 
----------------------------------------------------*/
.clients{
   padding: 70px 0;
}

.clients .item .image{
    width: 140px;
    height: 140px;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 30px;
}

.clients .item .image img{
    border-radius: 50%;
    width: 100%;
    height: auto;
}

.clients .overlay .item p{
    color: #666;
    font-weight: 300;
    margin: 0 20%;
    text-align: center;
    
}
/*----------------------------------------------------
end clients section 
----------------------------------------------------*/

/*----------------------------------------------------
Start Section blog
----------------------------------------------------*/
.blog{
    padding: 70px 0;
    background-color: #f7f7f7;
}

.blog .blog-area{
    margin-bottom: 30px;
}

.blog .blog-area .image{
    position: relative;
}

.blog .blog-area .image img{
    width: 100%;
    height: auto;
}

.blog .blog-area .image .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(240, 240, 240, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.blog .blog-area .image:hover .overlay{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
}

.blog .blog-area .image .overlay .fa{
    position: absolute;
    top: 50%;
    left: 50%;
    color: #333;
    font-size: 25px;
    transform: translateY(40px);
    transition: all 0.4s ease;
}

.blog .blog-area .image:hover .overlay .fa{
    transform: translateY(0);
}

.blog .blog-area .details{
    border: 1px solid #ccc;
    padding-left: 15px;
}

.blog .blog-area .date{
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 400;
    color: #333;
}

.blog .blog-area .date .item{
    margin-right: 10px;
}

.blog .blog-area .date .item .fa{
    margin-right: 1px;
    color: #888;
} 

.blog .blog-area h4{
    color: #222;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.blog .blog-area a{
    text-decoration: none;
}

.blog .blog-area a:hover h4{
    color: #888;
}

.blog .blog-area p{
    color: #666;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    display: block;
}

.blog .blog-area .a-btn{
    text-align: center;
    text-decoration: none;
    color: #444;
    font-weight: 400;
    border-radius: 0;
    font-size: 12px;
    border: 1px solid #888;
    padding:  10px;
    display: inline-block;
    margin-bottom: 10px;
}

.blog .blog-area .a-btn:hover{
    background-color: #333;
    color: #fff;
    border: 1px solid transparent;
}
/*----------------------------------------------------
Start Section blog
----------------------------------------------------*/

/*----------------------------------------------------
start contact-me Section
----------------------------------------------------*/
.contact {
    padding: 70px 0;
    background-color: #f7f7f7;
}

.contact .address i{
    color: #222;
    font-size: 22px;
    margin-right: 10px;
}

.contact .address p{
    color: #555;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.9em;
}

.contact-form {
    border-radius: 3px;
}

.form-group{
    margin-bottom: 0;
}

.form-control {
    display: block;
    border: 0px;
    width: 100%;
    height: 45px;
    padding: 5px 0px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #333;
    text-indent: 20px;
    letter-spacing: 1px;
    background-color: #eee;
    background-image: none;
    border-radius: 0px;
    box-shadow: none;
    margin-bottom: 30px;
    font-weight: 400;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}

.contact-form input[type='submit'] {
    padding: 10px 20px;
    color: #fff;
    font-size: 14px;
    background: #333;
    border: none;
    -webkit-transition:all .3s ease-in-out;
       -moz-transition:all .3s ease-in-out;
         -o-transition:all .3s ease-in-out;
            transition:all .3s ease-in-out;
    letter-spacing: 4px;
    outline: none;
    box-shadow: none;
    font-weight: 500;
}

.contact-form input[type='submit']:hover {
    background: #888;
    color: #fff;
    -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
         -o-transition: all 0.3s;
            transition: all 0.3s;
    outline: 0;
    box-shadow: none;
}
/*----------------------------------------------------
end contact-me Section
----------------------------------------------------*/

/*----------------------------------------------------
start social-icon-div
----------------------------------------------------*/
 .social-icon-div{
    background-color: #fff;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #aaa;
}

 .social-icon-div i{
    margin-top: 20px;
    color: #333;
    margin-right: 10px;
    font-size: 15px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-color: #fff;
    border: 1px solid #666;
    margin-bottom: 30px;
}

 .social-icon-div i:hover{
    color: #fff;
    background-color: #333;
    border: 1px solid #333;
}

/*----------------------------------------------------
end social-icon-div
----------------------------------------------------*/

/*----------------------------------------------------
start scroll-top div
----------------------------------------------------*/
#scroll-top {
    width:40px;
    height:40px;
    color:#fff;
    background-color:#444;
    text-align:center;
    position:fixed;
    right:15px;
    bottom:10px;
    z-index:9999;
    display: none;
    cursor:pointer;
    padding: 10px;
}

#scroll-top:hover {
    background-color:#888;
}

#scroll-top i{
    line-height: 15px;
}
/*----------------------------------------------------
end scroll-top div
----------------------------------------------------*/

.centralizatexto {
    text-align: center;
}
.justificatexto {
    text-align: justify;
}
.separarodape{
    margin-bottom: 60px;
}


.pandavideo{
    display: block;
    text-align: center;
}

.imgframe{
    width: 100%
}

.imgfix{
    max-width: 100%
}

.row{
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
}

.margembotao{
    margin: 10px;
}
