/*
  Theme Name: Citeno - Creative Multipurpose HTML5 Template 
  Theme URL: http://themewar.com/html/citeno
  Author: ThemeWar
  Author URI: http://themewar.com
  Description: Creative Multipurpose HTML5 Template
  Version: 1.0
*/

/*=======================================================================
[Table of contents]
=========================================================================
[01] Template Fonts
[02] Normalization Css
[03] Margin and padding setup
[04] Section setup
[05] Template Button Style
[06] Template Overlay
=========================================================================*/

/*=======================================================================
[01] Template Fonts
=========================================================================*/
@import url('https://fonts.googleapis.com/css?family=Cabin:400,400i,500,500i,600,600i,700,700i|Lato:100,100i,300,300i,400,400i,700,700i,900,900i|Poppins:300,400,500,600,700');
.cabin{
    font-family: 'Cabin', sans-serif; 
}
.lato{
    font-family: 'Lato', sans-serif; 
}
.poppins{
    font-family: 'Poppins', sans-serif;
}

/*=======================================================================
[02] Normalization Css
=========================================================================*/
htm,body{
    color: #808080;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: .56px;
} 
a{
    color: #333333;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
a:hover{
    text-decoration: none;
    color: #000;
}
a:focus{
    outline: 0;
    text-decoration: none;
}
ul,
ol{
    margin: 0;
    padding: 0;
    list-style: none;
}
button{
    border: none;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Cabin', sans-serif;
    text-transform: uppercase;
    color: #333333;
    margin: 0;
}
h6{
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 2.8px;
    font-weight: 900;
}
h5{
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 1.6px;
    font-weight: 600;
}
h4{
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.6px;
    font-weight: 700;
}
h3{
    font-size: 25px;
    line-height: 55px;
    letter-spacing: 2.5px;
    font-weight: 900;
}
h2{
    font-size: 38px;
    letter-spacing: 5.7px;
    font-weight: 700;
}
h1{
    font-size: 55px;
    letter-spacing: 5.5px;
    font-weight: 700;
    line-height: 57px;
}
blockquote{
    background: #fafafa;
    border: none;
    padding: 40px 80px;
    margin: 51px 0 47px;
}
blockquote p {
    color: #333333;
    font-size: 20px;
    letter-spacing: 0.8px;
    line-height: 34px;
    margin-bottom: 17px !important;
}
blockquote a{
    font-size: 16px;
    color: #808080;
}

.imagesDiv{
    position: relative;
    overflow: hidden;
}
.imagesDiv img{
    width: 100%;
    height: auto;
}

/*=======================================================================
[03] Margin and padding setup
=========================================================================*/
.noPadding{
    padding: 0px !important;
}
.noPaddingLeft{
    padding-left: 0px !important;
}
.noPaddingTop{
    padding-top: 0px !important;
}
.noPaddingRight{
    padding-right: 0px !important;
}
.noPaddingBottom{
    padding-bottom: 0px !important;
}
.noMargin{
    margin: 0px !important;
}
.noMarginLeft{
    margin-left: 0px !important;
}
.noMarginTop{
    margin-top: 0px !important;
}
.noMarginRight{
    margin-right: 0px !important;
}
.noMarginBottom{
    margin-bottom: 0px !important;
}

/*=======================================================================
[04] Section setup
=========================================================================*/
.commonSection{
    padding: 120px 0;
    position: relative;
}
.bggray{
    background: #fafafa;
}
.secTitle{
    margin-bottom: 70px;
}
.secTitle h2{
    color: #fff;
    line-height: .8;
    margin-bottom: 18px;
}
.secTitle h6{
    color: #92dd04;
    font-family: 'Lato', sans-serif;
    margin-bottom: 16px;
}
.secTitl p{
    color: #bfbfbf;
}
.secTitle.blackT h2{
    color: #333333;
}
.hPadding{
    padding-left: 80px;
    padding-right: 80px;
}
.hPadding240{
    padding-left: 240px;
    padding-right: 240px; 
}

/*=======================================================================
[05] Template Button Style
=========================================================================*/
.citenoBtn {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    background: #999999;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    color: #fffdfc;
    text-transform: uppercase;
    height: 50px;
    font-weight: 700;
    letter-spacing: .56px;
    line-height: 50px;
    padding: 0 33px;
    font-size: 14px;
}
.citenoBtn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #92dd04;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.citenoBtn:hover, 
.citenoBtn:focus,
.citenoBtn:active {
    color: #fff;
}
.citenoBtn:hover:before, 
.citenoBtn:focus:before, 
.citenoBtn:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/*=======================================================================
[06] Template Overlay
=========================================================================*/
.overlayB80,
.overlayB50,
.overlayB40{
    position: relative;
}
.overlayB80:before{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(51, 51, 51, .80);
}
.overlayB50:before{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(51, 51, 51, .50);
}
.overlayB40:before{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(51, 51, 51, .40);
}



/**==================== Back To top ======================**/
.showit {
    background: #92dd04;
    bottom: 100px;
    color: #ffffff;
    font-size: 20px;
    height: 40px;
    line-height: 0.8;
    padding: 10px 12px;
    position: fixed;
    right: 60px;
    text-align: center;
    width: 40px;
    z-index: 99;
}
.showit i {
    color: #ffffff;
}
.showit:hover {
    background: #333333;
    color: #ffffff;
}
