@charset "utf-8";

/* CSS Document */



 

 

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

@import url('font-awesome.css');

@import url('flaticon.css');

@import url('animate.css');

@import url('owl.css');

 

@import url('hover.css');

 

 



/*** 



====================================================================

    Reset

====================================================================



 ***/



* {

    margin: 0px;

    padding: 0px;

    border: none;

    outline: none;

}





/*** 



====================================================================

    Global Settings

====================================================================



 ***/



body {

    font-size: 15px;

    color: #777777;

    line-height: 1.8em;

    font-weight: 400;

    background: #ffffff;

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center top;

    -webkit-font-smoothing: antialiased;

    font-family:  'Montserrat', sans-serif;

}



a {

    text-decoration: none;

    cursor: pointer;

    color: #d0d8dd;

}



a:hover,

a:focus,

a:visited {

    text-decoration: none;

    outline: none;

}



h1,

h2,

h3,

h4,

h5,

h6 {

    position: relative;

    font-weight: 700;

    margin: 0px;

    background: none;

    line-height: 1.6em;

    color: #222;

    font-family:  'Montserrat', sans-serif;

}



input,

button,

select,

textarea {}



p {

    position: relative;

    line-height: 1.8em;

}



.strike-through {

    text-decoration: line-through;

}



.auto-container {

    position: static;

    max-width: 95%;

    padding: 0px 15px;

    margin: 0 auto;

}



.page-wrapper {

    position: relative;

    margin: 0 auto;

    width: 100%;

    min-width: 300px;

}



ul,

li {

    list-style: none;

    padding: 0px;

    margin: 0px;

}



.theme-btn {

    display: inline-block;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.grey-bg {

    background-color: #f6f6f6;

}





/*Btn Style One*/



.btn-style-one {

    position: relative;

    padding: 10px 25px;

    line-height: 24px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 2px;

    border-radius: 2px;

    background-color: #8a5717;

    border: 2px solid #8a5717;

    text-transform: uppercase;

    font-family:  'Montserrat', sans-serif;

}



.btn-style-one:hover {

    color: #333;

    background: none;

}





/*Btn Style Two*/



.btn-style-two {

    position: relative;

    padding: 10px 20px;

    line-height: 24px;

    color: #ffffff;

    font-size: 14px;

    border-radius: 5px;

    background: none;

    letter-spacing: 2px;

    font-weight: 700;

    text-transform: capitalize;

    border: 2px solid #a58c3d;

    font-family:  'Montserrat', sans-serif;

}



.btn-style-two:hover {

    background: #8a5717;

    color: #ffffff;

}



.theme_color {

    color: #a58c3d;

}



.no-padd {

    padding: 0 !important;

}



img {

    display: inline-block;

    max-width: 100%;

}



.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);

}





/*** 



====================================================================

    Scroll To Top style

====================================================================



***/



.scroll-to-top {

    position: fixed;

    bottom: 15px;

    right: 15px;

    width: 40px;

    height: 40px;

    color: #ffffff;

    font-size: 13px;

    text-transform: uppercase;

    line-height: 38px;

    text-align: center;

    z-index: 100;

    cursor: pointer;

    border-radius: 50%;

    background: #1c1c1c;

    display: none;

    -webkit-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    -moz-transition: all 300ms ease;

    transition: all 300ms ease;

}



.scroll-to-top:hover {

    color: #ffffff;

    background: #8a5717;

}





/*** 



====================================================================

    Main Header style

====================================================================



***/



.main-header {

    position: relative;

    left: 0px;

    top: 0px;

    z-index: 999;

    width: 100%;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

}





/*Sticky Header*/



.sticky-header {

    position: fixed;

    opacity: 0;

    visibility: hidden;

    left: 0px;

    top: 0px;

    width: 100%;

    padding: 0px 0px;

    background: #ffffff;

    z-index: 0;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.07);

}



.sticky-header .logo {

    padding: 5px 0;

}

.sticky-header .logo img{

  max-height: 60px;

}





.fixed-header .sticky-header {

	    background: linear-gradient(-70deg, #8a5717 75%, #fff 75%);

    z-index: 999;

    opacity: 1;

    visibility: visible;

    -ms-animation-name: fadeInDown;

    -moz-animation-name: fadeInDown;

    -op-animation-name: fadeInDown;

    -webkit-animation-name: fadeInDown;

    animation-name: fadeInDown;

    -ms-animation-duration: 500ms;

    -moz-animation-duration: 500ms;

    -op-animation-duration: 500ms;

    -webkit-animation-duration: 500ms;

    animation-duration: 500ms;

    -ms-animation-timing-function: linear;

    -moz-animation-timing-function: linear;

    -op-animation-timing-function: linear;

    -webkit-animation-timing-function: linear;

    animation-timing-function: linear;

    -ms-animation-iteration-count: 1;

    -moz-animation-iteration-count: 1;

    -op-animation-iteration-count: 1;

    -webkit-animation-iteration-count: 1;

    animation-iteration-count: 1;

}



.main-header .header-upper {

    position: relative;

    background: linear-gradient(-70deg, #8a5717 75%, #fff 75%);

	font-family:  'Montserrat', sans-serif;

    z-index: 5;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

}



.main-header .header-upper .logo img {

    position: relative;

    display: inline-block;

    max-width: 100%;

}



.main-header .logo-outer {

    position: relative;

    z-index: 25;

    padding: 35px 0px;

}



.main-header .logo-outer .logo img {

    position: relative;

    display: inline-block;

    max-width: 100%;

}



.main-header .header-upper .upper-right {

    position: relative;

    padding-top: 33px;

}



.main-header .info-box {

    position: relative;

    float: left;

    min-height: 56px;

    margin-left: 35px;

    font-size: 13px;

    color: #777777;

    text-transform: uppercase;

    padding: 6px 0px 20px 75px;

}



.main-header .info-box .icon-box {

    position: absolute;

    left: 0px;

    top: 0px;

    width: 58px;

    height: 58px;

    color: #8a5717;

    font-size: 28px;

    text-align: center;

    line-height: 52px;

    border-radius: 50%;

    border: 2px dashed #e0e0e0;

    -moz-transition: all 300ms ease;

    -webkit-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    transition: all 300ms ease;

}



.main-header .info-box li {

    position: relative;

    line-height: 20px;

    color: #777777;

    font-size: 16px;

    margin-bottom: 5px;

    font-weight: 300;

    text-transform: capitalize;

}





.main-header .info-box strong {

    font-weight: 500;

    color: #333333;

    font-size: 17px;

    font-family:  'Montserrat', sans-serif;

}



.main-header .header-lower {

    position: relative;

    top: 0px;

    width: 100%;

    z-index: 5;

}



.nav-outer.menu-bg {

    background: #49100d;

    padding-left: 20px;

    margin-bottom: -35px;

}



.main-header .nav-outer {

    position: relative;

    padding-left: 310px;

}



.main-menu {

    position: relative;

}



.main-menu .navbar-collapse {

    padding: 0px;

}



.main-menu .navigation {

    position: relative;

    margin: 0px;

}



.main-menu .navigation>li.home>a {

    padding-left: 20px;

}



.main-menu .navigation>li.home>a:after {

    position: absolute;

    content: '\f015';

    left: 0px;

    top: 19px;

    font-size: 16px;

    font-family: 'FontAwesome';

}



.main-menu .navigation>li {

    position: relative;

    float: left;

    margin-right: 15px;

}



.main-menu .navigation>li:last-child {

    margin-right: 0px;

}



.main-header .sticky-header .main-menu .navigation>li {

    margin: 0px;

    border: 0px;

}



.main-menu .navigation>li>a {

    position: relative;

    display: block;

    font-size: 14px;

    color: #fff;

    line-height: 30px;

    font-weight: 600;

    letter-spacing: 1px;

    opacity: 1;

    text-transform: uppercase;

    padding: 20px 0px 20px 0px;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

    	font-family: 'Montserrat', sans-serif;

}



.main-menu .navigation>li.dropdown a {

    padding-right: 15px;

}



.main-menu .navigation>li:last-child>a {

    background: none;

}



.main-header .sticky-header .main-menu .navigation>li>a {

    color: #181818;

  margin-right: 25px!important;

  margin-top: 10px!important;

    line-height: 30px;

    font-size: 14px;

    font-weight: 600;

    min-height: 0px;

    background: none;

   

}



.main-header .main-menu .navigation>li.dropdown>a:before {

    font-family: 'FontAwesome';

    content: "\f107";

    position: absolute;

    display: none;

    right: 0px;

    font-size: 14px;

}



.sticky-header .main-menu .navigation>li>a:before {

    display: none;

}



.main-menu .navigation>li:hover>a,

.main-menu .navigation>li.current>a,

.main-menu .navigation>li.current-menu-item>a {

    color: #8a5717;

    opacity: 1;

}



 



.main-menu .navigation>li:hover>a:after {

    opacity: 1;

}



.main-menu .navigation>li>ul {

    position: absolute;

    left: 0px;

    top: 100%;

    width: 250px;

    padding: 0px;

    z-index: 100;

    display: none;

    background: #ffffff;

    border-top: none;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);

    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);

    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);

    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);

    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);

}



.main-menu .navigation>li>ul.from-right {

    left: auto;

    right: 0px;

}



.main-menu .navigation>li>ul>li {

    position: relative;

    width: 100%;

    border-bottom: 1px solid #fff;

}



.main-menu .navigation>li>ul>li:last-child {

    border-bottom: none;

}



.main-menu .navigation>li>ul>li>a {

    font-family:  'Montserrat', sans-serif;

position: relative;

margin-top: 0!important;

    display: block;

    padding: 8px 20px 5px!important;

    line-height: 24px;

    font-weight: 400;

    font-size: 14px;

    color: #222;

    text-align: left;

    text-transform: uppercase;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

    

}



.main-menu .navigation>li>ul>li>a:before {

    content: '';

    position: absolute;

    left: 0px;

    top: 50%;

    height: 16px;

    margin-top: -8px;

    border-left: 2px solid #8a5717;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

}



.main-menu .navigation>li>ul>li:hover>a {

    color: #ffffff;

    background-color: #8a5717;

}



.main-menu .navigation>li>ul>li:hover>a:before {

    border-color: #ffffff;

}



.main-menu .navigation>li>ul>li>ul {

    position: absolute;

    left: 100%;

    top: 0px;

    width: 250px;

    padding: 0px;

    z-index: 100;

    display: none;

    background: #1c1c1c;

    border-top: 2px solid #8a5717;

    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);

    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);

    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);

    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);

    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);

}



.main-menu .navigation>li>ul>li>ul>li {

    position: relative;

    width: 100%;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}



.main-menu .navigation>li>ul>li>ul>li:last-child {

    border-bottom: none;

}



.main-menu .navigation>li>ul>li>ul>li>a {

    position: relative;

    display: block;

    padding: 14px 20px;

    line-height: 24px;

    font-weight: 400;

    font-size: 15px;

    color: #ffffff;

    text-align: left;

    text-transform: capitalize;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

}



.main-menu .navigation>li>ul>li>ul>li>a:before {

    content: '';

    position: absolute;

    left: 0px;

    top: 50%;

    height: 16px;

    margin-top: -8px;

    border-left: 2px solid #8a5717;

}



.main-menu .navigation>li>ul>li>ul>li>a:hover {

    color: #ffffff;

    background-color: #8a5717;

}



.main-menu .navigation>li>ul>li>ul>li:hover>a:before {

    border-color: #ffffff;

}



.main-menu .navigation>li.dropdown:hover>ul {

    visibility: visible;

    opacity: 1;

    top: 100%;

}



.main-menu .navigation li>ul>li.dropdown:hover>ul {

    visibility: visible;

    opacity: 1;

    left: 100%;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

}



.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {

    position: absolute;

    right: 10px;

    top: 6px;

    width: 34px;

    height: 30px;

    border: 1px solid #ffffff;

    text-align: center;

    font-size: 16px;

    line-height: 26px;

    color: #ffffff;

    cursor: pointer;

    z-index: 5;

    display: none;

}



.main-header .btn-box {

    position: absolute;

    left: 0px;

    top: -8px;

    z-index: 12;

        border: 4px solid #49100d;

}



.main-header .btn-box .brochure-btn {

    position: relative;

     

    color: #333333;

    font-size: 16px;

    font-weight: 700;

    padding: 0;

    background-color: #fff;

    text-transform: capitalize;

    font-family:  'Montserrat', sans-serif;

}

.main-header .btn-box .brochure-btn img { max-height:80px;}



.main-header .btn-box .brochure-btn:hover {

    background: #333333;

    color: #ffffff;

}



.main-header .header-top {

    position: relative;

    background-color: #444444;

}



.main-header .header-top .top-left {

    position: relative;

    float: left;

    padding: 0;

}



.main-header .header-top .top-left ul li {

    position: relative;

    margin-right: 25px;

    font-size: 15px;

    color: #ffffff;

    display: inline-block;

}



.main-header .header-top .donation-btn .btn-style-two {

    border-radius: 0px;

    font-size: 15px;

    font-weight: 600;

    text-transform: uppercase;

}



.main-header .header-top .donation-btn .btn-style-two:hover {

    background: #ffffff;

    color: #8a5717;

    border-color: #ffffff;

}



.main-header .header-top .top-left .links-nav {

    display: inline-block;

}



.main-header .header-top .top-left ul li .icon {

    font-size: 14px;

    margin-right: 10px;

}



.main-header .header-top .top-left ul li a {

    font-size: 15px;

    font-weight: 400;

    -webkit-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    -moz-transition: all 300ms ease;

    transition: all 300ms ease;

}



.main-header .header-top .top-right .social-icon-four {

    float: left;

}



.main-header .header-top .top-right>ul {

    display: inline-block;

}



.main-header .header-top .top-right {

    position: relative;

    float: right;    padding: 5px 0 0 0;

}



.main-header .header-top .top-right ul li.number {

    position: relative;

    font-size: 18px;

    font-weight: 500;

    color: #ffffff;

    padding-left: 45px;

    line-height: 1.4em;

    margin-top: 5px;

    float: left;

    text-align: left;

    margin-right: 35px;

    font-family:  'Montserrat', sans-serif;

}



.main-header .header-top .top-right ul li.number .help {

    font-size: 15px;

}



.main-header .header-top .top-right ul li.number .icon {

    position: absolute;

    left: 0px;

    top: 8px;

    font-size: 36px;

    line-height: 1em;

}



.main-header .header-top .top-right li {

    position: relative;

    display: inline-block;

}





.main-header .header-top .top-right li a:hover {

   color:#fff;

}



.main-header .header-top .top-right .quote-btn {

    position: relative;

    padding: 0 10px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    line-height: 32px;

    display: inline-block;

    background-color: #8a5717;

    font-family:  'Montserrat', sans-serif;

    -webkit-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    -moz-transition: all 300ms ease;

    transition: all 300ms ease;

}

 .main-header .language .dropdown-menu {

    width: 180px;

    padding: 0px;

    border: 0px;

    margin-top: 17px;

    border-radius: 0px;

    background-color: #222222;

    border-top: 3px solid #8a5717;

}



.main-header li.language {

    padding-left: 20px;

    padding-right: 30px;

    line-height: 1.4em;

}



.main-header li.language a {

    border: 0px;

    padding: 0px;

    background: none;

    color: #9799a9;

}



.main-header li.language a:hover {

    background: none;

}



.main-header .language .dropdown-menu>li {

    padding: 0px !important;

    margin: 0px !important;

    float: none;

    display: block !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.20);

}



.main-header .language .dropdown-menu>li>a {

    padding: 10px 20px !important;

    color: #ffffff !important;

    text-align: left;

}



.main-header .language .dropdown-menu>li>a:hover {

    color: #ffffff;

    background-color: #8a5717;

}





/*header-style-two*/



.main-header.header-style-two .main-menu .navigation>li>a {

    color: #fff;

    margin-top: 20px;

    padding: 5px 0;

     border-top:2px solid #c9b295 ;

    border-bottom:2px solid #c9b295 ;

    margin-right: 15px;

}



@media (max-width: 1199px) {

	

	.main-header .header-upper {

   

    background: linear-gradient(-70deg, #8a5717 74%, #fff 74%);

	 

     

}

.header-style-two .main-menu .navigation > li {

    

    margin-right: 5px;

}

.main-header .header-upper .logo img {

    position: relative;

    display: inline-block;

    max-width: 95%;

}



.main-menu .navigation>li>a {     font-size: 13px;

 

    line-height:24px; }



.main-header.header-style-two .main-menu .navigation>li>a {

 color: #ffffff;

    margin-top: 20px;

    padding: 5px 0;

    border-top: 2px solid #8a5717;

    border-bottom: 2px solid #8a5717;

    margin-right: 10px;

}



.main-header .sticky-header .main-menu .navigation>li>a {

    font-size: 13px;

 margin-right: 15px!important;

    line-height:24px; 

}





}





.main-header.header-style-two .main-menu .navigation>li:hover a {

    border-top:1px solid #fff;

    border-bottom:1px solid #fff;

      margin-top: 17px;

    padding: 8px 0;

}



.main-header.header-style-two .logo-outer {

    padding: 5px 0;

}



.main-header.header-style-two .header-upper .upper-right {

    padding-top: 0px;

}









/*Social Icon One*/



.social-icon-one {

    position: relative;

    display: inline-block;

}



.social-icon-one li {

    margin: 0px 8px 0px 0px !important;

    display: inline-block;

}



.social-icon-one li a {

    position: relative;

    width: 36px;

    height: 36px;

    color: #8a5717;

    font-size: 16px;

    line-height: 38px;

    text-align: center;

    border-radius: 50%;

    display: inline-block;

    background-color: #fff;

    -webkit-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    -moz-transition: all 300ms ease;

    transition: all 300ms ease;

}



.social-icon-one li a:hover {

    color: #ffffff;

    background-color: #8a5717;

}





/*Social Icon Two*/



.social-icon-two {

    position: relative;

}



.social-icon-two li {

    position: relative;

    margin-left: 6px;

    display: inline-block;

}



.social-icon-two li a {

    position: relative;

    width: 36px;

    height: 36px;

    color: #8a5717;

    font-size: 14px;

    line-height: 34px;

    text-align: center;

    border-radius: 50%;

    display: inline-block;

    background: #fff;

    border: 1px solid #ffffff;

    -webkit-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    -moz-transition: all 300ms ease;

    transition: all 300ms ease;

}



.social-icon-two li a:hover {

    color: #ffffff;

    border-color: #00032d;

    background-color: #00032d;

}























/*** 



====================================================================

    Section Title

====================================================================



***/



.sec-title {

    position: relative;

    margin-bottom: 55px;

}



.sec-title h2 {

    font-size: 30px;

    color:#a58c3d;

    font-weight: 700;

    text-transform: uppercase;

    line-height: 1.1em;

    padding-bottom: 18px;

    font-family:  'Montserrat', sans-serif;

}



.sec-title.light h2 {

    color: #fff;

}



.sec-title .text {

    position: relative;

    color: #666666;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.6em;

    padding-bottom: 22px;

}



.sec-title .separater {

    position: absolute;

    left: 0px;

    bottom: 0px;

    width: 80px;

    height: 3px;

    background-color: #8a5717;

}



.sec-title.centered .separater {

    left: 50%;

    margin-left: -40px;

}



.sec-title.centered {

    text-align: center;

}



.sec-title.centered .text {

    max-width: 630px;

    margin: 0 auto;

}



/*** 



====================================================================

    Main Slider style

====================================================================



***/



.main-slider{

    position:relative;

    z-index:10;

}



.main-slider .tp-caption{

    z-index:5 !important;

}



.main-slider .tp-dottedoverlay{

    background:rgba(0,0,0,0.40) !important; 

}



.main-slider .tparrows.gyges{

    width:60px;

    height:60px;

    line-height:60px;

    background-color:rgba(255,255,255,0.20);

}



.main-slider .tparrows.gyges:before{

    line-height:60px;

}



.main-slider .tparrows.gyges:hover{

    background-color:#8a5717;

}



.main-slider h2{

    position:relative;

    color:#ffffff;

    font-size:36px;

    font-weight:700;

    line-height:1.2em;

    padding-bottom:20px;

   /* border-bottom:1px solid rgba(255,255,255,0.50);*/

}



/*.main-slider h2:before{

    position:absolute;

    content:'';

    width:70px;

    height:1px;

    left:0px;

    bottom:-1px;

    z-index:10;

    background-color:#8a5717;

}

*/

.main-slider h2.dark-text{

    position:relative;

    color:#022222;

}



.main-slider h2.text-center:before{

    left:50%;

    margin-left:-35px;

}



.main-slider .text{

    position:relative;

    font-size:18px;

    font-weight:400;

    color:#ffffff;

    line-height:1.7em;

}

@media (max-width: 767px) {



.main-slider .text img{

    width: 100px!important;

    height:103px!important;

}

}





.main-slider .text.dark-text{

    color:#022222;

    font-size:16px;

}



.main-slider .dark-heading{

    position:relative;

    color:#022222;

    font-size:60px;

    border:0px;

    padding:0px;

    line-height:1.2em;

}



.main-slider .dark-heading:after{

    display:none;

}



.main-slider .white-heading{

    position:relative;

    color:#ffffff;

    border:0px;

    padding:0px;

    line-height:1.2em;

}



.main-slider .white-heading:after{

    display:none;

}



.main-slider h4{

    position:relative;

    font-size:36px;

    font-weight:400;

    color:#ffffff;

}



.main-slider h1{

    position:relative;

    font-size:72px;

    font-weight:700;

    color:#ffffff;

    line-height:1.2em;

    text-transform:uppercase;

}



.slider-content{

    position:relative;

    padding:35px 30px;

    background-color:rgba(0,0,0,0.60);

}



.slider-content h3{

    position:relative;

    color:#ffffff;

    font-size:30px;

    line-height:1.4em;

    font-weight:700;

    padding-bottom:18px;

    margin-bottom:25px;

    border-bottom:1px solid rgba(255,255,255,0.20);

}



.slider-content h3:after{

    position: absolute;

    content: '';

    width: 70px;

    height: 1px;

    left: 0px;

    bottom: -1px;

    z-index: 10;

    background-color: #8a5717;

}



.slider-content .content-text{

    position:relative;

    color:#ffffff;

    font-size:16px;

    font-weight:500;

    margin-bottom:25px;

}



.main-slider .tp-bannertimer,

.main-slider .tp-bullets{

    display:none !important;    

}



/*** 

====================================================================

    Fancy Box

====================================================================



***/



.fancybox-next span,

.fancybox-prev span {

    background-image: none !important;

    width: 44px !important;

    height: 44px !important;

    line-height: 44px !important;

    text-align: center;

}



.fancybox-next span:before,

.fancybox-prev span:before {

    content: '';

    position: absolute;

    font-family: 'FontAwesome';

    left: 0px;

    top: 0px;

    font-size: 12px;

    width: 44px !important;

    height: 44px !important;

    line-height: 44px !important;

    background-color: rgba(28, 28, 28, 0.40) !important;

    color: #ffffff;

    visibility: visible;

    transition: all 300ms ease;

    -webkit-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    -moz-transition: all 300ms ease;

}



.fancybox-next span:before {

    content: '\f178';

}



.fancybox-prev span:before {

    content: '\f177';

}



.fancybox-next:hover span:before,

.fancybox-prev:hover span:before {

    background-color: #ffffff !important;

    color: #000000;

}



.fancybox-type-image .fancybox-close {

    right: 0px;

    top: 0px;

    width: 45px;

    height: 45px;

    background: url(../images/icons/icon-cross.png) center center no-repeat;

    background-color: rgba(17, 17, 17, 0.50) !important;

}



.fancybox-type-image .fancybox-close:hover {

    background-color: #000000 !important;

}



.fancybox-type-image .fancybox-skin {

    padding: 0px !important;

}





/*Custom Select*/



.form-group .ui-selectmenu-button.ui-button {

    width: 100%;

    font-size: 14px;

    font-style: normal;

    height: 48px;

    padding: 10px 20px;

    border: 1px solid transparent;

    line-height: 26px;

    color: #333333;

    border-radius: 0px;

    background: #ffffff url(../images/icons/icon-select.png) right top no-repeat;

}



.form-group .ui-button .ui-icon {

    background: none;

    position: relative;

    top: 3px;

    text-indent: 0px;

    color: #333333;

}



.form-group .ui-button .ui-icon:before {

    font-family: 'FontAwesome';

    content: "\f107";

    position: absolute;

    right: 0px;

    top: 2px !important;

    top: 13px;

    width: 10px;

    height: 20px;

    display: block;

    color: #333333;

    line-height: 20px;

    font-size: 16px;

    font-weight: normal;

    text-align: center;

    z-index: 5;

    opacity: 0;

}



.ui-widget.ui-widget-content {

    border: 1px solid #e0e0e0;

}



.ui-menu .ui-menu-item {

    font-size: 14px;

    border-bottom: 1px solid #e0e0e0;

}



.ui-menu .ui-menu-item:last-child {

    border: none;

}



.ui-menu .ui-menu-item-wrapper {

    position: relative;

    display: block;

    padding: 8px 20px;

    font-size: 14px;

    line-height: 24px;

}



.ui-state-active,

.ui-widget-content .ui-state-active,

.ui-widget-header .ui-state-active,

.ui-button.ui-state-active:hover {

    border: 1px solid #8a5717;

    background: #8a5717;

}





/*** 



====================================================================

    Info Section

====================================================================



***/



.info-section {

    position: relative;

    background-color: #8a5717;

}



.info-section .info-column {

    position: relative;

    width: 33.33%;

    float: left;

}



.info-section .info-column .inner-box {

    position: relative;

    padding: 35px 0px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.30);

}



