@font-face {
    font-family:'Montserrat-Regular';
    src: url(fonts/montserrat/Montserrat-Regular.otf);
}
@font-face {
    font-family:'Poppins-Regular';
    src: url(fonts/poppins/Poppins-Regular.ttf);
}

/* =============================================================================
    1. CSS RESET
    ========================================================================= */
:focus, a:active, a:focus {
  text-decoration: none;
  outline: 0; }

a, abbr, acronym, address, applet, article, aside, audio, b, big, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
/*  vertical-align: baseline;*/
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

blockquote, q {
  quotes: none; }

blockquote:after, blockquote:before, q:after, q:before {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* =============================================================================
    2. BASE STYLES
    ========================================================================= */
body {
  font-family:'Poppins-Regular';
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  color:#606060;
  background-color: #fff;
}

/*  
    2.1. TYPOGRAPHY
    ========================================================================= */
/*  2.1.1. HEADINGS
    ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family:'Poppins-Regular';
  font-weight: 400;
  color:#282828;
  margin-bottom: 10px;
  margin-top: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: 36px;
  line-height: 54px;
}

h2 {
  font-size: 30px;
  line-height: 40px;
}

h3 {
  font-size: 24px;
  line-height: 32px;
}

h4 {
  font-size: 21px;
  line-height: 30px;
}

h5 {
  font-size: 18px;
  line-height: 28px;
}

h6 {
  font-size: 15px;
  line-height: 23px;
}

/*  2.1.2. LINKS
    ------------------------------------------------------------------------- */
a {
  font-weight: 500;
  position: relative;
  color:#282828;
}
  a:hover {
    transition: all 0.3s ease-in-out 0s;
    text-decoration: none;
  }
a:visited {
    -webkit-transition: color .2s ease, background .2s ease, padding .2s ease, border .2s ease, outline .2s ease, opacity .2s ease-in-out;
    transition: color .2s ease, background .2s ease, padding .2s ease, border .2s ease, outline .2s ease, opacity .2s ease-in-out;
}
::-webkit-input-placeholder {
  color: #000;
  font-size: 14px;
}
:-moz-placeholder {
  color: #000;
  font-size: 14px;
}
::-moz-placeholder {
  color: #000;
  font-size: 14px;
}
:-ms-input-placeholder {
  color: #000;
  font-size: 14px;
}

/*  2.1.3. TEXT LEVEL ELEMENTS
    ------------------------------------------------------------------------- */
p {
  padding-bottom: 15px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
}

.text-colored {
  font-weight: 500;
}

.text-highlighted {
  color: #fff;
  padding: 0 5px;
}

strong, b {
  font-weight: 700;
}

pre {
  border-color: #eee;
  background-color: #eff2f7;
}

/*  
    LISTS   
*/
ul,
ol {
  list-style-position: inside;
}

ul li,
ol li {
  padding-bottom: 0px;
}

ul ul,
ul ol,
ol ul,
ol ol {
  padding-left: 40px;
}

img {
  max-width: 100%;
  height: auto;
}


.section-title{
    position:relative;
    padding-bottom:10px;
    margin-bottom:50px;
    text-align:center;
    background:url(images/icons/separator-green.png) center bottom no-repeat;	
}
.section-title h1{
    font-size:32px;
    line-height: 30px;
}
.section-title strong{
    font-weight: normal;
    display: block;
    font-style: italic;
    text-transform: none;
    font-size: 18px;
    margin-top: 10px;
}

/*=============== col padding ================*/

.col-zero{
    padding-left: 0px;
    padding-right: 0px;
}
.col-lr-5{
    padding-left: 5px;
    padding-right: 5px;
}
.col-lr-10{
    padding-left: 10px;
    padding-right: 10px;
}
.col-lr-15{
    padding-left: 15px;
    padding-right: 15px;
}

/*=============== col margin ================*/

.m-top10{
    margin-top: 10px;
}
.m-top20{
    margin-top: 20px;
}
.m-top30{
    margin-top: 30px;
}
.m-top40{
    margin-top: 40px;
}
.m-top50{
    margin-top: 50px;
}


/*=============== button style ================*/

.btn-y-bordered{
    background-color: transparent;
    color: #fdc029;
    border: 2px solid #fdc029;
    border-radius: 3px;
    padding: 10px 25px;
    text-transform: uppercase;
    display: inline-table;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.btn-y-bordered:hover{
    background-color: #fdc029;
    color: #fff;
    border: 2px solid #fdc029;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}



/*=============== page wrapper ================*/
#page{
    position:relative;
    margin:0 auto;
    width:100%;
    min-width:300px;
}

/*=============== preloader ================*/
.preloader{ 
    position:fixed; 
    left:0px; 
    top:0px; 
    width:100%; 
    height:100%; 
    z-index:999999; 
    background-color:#ffffff; 
    background-position:center center; 
    background-repeat:no-repeat; 
    background-image:url(images/icons/preloader.gif); 
    overflow:hidden;
}

/*====================================================================
                            header home style
====================================================================*/
.topbar{
    position: relative;
    padding: 10px 0px;
    display: block;
    background-color: rgba(11,17,30,1);
}
.topbar .topbar-left{
    padding: 0px 0px;
}
.topbar-left ul {
    padding: 0px 0px;
    list-style-type: none;
}
.topbar-left ul li {
    padding: 0px 10px;
    display: inline-block;
    color: #fff;
}
.topbar-left ul li:first-child {
    padding-left: 0px;
}
.topbar-left ul li i {
    padding-right: 10px;
    color: #fa9928;
}
.topbar-left ul li a {
    color: #fff;
}
.topbar-left ul li a:hover {
    color: #fa9928;
}
.topbar .topbar-right{
    padding: 0px 0px;
}
.topbar-right ul {
    padding: 0px 0px;
    list-style-type: none;
    text-align: right;
}
.topbar-right ul li {
    margin: 0px 2px;
    display: inline-block;
    color: #fff;
}
.topbar-right ul li:last-child {
    margin-right: 0px;
}
.topbar-right ul li i {
    color: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
}
.topbar-right ul li i:hover {
    color: #fa9928;
}

/*====================================================================
                            header home style
====================================================================*/
.header-section{
    position: relative;
    padding: 0px 0px;
    display: block;
    background-color: #fff;
}

/*
site-branding logo style
====================================================================*/
.site-branding {
    position: relative;
    padding: 20px 0px;
}

/*
header-widgets style
====================================================================*/
.header-widgets{
    padding: 26px 0px;
    float: right;
}
.header-widgets ul{
    list-style-type: none;
}
.header-widgets ul > li{
    list-style-type: none;
    float: left;
    padding-left: 30px;
    margin-left: 30px;
    padding-bottom: 0;
}
.header-widgets ul > li .icon-area {
    float: left;
    padding-right: 15px;
    position: relative;
    top: 15px;
}
.header-widgets ul > li .icon-area i {
    font-size: 24px;
    color: #fa9928;
    line-height: 45px;
    text-align: center;
    width: 45px;
    height: 45px;
    border: 2px solid #e1e1e1;
}
.header-widgets ul > li .text-area {
    float: right;
}
.header-widgets ul > li .text-area span {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.header-widgets ul > li .text-area p, .header-widgets ul > li .text-area a {
    font-size: 14px;
    padding-bottom: 0;
    font-weight: normal;
}

/*
menu style
====================================================================*/
.main-menu{
    position: relative;
    width: 100%;
    display: block;
    background-color: rgba(19,29,51,1);
    padding: 0px 0px;
}
.navbar-brand {
    float: right;
}
.navbar-toggle {
    float: left;
}
.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
    background-color: transparent;
}
.navbar-inverse .navbar-toggle {
    border-color: transparent;
}
.navbar-toggle .icon-bar {
    width: 30px;
    height: 3px;
}
.navbar {
    margin-bottom: 0px;
    border-radius: 0;
}
.navbar-nav {
    float: none;
}
.navbar-inverse {
    background-color: transparent;
    border-color: transparent;
    border: 0px;
}
.navbar-right > li > a > i {
    color:#fff;
}
.navbar-collapse {
    padding-right: 0px;
    padding-left: 0px;
}
.navbar .nav, .navbar .nav > li {
    display:inline-block;
    padding: 0px;
    margin: 0px;
}
.navbar-inverse .navbar-nav > li > a {
    padding: 20px 20px;
    color:#fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.navbar-inverse .navbar-nav > li > a.active {
    color: #fa9928;
}
.navbar-inverse .navbar-nav > li > a:hover {
    color: #fa9928;
}
.navbar-nav > li:hover {
    background-color: transparent;
    color: #fa9928;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    background-color: transparent;
    color: #fa9928;
}
.dropdown-menu {
    background-color: rgba(19,29,51,1);
}
.dropdown-menu > li > a {
    padding: 15px 20px;
    font-weight: 600;
    color:#fff;
    border-bottom: 1px solid #0b111e;
    text-transform: uppercase;
}
.dropdown-menu > li:last-child a {
    border-bottom: none;
}
.dropdown-menu > li > a:hover {
    background-color: transparent;
    color: #fa9928;
}
.mega-dropdown {
    position: static !important;
}
.mega-dropdown-menu {
    padding: 20px 0px;
    width: 100%;
    box-shadow: none;
    -webkit-box-shadow: none;
}
.mega-dropdown-menu > li > ul {
    padding: 0;
    margin: 0;
}
.mega-dropdown-menu > li > ul > li {
    list-style: none;
}
.mega-dropdown-menu > li > ul > li > a {
    display: block;
    color:#212836;
    padding: 3px 5px;
    text-transform: capitalize;
}
.mega-dropdown-menu > li > ul > li > a:hover {
    color: rgba(53, 152, 219, 1);
}
.mega-dropdown-menu > li ul > li > a:hover,
.mega-dropdown-menu > li ul > li > a:focus {
    text-decoration: none;
}
.mega-dropdown-menu .dropdown-header {
    font-size: 18px;
    color:#212836;
    padding: 5px 60px 5px 5px;
    line-height: 30px;
}
.carousel-control {
    width: 30px;
    height: 30px;
    top: -35px;
}
.left.carousel-control {
    right: 30px;
    left: inherit;
}
.carousel-control .glyphicon-chevron-left, 
.carousel-control .glyphicon-chevron-right {
    font-size: 12px;
    background-color: #fff;
    line-height: 30px;
    text-shadow: none;
    color: #333;
    border: 1px solid #ddd;
}


/*===============================================
                banner-section
=================================================*/

.banner-section{
    position: relative;
	padding:0px 0px;
        display: block;
}
.jssorb05 {
    position: absolute;
}
.jssorb05 div, .jssorb05 div:hover, .jssorb05 .av {
    position: absolute;
    /* size of bullet elment */
    width: 16px;
    height: 16px;
    background:url(images/icons/b12.png) no-repeat;
    overflow: hidden;
    cursor: pointer;
}
.jssorb05 div {
    background-position: -7px -7px;
}
.jssorb05 div:hover, .jssorb05 .av:hover {
    background-position: -37px -7px;
}
.jssorb05 .av {
    background-position: -67px -7px;
}
.jssorb05 .dn, .jssorb05 .dn:hover {
    background-position: -97px -7px;
}
.jssora22l, .jssora22r {
    display: block;
    position: absolute;
    /* size of arrow element */
    width: 40px;
    height: 58px;
    cursor: pointer;
    background:url(images/icons/a19.png)center center no-repeat;
    overflow: hidden;
}
.jssora22l {
    background-position: -10px -31px;
}
.jssora22r {
    background-position: -70px -31px;
}
.jssora22l:hover {
    background-position: -130px -31px;
}
.jssora22r:hover {
    background-position: -190px -31px;
}
.jssora22l.jssora22ldn {
    background-position: -250px -31px;
}
.jssora22r.jssora22rdn {
    background-position: -310px -31px;
}

    


/*====================================================================
                    content wrapper style
====================================================================*/

.section-wrapper{
    position: relative;
    padding: 0 0;
}


/*
parallax-about style
==============================================================*/

.parallax-offer{
    position: relative;
    padding: 0px 0px;
    background-color: #fff;
}
.parallax-offer .parallax-offer-content{
    padding: 60px 0px;
    position: relative;
}
.offer-item{
    padding: 0px 0px;
    background-color: #f7f7f7;
    transition: all 0.5s ease-in-out 0s;
}
.offer-item:hover{
    background-color: #fa9928;
    transition: all 0.5s ease-in-out 0s;
}
.offer-item:hover a{
    color: #fff;
}
.offer-item .offer-item-image{
    padding: 0px 0px;
}
.offer-item .offer-item-image img{
    padding: 0px 0px;
    min-height: 215px;
    max-height: 215px;
    width: 100%;
}
.offer-item .offer-item-detail{
    padding: 15px 15px;
    color:#282828;
    font-size: 20px;
}
.offer-item-detail a{
    color:#282828;
}
.offer-item-detail i{
    padding-right: 10px;
    font-size: 30px;
}


/*
parallax-services style
==============================================================*/

.parallax-services{
    position: relative;
    padding: 0px 0px;
    background-color: #f7f7f7;
}
.parallax-services .parallax-services-content{
    padding: 60px 0px;
    position: relative;
}
.services-item{
    padding: 0px 10px;
    margin: 15px 0px;
    transition: all 0.5s ease-in-out 0s;
}
.services-item-icon{
    padding: 0px 10px;
}
.services-item-icon img{
    width: 70px;
    height:60px;
    border: 5px solid #e8e8e8;
}
.services-item:hover .services-item-icon img{
    border: 5px solid #fa9928;
    transition: all 0.5s ease-in-out 0s;
}
.services-item:hover .services-item-icon i{
    background-color: #48c7ec;
    transition: all 0.5s ease-in-out 0s;
}
.services-item a {
    color: #282828;
}
.services-item .services-item-icon {
    padding-bottom: 15px;
}
.services-item-icon i {
    padding: 0px 0px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    background-color: #fa9928;
}
.services-item .services-item-text {
    padding: 0px 0px;
}
.services-item:hover .services-item-text h3{
    color: #fa9928;
    transition: all 0.5s ease-in-out 0s;
}
.services-item-text h3 {
    padding: 0px 0px;
    font-size: 20px;
    font-weight: 600;
}


/*
parallax-about style
==============================================================*/

.parallax-about{
    position: relative;
    padding: 0px 0px;
    background-color: #fff;
    transition: all 0.5s ease-in-out 0s;
}
.parallax-about .parallax-about-content{
    padding: 60px 0px;
    position: relative;
}
.parallax-about-content .title-about{
    padding-bottom: 10px;
}
.title-about h3{
    font-size: 20px;
    font-weight: 600;
}
.parallax-about-content .about-detail{
    padding: 0px 0px;
    transition: all 0.5s ease-in-out 0s;
}
.parallax-about-content .faq-detail{
    padding: 0px 0px;
    transition: all 0.5s ease-in-out 0s;
}




/*
parallax-testimonial style
==============================================================*/

.parallax-testimonial{
    position: relative;
    padding: 0px 0px;
    background-image: url(images/bg001.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.parallax-testimonial:before{
    position: absolute;
    content: '';
    padding: 0px 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.parallax-testimonial-content{
    padding: 40px 0px;
    position: relative;
}

.parallax-testimonial-text{
    position: relative;
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 50px;
}
.carousel-indicators .active{
    background: #31708f;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: visible;
}
.content{
    margin-top:0px;
}
.adjust1{
    float:left;
    width:100%;
    margin-bottom:0;
}
.adjust2{
    margin:0;
}
.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 0px;
    background-color: transparent;
    border: none;
}
.carousel-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}
.carousel-indicators li{
    border :1px solid #ccc;
}
.carousel-control{
    color:#31708f;
    width:5%;
}
.carousel-control:hover, .carousel-control:focus{
    color:#31708f;
}
.carousel-control.left, .carousel-control.right {
    background-image: none;
}
.media-object{
    margin:auto;
    margin-top:15%;
}
.testi-title {
    padding: 9px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #fa9928;
}
.testi-text {
    padding: 5px 150px;
    text-align: center;
    color: #fff;
}
.testi-text p {
    padding: 0px 0px;
}




/*====================================================================
                            footer style
====================================================================*/

.footer-section{
    position: relative;
    padding: 0px 0px;
    display: block;
    background-color: #131d33;
}
.footer-section .footer-contant{
    padding: 50px 0px 0px 0px;
    color: #acb4b5;
}

.footer-contant .footer-branding{
    padding: 0px 0px;
    margin-bottom: 15px;
}
.footer-contant .footer-items{
    padding: 0px 0px 30px 0px;
}
.footer-items .item-footer{
    padding: 0px 0px;
}
.item-footer .footer-title{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: none;
}
.item-footer .footer-detail{
    font-size: 14px;
    color: #acb4b5;
}
.footer-detail p {
    font-size: 14px;
}
.footer-detail a {
    color: #acb4b5;
    font-size: 16px;
}
.footer-detail h3 {
    color: #acb4b5;
}
.footer-detail .imp-links{
    font-size: 14px;
}
.imp-links ul{
    list-style-type: none;
}
.imp-links ul li{
    display: block;
    padding: 5px 0px;
}
.imp-links ul li a:hover{
    color: #ffd255;
}
.footer-detail .social-links{
    color: #fff;
    font-size: 14px;
}
.social-links ul{
    list-style-type: none;
}
.social-links ul li{
    display: inline-block;
    padding: 0px 5px;
}
.social-links ul li i{
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: transparent;
    color: #acb4b5;
    border: 2px solid #acb4b5;
    border-radius: 50%;
    text-align: center;
}
.social-links ul li i:hover{
    background-color: #acb4b5;
    color: #0b111e;
    border: 2px solid #acb4b5;
}
.footer-detail .rating{
    font-size: 14px;
    margin-top: 20px;
}
.footer-detail .rating i{
    color: #ffd255;
}
.footer-contant .footer-copy{
    padding: 20px 0px;
    background-color: #0b111e;
}
.footer-copy .copy-text{
    padding: 0px 0px;
    color: #acb4b5;
}
.copy-text ul{
    list-style-type: none;
}
.copy-text ul li{
    padding: 0px 10px;
    border-right: 1px solid #e7e7e7;
    display: inline-block;
    font-weight: 700;
}
.copy-text ul li:last-child{
    border-right: none;
}
.footer-copy .copy-powered{
    padding: 0px 0px;
    color: #acb4b5;
    text-align: right;
}
.copy-powered a{
    color: #fa9928;
}


/*====================================================================
                    default section style
====================================================================*/

.section-default{
    position: relative;
    padding: 0px 0px;
    background-color: #fff;
}
.section-default .default-content{
   padding: 47px 0px;
}
.section-default h1{
    font-size: 36px;
    font-weight: 700;
}




/*===============================================
                inrernal banner-section
=================================================*/

.internal-banner{
    position: relative;
    padding:0px 0px;
    background-image: url(images/bg001.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.internal-banner::before{
    position: absolute;
    content: "";
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    display: block;
}
.internal-banner .internal-banner-content{
    position: relative;
    padding: 50px 0px 50px 0px;
    text-align: center;
}
.internal-banner-content .int-banner-title {
    padding-bottom: 20px;
    color: #fff;
    font-size: 40px;
}
.internal-banner-content .banner-breadcrumb {
    padding:0px 0px;
    color: #fff;
    font-weight: 700;
}
.banner-breadcrumb a{
    color: #fa9928;
    font-weight: 600;
}
.banner-breadcrumb a:hover{
    color: #fff;
}


/*===============================================
                contact page style
=================================================*/

.contact-details {
    position: static;
    padding: 20px 0px;
}
.contact-details-left {
    border: solid 1px #f1f1f1;
    padding: 0px 20px;
    padding-top: 20px;
    padding-bottom: 30px;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}
.contact-heading1 {
}
.contact-heading1 h1 {
    font-size: 18px;
    text-transform: uppercase;
}
.contact-heading-link1 {
}
.contact-heading-link1 ul {
    list-style-type: none;
}
.contact-heading-link1 ul li {
    line-height: 30px;
}
.contact-heading-link1 i {
    padding-right: 10px;
    font-size: 18px;
}
.contact-heading-link1 span {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
.contact-heading-link1 p {
    font-size: 14px;
    padding-left: 20px;
}
.contact-heading2 {
    padding-top: 40px;
    padding-bottom: 10px;
}
.contact-heading2 h1 {
    font-size: 18px;
}
.contact-heading-link2 {
}
.contact-heading-link2 ul {
    list-style-type: none;
}
.contact-heading-link2 ul li {
    line-height: 30px;
}
.contact-heading-link2 ul li a {
}
.contact-heading-link2 i {
    padding-right: 10px;
    font-size: 18px;
}

.contact-details-right {
    border: solid 1px #f1f1f1;
    padding: 0px 20px;
    padding-bottom: 20px;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
.contact-details-right label {
    width: 100%;
    padding: 13px 0px;
    font-weight: 700;
}
.contact-details-right label span {
    color: #f00;
}
.contact-details-right input[type="text"] {
    padding: 8px 10px;
    width: 100%;
    color: #000;
}
.contact-details-right textarea {
    padding: 8px 10px;
    width: 100%;
    color: #000;
}
.contact-details-right input[type="submit"] {
    margin-top: 20px;
    padding: 10px 40px;
    border-radius: 3px;
    background-color: #fa9928;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 700;
}
.contact-details-right input[type="submit"]:hover {
    opacity: 0.8;
}

/*===============================================
               gallery
=================================================*/


.gallery-item{
    padding: 0px 0px;
    background-color: #f7f7f7;
    transition: all 0.5s ease-in-out 0s;
}
.gallery-item:hover{
    background-color: #fa9928;
    transition: all 0.5s ease-in-out 0s;
}
.gallery-item:hover a{
    color: #fff;
}
.gallery-item .gallery-item-image{
    padding: 0px 0px;
}
.gallery-item .gallery-item-image img{
    padding: 0px 0px;
    min-height: 215px;
    max-height: 215px;
    width: 100%;
}
.gallery-item .gallery-item-detail{
    padding: 15px 15px;
    color:#282828;
    font-size: 20px;
    text-align: center;
    color:#282828;
}
.gallery-item-detail a{
    color:#282828;
}
.gallery-item-detail i{
    padding-right: 10px;
    font-size: 30px;
}


/*===============================================
                contact page style
=================================================*/
.feature-item{
    position: relative;
    padding: 0px 0px;
}
.feature-item figure {
    padding-bottom: 20px;
    border-radius: 3px;
    overflow: hidden;
}
 .feature-item figure img {
    width: 100%;
    min-height: 200px;
    max-height: 200px;
}
.feature-item h4{
   font-size: 18px;
   text-align: center;
   padding: 0px 0px;
}
.feature-item p{
   
   text-align: center;
   padding: 2px 0px;
}
.feature-item a{
   
   text-align: center;
   padding: 0px 0px;
    color: #fa9928;
    font-weight: bold;
}
.feature-item a:hover{
   color: #000;
}

/*===============================================
                portfolio-grid
=================================================*/


.gallery-item {
    position: relative;
    margin: 20px 0px;
   
}
.gallery-item-image{
    
    position:relative;
}

.gallery-item img {
    width: 100%;
    min-height: 200px;
    max-height: 200px;
}
.gallery-item .gallery-title {
    padding: 15px 10px;
    font-weight: normal;
    text-align: center;
    color: #000;
    font-size: 18px;
}
.gallery-item .gallery-title a {
    color: #000;
}
.gallery-item:hover .gallery-item-overlay {
    display: block;
}

.gallery-item-overlay {
        position: absolute;
      top: 6%;
       left: 5%;
      padding: 76px 0px;
        background-color: rgba(0, 0, 0, 0.4);
        display: none;
        width: 90%;
        height: 90%;
        transition: all 0.8s ease-in-out 0s;
}
.gallery-item-overlay .overlay-content {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 9999;
    transition: all 0.8s ease-in-out 0s;
}
.gallery-item-overlay .overlay-content ul {
    list-style-type: none;
    text-align: center;
    z-index: 99999;
}
.gallery-item-overlay .overlay-content ul li {
    display: block;
    font-size: 18px;
    color: #fff;
    padding: 0px 0px;
}
.gallery-item-overlay .overlay-content ul li a {
    color: #fff;
    padding: 5px 20px;
    display: inline-table;
}


/* =============================================================================
    22. blog-grid
    ========================================================================= */

.blog-post {
    position: relative;
    margin-bottom: 50px;
}
.blog-post .post-image {
    display: block;
    overflow: hidden;
}
.blog-post .post-image img {
    position: relative;
    width: 100% !important;
    max-width: 100%;
    min-height: 250px;
    max-height: 250px;
    transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
}
.blog-post .post-image:hover img{
    transform:scale(1.05,1.05);
    -webkit-transform:scale(1.05,1.05);
    -ms-transform:scale(1.05,1.05);
    -o-transform:scale(1.05,1.05);
    -moz-transform:scale(1.05,1.05);	
}
.full-image {
    width: 100%;
    margin-bottom: 30px;
}
.blog-post h4 a {
    color: #242424;
}
.blog-post h4 a:hover {
    color:#fa9928;
}
.blog-post .post-detail {
    position: relative;
    margin-bottom: 15px;
}
.blog-post .post-detail li {
    display: inline-block;
    padding: 0px 20px 0px 0px;
}
.blog-post .post-detail li a {
    color: #666666;
    font-size: 12px;
    font-style: italic;
}
.blog-post .post-detail i {
    color: #fa9928;
}
.btn-style-6 {
    background-color: #fa9928;
    border: 2px solid #fa9928;
    padding: 7px 25px;
    text-transform: capitalize;
    color: #fff;
    display: inline-table;
}

/*  22.2. blog pagination styles
    ------------------------------------------------------------------------- */

.blog-pagination {
    position: relative;
}
.blog-pagination li {
    position: relative;
    display: inline-block;
    margin: 0px 1px;
}
.blog-pagination li a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 8px 13px;
    font-size: 16px;
    text-transform: uppercase;
    min-width: 40px;
    border: 1px solid #fa9928;
    color: #999999;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
}
.blog-pagination li a:hover, .blog-pagination li a.active {
    color: #ffffff;
    background-color:  #fa9928;
}


/*  22.1. blog comments section styles
    ------------------------------------------------------------------------- */

.comment-sec {
    position: relative;
}
.comment-title {
    margin: 0px 0px 30px 0px;
}
.comment-title h4 {
    text-transform: uppercase;
}
.comment-title i {
    color: #60c926;
}
.comment-box {
    position: relative;
    margin: 0px 0px 30px 0px;
    padding: 0px 0px 20px 110px;
    border-bottom: 1px solid #f1f1f1;
}
.comment-box .author-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 90px;
    height: 90px;
    border: 1px solid #f1f1f1;
}
.comment-box .author-thumb img {
    width: 100%;
    height: 100%;
    display: block;
}
.comment-box .comment-info {
    margin-bottom: 10px;
    color: #666;
}
.comment-box .comment-info a {
    color: #60c926;
}
.comment-form {
    position: relative;
}
.comment-form input[type="text"], textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 25px;
    padding: 12px 20px;
    border: 1px solid #dddddd;
    background-color: #fff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}
.clients{
    position: relative;
    padding: 0px 0px;
    background-image: url(images/bg001.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