.info-section .info-column .inner-box .info-box {

    position: relative;

    display: inline-block;

}



.info-section .info-column .inner-box .info-box .inner {

    position: relative;

    padding-left: 80px;

    text-align: left;

}



.info-section .info-column .inner-box .info-box .inner .icon {

    position: absolute;

    left: 0px;

    top: 0px;

    font-size: 56px;

    color: #ffffff;

    line-height: 1em;

    font-weight: 400;

}



.info-section .info-column .inner-box .info-box .inner .title {

    position: relative;

    font-size: 24px;

    color: #ffffff;

    font-style: italic;

}



.info-section .info-column .inner-box .info-box .inner h3 {

    font-size: 24px;

    font-weight: 700;

    color: #ffffff;

    font-family:  'Montserrat', sans-serif;

}





/*** 



====================================================================

    Services Section

====================================================================



***/



.services-section {

    position: relative;

    padding: 80px 0px 80px;

}



.services-block {

    position: relative;

    margin-bottom: 40px;

}



.services-block .inner-box {

    position: relative;

}



.services-block .inner-box .image {

    position: relative;

}



.services-block .inner-box .image .overlay-box {

    position: absolute;

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    display: block;

    opacity: 0;

    text-align: center;

    background-color: rgba(0, 3, 45, 0.80);

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.services-block .inner-box:hover .overlay-box {

    opacity: 1;

}



.services-block .inner-box:hover .lower-box .arrow {

    color: #ffffff;

    border-color: #8a5717;

    background-color: #8a5717;

}



.services-block .inner-box .image .overlay-box .icon {

    position: relative;

    font-size: 50px;

    top: 45%;

    color: #ffffff;

}



.services-block .inner-box .image img {

    position: relative;

    width: 100%;

    display: block;

}



.services-block .inner-box .lower-box {

    position: relative;

    text-align: center;

    padding-top: 25px;

    padding-left: 20px;

    padding-right: 20px;

}



.services-block .inner-box .lower-box h3 {

    position: relative;

    color: #333333;

    font-size: 22px;

    font-weight: 500;

    margin-bottom: 10px;

    text-transform: capitalize;

}



.services-block .inner-box .lower-box h3 a {

    position: relative;

    color: #333333;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.services-block .inner-box .lower-box h3 a:hover {

    color: #8a5717;

}



.services-block .inner-box .lower-box .text {

    position: relative;

    color: #777777;

    font-size: 17px;

    font-weight: 300;

    line-height: 1.6em;

    margin-bottom: 15px;

}



.services-block .inner-box .lower-box .arrow {

    position: relative;

    width: 45px;

    height: 45px;

    color: #b4b4b4;

    line-height: 42px;

    text-align: center;

    display: inline-block;

    border-radius: 50%;

    border: 1px solid #eeeeee;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.services-block .inner-box .lower-box .arrow:hover {

    color: #ffffff;

    border-color: #8a5717;

    background-color: #8a5717;

}

























/*** 



====================================================================

    Counter Section

====================================================================



***/



.counter-section {

    position: relative;

    padding: 80px 0px 40px;

    background-attachment: fixed;

    background-repeat: no-repeat;

    background-size: cover;

}



.counter-section:before {

    position: absolute;

    content: '';

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    display: block;

    background-color: #212832;

}



.counter-section .content-column {

    position: relative;

    margin-bottom: 40px;

}



.counter-section .content-column .inner-box {

    position: relative;

    padding-right: 50px;

}



.counter-section .content-column .inner-box h2 {

    position: relative;

    font-size: 40px;

    font-weight: 700;

    color: #ffffff;

    line-height: 1.2em;

    margin-bottom: 20px;

    text-transform: capitalize;

}



.counter-section .content-column .inner-box .text {

    position: relative;

    color: #d7d7d8;

    font-size: 17px;

    line-height: 1.6em;

    margin-bottom: 25px;

}





/*fact counter*/



.fact-counter {

    position: relative;

    margin-top: 10px;

}



.fact-counter .column {

    position: relative;

    margin-bottom: 40px;

}



.fact-counter .column .inner {

    position: relative;

    text-align: center;

    padding: 40px 15px 40px;

    background-color: rgba(255, 255, 255, 0.10);

}



.fact-counter .column .inner .icon-box {

    position: relative;

    width: 106px;

    height: 106px;

    color: #666;

    font-size: 44px;

    text-align: center;

    margin: 0 auto;

    margin-bottom: 20px;

    border-radius: 50%;

    line-height: 106px;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

    background-color: rgba(255, 255, 255, 0.75);

}



.fact-counter .count-outer .percentage {

    display: inline-block;

    font-weight: 700;

    color: #ffffff;

    font-size: 40px;

    line-height: 1em;

}



.fact-counter .count-outer .count-text {

    position: relative;

    font-weight: 700;

    color: #ffffff;

    font-size: 30px;

    line-height: 1em;

    font-family:  'Montserrat', sans-serif;

}



.fact-counter .count-outer .plus {

    position: relative;

    color: #ffffff;

    font-weight: 700;

    font-size: 30px;

    line-height: 1em;

    display: inline-block;

    font-family:  'Montserrat', sans-serif;

}



.fact-counter .column .counter-title {

    position: relative;

    font-size: 17px;

    font-weight: 300;

    color: #f7f7f7;

    margin-top: 4px;

}





/*** 





====================================================================

    About Section

====================================================================



***/



.about-section {

    position: relative;

    padding: 80px 0px 50px;

}



.about-section .chart-column {

    position: relative;

    margin-bottom: 40px;

}



.about-section .chart-column .inner-box {

    position: relative;

    padding-right: 40px;

}



.about-section .chart-column .inner-box .image {

    position: relative;

    margin-top: 18px;

}



.about-section .about-column {

    position: relative;

    margin-bottom: 30px;

}



.about-section .about-column .sec-title {

    margin-bottom: 25px;

}



.about-section .about-column .text {

    position: relative;

    margin-bottom: 30px;

}



.about-section .about-column .text p {

    position: relative;

    color: #666666;

    font-size: 17px;

    line-height: 1.6em;

    margin-bottom: 10px;

}



.about-section .about-column .text p:last-child {

    margin-bottom: 0px;

}





/*** 



====================================================================

    Sponsors Section

====================================================================



 ***/



.sponsors-section {

    position: relative;

    padding: 0px 0px 60px;

}



.sponsors-section .carousel-outer {

    position: relative;

    padding-top: 40px;

    border-top: 1px solid #f5f5f5;

}



.sponsors-section .image-box a {

    position: relative;

    display: block;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.sponsors-section .image-box a img {

    transition: all 0.3s ease;

    opacity: 0.40;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.sponsors-section .image-box:hover a img {

    opacity: 1;

}



.sponsors-section .owl-nav,

.sponsors-section .owl-dots {

    display: none;

}





/*** 



====================================================================

    Cases Section

====================================================================



 ***/



.cases-section {

    position: relative;

    padding: 80px 0px 80px;

}



.case-block {

    position: relative;

    margin-bottom: 40px;

}



.case-block .inner-box {

    position: relative;

}



.case-block .inner-box .image {

    position: relative;

}



.case-block .inner-box .image img {

    position: relative;

    width: 100%;

    display: block;

}



.case-block .inner-box .image .overlay-box {

    position: absolute;

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    opacity: 0;

    text-align: center;

    transition: all 0.6s ease;

    -moz-transition: all 0.6s ease;

    -webkit-transition: all 0.6s ease;

    -ms-transition: all 0.6s ease;

    -o-transition: all 0.6s ease;

    background-color: rgba(39, 52, 71, 0.85);

    transform: scale(0.9);

}



.case-block .inner-box .image .overlay-box .content {

    position: relative;

    width: 100%;

    height: 100%;

}



.case-block .inner-box .image .overlay-box .content a {

    position: relative;

    top: 45%;

    display: inline-block;

}



.case-block .inner-box .image .overlay-box .content a .icon {

    position: relative;

    width: 40px;

    height: 40px;

    color: #8d8d8d;

    font-size: 15px;

    border-radius: 50%;

    line-height: 40px;

    margin: 0px 4px;

    display: inline-block;

    background-color: #ffffff;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.case-block .inner-box .image .overlay-box .content .icon:hover {

    color: #ffffff;

    background-color: #8a5717;

}



.case-block .inner-box .lower-box {

    position: relative;

    padding: 16px 20px 14px;

    background-color: #ffffff;

    border: 1px solid #ececec;

}



.case-block .inner-box .lower-box h3 {

    position: relative;

    font-size: 18px;

    font-weight: 500;

    float: left;

    display: inline-block;

}



.case-block .inner-box .lower-box h3 a {

    position: relative;

    color: #333333;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.case-block .inner-box .lower-box h3 a:hover {

    color: #8a5717;

}



.case-block .inner-box .arrow {

    position: relative;

    width: 28px;

    height: 28px;

    color: #e6e6e6;

    line-height: 26px;

    border-radius: 50%;

    display: inline-block;

    text-align: center;

    float: right;

    border: 1px solid #e6e6e6;

}



.case-block .inner-box:hover .image .overlay-box {

    opacity: 1;

    transform: scale(1);

}



/*** 



====================================================================

    Project Section

====================================================================



***/



.project-section{

    position:relative;

    padding: 70px 0px 50px;

}



.project-section:before{

    position:absolute;

    content:'';

    left:0px;

    top:0px;

    width:100%;

    height:100%;

    display:block;

    background-color:rgba(21,22,26,0.97);

}



.project-section h2{

    position:relative;

    font-size:42px;

    font-weight:700;

    color:#ffffff;

    margin-bottom:60px;

    padding-bottom:15px;

    text-transform:capitalize;

}



.project-section h2:before{

    position: absolute;

    content: '';

    left: 0px;

    bottom: 0px;

    width: 60px;

    height: 2px;

    background-color: #8a5717;

}



.gallery-item{

    position:relative;

    margin-bottom:30px;

}



.gallery-item .inner-box{

    position:relative;

    width:100%;

    overflow:hidden;

    display:block;

}



.project-tab .gallery-item .inner-box{

    -webkit-transform:scale(0,1);

    -ms-transform:scale(0,1);

    -o-transform:scale(0,1);

    -moz-transform:scale(0,1);

    transform:scale(0,1);

    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;

}



.project-tab .active-tab .gallery-item .inner-box{

    -webkit-transform:scale(1,1);

    -ms-transform:scale(1,1);

    -o-transform:scale(1,1);

    -moz-transform:scale(1,1);

    transform:scale(1,1);

}



.gallery-item .image-box{

    position:relative;

    display:block;  

}



.gallery-item .image-box img{

    position:relative;

    display:block;

    width:100%;

}



.gallery-item .overlay-box{

    position:absolute;

    left:0px;

    top:0px;

    width:100%;

    height:100%;

    opacity:0;

    color:#ffffff;

    text-align:center;

    background: rgba(253, 194, 54, 0.95);

    -webkit-transition:all 700ms ease;

    -ms-transition:all 700ms ease;

    -o-transition:all 700ms ease;

    transition:all 700ms ease;

    -webkit-transform:translate(-100%,0%);

    -ms-transform:translate(-100%,0%);

    -o-transform:translate(-100%,0%);

    -moz-transform:translate(-100%,0%);

    transform:translate(-100%,0%);

}



.gallery-item .inner-box:hover .overlay-box{

    opacity:1;

    -webkit-transform:translate(0%);

    -ms-transform:translate(0%);

    -o-transform:translate(0%);

    -moz-transform:translate(0%);

    transform:translate(0%);

}



.gallery-item .overlay-inner{

    position:absolute;

    left:0px;

    top:0px;

    width:100%;

    height:100%;

    display:table;

    vertical-align:middle;

    padding:10px 0px;

}



.gallery-item .overlay-inner .content{

    position:relative;

    display:table-cell;

    vertical-align:middle;

}



.gallery-item .overlay-inner .image-link{

    position:relative;

    display:inline-block;

    font-size:16px;

    color:#ffffff;

    width:42px;

    height:42px;

    margin:0px 5px;

    line-height:38px;

    border-radius:50%;

    border:2px solid #ffffff;

    transition:all 300ms ease;

    -webkit-transition:all 300ms ease;

    -ms-transition:all 300ms ease;

    -o-transition:all 300ms ease;

}



.gallery-item .overlay-inner .image-link .icon{

    position:relative;

}



.gallery-item .overlay-inner .image-link:hover{

    color:#666666;

    background-color:rgba(255,255,255,1);

}





.project-tab{

    position:relative;  

}



.project-tab .project-carousel .owl-nav,

.project-tab .project-carousel .owl-dots{

    display:none;

}



.project-tab .tabs-header{

    position:relative;

    margin-bottom:30px; 

}



.project-tab .product-tab-btns{

    position:relative;

    text-align:right;

    padding-top:25px;

}



.project-tab .product-tab-btns .p-tab-btn{

    position:relative;

    line-height:24px;

    padding:0px 0px;

    cursor:pointer;

    color: #ffffff;

    font-weight:500;

    font-size:15px;

    display:inline-block;

    margin-bottom:10px;

    margin-left:20px;

    text-transform:uppercase;

    transition:all 0.3s ease;

    -moz-transition:all 0.3s ease;

    -webkit-transition:all 0.3s ease;

    -ms-transition:all 0.3s ease;

    -o-transition:all 0.3s ease;

}



.project-tab .product-tab-btns .p-tab-btn.active-btn{

    color: #8a5717;

}



.project-tab .p-tabs-content{

    position:relative;

    display:block;  

}



.project-tab .p-tab{

    position:absolute;

    left:0px;

    top:0px;

    width:100%;

    height:auto;

    visibility:hidden;  

}



.project-tab .p-tab.active-tab{

    position:relative;

    visibility:visible;

    z-index:5;

}







/*** 



====================================================================

    Services Section

====================================================================



 ***/



.services-section .form-column {

    position: relative;

}



.services-section .form-column .inner-box {

    position: relative;

    background-color: #f4f4f4;

}



.services-section .form-column .inner-box .donate-form {

    padding: 50px 50px 40px;

    margin-bottom: 30px;

}



.services-section .form-column .inner-box .services-form {

    padding: 38px 40px;

}



.services-section .form-column .inner-box .form-title {

    position: relative;

    text-align: center;

    padding: 20px 15px 20px;

    background-size: cover;

    background-repeat: no-repeat;

}



.services-section .form-column .inner-box .form-title:before {

    position: absolute;

    content: '';

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    display: block;

    background-color: #8a5717;

}



.services-section .form-column .inner-box .form-title:after {

    position: absolute;

    content: '';

    left: 50%;

    bottom: -14px;

    margin-left: -15px;

    border-left: 15px solid transparent;

    border-right: 15px solid transparent;

    border-top: 15px solid #8a5717;

}



.services-section .form-column .inner-box .form-title h3 {

    position: relative;

    color: #ffffff;

    font-size: 26px;

    font-weight: 500;

}



.services-section .form-column form input[type="text"],

.services-section .form-column form input[type="email"],

.services-section .form-column form textarea,

.services-section .form-column form select {

    position: relative;

    display: block;

    width: 100%;

    height: 48px;

    line-height: 28px;

    padding: 10px 20px;

    font-size: 14px;

    font-style: normal;

    background: #ffffff;

    border-radius: 4px;

    transition: all 500ms ease;

    border: 1px solid transparent;

    background-color: #ffffff;

}



.services-section .form-column form textarea {

    height: 90px; 

}



.services-section .form-column form select {

    -moz-appearance: none;

    -webkit-appearance: none;

    -ms-appearance: none;

    -o-appearance: none;

    cursor: pointer;

}



.services-section .form-column form button {

    width: 100%;

}





/*Services Block Two*/



.services-block-two {

    position: relative;

    margin-bottom: 30px;

}



.services-block-two .inner-box {

    position: relative;

    background: #f4f4f4;

    padding: 50px 20px 28px;

    text-align: center;

    overflow: hidden;

}



.services-block-two .inner-box:before {

    position: absolute;

    content: '';

    background: #1c1d21;

    width: 700px;

    height: 900px;

    transition: all 0.45s ease-in-out;

    transform: translate(-1050px, -400px) rotate(42deg);

}



.services-block-two .inner-box:hover:before {

    transform: translate(-290px, -400px) rotate(40deg);

}



.services-block-two .inner-box .icon-box {

    position: relative;

    margin-bottom: 20px;

    font-size: 40px;

    color: #8a5717;

    text-align: center;

    line-height: 45px;

    margin: 0 auto;

    margin-bottom: 50px;

}



.services-block-two .inner-box h3 {

    position: relative;

    font-size: 20px;

    font-weight: 500;

}



.services-block-two .inner-box h3 a {

    color: #333333;

    transition: all 0.7s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.services-block-two .inner-box:hover h3 a {

    color: #fff;

    transition: .3s ease;

}



.services-block-two .inner-box .text {

    position: relative;

    color: #666666;

    font-size: 15px;

    line-height: 1.6em;

    margin-top: 15px;

    transition: .5s ease;

}



.services-block-two .inner-box:hover .text {

    color: #fff;

    transition: .5s ease;

}





/*** 



====================================================================

    Call To Action Section

====================================================================



 ***/



.call-to-action-section {

    position: relative;

    padding: 30px 0px 10px;

    background-attachment: fixed;

    background-repeat: no-repeat;

    background-size: cover;

}



.call-to-action-section:before {

    position: absolute;

    content: '';

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    display: block;

    background-color: rgb(28, 29, 33);

}



.call-to-action-section .text-column {

    position: relative; padding-left: 250px;

}

.call-to-action-section .call-man { position:absolute;height:311px;margin-left:0px;

left:0; top:-100px; }



.call-to-action-section .text-column h2 {

    position: relative;

    font-size: 24px;

    text-align: center;

    font-weight: 400;

    color: #ffffff;

    margin-top: 5px;

    margin-bottom: 15px;

    font-family:  'Montserrat', sans-serif;

}



.call-to-action-section .btn-column {

    position: relative;

    text-align: right;

}





/*** 



====================================================================

    Default Section

====================================================================



 ***/



.default-section {

    position: relative;

    padding: 80px 0px 40px;

}



.default-section .news-column {

    margin-bottom: 40px;

}



.news-block {

    position: relative;

    margin-bottom: 20px;

}



.news-block .image-column {

    position: relative;

}



.news-block .image-column .image {

    position: relative;

}



.news-block .image-column .image img {

    position: relative;

    width: 100%;

    display: block;

}



.news-block .content-column {

    position: relative;

    margin-top: 20px;

}



.news-block .content-column .content-inner {

    position: relative;

}



.news-block .content-column .content-inner h3 {

    position: relative;

    color: #333333;

    font-size: 22px;

    font-weight: 500;

    margin-bottom: 5px;

    line-height: 1em;

    padding-bottom: 15px;

    border-bottom: 1px solid #f5f5f5;

}



.news-block .content-column .content-inner h3 a {

    position: relative;

    color: #333333;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.news-block .content-column .content-inner h3 a:hover {

    color: #8a5717;

}



.news-block .content-column {

    position: relative;

}



.news-block .content-column .post-meta {

    position: relative;

    padding-bottom: 5px;

    border-bottom: 1px solid #f5f5f5;

}



.news-block .content-column .post-meta li {

    position: relative;

    color: #666666;

    display: inline-block;

    margin-right: 10px;

    font-size: 14px;

    padding-left: 20px;

}



.news-block .content-column .post-meta li .icon {

    position: absolute;

    left: 0px;

    top: 0px;

    font-size: 14px;

    color: #8a5717;

}



.news-block .content-column .text {

    position: relative;

    color: #666666;

    font-size: 17px;

    margin-top: 10px;

}



.default-section .testimonial-column {

    position: relative;

}



.default-section .testimonial-column .testimonial-outer {

    position: relative;

    padding: 40px 50px 35px;

    border: 1px solid #f2f2f2;

}





/*Testimonial Block*/



.testimonial-block {

    position: relative;

}



.testimonial-block .inner-box {

    position: relative;

    text-align: center;

}



.testimonial-block .inner-box .text {

    position: relative;

    color: #666666;

    font-size: 17px;

    line-height: 1.8em;

}



.testimonial-block .inner-box .text .quote-icon {

    position: relative;

    color: #e4e4e4;

    font-size: 22px;

}



.testimonial-block .inner-box .author-info {

    position: relative;

}



.testimonial-block .inner-box .author-info .image {

    position: relative;

    width: 70px;

    height: 70px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 50%;

    margin-top: 15px;

}



.testimonial-block .inner-box .author-info .image img {

    border-radius: 50%;

}



.testimonial-block .inner-box .author-info h3 {

    position: relative;

    color: #333333;

    font-weight: 500;

    font-size: 18px;

    margin-top: 10px;

    font-family:  'Montserrat', sans-serif;

}



.default-section .testimonial-column .owl-nav {

    display: none;

}



.default-section .testimonial-column .owl-dots {

    text-align: center;

    margin-top: 20px;

}



.default-section .testimonial-column .owl-dots .owl-dot {

    position: relative;

    display: inline-block;

    margin: 0px 5px;

}



.default-section .testimonial-column .owl-dots .owl-dot span {

    position: relative;

    display: block;

    width: 6px;

    height: 6px;

    margin: 0px;

    background: #d0d0d0;

    border-radius: 50px;

    transition: all 500ms ease;

}



.default-section .testimonial-column .owl-dots .owl-dot.active span {

    background: #8a5717;

    width: 15px;

}





/*** 



====================================================================

    Footer Section

====================================================================



 ***/



.main-footer {

    position: relative;

    background-color: #1e2126;

}



.main-footer .widgets-section {

    position: relative;

    padding: 50px 0px 30px;

}



.main-footer .footer-column {

    margin-bottom: 30px;

}



.main-footer .footer-column .logo-widget .footer-logo {

    position: relative;

}



.main-footer .logo-widget .text {

    position: relative;

    color: #bcc1c7;

    font-size: 17px;

    line-height: 1.6em;

    margin-top: 35px;

    margin-bottom: 20px;

}



.main-footer .footer-column h2 {

    font-size: 20px;

    color: #ffffff;

    font-weight: 600;

    margin-bottom: 30px;

    padding-bottom: 20px;

    text-transform: uppercase;

}



.main-footer .footer-column h2:before {

    position: absolute;

    content: '';

    left: 0px;

    bottom: 0px;

    width: 50px;

    height: 3px;

    border-radius: 5px;

    background-color: #8a5717;

}





/*Contact Info*/



.main-footer .contact-info {

    position: relative;

}



.main-footer .contact-info li {

    position: relative;

    line-height: 1.6em;

    padding-left: 50px;

    margin-bottom: 16px;

    color: #bcc1c7;

    font-size: 15px;

}



.main-footer .contact-info li a { color: #bcc1c7;}

.main-footer .contact-info li a:hover { color:#c4a657}



.main-footer .contact-info li:last-child {

    margin-bottom: 0px;

}



.main-footer .contact-info li .title {

    color: #ffffff;

    display: block;

    font-size: 18px;

    font-weight: 500;

}



.main-footer .contact-info li .icon {

    position: absolute;

    left: 0px;

    top: 5px;

    line-height: 1em;

    font-size: 30px;

    color: #c9af5e;

}



.main-footer .services-list {

    position: relative;

    margin-bottom: 30px;

}



.main-footer .services-list li {

    position: relative;

    margin-bottom: 13px;

}



.main-footer .services-list li a {

    color: #fff;

    font-size: 15px;

    font-weight: 400;

    padding-left: 20px;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.main-footer .services-list li a:before {

    position: absolute;

    content: '\f105';

    left: 0px;

    top: 0px;

    font-size: 14px;

    font-family: 'FontAwesome';

}



.main-footer .services-list li a:hover {

    color: #c4a657;

}



.main-footer .footer-column .links-widget .date {

    position: relative;

    color: #bcc1c7;

    font-size: 17px;

}





/*Tweet Widget*/



.main-footer .news-widget .news-post {

    color: #c9c9c9;

    line-height: 20px;

    margin-bottom: 35px;

    padding: 0 0 0 100px;

    position: relative;

}



.main-footer .news-widget .news-post .news-content {

    margin-bottom: 9px;

}



.main-footer .news-widget .news-post a {

    color: #c9c9c9;

    position: relative;

    font-family:  'Montserrat', sans-serif;

    font-size: 16px;

    line-height: 27px;

}



.main-footer .news-widget .news-post .time {

    color: #8a5717;

    font-size: 12px;

    font-style: italic;

    position: relative;

}



.main-footer .news-widget .news-post .image-thumb {

    height: 80px;

    left: 0;

    position: absolute;

    top: 5px;

    width: 80px;

}



.main-footer .news-widget .news-post .image-thumb img {

    display: block;

    width: 80px;

}





/*Contact Widget*/



.main-footer .contact-widget .footer-form .form-group {

    position: relative;

    display: block;

    margin-bottom: 20px;

}



.main-footer .footer-form .form-group input[type="text"],

.main-footer .footer-form .form-group input[type="tel"],

.main-footer .footer-form .form-group input[type="email"],

.main-footer .footer-form .form-group textarea {

    position: relative;

    display: block;

    width: 100%;

    line-height: 28px;

    padding: 10px 20px;

    height: 50px;

    font-size: 13px;

    color: #ffffff;

    border-radius: 2px;

    border: 1px solid transparent;

    background-color: rgba(255, 255, 255, 0.10);

    -webkit-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    -moz-transition: all 300ms ease;

    transition: all 300ms ease;

}



.main-footer .contact-widget .footer-form .form-group textarea {

    height: 110px;

    resize: none;

}



.main-footer .contact-widget .footer-form .form-group input[type="text"]:focus,

.main-footer .contact-widget .footer-form .form-group input[type="tel"]:focus,

.main-footer .contact-widget .footer-form .form-group input[type="email"]:focus,

.main-footer .contact-widget .footer-form .form-group textarea:focus {

    border-color: #8a5717;

}



.main-footer .contact-widget .footer-form .form-group input::-webkit-input-placeholder,

.main-footer .contact-widget .footer-form .form-group textarea::-webkit-input-placeholder {

    color: #a8a8a8;

}



.main-footer .contact-widget .footer-form .form-group input[type="submit"],

.main-footer .contact-widget .footer-form button {

    padding: 11px 45px;

    width: 100%;

}



.main-footer .footer-bottom {

    position: relative;

    padding: 10px 0;

    text-align: center;

    background-color: #1e2126;

    border-top: 1px solid rgba(255, 255, 255, 0.14);

}



.main-footer .footer-bottom .copyright {

    position: relative;

    color: #bcc1c7;

}



.main-footer .footer-bottom .nav-column {

    position: relative;

    text-align: right;

}



.main-footer .footer-bottom .nav-column .footer-nav {

    position: relative;

}



.main-footer .footer-bottom .nav-column .footer-nav {

    position: relative;

}



.main-footer .footer-bottom .nav-column .footer-nav li {

    position: relative;

    padding-right: 15px;

    margin-right: 15px;

    display: inline-block;

    line-height: 1em;

    border-right: 1px solid #9799a9;

}



.main-footer .footer-bottom .nav-column .footer-nav li a {

    position: relative;

    color: #bcc1c7;

    font-size: 16px;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.main-footer .footer-bottom .nav-column .footer-nav li:last-child {

    margin-right: 0px;

    padding-right: 0px;

    border: 0px;

}



.main-footer .footer-bottom .nav-column .footer-nav li a:hover {

    color: #ffffff;

}





/*Footer Style Two*/



.footer-style-two {

    position: relative;

    background-color: #121212;

}



.footer-style-two .footer-widget {

    position: relative;

    margin-bottom: 40px;

}



.footer-style-two .widgets-section {

    position: relative;

    padding: 85px 0px 20px;

    background-color: #121212;

}



.footer-style-two .footer-widget h2 {

    font-size: 24px;

    color: #ffffff;

    font-weight: 500;

    margin-bottom: 30px;

    padding-bottom: 15px;

    text-transform: capitalize;

}



.footer-style-two .footer-widget h2:before {

    position: absolute;

    content: '';

    left: 0px;

    bottom: 0px;

    width: 50px;

    height: 3px;

    border-radius: 5px;

    background-color: #8a5717;

}



.footer-style-two .about-widget .text {

    position: relative;

    font-size: 16px;

    color: #9799a9;

    margin-bottom: 20px;

}





/*posts widget*/



.footer-style-two .posts-widget .post {

    position: relative;

    min-height: 95px;

    padding-left: 90px;

    margin-bottom: 25px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

}



.footer-style-two .posts-widget .post:last-child {

    margin-bottom: 0px;

    border: 0px;

}



.footer-style-two .posts-widget .post .post-thumb {

    position: absolute;

    left: 0px;

    top: 0px;

    width: 70px;

    height: 70px;

}



.footer-style-two .posts-widget .post .post-thumb img {

    display: block;

    width: 100%;

    border-radius: 5px;

}



.footer-style-two .posts-widget .post .desc-text {

    position: relative;

    font-size: 15px;

    line-height: 1.6em;

    padding: 0px 0px 0px;

    top: -4px;

    font-weight: 400;

}



.footer-style-two .posts-widget .post .desc-text a {

    color: #9799a9;

}



.footer-style-two .posts-widget .post .time {

    position: relative;

    font-size: 14px;

    line-height: 24px;

    color: #8a5717;

}





/*Hours Widget*/



.footer-style-two .hours-widget ul {

    position: relative;

}



.footer-style-two .hours-widget ul li {

    position: relative;

    color: #9799a9;

    font-size: 17px;

    margin-bottom: 4px;

}





/*Gallery Widget*/



.footer-style-two .gallery-widget .images-outer {

    position: relative;

    margin: 0px -5px;

}



.footer-style-two .gallery-widget .image-box {

    position: relative;

    float: left;

    width: 33.333%;

    padding: 0px 6px;

    margin-bottom: 10px;

}



.footer-style-two .gallery-widget .image-box img {

    position: relative;

    display: block;

    width: 100%;

    border-radius: 5px;

    -webkit-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    -moz-transition: all 300ms ease;

    transition: all 300ms ease;

}



.footer-style-two .gallery-widget .image-box img:hover {

    opacity: 0.5;

}



.footer-style-two .footer-bottom {

    position: relative;

    padding: 15px 0px;

    text-align: center;

    margin-top: 30px;

    background-color: #8a5717;

}



.footer-style-two .footer-bottom .copyright {

    color: #ffffff;

    font-size: 16px;

    font-weight: 300;

}





/*** 



====================================================================

    Choose Section

====================================================================



 ***/



.choose-section {

    position: relative;

    overflow: hidden;

}



.choose-section .quote-column {

    position: relative;

}



.choose-section .quote-column .inner-box {

    position: relative;

    padding: 150px 0px 50px;

    padding-right: 80px;

}



.choose-quote {

    position: relative;

    background-repeat: no-repeat;

    background-size: cover;

}



.choose-quote .inner {

    position: relative;

    padding: 120px 90px 120px;

}



.choose-quote .inner:before {

    position: absolute;

    content: '';

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    display: block;

    background-color: rgba(0, 3, 45, 0.90);

}



.choose-quote .inner h2 {

    position: relative;

    font-size: 46px;

    font-weight: 700;

    color: #ffffff;

    line-height: 1.2em;

    margin-bottom: 20px;

}



.choose-quote .inner .text {

    position: relative;

    color: #9799a9;

    font-size: 17px;

    padding-bottom: 25px;

    margin-bottom: 35px;

}



.choose-quote .inner .text:after {

    position: absolute;

    content: '';

    left: 0px;

    bottom: 0px;

    width: 50px;

    height: 3px;

    background-color: #8a5717;

}





/*Featured Column*/



.choose-section .featured-column {

    position: relative;

    padding: 180px 15px 180px;

}



.choose-section .featured-column:before {

    position: absolute;

    content: '';

    left: 64px;

    top: 0px;

    width: 1px;

    height: 100%;

    border: 1px dashed #f5f5f5;

}



.choose-section .featured-column .inner-column {

    position: relative;

}





/*Featured Block*/



.featured-block {

    position: relative;

    margin-bottom: 35px;

}



.featured-block .inner-box {

    position: relative;

    padding-left: 140px;

}



.featured-block .inner-box .icon-box {

    position: absolute;

    left: 0px;

    top: 0px;

    width: 100px;

    height: 100px;

    color: #8a5717;

    text-align: center;

    font-size: 48px;

    line-height: 100px;

    border-radius: 50%;

    background-color: #fafafa;

    border: 1px solid #eeeeee;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.featured-block .inner-box h3 {

    position: relative;

    color: #333333;

    font-size: 22px;

    font-weight: 500;

    line-height: 1.2em;

    margin-bottom: 15px;

}



.featured-block .inner-box h3 a {

    color: #333333;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.featured-block .inner-box h3 a:hover {

    color: #8a5717;

}



.featured-block .inner-box .text {

    color: #666666;

    font-size: 17px;

    line-height: 1.6em;

    margin-bottom: 6px;

}



.featured-block .inner-box .read-more {

    position: relative;

    color: #8a5717;

    font-size: 16px;

    font-weight: 700;

    text-transform: capitalize;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.featured-block .inner-box .read-more:hover {

    color: #333333;

}



.featured-block .inner-box:hover .icon-box {

    background: #ffffff;

    border-color: #8a5717;

}





/*** 



====================================================================

    Services Section

====================================================================



 ***/



.services-block-three {

    position: relative;

    margin-bottom: 40px;

}



.services-block-three .inner-box {

    position: relative;

    padding-left: 90px;

}



.services-block-three .inner-box .icon-box {

    position: absolute;

    left: 0px;

    top: 0;

    width: 80px;

    height: 70px;

    line-height: 70px;

    color: #8a5717;

    font-size: 60px;

    text-align: center;

    background-color: #f6f6f6;



    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.services-block-three .inner-box .icon-box:after {

    position: absolute;

    content: '';

    right: -10px;

    top: 50%;

    width: 10px;

    height: 18px;

    margin-top: -10px;

    display: block;

    z-index: 10;

    background: url(../images/icons/arrow-icon.png) left center no-repeat;

    opacity: 0;

}



.services-block-three .inner-box .icon-box:before {

    position: absolute;

    content: '';

    right: -9px;

    top: 50%;

    margin-top: -10px;

    border-top: 9px solid transparent;

    border-left: 9px solid #8a5717;

    border-bottom: 9px solid transparent;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.services-block-three .inner-box .icon-box .icon {

    position: relative;

    line-height: 70px;

    display: block;

}



.services-block-three .inner-box .content-box {

    position: relative;

    padding: 30px 40px 30px;

    background-color: #ffffff;

    background-size: cover;

    background-image: none;

}



.services-block-three .inner-box .content-box h3 {

    position: relative;

    color: #333333;

    font-size: 22px;

    font-weight: 500;

    margin-bottom: 10px;

    text-transform: capitalize;

}



.services-block-three .inner-box .content-box h3 a {

    color: #333333;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.services-block-three .inner-box .content-box h3 a:hover {

    color: #8a5717;

}



.services-block-three .inner-box .content-box .text {

    position: relative;

    color: #666666;

    font-size: 17px;

    margin-bottom: 12px;

}



.services-block-three .inner-box .content-box .know-more {

    position: relative;

    font-size: 16px;

    font-weight: 700;

    color: #8a5717;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.services-block-three .inner-box .content-box .image-layer {

    position: absolute;

    left: 0px;

    top: 0px;

    opacity: 0;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center center;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.services-block-three .inner-box .content-box .image-layer:before {

    position: absolute;

    content: '';

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    display: block;

    background-color: rgba(0, 3, 45, 0.90);

}



.services-block-three .inner-box:hover .content-box .image-layer {

    opacity: 1;

}



.services-block-three .inner-box:hover .content-box h3 a {

    color: #ffffff;

}



.services-block-three .inner-box:hover .content-box .text {

    color: #9799a9;

}



.services-block-three .inner-box:hover .icon-box:after {

    opacity: 0;

}



.services-block-three .inner-box:hover .icon-box {

    background-color: #8a5717;

    color: #ffffff;

}



.services-block-three .inner-box:hover .icon-box:before {

    z-index: 10;

}



.services-block-three.style-two .inner-box .content-box h3 {

    font-size: 22px;

}



.services-block-three.style-two .inner-box .content-box {

    background-color: #f8f8f8;

}



.services-block-three.style-two .inner-box .icon-box {

    background-color: transparent;

}



.services-block-three.style-two .inner-box:hover .icon-box {

    color: #8a5717;

}



.services-block-three.style-two .inner-box .icon-box:after {

    /* background:url(../images/icons/arrow-icon.png) left center no-repeat; */

}



.services-block-three.style-two .inner-box:hover .icon-box:after {

    /* opacity:1; */

}



.services-block-three.style-two .inner-box .icon-box:before {

    display: none;

}



.services-block-three .inner-box:hover .content-box h3 a {

    color: #8a5717;

}









/* services-block-four */



.services-block-four{

    position:relative;

    margin-bottom:10px;

}



.services-block-four .inner-box{

    position:relative;

}



.services-block-four .inner-box .image{

    position:relative;

}



.services-block-four .inner-box .image .overlay-box{

    position:absolute;

    left:0px;

    top:0px;

    opacity:0;

    width:100%;

    height:100%;

    display: grid;

    align-items: center;

    justify-content: center;

    text-align:center;

    background-color:rgba(28, 29, 33, 0.9);

    transition:all 0.3s ease;

    -moz-transition:all 0.3s ease;

    -webkit-transition:all 0.3s ease;

    -ms-transition:all 0.3s ease;

    -o-transition:all 0.3s ease;

}



.services-block-four .inner-box .image .overlay-box .icon-box{

    position:relative;

    background: #8a5717;

    width: 55px;

    height: 55px;

    text-align: center;

    display: inline-block;

    line-height: 55px;

    border-radius: 50%;

    color:#ffffff;

    font-size:24px;

}



.services-block-four .inner-box .image img{

    position:relative;

    width:100%;

    display:block;

}



.services-block-four .inner-box .lower-content{

    position:relative;

    padding-top:25px;

    padding-bottom:20px;

    border: 1px solid #f4f4f4;

    transition:all 0.3s ease;

    -moz-transition:all 0.3s ease;

    -webkit-transition:all 0.3s ease;

    -ms-transition:all 0.3s ease;

    -o-transition:all 0.3s ease;

}



.services-block-four .inner-box .lower-content .content{

    position:relative;

    padding-left: 29px;

    padding-right: 29px;

}



.services-block-four .inner-box .lower-content .content .icon-box{

    position:absolute;

    right: 25px;

    top: -60px;

    width: 70px;

    height: 70px;

    color:#8a5717;

    line-height: 70px;

    font-size: 36px;

    text-align:center;

    border: 1px solid #f4f4f4;

    background: #fff;

    border-radius: 50%;

    transition:all 0.3s ease;

    -moz-transition:all 0.3s ease;

    -webkit-transition:all 0.3s ease;

    -ms-transition:all 0.3s ease;

    -o-transition:all 0.3s ease;

}



.services-block-four .inner-box .lower-content .content h3{

    position:relative;

    font-size:20px;

    font-weight:700;

    margin-bottom:5px;

}



.services-block-four .inner-box .lower-content .content h3 a{

    color:#222222;

    transition:all 0.3s ease;

    -moz-transition:all 0.3s ease;

    -webkit-transition:all 0.3s ease;

    -ms-transition:all 0.3s ease;

    -o-transition:all 0.3s ease;

}



.services-block-four .inner-box .lower-content .content h3 a:hover{

    color:#8a5717;

}



.services-block-four .inner-box .lower-content .content .text{

    position:relative;

    color:#848484;

    font-size: 15px;

    font-weight:300;

    line-height:26px;

    margin-bottom:10px;

}



.services-block-four .inner-box .lower-content .content .read-more{

    color:#222;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    transition:all 0.3s ease;

    -moz-transition:all 0.3s ease;

    -webkit-transition:all 0.3s ease;

    -ms-transition:all 0.3s ease;

    -o-transition:all 0.3s ease;

}



.services-block-four .inner-box .lower-content .content .read-more:hover{

    color:#8a5717;

}



.services-block-four .inner-box:hover .lower-content{

    border-color:#8a5717;

}



.services-block-four .inner-box:hover .lower-content .icon-box{

    color:#ffffff !important;

    border-color:#8a5717;

    background-color:#8a5717;

}



.services-block-four .inner-box:hover .image .overlay-box{

    opacity:1;

}

















/*** 



====================================================================

    Video Section

====================================================================



 ***/



.video-section {

    position: relative;

    padding: 150px 0px 80px;

}



.video-section .accordian-column {

    position: relative;

    margin-bottom: 40px;

}





/*Accordion Box*/



.accordion-box {

    position: relative;

    z-index: 10;

}



.accordion-box .block {

    position: relative;

    margin-bottom: 15px;

    border: 1px solid #f3f3f3;

}



.accordion-box .block:last-child {

    margin-bottom: 0px;

}



.accordion-box .block:last-child .acc-btn {

    border: 0px;

}



.accordion-box .block .acc-btn {

    position: relative;

    font-size: 18px;

    margin-bottom: 0px;

    cursor: pointer;

    background: none;

    line-height: 24px;

    font-weight: 500;

    overflow: hidden;

    color: #333333;

    background-color: #fafafa;

    padding: 15px 30px 15px 30px;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

    font-family:  'Montserrat', sans-serif;

}



.accordion-box .block .acc-btn .icon-outer {

    position: absolute;

    right: 30px;

    top: 50%;

    width: 26px;

    height: 26px;

    font-size: 14px;

    color: #bababa;

    line-height: 26px;

    text-align: center;

    border-radius: 50%;

    font-weight: 500;

    margin-top: -13px;

    border: 1px solid #e6e6e6;

    background-color: #ffffff;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

    font-family:  'Montserrat', sans-serif;

}



.accordion-box .block .acc-btn .icon-outer .icon {

    position: relative;

    left: 1px;

    top: 50%;

    margin-top: -9px;

    line-height: 18px;

    display: block;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

}



.accordion-box .block .acc-btn.active {

    background-color: #8a5717;

    color: #ffffff;

}



.accordion-box .block .acc-btn.active .icon-outer {

    background-color: #ffffff;

    border-color: #ffffff;

}



.accordion-box .block .acc-btn.active .icon-outer .icon {

    -webkit-transform: rotate(90deg);

    -ms-transform: rotate(90deg);

    -o-transform: rotate(90deg);

    -moz-transform: rotate(90deg);

    transform: rotate(90deg);

}



.accordion-box .block .acc-content {

    position: relative;

    display: none;

    background-color: #ffffff;

}



.accordion-box .block .acc-content.current {

    display: block;

}



.accordion-box .block .content {

    position: relative;

    font-size: 15px;

    padding: 21px 30px 21px;

}



.accordion-box .block .content p {

    margin-bottom: 10px;

    line-height: 1.6em;

    font-size: 16px;

    color: #666666;

}



.accordion-box .block .content p:last-child {

    margin-bottom: 0px;

}





/*Video Column*/



.video-section .video-column {

    position: relative;

}





/*Video Box*/



.video-box {

    position: relative;

}



.video-box .image img {

    position: relative;

    width: 100%;

}



.video-box .overlay-box {

    position: absolute;

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    text-align: center;

    background-color: rgba(0, 0, 0, 0.85);

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.video-box:hover .overlay-box {

    background-color: rgba(0, 3, 45, 0.60);

}



.video-box .overlay-box span {

    position: relative;

    top: 50%;

    font-size: 74px;

    text-align: center;

    margin-top: -25px;

    color: #ffffff;

    font-weight: 300;

    padding-left: 5px;

    z-index: 99;

    display: inline-block;

}





/*** 



====================================================================

    Features Section

====================================================================



 ***/



.features-section {

    position: relative;

    padding-bottom: 100px;

}



.features-section .title-column {

    position: relative;

    margin-bottom: 40px;

}



.features-section .title-column h2 {

    position: relative;

    color: #333333;

    font-size: 46px;

    font-weight: 700;

    line-height: 1.2em;

    margin-bottom: 15px;

}



.features-section .title-column .text {

    position: relative;

    color: #666666;

    font-size: 17px;

    margin-bottom: 10px;

}



.features-section .title-column .consult {

    position: relative;

    color: #8a5717;

    font-size: 16px;

    font-weight: 700;

    padding-bottom: 0px;

    border-bottom: 1px solid #8a5717;

    font-family:  'Montserrat', sans-serif;

}





/*Featured Block Two*/



.featured-block-two {

    position: relative;

    margin-bottom: 40px;

}



.featured-block-two .inner-box {

    position: relative;

    border: 1px solid #ededed;

    padding: 35px 20px 30px 30px;

}



.featured-block-two .inner-box .content {

    position: relative;

    padding-left: 70px;

}



.featured-block-two .inner-box .content .icon-box {

    position: absolute;

    left: 0px;

    top: 0px;

    color: #8a5717;

    font-size: 42px;

    line-height: 1em;

}



.featured-block-two .inner-box .content h3 {

    position: relative;

    font-size: 22px;

    font-weight: 500;

    line-height: 1em;

    margin-bottom: 15px;

    font-family:  'Montserrat', sans-serif;

}



.featured-block-two .inner-box .content h3 a {

    position: relative;

    color: #333333;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.featured-block-two .inner-box .content h3 a:hover {

    color: #8a5717;

}



.featured-block-two .inner-box .content .text {

    position: relative;

    color: #666666;

    font-size: 17px;

    line-height: 1.8em;

}





/*** 



====================================================================

    FullWidth Section

====================================================================



 ***/



.fullwidth-gallery {

    position: relative;

}



.gallery-block {

    position: relative;

}



.gallery-block .inner-box {

    position: relative;

    overflow: hidden;

}



.gallery-block .inner-box .image {

    position: relative;

}



.gallery-block .inner-box .image img {

    position: relative;

    width: 100%;

    display: block;

}



.gallery-block .inner-box .image .overlay-box {

    position: absolute;

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    opacity: 0;

    text-align: center;

    transition: all 0.6s ease;

    -moz-transition: all 0.6s ease;

    -webkit-transition: all 0.6s ease;

    -ms-transition: all 0.6s ease;

    -o-transition: all 0.6s ease;

    background-color: rgba(0, 0, 0, 0.65);

}



.gallery-block .inner-box .image .overlay-box .content {

    position: relative;

    width: 100%;

    height: 100%;

}



.gallery-block .inner-box .image .overlay-box .content a {

    position: relative;

    top: 40%;

    display: inline-block;

}



.gallery-block .inner-box .image .overlay-box .content a .icon {

    position: relative;

    width: 40px;

    height: 40px;

    color: #8d8d8d;

    font-size: 15px;

    border-radius: 50%;

    line-height: 40px;

    margin: 0px 4px;

    display: inline-block;

    background-color: #ffffff;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.gallery-block .inner-box .image .overlay-box .content .icon:hover {

    color: #ffffff;

    background-color: #8a5717;

}



.gallery-block .inner-box .lower-box {

    position: absolute;

    left: 0px;

    bottom: -60px;

    width: 100%;

    padding: 15px 20px;

    background-color: #ffffff;

    transition: all 0.6s ease;

    -moz-transition: all 0.6s ease;

    -webkit-transition: all 0.6s ease;

    -ms-transition: all 0.6s ease;

    -o-transition: all 0.6s ease;

}



.gallery-block .inner-box .lower-box h3 {

    position: relative;

    font-size: 18px;

    font-weight: 500;

    float: left;

    display: inline-block;

}



.gallery-block .inner-box .lower-box h3 a {

    position: relative;

    color: #333333;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.gallery-block .inner-box .lower-box h3 a:hover {

    color: #8a5717;

}



.gallery-block .inner-box .arrow {

    position: relative;

    width: 28px;

    height: 28px;

    color: #e6e6e6;

    line-height: 26px;

    border-radius: 50%;

    display: inline-block;

    text-align: center;

    float: right;

    border: 1px solid #e6e6e6;

}



.gallery-block .inner-box:hover .image .overlay-box {

    opacity: 1;

}



.gallery-block .inner-box:hover .lower-box {

    bottom: 0px;

}



.fullwidth-gallery .owl-nav,

.fullwidth-gallery .owl-dots {

    display: none;

}











/*** 



====================================================================

    Full Width Section Two

====================================================================



***/



.full-width-section {

    position: relative;

}



.full-width-section .outer-box {

    position: relative;

    background-color: #fcfcfc;

}



.full-width-section .outer-box .title-column {

    position: relative;

    width: 50%;

    float: left;

    padding: 0px 30px 0px;

}



.full-width-section .outer-box .title-column:before {

    position: absolute;

    content: '';

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    display: block;

    background-color: rgba(0, 3, 45, 0.90);

}



.full-width-section .outer-box .title-column .content {

    position: relative;

    max-width: 550px;

    margin: 0 auto;

    padding: 130px 15px 130px 15px;

}



.full-width-section .outer-box .title-column .content h2 {

    position: relative;

    color: #ffffff;

    font-size: 46px;

    font-weight: 700;

    line-height: 1.2em;

    margin-bottom: 15px;

}



.full-width-section .outer-box .title-column .content .text {

    position: relative;

    color: #9799a9;

    font-size: 17px;

    padding-bottom: 20px;

    margin-bottom: 30px;

}



.full-width-section .outer-box .title-column .content .text:before {

    position: absolute;

    content: '';

    left: 0px;

    bottom: 0px;

    width: 50px;

    height: 3px;

    border-radius: 5px;

    background-color: #8a5717;

}



.full-width-section .outer-box .title-column .content .contact-number {

    position: relative;

    color: #ffffff;

    font-size: 20px;

}



.full-width-section .outer-box .title-column .content .contact-number span {

    color: #8a5717;

    font-size: 25px;

    font-weight: 500;

}



.full-width-section .outer-box .form-column {

    position: absolute;

    float: right;

    width: 50%;

    right: 0px;

    top: 0px;

    height: 100%;

}



.full-width-section .outer-box .form-column .form-inner {

    position: relative;

    max-width: 650px;

    margin: 0 auto;

    border-top: 1px solid #ebebeb;

    border-bottom: 1px solid #ebebeb;

    padding: 80px 15px 80px 15px;

}





/*Default Form*/



.default-form .row {

    margin: 0px -10px;

}



.default-form .form-group {

    position: relative;

    margin-bottom: 20px;

    padding: 0px 10px;

}



.default-form .form-group input,

.default-form .form-group select {

    position: relative;

    display: block;

    width: 100%;

    line-height: 26px;

    padding: 10px 20px;

    height: 48px;

    border-radius: 5px;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    transition: all 500ms ease;

}



.default-form .form-group textarea {

    position: relative;

    display: block;

    width: 100%;

    line-height: 30px;

    padding: 11px 20px;

    color: #555555;

    height: 108px;

    resize: none;

    border-radius: 5px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    transition: all 500ms ease;

}



.default-form .form-group input:focus,

.default-form .form-group textarea:focus {

    border-color: #8a5717;

}







/*** 



====================================================================

    Default Form Styling

====================================================================



***/



.default-form-two .form-group{

    position:relative;

    margin-bottom:20px; 

}



.default-form-two .form-group .field-inner{

    position:relative;

}



.default-form-two .form-group .field-inner .input-icon{

    position: absolute;

    right: 15px;

    top: 50%;

    margin-top: -10px;

    line-height: 20px;

    font-size: 12px;

    color: #8a5717;

}



.default-form-two .field-label{

    display:block;

    line-height:24px;

    font-weight:500;

    font-size:13px;

    color:#242133;

    margin-bottom:10px;

}



.default-form-two .form-group .field-label sup,

.default-form-two .form-group .field-label .req{

    color:#f06529;

    font-size:16px;

    padding-left:3px;

}



.default-form-two input[type="text"],

.default-form-two input[type="email"],

.default-form-two input[type="password"],

.default-form-two input[type="tel"],

.default-form-two input[type="url"],

.default-form-two select,

.default-form-two textarea{

    display:block;

    width:100%;

    line-height:24px;

    height:50px;

    font-size:14px;

    border:1px solid #e0e0e0;

    padding:12px 20px;  

    background-color:#ffffff;

    color:#242133;

    background:#ffffff;

    border-radius:3px;

    transition:all 300ms ease;

    -webkit-transition:all 300ms ease;

    -ms-transition:all 300ms ease;

    -o-transition:all 300ms ease;   

}



.default-form-two select{

    cursor:pointer;

    -moz-appearance:none;

    -webkit-appearance:none;

    -ms-appearance:none;

    -o-appearance:none;

    background:#ffffff url(../images/icons/icon-select.png) right center no-repeat;

}



.default-form-two textarea{

    height:120px;

    resize:none;    

}



.default-form-two select option{

    text-indent:15px;

    color:#242133;  

}



.default-form-two input:focus,

.default-form-two select:focus,

.default-form-two textarea:focus{

    border-color:#8a5717;   

}



.default-form-two input.error:focus,

.default-form-two select.error:focus,

.default-form-two textarea.error:focus{

    border-color:#ff0000 !important;    

}



.default-form-two .form-group label.error{

    display:block;

    line-height:20px;

    font-size:12px;

    text-transform:uppercase;

    font-weight:600;

    color:#ff0000;

    padding-top:10px;   

}



.default-form-two .check-box{

    position:relative;

    display:inline-block;

    margin:0px 25px 15px 0px;   

}



.default-form-two .check-box input{

    position:absolute;

    opacity:0;

    visibility:hidden;  

}



.default-form-two .check-box label{

    position:relative;

    display:block;

    font-weight:normal;

    padding-left:26px;

    font-size:14px;

    line-height:24px;

    cursor:pointer;

}



.default-form-two .check-box input:checked + label{

    color:#8a5717;

}



.default-form-two .check-box label:before{

    content:'';

    position:absolute;

    left:0px;

    top:4px;

    width:16px;

    height:16px;

    border:1px solid #d0d0d0;

}



.default-form-two .check-box label:after{

    content:'\f00c';

    font-family: 'FontAwesome';

    position:absolute;

    left:0px;

    top:4px;

    color:#8a5717;

    padding-right:2px;

    width:16px;

    height:16px;

    line-height:16px;

    font-size:10px;

    text-align:center;

    opacity:0;

}



.default-form-two .check-box input:checked + label:after{

    opacity:1;

}



.default-form-two .radio-group{

    position:relative;

    line-height:24px;

    padding:4px 0px;

}



.default-form-two .radio-group input{

    position:absolute;

    left:0px;

    top:6px;

    line-height:24px;

}



.default-form-two .radio-group label{

    position:relative;

    padding-left:20px;

    display:block;

    line-height:24px;

    font-weight:400;

    font-size:13px;

    cursor:pointer;

}







/*** 



====================================================================

    Page Title

====================================================================



***/



.page-title {

    position: relative;

    text-align: center;

    background-size: cover;

    background-attachment: fixed;

    background-position: center center;

    background-repeat: no-repeat;

    padding: 30px 0;

}



.page-title:after {

    position: absolute;

    content: '';

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    display: block;

    background-color: rgba(0, 0, 0, 0.15);

}



.page-title .title-box {

    position: relative;

    padding: 20px 30px;

    z-index: 10;

    display: inline-block;

    background-color: rgba(255, 255, 255, 0.10);

}



.page-title .title-box h2 {

    position: relative;

    color: #ffffff;

    font-size: 42px;

    text-transform: uppercase;

    font-weight: 700;

    line-height: 1.2em;

    margin-bottom: 10px;

}



.page-title .title-box ul {

    position: relative;

}



.page-title .title-box ul li {

    position: relative;

    color: #fff;

    font-size: 16px;

    font-weight: 500;

    display: inline-block;

    margin-right: 25px;

   font-style: italic;

}



.page-title .title-box ul li:after {

    content: '\f105';

    position: absolute;

    right: -17px;

    top: 0px;

    color: #ffffff;

    font-family: 'FontAwesome';

}



.page-title .title-box ul li:last-child:after {

    display: none;

}



.page-title .title-box ul li:last-child {

    margin-right: 0px;

}



.page-title .title-box ul li a {

    position: relative;

    color: #ffffff;

    font-size: 16px;

    font-weight: 500;

}





/*** 



====================================================================

    Testimonial Section

====================================================================



***/



.testimonial-section {

    position: relative;

    padding: 150px 0px 150px;

}





/*Testimonial Block*/



.testimonial-block-two {

    position: relative;

}



.testimonial-block-two .inner-box {

    position: relative;

    text-align: center;

    padding: 40px 50px 35px;

    border: 1px solid #f2f2f2;

}



.testimonial-block-two .inner-box .text {

    position: relative;

    color: #666666;

    font-size: 17px;

    line-height: 1.8em;

}



.testimonial-block-two .inner-box .text .quote-icon {

    position: relative;

    color: #e4e4e4;

    font-size: 22px;

}



.testimonial-block-two .inner-box .author-info {

    position: relative;

}



.testimonial-block-two .inner-box .author-info .image {

    position: relative;

    width: 70px;

    height: 70px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 50%;

    margin-top: 15px;

}



.testimonial-block-two .inner-box .author-info .image img {

    border-radius: 50%;

}



.testimonial-block-two .inner-box .author-info h3 {

    position: relative;

    color: #333333;

    font-weight: 500;

    font-size: 18px;

    margin-top: 10px;

    font-family:  'Montserrat', sans-serif;

}



.testimonial-section .owl-nav {

    display: none;

}



.testimonial-section .owl-dots {

    text-align: center;

    margin-top: 40px;

}



.testimonial-section .owl-dots .owl-dot {

    position: relative;

    display: inline-block;

    margin: 0px 5px;

}



.testimonial-section .owl-dots .owl-dot span {

    position: relative;

    display: block;

    width: 6px;

    height: 6px;

    margin: 0px;

    background: #d0d0d0;

    border-radius: 50px;

    transition: all 500ms ease;

}



.testimonial-section .owl-dots .owl-dot.active span {

    background: #8a5717;

    width: 15px;

}





/*** 



====================================================================

    Sidebar Page

====================================================================



***/



.sidebar-page-container {

    position: relative;

    padding: 80px 0px 30px;

}



.sidebar-page-container .sidebar-side,

.sidebar-page-container .content-side {

    margin-bottom: 30px !important;

}





/*Sidebar Title*/



.sidebar-title {

    position: relative;

    margin-bottom: 30px;

}



.sidebar-title h2 {

    font-size: 22px;

    color: #333333;

    font-weight: 500;

    line-height: 1.2em;

    padding-bottom: 18px;

    text-transform: capitalize;

}



.sidebar-title h2:before {

    position: absolute;

    content: '';

    left: 0px;

    bottom: 0px;

    width: 50px;

    height: 3px;

    background-color: #8a5717;

}



.sidebar-widget {

    position: relative;

    margin-bottom: 45px;

}





/*List Widget*/



.sidebar .sidebar-category .list {

    position: relative;

}



.sidebar .sidebar-category .list li {

    position: relative;

    line-height: 24px;

    margin-bottom: 9px;

}



.sidebar .sidebar-category .list li a {

    position: relative;

    display: block;

    color: #666666;

    font-size: 17px;

    font-weight: 500;

    line-height: 24px;

    background: #f8f8f8;

    border-radius: 3px;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

    padding: 13px 20px 13px 30px;

    font-family:  'Montserrat', sans-serif;

    border: 1px solid #ececec;

}



.sidebar .sidebar-category .list li a:before {

    content: "\f105";

    font-family: 'FontAwesome';

    font-size: 14px;

    left: 15px;

    line-height: 20px;

    position: absolute;

}



.sidebar .sidebar-category .list li a:hover {

    color: #ffffff;

    border-color: #8a5717;

    background-color: #8a5717;

}





/*Brouchers Widget*/



.brouchers {

    position: relative;

}



.brouchers li {

    position: relative;

    margin-bottom: 6px;

}



.brouchers li a {

    position: relative;

    padding: 8px 0px 12px 0px;

    color: #666666;

    font-size: 17px;

    font-weight: 500;

    display: block;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

    border-bottom: 1px dashed #e3e3e3;

    font-family:  'Montserrat', sans-serif;

}



.brouchers li a .icon {

    color: #666666;

    margin-right: 10px;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.brouchers li a .download-icon {

    position: absolute;

    right: 0px;

    top: 8px;

    color: #666666;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.brouchers li a:hover {

    color: #8a5717;

}



.brouchers li a:hover .icon,

.brouchers li a:hover .download-icon {

    color: #8a5717;

}





/*Quote Widget*/



.quote-widget {

    position: relative;

}



.quote-widget .inner-box {

    position: relative;

    border-radius: 5px;

    text-align: center;

    padding: 60px 15px 70px;

    background: #212832;

}



.quote-widget .inner-box h2 {

    position: relative;

    color: #ffffff;

    font-size: 22px;

    font-weight: 500;

    padding-bottom: 12px;

    margin-bottom: 20px;

}



.quote-widget .inner-box h2:after {

    position: absolute;

    content: '';

    left: 50%;

    bottom: 0px;

    width: 50px;

    height: 3px;

    border-radius: 3px;

    margin-left: -25px;

    background-color: #8a5717;

}



.quote-widget .inner-box .text {

    position: relative;

    color: #bcc1c7;

    font-size: 16px;

    line-height: 1.6em;

    margin-bottom: 20px;

}





/*Services Single*/



.services-single {

    position: relative;

}



.services-single .inner-box {

    position: relative;

}



.services-single .inner-box .image {

    position: relative;

}



.services-single .inner-box .image img {

    position: relative;

    width: 100%;

    display: block;

}



.services-single .inner-box .services-content {

    position: relative;

    padding-top: 30px;

}



.services-single .inner-box .services-content .text {

    position: relative;

    margin-bottom: 20px;

}



.services-single .inner-box .services-content .text p {

    position: relative;

    color: #666666;

    font-size: 17px;

    line-height: 1.6em;

    margin-bottom: 20px;

}



.services-single .inner-box .services-content .text h4 {

    position: relative;

    color: #333333;

    font-size: 24px;

    font-weight: 500;

    padding-bottom: 15px;

    margin-bottom: 20px;

}



.services-single .inner-box .services-content .text h4:after {

    position: absolute;

    content: '';

    left: 0px;

    bottom: 0px;

    width: 50px;

    height: 3px;

    border-radius: 3px;

    background-color: #8a5717;

}



.services-single .inner-box .services-content .two-column {

    position: relative;

    margin-bottom: 20px;

}



.services-single .inner-box .services-content .two-column .image-column {

    position: relative;

    margin-bottom: 20px;

}



.services-single .inner-box .services-content .two-column .content-column {

    position: relative;

}



.services-single .inner-box .services-content .two-column .content-column h4 {

    position: relative;

    color: #333333;

    font-size: 24px;

    font-weight: 500;

    padding-bottom: 15px;

    margin-bottom: 20px;

}



.services-single .inner-box .services-content .two-column .content-column h4:after {

    position: absolute;

    content: '';

    left: 0px;

    bottom: 0px;

    width: 50px;

    height: 3px;

    border-radius: 3px;

    background-color: #8a5717;

}



.services-single .inner-box .services-content .two-column .content-column .text {

    position: relative;

    color: #666666;

    font-size: 17px;

}





/*list style one*/



.list-style-one {

    position: relative;

}



.list-style-one li {

    position: relative;

    font-size: 16px;

    color: #666666;

    padding-left: 20px;

    font-style: italic;

    margin-bottom: 10px;

}



.list-style-one li:before {

    position: absolute;

    content: '\f0a9';

    left: 0px;

    top: 0px;

    font-size: 14px;

    color: #666666;

    font-style: normal;

    font-family: 'FontAwesome';

}





/*** 



====================================================================

    Styled Pagination

====================================================================



***/



.styled-pagination {

    position: relative;

}



.styled-pagination ul {

    position: relative;

    display: inline-block;

}



.styled-pagination li {

    position: relative;

    display: block;

    float: left;

    margin: 0px 10px 0px 0px;

}



.styled-pagination li a.prev,

.styled-pagination li a.next {

    width: 95px;

}



.styled-pagination li a {

    position: relative;

    display: inline-block;

    line-height: 44px;

    height: 45px;

    font-size: 16px;

    text-transform: capitalize;

    min-width: 50px;

    border: 1px solid #ececec;

    background: none;

    color: #b5b5b5;

    font-weight: 400;

    text-align: center;

    border-radius: 3px;

    transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

    -moz-transition: all 500ms ease;

}



.styled-pagination li a:hover,

.styled-pagination li a.active {

    border-color: #8a5717;

}



.cases-page .styled-pagination {

    margin-top: 10px;

}





/*Cases Single*/



.cases-single {

    position: relative;

}



.cases-single .inner-box {

    position: relative;

}



.cases-single .inner-box .cases-images {

    position: relative;

    margin-bottom: 20px;

}



.cases-single .inner-box .cases-images .row {

    margin: 0px -10px;

}



.cases-single .inner-box .cases-images .column {

    position: relative;

    padding: 0px 10px;

}



.cases-single .inner-box .cases-images .column .image {

    position: relative;

    margin-bottom: 20px;

}



.cases-single .inner-box .cases-images .column .image img {

    position: relative;

    width: 100%;

    display: block;

}





/*Cases Info Column*/



.cases-section .cases-info-column {

    position: relative;

}



.cases-section .cases-info-column .project-info-widget {

    position: relative;

    margin-bottom: 30px;

}



.cases-info-column .project-info-widget h2 {

    position: relative;

    color: #333333;

    font-size: 24px;

    font-weight: 500;

    padding-bottom: 12px;

    margin-bottom: 25px;

    text-transform: capitalize;

}



.cases-info-column .project-info-widget h2:after {

    position: absolute;

    content: '';

    left: 0px;

    bottom: 0px;

    width: 50px;

    height: 3px;

    border-radius: 4px;

    background-color: #8a5717;

}



.cases-info-column .project-info-widget ul {

    position: relative;

}



.cases-info-column .project-info-widget ul li {

    position: relative;

    color: #333333;

    font-size: 17px;

    margin-bottom: 8px;

}



.cases-info-column .project-info-widget ul li:before {

    position: absolute;

    content: ':';

    left: 40%;

}



.cases-info-column .project-info-widget ul li span {

    float: right;

}



.cases-single .cases-detail-column {

    position: relative;

}



.cases-single .cases-detail-column .text {

    position: relative;

    margin-bottom: 20px;

}



.cases-single .cases-detail-column .text p {

    position: relative;

    color: #666666;

    font-size: 17px;

    line-height: 1.6em;

    margin-bottom: 20px;

}



.cases-single .cases-detail-column .text h3 {

    position: relative;

    color: #333333;

    font-size: 24px;

    font-weight: 500;

    padding-bottom: 12px;

    margin-bottom: 25px;

    text-transform: capitalize;

}



.cases-single .cases-detail-column .text h3:before {

    position: absolute;

    content: '';

    left: 0px;

    bottom: 0px;

    width: 50px;

    height: 3px;

    border-radius: 4px;

    background-color: #8a5717;

}



.cases-single .cases-detail-column .text .chart-column {

    position: relative;

    margin-bottom: 40px;

}



.cases-single .cases-detail-column .text .chart-column .image {

    width: 100%;

    display: block;

}





/*Search Form Widget*/



.sidebar .search-box .form-group {

    position: relative;

    margin: 0px;

}



.sidebar .search-box .form-group input[type="text"],

.sidebar .search-box .form-group input[type="search"] {

    position: relative;

    line-height: 24px;

    background: #f8f8f8;

    color: #222222;

    display: block;

    font-size: 14px;

    width: 100%;

    height: 48px;

    border-radius: 3px;

    padding: 10px 50px 10px 20px;

    border: 1px solid #ececec;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

}



.sidebar .search-box .form-group button {

    position: absolute;

    right: 0px;

    top: 0px;

    height: 48px;

    width: 50px;

    line-height: 48px;

    text-align: center;

    display: block;

    font-size: 14px;

    color: #ffffff;

    background: #8a5717;

    font-weight: normal;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

    border-radius: 0px 3px 3px 0px;

}



.sidebar .search-box .form-group input:focus+button,

.sidebar .search-box .form-group button:hover {

    background-color: #8a5717;

}



.sidebar .search-box .form-group input:focus {

    border-color: #8a5717;

}





/*Category Widget*/



.category {

    position: relative;

}



.category li {

    position: relative;

    margin-bottom: 12px;

    padding-bottom: 10px;

    border-bottom: 1px dashed #e9e9e9;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

}



.category li:last-child {

    border-bottom: 0px;

    padding-bottom: 0px;

    margin-bottom: 0px;

}



.category li:hover a,

.category li:hover a:before {

    margin-left: 12px;

}



.category li a {

    color: #666666;

    font-size: 17px;

    font-weight: 400;

    padding-left: 25px;

    display: inline-block;

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

}



.category li a:before {

    position: absolute;

    content: '\f1c6';

    left: 0px;

    top: 0px;

    font-family: 'FontAwesome';

    transition: all 500ms ease;

    -moz-transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

}



.category li a:hover {

    color: #8a5717;

}





/*** 



====================================================================

    Recent Gallery

====================================================================



***/



.sidebar .recent-gallery .image {

    position: relative;

    float: left;

    width: 33.333%;

    padding: 0px 8px 8px 0px;

}



.sidebar .recent-gallery .image img {

    position: relative;

    display: block;

    width: 100%;

    border-radius: 4px;

}





/*Post Widget*/



.sidebar .popular-posts .post {

    position: relative;

    font-size: 14px;

    color: #666666;

    padding: 0px 0px;

    padding-left: 90px;

    min-height: 95px;

    margin-bottom: 22px;

    border-bottom: 1px dashed #e3e3e3;

}



.sidebar .popular-posts .post:last-child {

    margin-bottom: 0px;

    border: 0px;

    min-height: inherit;

}



.sidebar .popular-posts .post .post-thumb {

    position: absolute;

    left: 0px;

    top: 0px;

    width: 70px;

}



.sidebar .popular-posts .post .post-thumb img {

    display: block;

    width: 100%;

    border-radius: 5px;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.sidebar .popular-posts .post .text {

    position: relative;

    top: -4px;

    font-size: 17px;

    margin: 0px 0px 0px;

    font-weight: 400;

    color: #666666;

    line-height: 1.5em;

    text-transform: capitalize;

}



.sidebar .popular-posts .post .text a {

    color: #666666;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.sidebar .popular-posts .post a:hover {

    color: #8a5717;

}



.sidebar .popular-posts .post-info {

    font-size: 14px;

    color: #8a5717;

}





/*News Block Two*/



.news-block-two {

    position: relative;

    margin-bottom: 50px;

}



.news-block-two .inner-box {

    position: relative;

}



.news-block-two .inner-box .image {

    position: relative;

}



.news-block-two .inner-box .image .post-date {

    position: absolute;

    left: 0px;

    bottom: 0px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 500;

    padding: 8px 20px 8px 40px;

    background-color: #8a5717;

    font-family:  'Montserrat', sans-serif;

}



.news-block-two .inner-box .image .post-date:before {

    position: absolute;

    content: '\f073';

    left: 20px;

    top: 7px;

    font-family: 'FontAwesome';

}



.news-block-two .inner-box .image img {

    position: relative;

    width: 100%;

    display: block;

}



.news-block-two .inner-box .lower-box {

    position: relative;

    padding-top: 18px;

}



.news-block-two .inner-box .lower-box .post-meta {

    position: relative;

}



.news-block-two .inner-box .lower-box .post-meta li {

    position: relative;

    margin-right: 15px;

    padding-left: 18px;

    color: #8a5717;

    font-size: 14px;

    display: inline-block;

}



.news-block-two .inner-box .lower-box .post-meta li .icon {

    position: absolute;

    left: 0px;

    top: 0px;

}



.news-block-two .inner-box .lower-box h3 {

    position: relative;

    font-size: 22px;

    font-weight: 500;

    color: #333333;

    line-height: 1.3em;

    margin: 6px 0px 8px;

}



.news-block-two .inner-box .lower-box h3 a {

    position: relative;

    color: #333333;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.news-block-two .inner-box .lower-box h3 a:hover {

    color: #8a5717;

}



.news-block-two .inner-box .lower-box .text {

    position: relative;

    color: #666666;

    font-size: 17px;

    margin-bottom: 10px;

}



.news-block-two .inner-box .lower-box .text p {

    position: relative;

    color: #666666;

    font-size: 17px;

    line-height: 1.6em;

    margin-bottom: 20px;

    font-weight: 300;

}



.news-block-two .inner-box .lower-box .text blockquote {

    border: 1px solid #8a5717;

    border-radius: 5px;

    padding: 50px 50px;

}



.news-block-two .inner-box .lower-box .text blockquote .text {

    position: relative;

    color: #333333;

    font-size: 18px;

    text-align: center;

    font-style: italic;

}



.news-block-two .inner-box .lower-box .text blockquote .text .icon {

    color: #8a5717;

}



.news-block-two .inner-box .lower-box .read-more {

    position: relative;

    font-weight: 700;

    color: #8a5717;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.news-block-two .inner-box .lower-box .read-more:hover {

    color: #666666;

}



.news-block-two .inner-box .lower-box .post-share-options {

    position: relative;

    padding: 12px 0px;

    margin-top: 30px;

    border-top: 1px solid #ececec;

    border-bottom: 1px solid #ececec;

}



.news-block-two .inner-box .lower-box .post-share-options .share {

    position: relative;

    color: #333333;

    font-size: 16px;

    font-family:  'Montserrat', sans-serif;

}



.news-block-two .inner-box .lower-box .post-share-options .share .fa {

    color: #8a5717;

}



.news-block-two .inner-box .lower-box .post-share-options .new-posts {

    position: relative;

}



.news-block-two .inner-box .lower-box .post-share-options .new-posts li {

    position: relative;

    line-height: 1em;

    display: inline-block;

}



.news-block-two .inner-box .lower-box .post-share-options .new-posts li:first-child {

    padding-right: 10px;

    margin-right: 8px;

    border-right: 1px solid #333333;

}



.news-block-two .inner-box .lower-box .post-share-options .new-posts li a {

    color: #333333;

    font-size: 16px;

}



.news-block-two .inner-box .image .owl-dots {

    display: none;

}



.blog-carousel .owl-next,

.blog-carousel .owl-prev {

    position: absolute;

    width: 30px;

    height: 30px;

    margin: 0px;

    top: 50%;

    margin-top: -30px;

    text-align: center;

    background: none;

    color: #2c2c2c;

	background:#fff;

    font-size: 16px;

    line-height: 30px;

    padding: 0px;

    border-radius: 50%;

   

    transition: all 500ms ease 0s;

}



.blog-carousel .owl-next:hover,

.blog-carousel .image .owl-prev:hover {

    color: #ababab;

    background-color: rgba(255, 255, 255, 1);

}



.blog-carousel .owl-prev {

    left: 5px;

}



.blog-carousel .owl-next {

    right: 5px;

}



.our-blogs blockquote {

    position: relative;

    padding: 45px 80px;

    border: 0px;

    margin-bottom: 50px;

    background-color: #8a5717;

}



.our-blogs blockquote .inner {

    position: relative;

}



.our-blogs blockquote .inner .text {

    position: relative;

    font-size: 20px;

    font-weight: 300;

    color: #ffffff;

    font-style: italic;

    margin-bottom: 12px;

}



.our-blogs blockquote .inner .post-meta {

    position: relative;

}



.our-blogs blockquote .inner .post-meta li {

    position: relative;

    margin-right: 15px;

    padding-left: 18px;

    color: #ffffff;

    font-size: 14px;

    display: inline-block;

}



.our-blogs blockquote .inner .post-meta li .icon {

    position: absolute;

    left: 0px;

    top: 0px;

}









/*news block three*/





.news-block-three{

    position:relative;

    margin-bottom: 30px;

}



.news-block-three .inner-box{

    position:relative;

}



.news-block-three .inner-box .image-box{

    position:relative;

}



.news-block-three .inner-box .image-box img{

    position:relative;

    width:100%;

    display:block;

}



.news-block-three .inner-box .lower-content{

    position:relative;

    margin-top:25px;

}



.news-block-three .inner-box .lower-content .upper-box{

    position:relative;

}



.news-block-three .inner-box .lower-content .upper-box h2{

    font-size:17px;

    font-weight: 700;

    line-height: 1.2em;

    padding-bottom:15px;

    text-transform: uppercase;

}



.news-block-three .inner-box .lower-content .upper-box h2 a{

    color: #333333;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.news-block-three .inner-box .lower-content .upper-box h2 a:hover{

    color: #8a5717;

}



.news-block-three .inner-box .lower-content .separeter-line .line-one{

    position:relative;

    height:1px;

    width:28px;

    left:9px;

    margin-bottom:1px;

    background-color: #8a5717;

}



.news-block-three .inner-box .lower-content .separeter-line .line-one:before{

    position:absolute;

    content:'';

    left:-9px;

    top:0px;

    height:1px;

    width: 9px;

    background-color: #8a5717;

}



.news-block-three .inner-box .lower-content .separeter-line .line-two{

    position:relative;

    height:1px;

    width:28px;

    left:9px;

    background-color: #8a5717;

}



.news-block-three .inner-box .lower-content .separeter-line .line-two:before{

    position:absolute;

    content:'';

    left:-9px;

    top:0px;

    height:1px;

    width: 9px;

    background-color: #8a5717;

}



.news-block-three .inner-box .lower-content .text{

    color:#777777;

    font-size:16px;

    font-weight:400;

    margin-top: 20px;

    margin-bottom: 15px;

}



.news-block-three .inner-box .lower-content .text p{

    color:#777777;

    font-weight:400;

    line-height:1.5em;

    margin-bottom:25px;

}





.news-block-three .inner-box .lower-content .lower-box .date {

    position: relative;

    font-size: 14px;

    color: #888888;

}



.news-block-three .inner-box .lower-content .lower-box .date a {

    position: relative;

    color: #888;

}



/* news block four*/





.news-block-four{

    position:relative;

    margin-bottom: 25px;

}



.news-block-four .inner-box{

    position:relative;

    padding-left:130px;

    min-height:100px;

}



.news-block-four .inner-box .image-box{

    position:absolute;

    left:0px;

    top:0px;

    width:100px;

}



.news-block-four .inner-box .title-box{

    position:relative;

    margin-bottom: 15px;

}



.news-block-four .inner-box .title-box h2{

    font-size: 17px;

    font-weight: 700;

    line-height: 1.2em;

    padding-bottom: 15px;

    text-transform: uppercase;

}



.news-block-four .inner-box .title-box h2 a{

    color: #333333;

    transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -webkit-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

}



.news-block-four .inner-box .title-box h2 a:hover{

    color: #8a5717;

}



.news-block-two .inner-box .title-box .separeter-line{

    position:relative;

}



.news-block-four .inner-box .title-box .separeter-line .line-one{

    position: relative;

    height: 1px;

    width: 28px;

    left: 9px;

    margin-bottom: 1px;

    background-color: #8a5717;

}



.news-block-four .inner-box .title-box .separeter-line .line-one:before{

    position: absolute;

    content: '';

    left: -9px;

    top: 0px;

    height: 1px;

    width: 9px;

    background-color: #8a5717;

}



.news-block-four .inner-box .title-box .separeter-line .line-two{

    position: relative;

    height: 1px;

    width: 28px;

    left: 9px;

    background-color: #8a5717;

}



.news-block-four .inner-box .title-box .separeter-line .line-two:before{

    position: absolute;

    content: '';

    left: -9px;

    top: 0px;

    height: 1px;

    width: 7px;

    background-color: #8a5717;

}

















/*** 



====================================================================

    Comments Area

====================================================================



 ***/



.sidebar-page-container .comments-area {

    position: relative;

    margin-top: 0px;

    margin-bottom: 20px;

}



.sidebar-page-container .group-title {

    position: relative;

    margin-bottom: 35px;

}



.sidebar-page-container .group-title h2 {

    position: relative;

    font-size: 24px;

    color: #333333;

    font-weight: 500;

    padding-bottom: 15px;

    text-transform: capitalize;

}



.sidebar-page-container .group-title h2:before {

    position: absolute;

    content: '';

    left: 0px;

    bottom: 0px;

    width: 50px;

    height: 3px;

    background-color: #8a5717;

}



.sidebar-page-container .comments-area .comment-box {

    position: relative;

    padding: 0px 0px 30px;

    -webkit-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    -moz-transition: all 300ms ease;

    transition: all 300ms ease;

}



.sidebar-page-container .comments-area .comment-box:nth-child(1) {

    padding-top: 0px;

}



.sidebar-page-container .comments-area .comment-box:hover {

    border-color: #222222;

}



.sidebar-page-container .comments-area .comment {

    position: relative;

    padding: 0px 0px 0px 100px;

    font-size: 14px;

}



.sidebar-page-container .comments-area .comment .comment-inner {

    position: relative;

}



.sidebar-page-container .comments-area .comment .comment-reply {

    position: absolute;

    right: 0px;

    top: 0px;

    color: #8a5717;

    font-size: 15px;

    font-weight: 500;

    padding: 2px 14px;

    text-align: center;

    border-radius: 4px;

    display: inline-block;

    border: 1px solid #8a5717;

    text-transform: capitalize;

    -webkit-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

    -moz-transition: all 300ms ease;

    transition: all 300ms ease;

}



.sidebar-page-container .comments-area .comment .comment-reply:hover {

    color: #ffffff;

    background-color: #8a5717;

}



.sidebar-page-container .comments-area .comment .comment-reply .fa {

    margin-right: 6px;

}



.sidebar-page-container .comments-area .reply-comment {

    padding-left: 100px;

}



.sidebar-page-container .comments-area .comment-box .author-thumb {

    position: absolute;

    left: 0px;

    top: 0px;

    border-radius: 5px;

    margin-bottom: 20px;

}



.sidebar-page-container .comments-area .comment-box .author-thumb img {

    width: 70px;

    display: block;

    border-radius: 5px;

}



.sidebar-page-container .comments-area .comment-info {

    color: #3e5773;

    line-height: 24px;

    font-size: 13px;

}



.sidebar-page-container .comments-area .comment-box strong {

    font-size: 18px;

    font-weight: 500;

    color: #333333;

    line-height: 16px;

    text-transform: capitalize;

    font-family:  'Montserrat', sans-serif;

}



.sidebar-page-container .comments-area .comment-box .text {

    color: #666666;

    font-size: 16px;

    margin-top: 10px;

    line-height: 1.6em;

}



.sidebar-page-container .comments-area .comment-info .comment-time {

    position: relative;

    font-size: 14px;

    color: #666666;

}



.sidebar-page-container .comments-area .comment-box .theme-btn {

    padding: 5px 30px;

    font-size: 12px;

    border: 1px solid #fbca00;

    text-transform: uppercase;

    letter-spacing: 1px;

}





/*Comment Form*/



.comment-form .row {

    margin: 0px -10px;

}



.comment-form .form-group {

    margin-bottom: 20px;

    padding: 0px 10px;

}



.comment-form input[type="text"],

.comment-form input[type="email"],

.comment-form input[type="password"],

.comment-form select,

.comment-form textarea {

    display: block;

    width: 100%;

    height: 48px;

    font-size: 14px;

    color: #333333;

    line-height: 26px;

    padding: 10px 25px;

    border-radius: 4px;

    background-color: #f8f8f8;

    border: 1px solid #ececec;

    transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

}



.comment-form input:focus,

.comment-form select:focus,

.comment-form textarea:focus {

    border-color: #8a5717;

    background: none;

}



.comment-form textarea {

    height: 168px;

    resize: none;

    padding: 12px 25px;

}



.comment-form button {

    font-size: 14px;

    margin-top: 10px;

    padding: 10px 41px 10px;

}





/*** 



====================================================================

    Contact Section

====================================================================



 ***/



.contact-section {

    position: relative;

    padding: 80px 0px 50px;

}



.contact-section .sec-title .separater {

    position: relative;

    background-color: #8a5717;

}



.contact-section .contact-info-column {

    position: relative;

    margin-bottom: 40px;

}



.contact-section .contact-info-column .inner-box {

    position: relative;

    padding: 58px 45px 38px;

    background-repeat: no-repeat;

    background-size: cover;

    text-align: center;

    background: #212832;

}



.contact-section .contact-info-column .inner-box:before {}



.contact-section .contact-info-column .contact-info li {

    position: relative;

    line-height: 1.6em;

    padding-left: 50px;

    margin-bottom: 20px;

    color: #bcc1c7;

    font-size: 17px;

    text-align: left;

}



@media (max-width:767px) {

.contact-section .contact-info-column .contact-info li {

     line-height: 1.5em;

    font-size: 14px;

  

}

}







.contact-section .contact-info-column .contact-info li a{

 

    color: #bcc1c7;

 

}

.contact-section .contact-info-column .contact-info li a:hover {color:#8a5717}



.contact-section .contact-info-column .contact-info li .title {

    color: #ffffff;

    display: block;

    font-size: 18px; letter-spacing: 2px;

    font-weight: 600; text-transform: uppercase;

    font-family:  'Montserrat', sans-serif;

}



.contact-section .contact-info-column .contact-info li .icon {

    position: absolute;

    left: 0px;

    top: 5px;

    line-height: 1em;

    font-size: 30px;

    color: #c9af5e;

}



.contact-section .form-column {

    position: relative;

    margin-bottom: 20px;

}





/*Contact Form*/



.contact-form .row {

    margin: 0px -6px;

}



.contact-form .form-group {

    margin-bottom: 20px;

    padding: 0px 6px;

}



.contact-form input[type="text"],

.contact-form input[type="email"],

.contact-form input[type="password"],

.contact-form select,

.contact-form textarea {

    display: block;

    width: 100%;

    height: 48px;

    font-size: 14px;

    color: #333333;

    line-height: 26px;

    padding: 10px 25px;

    background-color: #f8f8f8;

    border: 1px solid transparent;

    transition: all 500ms ease;

    -webkit-transition: all 500ms ease;

    -ms-transition: all 500ms ease;

    -o-transition: all 500ms ease;

}



.contact-form input:focus,

.contact-form select:focus,

.contact-form textarea:focus {

    border-color: #8a5717;

    background: #fff;

}



.contact-form textarea {

    height: 115px;

    resize: none;

    padding: 12px 25px;

}



.contact-form button {

    font-size: 14px;

    padding: 10px 41px 10px;

}



.contact-form input.error,

.contact-form select.error,

.contact-form textarea.error {

    border-color: #ff0000 !important;

}



.contact-form label.error {

    display: block;

    line-height: 24px;

    padding: 5px 0px 0px;

    margin: 0px;

    text-transform: uppercase;

    font-size: 11px;

    color: #ff0000;

    font-weight: 500;

}





/*** 



====================================================================

    Map Section Style

====================================================================



***/



.map-data {

    text-align: center;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.8em;

}



.map-data h6 {

    font-size: 16px;

    font-weight: 700;

    text-align: center;

    margin-bottom: 5px;

    color: #121212;

}



.map-canvas {

    height: 450px;

}





/* welcome-section */



.title-bg {background:url(../images/title-bg.jpg);

text-align: center;padding: 40px 0; background-position: center bottom ; margin-bottom: 40px;

 }



.title-bg  h2{ color:#fff; text-transform: uppercase; font-size: 36px; }



.welcome-section {

    position: relative;

    padding: 80px 0 50px;

}



.welcome-section .top-title {

    margin-bottom: 10px;

}



.welcome-section .top-title h2 {

    position: relative;

    font-weight: 700;

    color: #222;

    text-align: right;

    text-transform: unset;

    line-height: 38px;

    padding-right: 20px;

}



.welcome-section .top-title h2:before {

    content: '';

    width: 4px;

    height: 100%;

    background: #FDBA38;

    position: absolute;

    letter-spacing: 1px;

    right: -26px;

    top: 4px;

}



.welcome-section .top-title .text {

    position: relative;

	  font-family:  'Montserrat', sans-serif;

	  font-size:16px; color:#333;

 

    text-align: justify;

	  padding-right: 30px;

}

@media(min-width:1399px) {

.welcome-section .top-title .text p {font-size:21px;}}


.welcome-item {

    margin-bottom: 30px;

    box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.04);

}



.welcome-item .content {

    border: 1px solid #f4f4f4;

    padding: 10px 20px;

}





.welcome-item .content {

    position: relative;

    overflow: hidden;

}



.welcome-item .content:before {

    position: absolute;

    content: '';

    background: #8a5717;

    left: 0;

    top: 0;

    width: 0%;

    height: 100%;

    transition: .7s ease;

}



.welcome-item:hover .content:before {

    width: 100%;

}



.welcome-item .content:after {

    position: absolute;

    content: '';

    background: #8a5717;

    width: 700px;

    height: 900px;

    transition: all 0.45s ease-in-out;

    transform: translate(400px, -700px) rotate(60deg);

    opacity: 0;

    z-index: 1;

}



.welcome-item:hover .content:after {

    transform: translate(200px, -700px) rotate(60deg);

    opacity: 1;

    transition: .7s ease;

}



.welcome-item.display-table {

    display: table;

}



.welcome-item.display-table .img-box,

.welcome-item.display-table .content {

    display: table-cell;

    vertical-align: middle;

}



.welcome-item.display-table .img-box {

    width: 29%; transition: all 0.3s ease-in-out;

        background: linear-gradient(-30deg, #f1f1f1 20%, #f1f1f1 40%, #f7f7f7 40%, #f7f7f7 60%, #f1f1f1 60%,

        #f1f1f1 80%, #f7f7f7 80%);

}





.welcome-item  .img-box {

 transition: all 0.3s ease-in-out;

 /*       background: linear-gradient(-30deg, #f1f1f1 20%, #f1f1f1 40%, #f7f7f7 40%, #f7f7f7 60%, #f1f1f1 60%,

        #f1f1f1 80%, #f7f7f7 80%);*/

        background: url(../images/tool-bg.jpg);

}





.welcome-item .content h3 {
color:#a58c3d;

 text-transform: uppercase;

    position: relative;

    font-size: 20px;

    letter-spacing: 2px;

    font-weight: 700;

    padding-bottom: 15px;

    z-index: 2;

    transition: .5s ease;

}



.welcome-item:hover .content h3{

    color: #fff;

}



.welcome-item .content h3:before {

    content: '';

    width: 45px;

    height: 3px;

    background: #f6ba18;

    position: absolute;

    top: 30px;

}



.welcome-item .content .text {

    position: relative;

    z-index: 2;

}



.welcome-item .content .text p {

    transition: .5s ease;

}



.welcome-item:hover .content .text p{

    color: #fff;

    transition: .5s ease;

}



.pros-section {padding:60px 0; background-color: #f5f5f5}

.pros-box{background:#fff; text-align: center; margin-bottom: 30px;    border: 1px solid #9e9e9e;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);transition: all 0.2s ease-in;}

.pros-box h4{    font-size: 16px;

    background-color: #4e2222; font-family:  'Montserrat', sans-serif;

    padding: 5px 10px;

    color: #fff;}

.pros-box .pic-box{background:#fff; max-height: 200px; overflow: hidden;}

.pros-box .pic-box img{margin:0 auto; transition: all 0.2s ease-in;}

.pros-box:hover {transform:  translateY(-5px); }

.pros-box:hover h4{background:#8a5717; color:#8a5717; }

.pros-box:hover .pic-box img{ transform: rotate(5deg)  scale(1.1); }



.pros-details {display:none;margin-bottom:30px; }

.pros-details hr{background:#2c2c2c; width:100%; margin:10px 0 20px; display:block}

.pros-details h2{margin-left:15px;  padding-bottom:5px; margin-bottom:20px; }

 



.pros-desc {background:#fff; padding:0 20px; margin-bottom:10px }

.pros-desc ul h3{text-transform:uppercase; margin-top:-10px; margin-bottom:10px; color:#8a5717}

@media (max-width:767px) {

	.pros-desc ul h3{  margin-top:10px;  }

	

}





.pros-desc ul li{font-family: 'Montserrat', sans-serif; font-size:17px; color:#4c4c4c;

list-style:disc; font-weight:normal; margin-left:15px;}

.pic-box span{    background: #8a5717;

    color: #fff;

    padding: 3px 20px;

    border-radius: 10px;

    display: block;

    max-width: 240px;

margin: 0 auto;}

.pic-box{background:#fff; text-align:center }

.pic-box img{width:100%;border:1px solid #d4d4d4; margin-bottom:10px }



.load-btn{width:150px; background:#2c2c2c; color:#fff;

	  padding:5px 10px; border-radius:5px; text-align:center; margin: 0 auto;display:block;text-transform:uppercase}

	  

	  .load-btn:hover{ background:#8a5717; color:#2c2c2c; }

.listy  {margin:10}

.listy  li{margin-bottom:20px; list-style:disc}

/* two-column-section */



.two-column-section {

    position: relative;

}



.two-column-section .img-box img {

    float: right;

    max-width: none;

    transition: all 0.2s ease-in-out;

}

.welcome-item:hover .img-box img{transform: scale(1.05);

 transition: all 0.2s ease-in-out;}



.two-column-section .content-column {

    position: relative;

    padding: 80px 0px;

    padding-left: 70px;

}



.two-column-section .content-column .text p {

    color: #bcc1c7;

}





/*====== feature section =========*/



.feature-section .left-column {

    background: url(../images/quality-bg.jpg) no-repeat right;

    background-size: cover;

    height: 450px;

    width: 40%;

    float: left;

    position: relative;

}



.feature-section .we_are_opacity {

    background: rgba(47, 45, 55, 0.2);

    height: 510px;

    width: 100%;

    position: absolute;

    top: 0;

    right: 0;

}



.feature-section .we_are_border {

    background: transparent;

    height: 95%;

    width: 98%;

    border: 1px solid #fff;

    position: absolute;

    top: 12px;

    right: 13px;

}



.feature-section .we_are_border {

    font-weight: 700;

    font-size: 1.625em;

    color: #fff;

    background: #FDBA38;

    display: inline;

    position: absolute;

    padding: 12px 39px;

    top: 40px;

    right: -14px;

}



.feature-section .right-column {

    background: url(../images/background/5.jpg) no-repeat right;

    background-size: cover;

    background-color: #202731;

    height: 450px;

    float: right;

    width: 60%;

    position: relative;

}



.feature-section .sec-title {

    margin-bottom: 40px;

}



.feature-section .feature-deatails {

    padding: 20px; color:#fbfbfb

}

@media(min-width:1399px) {.feature-section .feature-deatails {

   font-size:20px

}}


.feature-section .right-column .feature-deatails>p {

    color: #bcc1c7; padding-right:60px;

}



.feature-section .right-column .list-item p {

    display: inline-block;

    font-size: 1.125em;

    color: #fff;

    padding-left: 20px;

    padding-right: 32px;

    margin-top: 35px;

    margin-right: 25px;

}



.feature-section .right-column .list-item p:not(.support) {

    border-right: 1px dashed #6e6e6e;

}



.feature-section .list-item span::before {

    color: #fdba38;

    font-size: 50px;

}





/*about-us*/



.introduce_area_two {

    padding: 80px 0 80px;

}



.introduce_heading h2 {

    color: #222;

    font-size: 22px;

    font-weight: 800;

    margin-bottom: 15px;

}



.introduce_heading h2 span {

    color: #8a5717;

}



.introduce_area_two .text {

    margin-top: 30px;

}



.introduce_area_two ul {

    margin-top: 19px;

}



.introduce_area_two ul li {

    font-size: 18px;

    line-height: 35px;

    color: #666;

    font-weight: 500;

    text-transform: capitalize;

}



.introduce_area_two ul li i {

    color: #8a5717;

    margin-right: 6px;

}



.icon_home_two {

    padding: 10px 0 0;

    position: relative;

}



.single_icon_two {

    height: 65px;

    line-height: 63px;

    position: absolute;

    text-align: center;

    width: 65px;

    top: 36px;

    transition: .5s ease;

}



.single_icon_two:hover {

    background: #8a5717 none repeat scroll 0 0;

    color: #fff;

    transition: .5s ease;

}



.single_icon_two i {

    color: #8a5717;

    display: block;

    font-size: 60px;

    overflow: hidden;

}



.single_icon_two:hover i {

    color: #fff;

    display: block;

    font-size: 30px;

    overflow: hidden;

}



.icon_details_two {

    display: block;

    margin-left: 85px;

    margin-top: 22px;

    overflow: hidden;

    width: 250px;

}



.icon_details_two h2 {

    color: #222;

    font-family: "Open Sans", sans-serif;

    font-size: 16px;

    font-weight: 900;

    margin-bottom: 10px;

}



.icon_details_two p {

    color: #8b8b8b;

    line-height: 24px;

}



.icon_details_two a {

    color: #333333;

    font-size: 14px;

    text-transform: uppercase;

    font-weight: 600;

    text-decoration: none;

    transition: .5s ease;

}



.icon_details_two a:hover {

    color: #8a5717;

    transition: .5s ease;

}



.icon_details_two i {

    font-size: 16px;

    padding-left: 5px;

}





/*** 

=============================================

    Testimonial Area style

=============================================

***/



.testimonial-area {

    position: relative;

    background-color: #f4f5f7;

    background-attachment: fixed;

    background-position: center;

    padding: 80px 0;

}



.testimonial-area.overlay:before {

    position: absolute;

    content: '';

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    display: block;

    background-color: rgba(0, 0, 0, 0.5);

}



.testimonial-area .single-item {

    background-color: #fff;

    overflow: hidden;

    padding: 30px 30px 15px;

    position: relative;

}



.testimonial-area .single-item::before {

    color: rgba(39, 52, 71, 0.04);

    content: "\f10d";

    font-family: FontAwesome;

    font-size: 48px;

    position: absolute;

    right: 20px;

    top: 65px;

}



.testimonial-area .single-item .client-info {

    overflow: hidden;

    padding-left: 85px;

    position: relative;

    min-height: 90px;

}



.testimonial-area .single-item .client-info .img-box {

    position: absolute;

    top: 0;

    left: 0;

    height: 90px;

}



.testimonial-area .single-item .client-info .text-holder {

    padding-left: 20px;

    margin: 6px 0;

}



.testimonial-area .single-item .client-info .text-holder h3 {

    color: #444444;

    font-size: 18px;

    font-weight: 700;

    text-transform: uppercase;

    margin: 0 0 2px;

}



.testimonial-area .single-item .client-info .text-holder span {

    color: #777777;

    font-size: 14px;

}



.testimonial-area .single-item .text-box {

    overflow: hidden;

    margin: 19px 0 0;

}



.testimonial-area .owl-dots {

    position: relative;

    margin-top: 40px;

}



.testimonial-area .owl-dots .owl-dot {

    background-image: none;

    width: 12px;

    height: 12px;

    margin: 0px 5px;

    padding: 0px;

    border: 2px solid #009BF4;

    background: none;

    border-radius: 50%;

    -webkit-border-radius: 50%;

    -ms-border-radius: 50%;

    -o-border-radius: 50%;

    -moz-border-radius: 50%;

    transition: all 500ms ease;

}



.testimonial-area .owl-dots .owl-dot span {

    display: none;

}



.testimonial-area .owl-dots .owl-dot.active {

    border: 2px solid #0065bd;

    background: #0065bd;

}



.review-box ul {

    margin-left: -1px;

    margin-right: -1px;

}



.review-box ul li {

    display: inline-block;

    margin: 0 1px;

}



.review-box ul li i {

    color: #8a5717;

    font-size: 12px;

}



.testimonial-area .owl-nav,

.testimonial-area .owl-dots {

    display: none;

}







/*hexagon*/



.hexagon {

    position: relative;

    width: 80px;

    height: 46.19px;

    background-color: #ffffff;

    margin: 23.09px 0;

}



.hexagon:before,

.hexagon:after {

    content: "";

    position: absolute;

    width: 0;

    border-left: 40px solid transparent;

    border-right: 40px solid transparent;

}



.hexagon:before {

    bottom: 100%;

    border-bottom: 23.09px solid #ffffff;

    left: 0;

}



.hexagon:after {

    top: 100%;

    left: 0;

    width: 0;

    border-top: 23.09px solid #ffffff;

}





/*** 



====================================================================

    Error Section

====================================================================



 ***/



.faq-section {

    position: relative;

    padding: 80px 0px 80px;

}



.error-section {

    position: relative;

    text-align: center;

    padding: 30px 0px 50px;

}



.error-section h3 {

    position: relative;

    color: #1c1c1c;

    font-size: 32px;

    line-height: 1.4em;

    text-transform: uppercase;

    font-weight: 800;

}



.error-section h3 span {

    font-size: 200px;

    line-height: 250px;

    font-family: "Montserat", sans-serif;

}



.error-section .text {

    position: relative;

    font-size: 14px;

    color: #777777;

    margin-top: 15px;

    line-height: 1.8em;

}



.error-section .text a {

    color: #8a5717;

}



.error-section .search-website {

    position: relative;

    max-width: 560px;

    margin: 0 auto 40px;

    margin-top: 40px;

}



.error-section .search-website .form-group {

    position: relative;

    margin-bottom: 0px;

    text-align: left;

}



.error-section .search-website .form-group input[type="text"],

.error-section .search-website .form-group input[type="search"],

.error-section .search-website .form-group textarea {

    position: relative;

    display: block;

    max-width: 400px;

    width: 100%;

    line-height: 26px;

    padding: 10px 15px;

    background: #f4f4f4;

    border: 1px solid #f4f4f4;

    height: 48px;

    border-radius: 3px;

    -moz-transition: all 0.5s ease;

    -webkit-transition: all 0.5s ease;

    -ms-transition: all 0.5s ease;

    -o-transition: all 0.5s ease;

    transition: all 0.5s ease;

}



.error-section .search-website .form-group input[type="text"]:focus,

.error-section .search-website .form-group input[type="search"]:focus,

.error-section .search-website .form-group textarea:focus {

    border-color: #8a5717;

}



.error-section .search-website .form-group button {

    position: absolute;

    right: 0px;

    top: 0px;

    display: block;

    width: 150px;

    height: 46px;

    text-align: center;

    margin: 0px;

    padding: 11px 30px;

    line-height: 24px;

    font-size: 14px;

    text-transform: uppercase;

    background: #8a5717;

    color: #ffffff;

    font-weight: 800;

    border-radius: 2px;

}



.error-section .search-website .form-group button:hover,

.error-section .search-website .form-group input:focus+button {

    background: #8a5717;

    color: #ffffff;

}





/*** 



====================================================================

    Testimonials Section

====================================================================



 ***/



.testimonial {

    position: relative;

    padding: 80px 0px 30px;

}



.testimonial-item {

    margin-bottom: 50px;

}



.testimonial .testimonial-item .content {

    padding-left: 60px;

    padding-top: 37px;

    padding-bottom: 30px;

    background: #f7f7f7;

    border: 1px solid #efefef;

    position: relative;

    margin-left: 20px;

}



.testimonial .testimonial-item .content span {

    position: absolute;

    width: 50px;

    height: 45px;

    line-height: 45px;

    text-align: center;

    top: 40px;

    left: -18px;

    background: #8a5717;

    color: #fff;

}



.testimonial .testimonial-item .content span:after {

    position: absolute;

    content: '';

    border-bottom: 9px solid #8a5717;

    border-right: 9px solid #8a5717;

    border-left: 9px solid transparent;

    border-top: 9px solid transparent;

    bottom: 100%;

    left: 0;

}



.testimonial .testimonial-item .rating {

    color: #8a5717;

}



.testimonial .testimonial-item .author {

    position: relative;

    margin-left: 20px;

    margin-top: 20px;

}



.testimonial .testimonial-item .author li {

    vertical-align: middle;

}



.testimonial .testimonial-item .author li img {

    height: 60px;

    width: 60px;

    border-radius: 50%;

}



.testimonial .testimonial-item .author h5 {

    font-size: 16px;

}



.testimonial .testimonial-item .author p {

    color: #000;

}











/*** 

=============================================

   Shop area  style

=============================================

***/

#shop-area {

    padding-top: 80px;

    padding-bottom: 80px;

}

#shop-area .shop-content {}

.single-product-item{

    background: #f7f7f7;

    margin-bottom: 40px;

    transition: all 0.7s ease;

}

.single-product-item:hover{

    -webkit-box-shadow: 0px 3px 4px -1px rgba(220,217,217,1);

    -moz-box-shadow: 0px 3px 4px -1px rgba(220,217,217,1);

    box-shadow: 0px 3px 4px -1px rgba(220,217,217,1);    

}

.single-product-item .img-holder{

    display: block;

    overflow: hidden;

    position: relative;

    border-bottom: 1px solid #e4e3e3;

}

.single-product-item .img-holder img{

    transform: scale(1);

    transition: all 0.7s ease 0s;

    width: 100%;   

}

.single-product-item:hover .img-holder img{

    transform: scale(1.1);

}

.single-product-item .img-holder .overlay-style-one {}

.single-product-item .img-holder .overlay-style-one .box .content a {

    background: transparent;

    opacity: 0;

    transform: scale(0.7);

    transition: all 0.5s ease 0s;

    width: 160px;

    height: 48px;

    border: 2px solid #fff;

    line-height: 46px;

    font-size: 16px;

    font-weight: 700;

    padding: 10px 30px;

}

.single-product-item .img-holder .overlay-style-one .box .content a:hover {

    color: #fff;

}

.single-product-item:hover .img-holder .overlay-style-one .box .content a {

    opacity: 1;

    filter: alpha(opacity=100);

    -webkit-transform: scale(1);

    -ms-transform: scale(1);

    transform: scale(1);

}

.single-product-item:hover .img-holder .overlay-style-one{

    background: rgba(44, 62, 80, 0.68);

}





.single-product-item .title-holder {

  padding: 13px 15px 15px;

  background: #fafafa;

}

.single-product-item .title-holder .rate{

    color: #fdc716;

    font-size: 16px;

    font-weight: 400;

    font-family: 'Hind', sans-serif;

}

.single-product-item .title-holder .top {

  padding-bottom: 7px;  

}

.single-product-item .title-holder .top .product-title {}

.single-product-item .title-holder .top .product-title a h5 {

    color: #222222;

    font-size: 16px;

    font-weight: 400;

    margin: 4px 0 0;

    text-transform: capitalize;

    transition: all 500ms ease;

}

.single-product-item .title-holder .top .product-title a:hover h5 {

    color: #fdc716;    

}

.single-product-item .title-holder .top .review-box ul li i{

    color: #fdc716;

    font-size: 12px;

}

#shop-area .post-pagination {

  border-top: 1px solid #f7f7f7;

  padding-top: 40px;

}





.single-sidebar .price-ranger{ }

.single-sidebar .price-ranger .ui-widget-content {

  background: #f7f7f7;

  border: none;

  height: 2px;

}

.single-sidebar .price-ranger .ui-slider-handle {

  background: #fdc716 none repeat scroll 0 0;

  border: 2px solid #252525;

  border-radius: 50%;

  height: 10px;

  margin-left: -4px;

  outline: medium none;

  width: 10px;

  cursor: pointer;

}

.single-sidebar .price-ranger .ui-slider-horizontal .ui-slider-handle {

  top: -5px;

}

.single-sidebar .price-ranger .ui-slider .ui-slider-range {

  background: #000;

}

.single-sidebar .price-ranger #slider-range {

  margin-left: 3px;

  margin-right: 5px;

  margin-top: 0;

}

.single-sidebar .price-ranger .ranger-min-max-block {

    margin-bottom: 0px;

    margin-top: 25px;

}

.single-sidebar .price-ranger .ranger-min-max-block input {

  display: inline-block;

}

.single-sidebar .price-ranger .ranger-min-max-block input[type="submit"] {

    float: left;

    margin-right: 20px;

    padding: 7px 0 5px;

    line-height: 26px;

    text-align: center;

    width: 90px;

    border: none;

    color: #fff;

    background: #fdc716;

}

.single-sidebar .price-ranger .ranger-min-max-block input[type="submit"]:hover{

    background: #fdc716;

}

.single-sidebar .price-ranger .ranger-min-max-block input[type="text"] {

    border: medium none;

    color: #999;

    font-size: 16px;

    font-weight: 300;

    outline: medium none;

    text-align: right;

    width: 40px;

}

.single-sidebar .price-ranger .ranger-min-max-block input[type='text'].max {}

.single-sidebar .price-ranger .ranger-min-max-block span {

    color: #999;

    font-weight: 400;

    font-size: 16px;

    line-height: 40px;

}





.sidebar-wrapper .single-sidebar .latest-product {}

.sidebar-wrapper .single-sidebar .latest-product li {

  border-bottom: 1px solid #f7f7f7;

  margin-bottom: 25px;

  overflow: hidden;

  padding-bottom: 16px;

  padding-left: 70px;

  position: relative;

}

.sidebar-wrapper .single-sidebar .latest-product li:last-child {

    border-bottom: none;

    margin-bottom: 0px;

    padding-left: 70px;

    position: relative;

    padding-bottom: 0;



}

.sidebar-wrapper .single-sidebar .latest-product li .img-holder{

  display: block;

  overflow: hidden;

  position: absolute;

  width: 70px;

  min-height: 70px;

  background: #fafafa;

  line-height: 70px;

  top: 0;

  left: 0;

}

.sidebar-wrapper .single-sidebar .latest-product li .img-holder img{

    transform: scale(1);

    transition: all 0.7s ease 0s;

    width: 100%;   

}

.sidebar-wrapper .single-sidebar .latest-product li:hover .img-holder img{

    transform: scale(1.1);

}

.sidebar-wrapper .single-sidebar .latest-product li .img-holder .overlay-style-one .box .content a i {

    background: transparent;

    opacity: 0;

    transform: scale(0.7);

    transition: all 0.5s ease 0s;

    font-size: 16px;

    color: #fff;

}

.sidebar-wrapper .single-sidebar .latest-product li:hover .img-holder .overlay-style-one .box .content a i{

    opacity: 1;

    filter: alpha(opacity=100);

    -webkit-transform: scale(1);

    -ms-transform: scale(1);

    transform: scale(1);    

}

.sidebar-wrapper .single-sidebar .latest-product li:hover .img-holder .overlay-style-one{

    background: rgba(44, 62, 80, 0.61);

}





.sidebar-wrapper .single-sidebar .latest-product li .title-holder {

  padding-left: 20px;  

}

.sidebar-wrapper .single-sidebar .latest-product li .title-holder a h4 {

  color: #222222;

  font-size: 16px;

  font-weight: 400;

  text-transform: capitalize;

  margin: 0 0 10px;

  transition: all 500ms ease;

}

.sidebar-wrapper .single-sidebar .latest-product li .title-holder h5 {

  color: #fdc716;

  font-size: 16px;

  font-weight: 400;

  text-transform: capitalize; 

  font-family: 'Hind', sans-serif;

}

.sidebar-wrapper .single-sidebar .latest-product li .title-holder .review-box {}

.sidebar-wrapper .single-sidebar .latest-product li .title-holder .review-box li {

  display: inline-block;

  margin: 0 1px;

  position: static;

  padding: 0;

  border: none;

}

.sidebar-wrapper .single-sidebar .latest-product li .title-holder .review-box li i{

    font-size: 12px;

    color: #c6c6c6;

}

.sidebar-wrapper .single-sidebar .latest-product li:hover .title-holder h4{

  color: #fdc716;

}



.sidebar-wrapper .single-sidebar .product-tag{

  margin-left: -3px;

  margin-right: -3px;

  margin-top: -5px;    

}

.sidebar-wrapper .single-sidebar .product-tag li{

  display: inline-block;

  margin: 0 3px 10px;    

}

.sidebar-wrapper .single-sidebar .product-tag li a{

  border: 1px solid #f4f4f4;

  color: #999;

  display: block;

  font-size: 16px;

  font-weight: 300;

  padding: 4px 10px 6px;

  transition: all 500ms ease 0s;

}

.sidebar-wrapper .single-sidebar .product-tag li a:hover{

  background: #fdc716;

  border-color: #fdc716;

  color: #fff;    

}







/*** 

=============================================

   Single Shop Area style

=============================================

***/

.single-shop-area{

    padding-top: 80px;

    padding-bottom: 40px;

}

.single-shop-content .img-holder {

  margin-right: 50px;

  text-align: center;

  background: #fafafa;

  padding: 113px 0;

}

.single-shop-content .img-holder img {

  display: inline-block;

}

.single-shop-content .content-box {

  margin-left: -50px;

}

.single-shop-content .content-box h3 {

  color: #222222;

  font-size: 24px;

  font-weight: 400;

  margin: 0 0 8px;

  text-transform: capitalize;

}

.single-shop-content .content-box .review-box {

  margin: 0 0 10px;  

}

.single-shop-content .content-box .review-box ul {}

.single-shop-content .content-box .review-box ul li {}

.single-shop-content .content-box .review-box ul li i {

  color: #c6c6c6;

}

.single-shop-content .content-box span.price {

  color: #fdc716;

  font-size: 22px;

  font-weight: 400;

  font-family: 'Hind', sans-serif;

}

.single-shop-content .content-box .text {

  overflow: hidden;

  padding: 25px 0 9px;

}

.single-shop-content .content-box .location-box {

  margin: 4px 0 20px;

}

.single-shop-content .content-box .location-box p {

  color: #222222;

  font-size: 16px;

  margin: 0 0 12px;

}

.single-shop-content .content-box .location-box form input {

  border: 2px solid #f7f7f7;

  height: 40px;

  padding-left: 10px;

  padding: 0 10px 3px;

  padding-right: 10px;

  width: 170px;

  transition: all 500ms ease;

  margin: 0 0 10px;

}

.single-shop-content .content-box .location-box form input:focus{

  border-color: #fdc716;

}

.single-shop-content .content-box .location-box form button {

  background: #f7f7f7 none repeat scroll 0 0;

  border: medium none;

  color: #252525;

  font-size: 14px;

  font-weight: 700;

  height: 40px;

  padding: 0;

  text-align: center;

  text-transform: uppercase;

  transition: all 500ms ease 0s;

  width: 95px;

  position: relative;

  top: -1px;

}

.single-shop-content .content-box .location-box form button:hover{

  background: #fdc716;

  color: #fff;

}

.single-shop-content .content-box .location-box form span {

  color: #fdc716;

}

.single-shop-content .content-box .addto-cart-box {}

.single-shop-content .content-box .addto-cart-box .input-group.bootstrap-touchspin {

  float: left;

  width: 70px;

}

.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {

  border-radius: 0

}

.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {

  border-radius: 0;

  margin-top: -2px;

}

.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical > .btn {

  display: block;

  float: none;

  margin-left: -1px;

  max-width: 100%;

  padding: 11px 14px 12px;

  position: relative;

  width: 100%;

}

.single-shop-content .content-box .addto-cart-box .btn-default {

  background-color: #efefef;

  border-color: #efefef;

  color: #9e9e9e;

}

.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical i {

  color: #9e9e9e;

  font-weight: normal;

  left: 8px;

  position: absolute;

  top: 7px;

}

.single-shop-content .content-box .addto-cart-box button.addtocart {

  margin-left: 25px;

}

.single-shop-content .content-box .addto-cart-box button.addtocart:hover{}



.product-tab-box {

  border: 1px solid #ececec;

  border-top: none;

  border-right: none;

  border-left: none;

  overflow: hidden; 

  margin-top: 80px;

}

.product-tab-box .tab-menu {

  border-bottom: 1px solid #ececec;

  margin-bottom: 30px;

}

.product-tab-box .tab-menu li {

  display: inline-block;

  float: left;

  margin-bottom: -1px;

  margin-right: 3px;

}

.product-tab-box .tab-menu li a {

  background: #f7f7f7;

  border-top: 1px solid #ececec;

  border-left: 1px solid #ececec;

  border-right: 1px solid #ececec;

  border-bottom: 1px solid transparent;

  border-radius: 0;

  display: block;

  margin-right: 1px;

  padding: 15px 30px 13px;

  color: #222222;

  font-size: 16px;

  font-weight: 400;

  text-transform: capitalize;

  background: #f7f7f7;

  transition: all 500ms ease;

}

.product-tab-box .tab-menu li.active a, 

.product-tab-box .tab-menu li:hover a{

  background: #ffffff;

  color: #fdc716;

  border-left-color: #ececec;

  border-top-color: #ececec;

  border-right-color: #ececec;

 

}



.product-tab-box .tab-content {

  border-left: 1px solid #ececec;

  border-right: 1px solid #ececec;

  margin-top: -30px;

  padding: 30px 30px 40px;

}

.product-tab-box .tab-content .review-box {

  

}

.product-tab-box .tab-content .review-box .sec-title-two {

  margin-top: 3px;

  padding-bottom: 22px;

}

.product-tab-box .tab-content .review-box .sec-title-two h3 {

  color: #3d3d3d;

  font-size: 20px;

  font-weight: 400;

  text-transform: capitalize;

}

.product-tab-box .tab-content .review-box .single-review-box {

  margin-bottom: 30px;

  padding-left: 60px;

  position: relative;

}

.product-tab-box .tab-content .review-box .single-review-box .img-holder {

  left: 0;

  position: absolute;

  top: 20px;

  width: 65px;

}





.product-tab-box .tab-content .review-box .single-review-box .text-holder {

  border: 1px solid #ececec;

  margin-left: 20px;

  padding: 17px 20px 12px;

}

.product-tab-box .tab-content .review-box .single-review-box .text-holder .top {

  margin: 0 0 10px;

  overflow: hidden;

}



.product-tab-box .tab-content .review-box .single-review-box .text-holder .top .name h4 {

  color: #3d3d3d;

  font-size: 16px;

  font-weight: 400;

  margin: 0;

  text-transform: capitalize;

}

.product-tab-box .tab-content .review-box .single-review-box .text-holder .top .review-box ul {

  margin-top: -2px;

  padding-left: 0px;

  position: relative;

}

.product-tab-box .tab-content .review-box .single-review-box .text-holder .top .review-box ul li {

  display: inline-block;

  margin-right: 1px;

}

.product-tab-box .tab-content .review-box .single-review-box .text-holder .top .review-box ul li i {

  color: #fdc716;

  font-size: 14px;

}

.product-tab-box .tab-content .review-box .single-review-box .text-holder .text p {

  margin: 0;

}





.product-tab-box .tab-content .review-form {

  padding-top: 30px;

}

.product-tab-box .tab-content .review-form .sec-title-two {

  padding-bottom: 34px;

}

.product-tab-box .tab-content .review-form .sec-title-two h3 {

  color: #3d3d3d;

  font-size: 24px;

  font-weight: 400;

  text-transform: capitalize;

}

.product-tab-box .tab-content .review-form .add-rating-box {

  margin: 0 0 20px;

}

.product-tab-box .tab-content .review-form .add-rating-box .add-rating-title h4 {

  color: #999;

  font-size: 16px;

  font-weight: 400;

  margin: 0 0 10px;

  font-family: 'Hind', sans-serif;

  text-transform: none;

}

.product-tab-box .tab-content .review-form .add-rating-box ul li {

  border-right: 1px solid #ebebeb;

  display: inline-block;

  line-height: 20px;

  margin-right: 10px;

  padding-right: 10px;

}

.product-tab-box .tab-content .review-form .add-rating-box ul li:last-child{

  margin-right: 0px;

  padding-right: 0px;

  border-right: 0px solid #ebebeb;

}

.product-tab-box .tab-content .review-form .add-rating-box ul li a i {

  color: #d6d6d6;

  font-size: 12px;

  line-height: 20px;

  margin-right: 1px;

  opacity: 0.9;

  transition: all 500ms ease 0s;

}





.product-tab-box .tab-content .review-form form .field-label p {

  color: #999;

  font-size: 16px;

  font-weight: 400;

  margin: 0 0 3px;

  font-family: 'Hind', sans-serif;

}

.product-tab-box .tab-content .review-form form input[type="text"], 

.product-tab-box .tab-content .review-form form input[type="email"], 

.product-tab-box .tab-content .review-form form textarea {

  background: #fff;

  height: 50px;

  width: 100%;

  border: 1px solid #ececec;

  color: #252525;

  font-size: 14px;

  padding: 0 15px;

  margin-bottom: 20px;

  transition: all 500ms ease;

}

.product-tab-box .tab-content .review-form form textarea {

  height: 110px;

  padding: 10px 15px;

  margin-bottom: 25px;

}

.product-tab-box .tab-content .review-form form button {

}

.product-tab-box .tab-content .review-form form button:hover{}

.product-tab-box .tab-content .review-form .add-rating-box ul li:hover a i{

  opacity: 1;

  color: #fdc716;

}

.product-tab-box .tab-content .review-form form input[type="text"]:focus{

  border-color: #fdc716;

}

.product-tab-box .tab-content .review-form form input[type="email"]:focus{

  border-color: #fdc716;

}

.product-tab-box .tab-content .review-form form textarea:focus{

  border-color: #fdc716;  

}



.related-product {

  padding-top: 80px;

}

.related-product .sec-title {

  padding-bottom: 34px;

}

.related-product .sec-title h3 {

  color: #222222;

  font-size: 24px;

  font-weight: 400;

  text-transform: capitalize;

}

.related-product .single-product-item {}



.review-box ul {

  margin-left: -1px;

  margin-right: -1px;

}

.review-box ul li {

  display: inline-block;

  margin: 0 1px;

}

.review-box ul li i {

  color: #fdc716;

  font-size: 14px;

}





/* Overlay styles one */

.overlay-style-one{

  background: transparent;

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  transition: all 500ms ease;

  transition-delay: 0.10s;



}

.overlay-style-one .box{

  display: table;

  height: 100%;

  width: 100%;    

}

.overlay-style-one .box .content{

  display: table-cell;

  text-align: center;

  vertical-align: middle;    

}





/* Overlay styles two */

.overlay-style-two{

  background-color: rgba(43, 44, 54, 0.9);

  width: 100%;

  height: 100%;

  position:absolute;

  top:0;

  left:0;

  -webkit-transform: scale(0);

  transform: scale(0);

  border: 3px solid #fd3e67;

  -webkit-transition: all 0.7s ease;

  transition: all 0.7s ease;

}

.overlay-style-two .box{

  display: table;

  height: 100%;

  width: 100%;    

}

.overlay-style-two .box .content{

  display: table-cell;

  text-align: center;

  vertical-align: middle;    

}







/*** 

=============================================

    Checkout Area style

=============================================

***/

.checkout-area {

  padding-bottom: 80px;

  padding-top: 80px;

}

.checkout-area .sec-title {

  padding-bottom: 30px;

  margin-bottom: 0px;

}

.checkout-area .sec-title h2 {

  color: #222222;

  font-size: 24px;

  font-weight: 400;

  text-transform: capitalize;

}



.checkout-area .exisitng-customer {

  background: #f7f7f7;

  display: block;

  padding: 20px 28px 21px;

  position: relative;

  margin-bottom: 20px;

}

.checkout-area .exisitng-customer:before{

  position: absolute;

  top: 0;

  left: 0;

  width: 2px;

  height: 100%;

  background: #fdc716;

  content: "";

}

.checkout-area .exisitng-customer h5{

  color: #222222;

  font-size: 16px;

  font-weight: 400;

}

.checkout-area .exisitng-customer h5 a{

  color: #fdc716;

  display: inline-block;

  padding-left: 15px;

}



.checkout-area .coupon {

  background: #f7f7f7;

  display: block;

  padding: 20px 28px 21px;

  position: relative; 

  margin-bottom: 60px;

}

.checkout-area .coupon:before {

  position: absolute;

  top: 0;

  left: 0;

  width: 2px;

  height: 100%;

  background: #fdc716;

  content: "";  

}

.checkout-area .coupon h5 {

  color: #222222;

  font-size: 16px;

  font-weight: 400;  

}

.checkout-area .coupon h5 a {

  color: #fdc716;

  display: inline-block;

  padding-left: 15px;  

}





.checkout-area .form form .field-label {

  color: #222222;

  font-size: 16px;

  font-weight: 400;

  margin: -3px 0 3px;

  text-transform: capitalize;

  font-family: 'Montserrat', sans-serif;

}

.checkout-area .form form .field-input input[type="text"] {

  border: 1px solid #ececec;

  color: #999;

  display: block;

  font-size: 16px;

  height: 48px;

  margin-bottom: 25px;

  padding: 0 15px;

  width: 100%;

  transition: all 500ms ease;

  -moz-transition: all 500ms ease;

  -webkit-transition: all 500ms ease;

  -ms-transition: all 500ms ease;

  -o-transition: all 500ms ease;

}

.checkout-area .form form .field-input input[type="text"]:focus{

  border: 1px solid #fdc716;

}

.checkout-area .create-acc .checkbox {

  margin: 7px 0 0;

}

.checkout-area .create-acc .checkbox label {

  color: #fdc716;

  font-weight: 400;

  font-size: 16px;

}

.checkout-area .create-acc .checkbox input {

  margin-top: 6px;

}





.checkout-area .shipping-info input[type="checkbox"] {

  cursor: pointer;

  display: inline-block;

  margin: 0 0 0 40px;

  position: relative;

  top: 0px;

  vertical-align: middle;

}

.checkout-area .form form .field-input textarea {

  border: 1px solid #ececec;

  color: #999;

  display: block;

  font-size: 16px;

  height: 124px;

  margin-bottom: 28px;

  padding: 10px 15px;

  width: 100%;

  transition: all 500ms ease;

  -moz-transition: all 500ms ease;

  -webkit-transition: all 500ms ease;

  -ms-transition: all 500ms ease;

  -o-transition: all 500ms ease;

}

.checkout-area .form form .field-input textarea:focus{

  border-color: #fdc716;

}





.checkout-area .bottom {

  padding-top: 70px

}

.checkout-area .table {

  overflow-x: auto;

  position: relative;

  width: 100%;

  margin-bottom: 0;

}

.checkout-area .table .cart-table {

  min-width: auto;

  width: 100%;

}

.checkout-area .table .cart-table .cart-header {

  background: #f7f7f7;

  color: #222222;

  font-size: 16px;

  position: relative;

  text-transform: capitalize;

  width: 100%;

  font-weight: 400;

  font-family: 'Montserrat', sans-serif;

}

.checkout-area .table .cart-table thead tr th {

  font-weight: 400;

  line-height: 24px;

  min-width: 110px;

  padding: 19px 30px 17px;

}

.checkout-area .table .cart-table thead tr th.product-column {

  padding-left: 30px;

  text-align: left;

}



.checkout-area .table .cart-table tbody tr {

  border-bottom: 1px solid #f7f7f7;

}

.checkout-area .table .cart-table tbody tr td {

    vertical-align: middle

}

.checkout-area .table .cart-table tbody tr td {

  min-width: 110px;

  padding: 25px 30px;

}



.checkout-area .table .cart-table tbody tr .product-column .column-box {

  min-height: 70px;

}

.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb {

  width: 70px;

}

.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb img {

  display: block;

  max-width: 100%;

}

.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb, 

.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title{

  display: table-cell;

  vertical-align: middle;

}

.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title{

  padding-left: 20px;

}

.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title h3 {

  color: #222222;

  font-size: 16px;

  font-weight: 400;

  text-transform: capitalize;

}



.checkout-area .table .cart-table tbody tr .qty {

  padding-right: 30px;

  width: 130px;

}

.checkout-area .table .cart-table tbody tr .qty .input-group.bootstrap-touchspin {

  float: right;

  width: 60px;

}

.checkout-area .table .cart-table tbody tr .qty .form-control {

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 0;

  box-shadow: none;

  color: #252525;

  display: block;

  font-size: 18px;

  font-weight: 400;

  height: 34px;

  padding: 6px 0;

  text-align: center;

}

.checkout-area .table .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {

  border-radius: 0

}

.checkout-area .table .cart-table tbody tr .qty .btn-default {

  background-color: #fdc716;

  border-color: #fdc716;

  color: #fff;

}

.checkout-area .table .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {

  border-radius: 0;

  margin-top: -2px;

}

.checkout-area .table .cart-table tbody tr td.price {

  color: #fdc716;

  font-size: 20px;

  font-weight: 300;

}







.cart-total .sec-title {



}

.cart-total-table {

  border: 2px solid #f7f7f7

}

.cart-total-table li {

  border-bottom: 1px solid #f7f7f7

}

.cart-total-table li:last-child {

  border-bottom: none

}

.cart-total-table li span.col.col-title {

  border-right: 1px solid #f7f7f7;

  color: #222222;

  display: block;

  float: left;

  font-size: 16px;

  font-weight: 400;

  line-height: 28px;

  padding: 10px 18px;

  position: relative;

  width: 50%;

  font-family: 'Montserrat', sans-serif;

}

.cart-total-table li span.col {

  color: #999;

  display: block;

  float: left;

  font-size: 16px;

  font-weight: 300;

  line-height: 28px;

  padding: 10px 18px;

  position: relative;

  width: 50%;

  font-family: 'Hind', sans-serif;

}

.cart-total-table li span.col b {

  color: #fdc716;

  font-weight: 300;

  text-decoration: underline;

}







.cart-total .payment-options {

  background: #f7f7f7 none repeat scroll 0 0;

  margin-top: 30px;

  overflow: hidden;

  padding: 23px 20px 35px;

}

.cart-total .payment-options .option-block {

  margin-bottom: 14px

}



.cart-total .payment-options .option-block .checkbox {

  margin: 0 0 5px;

}

.cart-total .payment-options .option-block .checkbox label {

  font-weight: 700;

  min-height: 17px;

  padding-left: 20px;

}

.cart-total .payment-options .option-block .checkbox label input {

  position: relative;

  top: 1px;

}

.cart-total .payment-options .option-block .checkbox label span {

  color: #222222;

  font-size: 16px;

  padding-left: 10px;

  font-weight: 400;

  font-family: 'Montserrat', sans-serif;

}

.cart-total .payment-options .option-block .checkbox label span b {

  color: #fdc716;

  display: inline-block;

  font-size: 14px;

  font-weight: 400;

  padding-left: 25px;

  text-decoration: underline;

}

.cart-total .payment-options .option-block .text{

  padding-left: 30px;

}

.cart-total .payment-options .option-block .text p {

  margin: 0;

  line-height: 28px;

}

.placeorder-button button {

    margin-top: 20px;

}

.placeorder-button button:hover{

    

}









.sidebar-wrapper {



}

.sidebar-wrapper .single-sidebar {

  overflow: hidden;

  margin-bottom: 40px;

  position: relative;

}

.sidebar-wrapper .single-sidebar .sec-title {

  overflow: hidden;

  padding-bottom: 31px;

  margin-bottom: 0;

}

.sidebar-wrapper .single-sidebar .sec-title h3 {

  color: #222222;

  font-size: 22px;

  font-weight: 400;

  text-transform: capitalize;

}



.sidebar-wrapper .single-sidebar form.search-form {

  position: relative

}

.sidebar-wrapper .single-sidebar .search-form input[type="text"] {

  background: #fff;

  border: 1px solid #f7f7f7;

  color: #ababab;

  display: block;

  font-size: 16px;

  font-weight: 500;

  height: 50px;

  letter-spacing: 1px;

  padding-left: 15px;

  padding-right: 55px;

  position: relative;

  -webkit-transition: all 500ms ease 0s;

  transition: all 500ms ease 0s;

  width: 100%;

}

.sidebar-wrapper .single-sidebar .search-form button {

  background: #fdc716; none repeat scroll 0 0;

  color: #fff;

  display: block;

  height: 50px;

  padding: 12px 0;

  position: absolute;

  right: 0;

  text-align: center;

  top: 0;

  -webkit-transition: all 500ms ease 0s;

  transition: all 500ms ease 0s;

  width: 50px;

}

.sidebar-wrapper .single-sidebar .search-form button i {

  font-size: 14px

}

.sidebar-wrapper .single-sidebar .search-form input[type="text"]:focus {

  border: 1px solid #2b2c36;

  background: #f0eded;

  color: #000;

}

.sidebar-wrapper .single-sidebar .search-form input[type="text"]:focus + button, 

.sidebar-wrapper .single-sidebar .search-form button:hover {

    background: #2b2c36 none repeat scroll 0 0;

    color: #fff;

}





.single-sidebar .categories {

    margin-top: -6px;

}

.single-sidebar .categories li {

    border-bottom: 1px solid #f4f4f4;

    margin-bottom: 12px;

    padding-bottom: 11px;

}

.single-sidebar .categories li:last-child {

    margin-bottom: 0;

    padding-bottom: 0;

    border-bottom: none;

}

.single-sidebar .categories li a {

    color: #848484;

    transition: all 500ms ease;

    font-size: 16px;

    font-weight: 300;

    padding-left: 25px;

    position: relative;

}

.single-sidebar .categories li a:before {

    position: absolute;

    top: 14px;

    left: 0;

    width: 8px;

    height: 8px;

    background: #fff;

    border: 1px solid #d9d9d9;

    content: "";

    border-radius: 50%;

    margin-top: -5px;

    transition: all 500ms ease;

}

.single-sidebar .categories li a:hover{

    color: #fdc716;;    

}

.single-sidebar .categories li a:hover:before{

    border-color: #fdc716;

}



.single-sidebar .recent-post {}

.single-sidebar .recent-post li {

    margin-bottom: 30px;

    padding-left: 70px;

    position: relative;

    border-bottom: 1px solid #f7f7f7;

    padding-bottom: 32px;

}

.single-sidebar .recent-post li:last-child{

    margin-bottom: 0;

    padding-bottom: 0;

    border-bottom: none;

}

.single-sidebar .recent-post li .img-holder {

    display: block;

    left: 0;

    overflow: hidden;

    position: absolute;

    top: 0px;

    width: 75px;

}

.single-sidebar .recent-post li .img-holder img {

    transform: scale(1);

    transition: all 0.5s ease 0s;

}

.single-sidebar .recent-post li .img-holder .overlay-style-two .box .content a i{

    color: #fff;

    font-size: 16px;

    transition: all 500ms ease;

}

.single-sidebar .recent-post li:hover .img-holder .overlay-style-two{

    -webkit-transform: scale(1);

    transform: scale(1);

}

.single-sidebar .recent-post li:hover .img-holder img {

    -webkit-transform:scale(1.3);

    transform:scale(1.3);

}

.single-sidebar .recent-post li .img-holder .overlay-style-two .box .content a:hover i{

    color: #fdc716;;

}



.single-sidebar .recent-post li .title-holder {

  padding-left: 20px;

}

.single-sidebar .recent-post li .title-holder a .post-title {

  color: #272727;

  font-size: 16px;

  line-height: 24px;

  position: relative;

  top: -5px;

  margin: 0 0 5px;

  transition: all 500ms ease;

}

.single-sidebar .recent-post li .title-holder a:hover .post-title{

    color: #fdc716;;

}

.single-sidebar .recent-post li .title-holder .post-date {

  color: #fdc716;;

  display: block;

  transition: all 500ms ease;

  font-weight: 300;

  font-size: 16px;

  font-family: 'Hind', sans-serif;

}

.single-sidebar .recent-post li .title-holder .post-date i{

  color: #fdc716;;

    display: inline-block;

    padding-right: 3px;



}



.single-sidebar .popular-tag {

  margin-left: -3px;

  margin-right: -3px;

  margin-top: -5px;

}

.single-sidebar .popular-tag li {

  display: inline-block;

  margin: 0 3px 10px;

}

.single-sidebar .popular-tag li a {

  border: 1px solid #f4f4f4;

  color: #848484;

  display: block;

  font-size: 16px;

  font-weight: 300;

  padding: 2px 10px 2px;

  transition: all 500ms ease 0s;

}

.single-sidebar .popular-tag li a:hover{

  background: #fdc716;;

  border-color: #fdc716;;

  color: #fff;

}



.sidebar-wrapper .single-sidebar .business-enquiry {

    border: 1px solid #f4f4f4;

    display: block;

    padding: 31px 25px 33px;

    position: relative;

}

.sidebar-wrapper .single-sidebar .business-enquiry:before {

    position: absolute;

    bottom: 0;

    right: 0;

    content: "\e907";

    font-family: 'icomoon';

    font-size: 85px;

    color: #f4f4f4;

    z-index: 0;

}

.sidebar-wrapper .single-sidebar .business-enquiry h3{

    color: #222222;

    font-size: 18px;

    font-weight: 400;

    margin: 0 0 19px;

}

.sidebar-wrapper .single-sidebar .business-enquiry p {

    margin: 0;

    color: #848484;

    font-size: 18px;

    line-height: 30px;

}

.sidebar-wrapper .single-sidebar .business-enquiry p a{

    color: #fdc716;;

}







/* Post pagination styles */

.post-pagination li {

    display: inline-block;

    margin: 0 3px;

}

.post-pagination li a {

  background: #fff none repeat scroll 0 0;

  border: 2px solid #f4f4f4;

  color: #b8b8b8;

  display: block;

  font-size: 18px;

  font-weight: 700;

  height: 55px;

  padding: 14px 0;

  transition: all 500ms ease 0s;

  width: 55px;

  font-family: 'Montserrat', sans-serif;

}

.post-pagination li.active a, .post-pagination li:hover a {

  background: #fdc716;;

  color: #fff;

  border: 2px solid #fdc716;;

}









/*** 

=============================================

   Cart area  style

=============================================

***/

.cart-area {

  padding-bottom: 80px;

  padding-top: 80px;

}

.cart-area .table-outer {

  overflow-x: auto;

  position: relative;

  width: 100%;

}

.cart-area .cart-table {

  min-width: 1024px;

  width: 100%;

}

.cart-area .cart-table .cart-header {

  background: #f7f7f7;

  color: #222222;

  font-family: 'Montserrat', sans-serif;

  font-size: 16px;

  font-weight: 400;

  position: relative;

  text-transform: capitalize;

  width: 100%;

}

.cart-area .cart-table thead tr th {

  font-weight: 400;

  line-height: 24px;

  min-width: 110px;

  padding: 20px 25px;

}

.cart-area .cart-table thead tr th.prod-column {

  padding-left: 30px;

  text-align: left;

}

.cart-area .cart-table thead tr th.availability {

  padding: 0 40px

}





.cart-area .cart-table tbody tr {

  border-bottom: 1px solid #f7f7f7;

}

.cart-area .cart-table tbody tr td {}

.cart-area .cart-table tbody tr td {

  color: #222222;

  font-family: 'Montserrat', sans-serif;

  font-size: 16px;

  font-weight: 400;

  line-height: 24px;

  min-width: 100px;

  padding: 27.5px 25px;

}

.cart-area .cart-table tbody tr .prod-column .column-box {

  min-height: 70px;

  position: relative;

}

.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb {

  width: 70px;

}

.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb img {

  display: block;

  max-width: 100%;

}

.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb, 

.cart-area .cart-table tbody tr .prod-column .column-box .title{

  display: table-cell;

  vertical-align: middle;

}

.cart-area .cart-table tbody tr .prod-column .column-box .title{

  padding-left: 20px;

}

.cart-area .cart-table tbody tr .prod-column .column-box .title h3 {

  color: #222222;

  font-size: 16px;

  font-weight: 400;

  text-transform: capitalize;

}



.cart-area .cart-table tbody tr .qty {

  padding-right: 25px;

  width: 120px;

}

.cart-area .cart-table tbody tr .qty .input-group.bootstrap-touchspin {}

.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {

  border-radius: 0;

  margin-left: 0;

  padding: 11px;

}

.cart-area .cart-table tbody tr .qty .btn-default {

  background-color: #fdc716;

  border-color: #fdc716;

  color: #fff;

}

.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {

  border-radius: 0;

  margin-left: 0;

  margin-top: -1px;

  padding: 10px;

}

.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical i {

  font-size: 9px;

  left: 6px;

  top: 6px;

}



.cart-area .cart-table tbody tr td.unit-price {

  padding-left: 40px;

  padding-right: 20px;

}

.cart-area .cart-table tbody .available-info {

  color: #999;

  font-size: 16px;

  font-weight: 400;

  line-height: 20px;

  padding-left: 50px;

  position: relative;

  font-family: 'Hind', sans-serif;

}

.cart-area .cart-table tbody .available-info .icon {

  background: #fdc716 none repeat scroll 0 0;

  border-radius: 50%;

  color: #ffffff;

  font-size: 18px;

  height: 40px;

  left: 0;

  line-height: 40px;

  position: absolute;

  text-align: center;

  top: 0px;

  width: 40px;

}



.cart-area .cart-table tbody tr td.price {

  color: #999;

  font-size: 18px;

  font-weight: 400;

  font-family: 'Montserrat', sans-serif;

}

.cart-area .cart-table tbody tr .sub-total {

  color: #fdc716;

  font-weight: 400;

  font-size: 18px;

  font-family: 'Hind', sans-serif;

}

.cart-area .cart-table tbody tr td .remove{ }

.cart-area .cart-table tbody tr td .remove .checkbox label {

  color: #999;

  font-size: 16px;

  font-weight: 400;

  font-family: 'Hind', sans-serif;

}

.cart-area .cart-table tbody tr td .remove .checkbox label input[type="checkbox"] {

  display: inline-block;

  position: relative;

  top: 1px;

}





.cart-middle {

    padding-top: 30px

}

.cart-middle .apply-coupon {

    padding-left: 245px;

    position: relative;

}

.cart-middle .apply-coupon input[type="text"] {

  border: 2px solid #f7f7f7;

  color: #9e9e9e;

  font-size: 14px;

  font-weight: 400;

  height: 50px;

  left: 0;

  padding: 0 15px;

  position: absolute;

  text-transform: capitalize;

  top: 0;

  transition: all 500ms ease 0s;

  width: 225px;

}

.cart-middle .apply-coupon input[type="text"]:focus {

  border: 2px solid #fdc716

}

.cart-middle .apply-coupon .apply-coupon-button button {

    padding: 18px 38px 19px;

    line-height: 12px;

    color: #fff;

    background: #fdc716;

    font-weight: 700;

}

.cart-middle .apply-coupon .apply-coupon-button button:hover{}

.cart-middle .update-cart button {

    padding: 19px 38px 18px;

    line-height: 12px;

    background: #fdc716;

    color: #fff;

    font-weight: 700;

}

.cart-middle .update-cart button:hover{}





.cart-bottom {

  overflow: hidden;

  padding-top: 76px;

}

.cart-bottom .sec-title-two {

  padding-bottom: 35px;

}

.cart-bottom .sec-title-two h2{

  color: #222222;

  font-size: 24px;

  font-weight: 400;

  text-transform: capitalize;

}

.cart-bottom .calculate-shipping {}

.cart-bottom .calculate-shipping .ui-state-default .ui-icon {

  background: none

}

.cart-bottom .calculate-shipping .ui-state-default {

  background: #fff none repeat scroll 0 0;

  border: 2px solid #f7f7f7;

  border-radius: 0;

  color: #999;

  font-size: 14px;

  font-weight: normal;

  height: 45px;

  margin-bottom: 17px;

  outline: medium none;

  width: 100%;

}

.cart-bottom .calculate-shipping .ui-selectmenu-button span.ui-icon {

  margin-top: 0;

  position: absolute;

  right: 0;

  top: 0;

}

.cart-bottom .calculate-shipping .ui-selectmenu-button span.ui-icon {

  border-left: 2px solid #f7f7f7;

  display: block;

  float: right;

  height: 41px;

  position: relative;

  text-indent: 0;

  top: 0;

  width: 43px;

}

.cart-bottom .calculate-shipping .ui-selectmenu-button span.ui-icon::before {

  color: #9b9b9b;

  content: "\f107";

  font-family: FontAwesome;

  font-size: 20px;

  overflow: visible;

  position: absolute;

  right: 14px;

  top: 6px;

}

.cart-bottom .calculate-shipping .ui-selectmenu-button span.ui-selectmenu-text {

  display: block;

  line-height: 18px;

  overflow: hidden;

  padding: 12px 17px;

  text-align: left;

}

.cart-bottom .calculate-shipping input[type="text"] {

  border: 2px solid #f7f7f7;

  color: #999;

  display: block;

  font-size: 16px;

  height: 45px;

  padding: 0 18px;

  width: 100%;

  margin-bottom: 30px;

  transition: all 500ms ease;

  -moz-transition: all 500ms ease;

  -webkit-transition: all 500ms ease;

  -ms-transition: all 500ms ease;

  -o-transition: all 500ms ease;

}

.cart-bottom .calculate-shipping input[type="text"]:focus {

  border: 2px solid #fdc716

}



.cart-bottom button.checkout-btn{

  margin-top: 30px;

}



.cart-bottom button.checkout-btn:hover{}



.single-shop-area input.quantity-spinner.form-control {

    padding: 23px 12px;

}



.cart-area .cart-table tbody tr .qty .form-control {

  background-color: #f7f7f7;

  background-image: none;

  border: 1px solid #f7f7f7;

  border-radius: 0 !important;

  box-shadow: none;

  color: #222222;

  display: block;

  font-size: 18px;

  font-weight: 400;

  height: 45px;

  padding: 6px 0;

  text-align: center;

  font-family: 'Poppins', sans-serif;

}



/*** 

=============================================

   Team-section

=============================================

***/



.team-section {



    position: relative;

    padding: 80px 0 40px;

    background: linear-gradient(-30deg, #f1f1f1 10%, #f1f1f1 20%, #f7f7f7 20%, #f7f7f7 30%, #f1f1f1 30%,

        #f1f1f1 40%, #f7f7f7 40%, #f7f7f7 50%,   #f1f1f1 50%,

        #f1f1f1 60%, #f7f7f7 60%, #f7f7f7 70%,   #f1f1f1 70%,

        #f1f1f1 80%, #f7f7f7 80%);

}



.team-member{

    position:relative;

    margin-bottom:40px;

}



.team-member .inner-box{

    position:relative;

}



.team-member .inner-box .image{

    position:relative;    border: 1px solid #f0f0f0;

}



.team-member .inner-box .image img{

    position:relative;

    width:100%;

    display:block;

}



.team-member .inner-box .image .overlay-box{

    position:absolute;

    left:0px;

    top:0px;

    width:100%;

    height:100%;

    opacity:0;

    text-align:center; 

    background-color: rgba(165, 140, 61, 0.75);

    transition: all 600ms ease;

    -webkit-transition: all 600ms ease;

    -ms-transition: all 600ms ease;

    -o-transition: all 600ms ease;

}



.team-member .inner-box .image .overlay-box .social-icon-two{

    top:50%;

    margin-top:-20px;

}



.team-member .inner-box:hover .overlay-box{

    opacity:1;

}



.team-member .inner-box .lower-content{

    position:relative;

    padding:  10px;

    padding-left:20px;

    background: #fff;

    border:1px solid #f0f0f0;

    border-top: 0px;

    text-align: center; 

}



.team-member .inner-box .lower-content h3{

    position:relative;

    font-size:18px;

    font-weight:400;

}



.team-member .inner-box .lower-content h3 a{

    position:relative;

    color:#222222;

    transition: all 300ms ease;

    -webkit-transition: all 300ms ease;

    -ms-transition: all 300ms ease;

    -o-transition: all 300ms ease;

}



.team-member .inner-box .lower-content h3 a:hover{

    color:#8a5717;

}



.team-member .inner-box .lower-content .designation{

    position:relative;

    color:#8a5717;

    font-size:16px;

    margin-bottom:6px;

}



.team-member .inner-box .lower-content .text{

    position:relative;

    color:#848484;

    font-size:16px;

    line-height:1.7em;

}







/*** 



====================================================================

    Call back Section

====================================================================



***/



.callback-section{

    position:relative;

    padding:80px 0px 80px;

    background: #f8f8f8;

}



.callback-section:before{

    content:'';

    position:absolute;

    left:0px;

    top:50%;

    width:100%;

    height:50%;

    background:#f8f8f8; 

}



.callback-section.with-border{

}



.callback-section .outer-box{

    position:relative;

    border:1px solid #f0f0f0;

    background:#ffffff;

    border-radius:3px;

    -webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.07);

    -ms-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.07);

    box-shadow:0px 0px 20px 0px rgba(0,0,0,0.07);

}



.callback-section .image-column,

.callback-section .form-column{

    padding:0px;    

}



.callback-section .image-column img{

    display:block;

    width:100%; 

}



.callback-section .form-column .inner{

    padding:50px 50px 30px; 

}



.callback-section .form-column h3{

    font-size:24px;

    font-weight:500;

    text-transform:capitalize;

    margin-bottom:30px;

    color:#00000a;  

}



.callback-section .form-column .form-group{

    margin-bottom:28px; 

}



.callback-section .form-column .form-group .field-label{

    font-size:16px;

    color:#1c1c1c;

    font-weight:500;

}



.callback-section .form-column .form-group textarea{

    height: 190px;

}



.callback-section .form-column .theme-btn{

    position:relative;

    display:block;

    width:100%;

    padding: 16px 20px;

    line-height:30px;

    color:#ffffff;

    font-size:18px;

    font-weight:400;

    text-align:center;

    background: #8a5717;

    border: 2px solid #8a5717;

    text-transform:capitalize;

    border-radius:3px;

}



.callback-section .form-column .theme-btn:hover{

    color: #8a5717;

    background:none;

    border-color: #8a5717;

}



.callback-section .form-column .theme-btn span{

    position:relative;

    top:1px;

    padding-left:10px;  

} 

.dwnld-btn {  
    padding: 10px;

    line-height: 24px;

    color: #ffffff; text-align:center;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    border-radius: 2px;

    background-color: #8a5717; 

    text-transform: uppercase;

    font-family:  'Montserrat', sans-serif;}

















