@import url('https://fonts.googleapis.com/css?family=Raleway:300,500,700,900&display=swap')
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #818181;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: #424242;
}
p {
    margin: 0;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
a,
a:hover {
    text-decoration: none;
}

/*=============================
    general-style
 =============================*/
/*=== ostion-btn ===*/
.theme-btn {
    font-size: 20px;
    text-transform: uppercase;
    background: #c09b1d;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0 30px 0 35px;
    line-height: 40px;
    position: relative;
    z-index: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    text-decoration: none;
    border: none;
}
.theme-btn:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 1px;
    z-index: -1;
    background: #c09b1d;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: skew(-12deg,0deg);
    -moz-transform: skew(-12deg,0deg);
    -ms-transform: skew(-12deg,0deg);
    -o-transform: skew(-12deg,0deg);
    transform: skew(-12deg,0deg);
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}
.theme-btn:hover,
.theme-btn:hover:after {
    background-color: #131d1c;
    color: #e2b921;
}
/*=== section-heading ====*/
.section-heading .section__title {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
}
.section-heading .section__meta {
    color: #863bae;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 8px;
    display: block;
}
/*===text__white ====*/
.section-heading .text__white {
    color: #fff;
}
/*=== section-icon ====*/
.section-icon {
    margin-bottom: 9px;
    line-height: 1px;
}
/*=== section-divider ====*/
.section-divider {
    height: 2px;
    background-color: #f2f0ec;
    position: relative;
    display: block;
}

/*===================================
    container
=====================================*/
.container {
    max-width: 1200px;
}

/*===================================
    HEADER AREA
=====================================*/
.header-area .header-top {
    background-color: #fff;
}
.header-area .header-top .ostion-top-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.header-area .header-top .ostion-top-wrap .ostion-logo {
    height: 70px;
    display: table;
    vertical-align: middle;
}
.header-area .header-top .ostion-top-wrap .ostion-logo a {
    height: 70px;
    display: table-cell;
    vertical-align: middle;
}
.header-area .header-top .ostion-top-wrap .header-btn .theme-btn,
.header-area .header-top .ostion-top-wrap .header-btn .theme-btn:after {
    background-color: #e36955;
}
.header-area .header-top .ostion-top-wrap .header-btn .theme-btn:hover,
.header-area .header-top .ostion-top-wrap .header-btn .theme-btn:hover:after {
    background-color: #f1ae44;
}
.header-area .header-top .ostion-top-wrap .ostion-menu {
    height: 70px;
    position: relative;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .mobile-menu-toggle {
    position: absolute;
    right: 15px;
    top: 0;
    color: #232323;
    font-size: 21px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    background-color: rgba(35, 35, 35, 0.1);
    line-height: 37px;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: none;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .mobile-menu-toggle:hover {
    background-color: #ff7607;
    color: #fff;
}
/*==== main-navigation =====*/
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 15px;
    height: 70px;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li {
    display: inline-block;
    position: relative;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li:last-child a {
    margin-right: 0;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li:hover .dropdown-menu-item {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
/*=== dropdown menu ===*/
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li .dropdown-menu-item {
    position: absolute;
    left: 0;
    top: 120%;
    min-width: 230px;
    background-color: #fff;
    -webkit-border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px;
    z-index: 3;
    -webkit-box-shadow: 0 20px 40px rgba(0,0,0,.10);
    -moz-box-shadow: 0 20px 40px rgba(0,0,0,.10);
    box-shadow: 0 20px 40px rgba(0,0,0,.10);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 0 30px;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li .dropdown-menu-item li{
    padding-bottom: 16px;
    display: block;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li .dropdown-menu-item li:first-child {
    padding-top: 16px;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li .dropdown-menu-item li a{
    padding: 0 0;
    margin: 0;
    line-height: 14px;
    display: inline-block;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li .dropdown-menu-item li a:after {
    bottom: -3px;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li.active> a {
    color: #424242;
    margin-left: 0;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li a {
    color: #7e7e7e;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin: 0 15px;
    letter-spacing: .5px;
    padding-bottom: 17px;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li a:after {
    content: '';
    height: 1px;
    width: 0;
    background: #424242;
    position: absolute;
    bottom: 18px;
    right: 0;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li a:hover {
    color: #424242;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li a:hover:after {
    right: auto;
    left: 0;
    width: 100%;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .header-social {
    flex: 1;
    float: right;
    font-size: 16px;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .header-social ul li{
    margin-right: 28px;
    display: inline-block;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .header-social ul li:last-child {
    margin-right: 0;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .header-social ul li a i.fa-facebook {
    color: #182eb2;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .header-social ul li a i.fa-twitter {
    color: #31a5ff;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .header-social ul li a i.fa-youtube-play {
    color: #ff2e2e;
}
.header-area .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .header-social ul li a i.fa-google-plus {
    color: #232323;
}

/*==== header-info ====*/
.header-area .header-info {
    margin-bottom: -62px;
    background-color: rgba(0,0,0,.20);
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255,255,255,.30);
    height: 62px;
}
.header-area .header-info .header-info-inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 61px;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    margin-left: -2px;
    margin-right: -4px;
}
.header-area .header-info .header-info-inner .header-info-box {
    border-left: 1px solid rgba(255, 255, 255, 0.30);
    height: 60px;
    width: 33%;
    display: flex;
    align-items: center;
}
.header-area .header-info .header-info-inner .header-info-box.header-info-box-1 {
    border-left: none;
    text-align: left;
}
.header-area .header-info .header-info-inner .header-info-box.header-info-box-2 {
    text-align: center;
    justify-content: center;
}
.header-area .header-info .header-info-inner .header-info-box.header-info-box-3 {
    justify-content: flex-end;
}
.header-area .header-info .header-info-inner .header-info-box i {
    color: #ff7607;
    margin-right: 10px;
    font-size: 16px;
    margin-top: -3px;
}

/*==== mobile menu ===*/
.header-area .side-nav-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background-color: #232323;
    overflow-x: hidden;
    z-index: 999;
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    -ms-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.header-area .side-nav-container.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.header-area .side-nav-container .humburger-menu .humburger-menu-lines {
    display: inline-block;
    text-align: right;
    width: 22px;
    height: 22px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 18px;
    opacity: .5;
}
.header-area .side-nav-container .humburger-menu .humburger-menu-lines:before,
.header-area .side-nav-container .humburger-menu .humburger-menu-lines:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    top: 10px;
    left: 0;
    background-color: #fff;
    -webkit-transform: rotate(-43deg);
    -moz-transform: rotate(-43deg);
    -ms-transform: rotate(-43deg);
    -o-transform: rotate(-43deg);
    transform: rotate(-43deg);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.header-area .side-nav-container .humburger-menu .humburger-menu-lines:after {
    -webkit-transform: rotate(43deg);
    -moz-transform: rotate(43deg);
    -ms-transform: rotate(43deg);
    -o-transform: rotate(43deg);
    transform: rotate(43deg);
}
.header-area .side-nav-container .humburger-menu .humburger-menu-lines:hover:before,
.header-area .side-nav-container .humburger-menu .humburger-menu-lines:hover:after {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}
.header-area .side-nav-container .side-menu-wrap {
    margin-top: 100px;
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item {
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item.active .menu-plus-icon:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item:hover > a {
    background-color: rgba(255, 255, 255, 0.12);
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item a {
    font-size: 16px;
    color: #fff;
    display: block;
    text-transform: capitalize;
    font-weight: 500;
    padding: 10px 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item .menu-plus-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 45px;
    line-height: 50px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item .menu-plus-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item .menu-plus-icon:before,
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item .menu-plus-icon:after {
    position: absolute;
    top: 24px;
    right: 20px;
    content: '';
    width: 11px;
    height: 2px;
    background-color: #fff;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item .menu-plus-icon:after {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item .side-sub-menu {
    display: none;
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item .side-sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item .side-sub-menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item .side-sub-menu li a {
    padding-left: 30px;
    padding-top: 9px;
    padding-bottom: 9px;
    color: rgba(255, 255, 255, 0.7);
}
.header-area .side-nav-container .side-menu-wrap .side-menu-ul .sidenav-item .side-sub-menu li a:hover {
    color: #ff7607;
}
/*==== header-fixed ====*/
.header-fixed {
    background-color: #fff;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    -webkit-transition: 0.7s ease;
    -moz-transition: 0.7s ease;
    -ms-transition: 0.7s ease;
    -o-transition: 0.7s ease;
    transition: 0.7s ease;
}
/*===================================
    HEADER AREA 2
=====================================*/
.header-area2{
    position: fixed;
    z-index: 1024;
    width: 100%;
    top: 0;
    left: 0;
}
.header-area2 .header-top {
    background-color: transparent;
}
.header-area2 .header-top.header-fixed {
    background-color: #424242;
}
.header-area2 .header-top-action {
    background-color: #424242;
}
.header-area2 .header-top-action .top-action-content .info-box {
    padding-top: 10px;
    padding-bottom: 10px;
}
.header-area2 .header-top-action .top-action-content:before,
.header-area2 .header-top-action .top-action-content:after {
    display: none;
}
.header-area2 .header-top-action .top-action-content .info-box ul.top-action-list li a,
.header-area2 .header-top-action .top-action-content .info-box ul.top-action-list li a i {
    color: #bfbfbf;
}
.header-area2 .header-top-action .top-action-content .info-box ul.top-action-list li a:hover,
.header-area2 .header-top-action .top-action-content .info-box ul.top-action-list li a i:hover {
    color: #f1ae44;
}

.header-area2 .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li a,
.header-area2 .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li.active> a{
    color: #fff;
}
.header-area2 .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li a:hover,
.header-area2 .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li.active> a:hover,
.header-area2 .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li .dropdown-menu-item li a:hover{
    color: #f1ae44;
}
.header-area2 .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li a:after {
    background-color: #f1ae44;
}
.header-area2 .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li .dropdown-menu-item {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.header-area2 .header-top .ostion-top-wrap .ostion-menu .ostion-menu-content .navigation-top .main-navigation ul li .dropdown-menu-item li a {
    color: #818181;
}
/*===================================
        SLIDER AREA
 =====================================*/
.slider-area  {
    position: relative;
    z-index: 1;
}
.slider-area .single-slide-item {
    background-color: #eee;
    background-position: center right;
    background-size: cover;
    color: #fff;
    height: 500px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.slider-area .slide-bg1 {
    background-image: url("../images/slider1.jpg");
}
.slider-area .slide-item-table {
    display: table;
    width: 100%;
    height: 100%;
}
.slider-area .slide-item-tablecell {
    display: table-cell;
    vertical-align: middle;
}

/*=== slider-heading ===*/
.slider-area .slider-heading .slider__meta {
    font-size: 40px;
    color: #000;
    font-weight:900;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}
.slider-area .slider-heading .slider__title {
    font-size: 36px;
    line-height: 46px;
    color: #fff;
    font-weight: 500;
	letter-spacing:.5px;
    margin-bottom: 0;
    background: rgba(230,186,34,1);
    padding: 15px;
	border-top:5px solid #c09b1d;
	z-index:2;
	position:relative;
}
/*=== owl-nav ===*/
.slider-area .homepage-slide1 .owl-dots {
    position: absolute;
    top: 50%;
    right: 250px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.slider-area .homepage-slide1 .owl-dots div {
    width: 14px;
    height: 20px;
    margin-bottom: 10px;
    background-color: #fff;
    opacity: .4;
    filter: alpha(opacity=40);
    position: relative;
    border: none;
    padding: 0;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}
.slider-area .homepage-slide1 .owl-dots div:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #fff;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: skew(-25deg,0deg);
    -moz-transform: skew(-25deg,0deg);
    -ms-transform: skew(-25deg,0deg);
    -o-transform: skew(-25deg,0deg);
    transform: skew(-25deg,0deg);
}

.slider-area .homepage-slide1 .owl-dots div.active,
.slider-area .homepage-slide1 .owl-dots div:hover {
    opacity: 1;
}
/*===================================
    SLIDER AREA 2
=====================================*/
.slider-area2 .single-slide-item:after {
    display: none;
}
.slider-area2 .single-slide-item {
    height: 1024px;
}
.slider-area2 .single-slide-item .slider-heading {
    padding-top: 50px;
}

/* --- Select box --- */
section.white {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding-top: 90px;
    padding-bottom: 120px;
}
.card-1{
	position:;
}
.card-img img{
	width:100%;
}
.card-txt{
	position:relative;
	width:90%;
	margin: 0 auto;
	background:#fff;
	top: -100px;	
    padding: 30px;
	box-shadow: 0 0px 60px 0 rgba(0, 0, 0, 0.1);
}
.card-txt h2{
	color:#e6ba22;
	font-size: 24px;
	font-weight: 900;
	margin-bottom: 20px;
	text-transform:uppercase;
}
.card-txt p{
	font-weight:500;
}
.more-box{
	margin-top:15px;
}
.card-txt .btn {
    font-size: 0.85714em;
    font-weight: 500;
    letter-spacing: .3px;
    border-radius: 50px;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    padding:12px 20px;
    line-height: 1;
    border: 0;
    color: #fff;
	background:#63c0c5;
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.card-2{
	position:relative;
	width:90%;
	margin: 0 auto;
}
.card-2 h2{
	color:#e6ba22;
	font-size: 24px;
	font-weight: 900;
	margin-bottom: 20px;
	text-transform:uppercase;
}
.card-2 h3{
	color:#63c0c5;
	font-size: 28px;
	font-weight: 500;
}
.card-2 h3:after {
    content: '';
    width: 175px;
    height: 9px;
	background: url('../images/after-line.png');
    -webkit-transform: none;
    transform: none;
    display: block;
    margin: 0 auto;
    margin-top:12px;
    margin-bottom: 30px;
}
.card-2 p{
	font-weight:500;
}


.mixer-area {
    position: relative;
    z-index: 1;
    background-image: url(../images/mix-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 120px;
    padding-bottom: 120px;
}
.announcement-box h2{
	color:#fff;
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 20px;
	text-transform:uppercase;
}
.announcement-box h3{
    color: #f1ae44;
    font-size: 26px;
    font-weight:900;
    margin-top: 8px;
    display: block;
}
.announcement-box h3 a {color: #e6ba22;}
.announcement-box p{
    line-height: 30px;
    margin-top: 12px;
    margin-bottom: 15px;
	color:#fff;
}
.mixer-video-content {
    position: relative;
}
.mixer-video-content img {
    width: 100%;
}
.mixer-video-content .video-play-btn {
    text-align: center;
    position: absolute;
    padding-left: 5px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    display: inline-block;
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}
/* --- FOOTER --- */
.xs-causes-footer {text-align: center;padding: 30px;color: #9cd3db; font-size:16px;}
.xs-causes-footer p {margin-bottom: 0;font-size:16px; }
.xs-causes-footer h2 {line-height: 1;margin-bottom: 15px; }
.xs-footer-section {
	background-color: #1e262d;
	position: relative;
	background-position: center right;
	background-size: contain;
	background-repeat: no-repeat;
}
.xs-footer-top-layer {
	padding-top: 110px;
	padding-bottom: 50px;
}
.xs-copyright {
	padding: 15px 0;
	border-top: 1px solid #343e4e;
}
.xs-footer-logo {
  display: inline-block;
  margin-bottom: 30px;
}
.footer-widget p {
	color: #9cd3db;
	margin-bottom: 20px;
	font-size:16px;
	line-height: 24px;
}
.footer-widget .widget-title {
	margin-bottom: 30px;
	color: #e6ba22;
	font-size: 1.28571em;
	font-weight: 600;
	text-transform: capitalize;
 }
.xs-footer-list li {margin-bottom: 5px; }
.xs-footer-list li:last-child {margin-bottom: 0;}
.xs-footer-list a {
	color: #9cd3db;
	display: block;
	font-size: 1em;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.xs-footer-list a:hover {color: #fff;}
.xs-copyright-text p {
	margin-bottom: 0;
	line-height: 1.5;
	color: #97b0ea;
}
.xs-copyright-text p a {color: #FFFFFF;}
.xs-footer-menu {
	text-align: right;
	line-height: 1;
}
.xs-footer-menu li {display: inline-block;margin-right: 36px;}
.xs-footer-menu li:last-child {margin-right: 0; }
.xs-footer-menu li a {
	display: block;
	color: #9cd3db;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.xs-footer-menu li a:hover {color: #fff; }
.xs-social-list li:last-child, .xs-social-list-v2 li:last-child {
    margin: 0;
}
.xs-social-list li, .xs-social-list-v2 li {
    display: inline-block;
    margin: 0 10px 0 0;
}
.xs-social-list li, .xs-social-list-v2 li {
  display: inline-block;
  margin: 0 10px 0 0;
}
.xs-social-list-v2 li:last-child {margin: 0;}
.xs-social-list-v2 li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: block;
    text-align: center;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 1.07143em;
    color: #97b0ea;
}
.xs-social-list li a:hover, .xs-social-list-v2 li a:hover {
	border-color: transparent;
	background-color: #e6ba22;
}
.xs-info-list li, .xs-info-list a {
	color: #9cd3db;
	font-size: 14px;
	line-height: 1.49;
	margin-bottom: 17px;
	display: inline-block;
}
.xs-info-list a {
	margin-top: 8px;
	margin-bottom: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.xs-info-list a:hover {color: #FFFFFF; }
.xs-info-list li:last-child {margin-bottom: 0; }
.xs-info-list li:after {display: table;content: "";clear: both;}
.xs-info-list i {
    display: inline-block;
    float: left;
    width: 40px;
    height: 40px;
    line-height: 40px;
	border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #fff;
    font-size: 1.14286em;
    margin-right: 20px;
}

/*=== back to top ===*/
#back-to-top {
    position: fixed;
    right: -150px;
    bottom: 40px;
    z-index: 9999;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
    -moz-box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
    box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
    color: #424242;
    font-size: 20px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #ddd;
}
#back-to-top:hover {
    background-color: #f1ae44;
    color: #fff;
    border-color: #f1ae44;
}
#back-to-top.back-btn-shown {
    right: 30px;
    opacity: 1;
    visibility: visible;
}

/*** 

====================================================================
	Four Column / Current Projects
====================================================================

***/

.three-column{
	position:relative;
	padding:30px 0px 10px;
}
.three-column .column{
	position:relative;
	margin-bottom:30px;	
}
.three-column .column-inner{
	position:relative;
	max-width:400px;
	margin:0 auto;
	display:block;
}
.three-column .column-inner:hover .heart-icon{
  -ms-animation-name: hvr-pulse;
  -moz-animation-name: hvr-pulse;
  -op-animation-name: hvr-pulse;
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -ms-animation-duration: 700ms;
  -moz-animation-duration: 700ms;
  -op-animation-duration: 700ms;
  -webkit-animation-duration: 700ms;
  animation-duration: 700ms;
  -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: infinite;
  -moz-animation-iteration-count: infinite;
  -op-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;	
}
.three-column .column-inner:hover{	
}
.three-column .image-box{
	position:relative;	
}
.three-column figure {
    margin: 0 0 0;
}
.three-column .image-box img{
	position:relative;
	display:block;
	width:100%;	
}
.three-column .image-box .icon-box{
	position:absolute;
	right:0px;
	bottom:-60px;
	width:60px;
	height:60px;	
}
.three-column .image-box .heart-icon{
	position:relative;
	display:block;
	width:60px;
	height:60px;
    text-align: center;
    line-height: 59px;
    color: #ffffff;
    background: #e6ba22;
    font-size: 33px;
    z-index: 1;
}
.three-column .column-inner .lower-part{
	position:relative;
	padding:20px;
	background:#f5f5f5;
        min-height: 204px;
}
.three-column .column-inner h3{
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin: 0px 0 10px;
    display: block;
	padding-right:65px
}
.three-column .column-inner h3 a{
    color: #000;
    font-size: 18px;
}
.three-column .column-inner h3 a:hover{
    color: #e6ba22;
}
.lower-part .social {
    margin-top: 15px;
}
.lower-part .social ul li {
    display: inline-block;
    margin-right: 10px;
}
.lower-part .social ul li.txt {
    font-size: 16px;
    color: #000;
    padding: 0 5px;
    line-height: 42px;
    font-weight: 700;
}
.lower-part .social ul li:last-child {
    margin-right: 0;
 }
.lower-part .social ul li a {
    font-size: 22px;
    color: #000;
    padding: 0 5px;
    line-height: 42px;
    position: relative;
    z-index: 1;
    display: block;
}
.lower-part .social ul li a:hover{color: #e6ba22;}

/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:hover{
  opacity: 1;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
      -webkit-box-shadow: 2px 1px 15px 5px rgba(166,166,166,.2);
    box-shadow: 2px 1px 15px 5px rgba(166,166,166,.2);
}
.hvr-float-shadow:hover .lower-part{
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
	background:#fff;
}


.slider-set{
    position: relative;
    padding: 4.8125rem 0 3.5rem 0;
}
.slider-set h2{
    position: absolute;
    font-size: 1.625rem;
    font-size: 26px;
    font-weight: 900;
	color: #f1ae44;
    top: 1.1rem;
    left: 15px;
    margin-bottom: 15px;
}
.slider-set .owl-nav{
    position: absolute;
    top: -75px;
    right: 0;
    z-index: 10;
}
.slider-set .owl-nav .owl-prev, .slider-set .owl-nav .owl-next{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
	border: 2px solid #e6ba22;
	display: inline-flex;
	background:transparent;
	color:#e6ba22;
    text-indent: -99999px;
}
.slider-set .owl-nav .owl-prev:hover, .slider-set .owl-nav .owl-next:hover{
	background:transparent;
	border: 2px solid #63c0c5;
}
.slider-set .owl-nav .owl-prev {
    margin-right: 30px;
}
.slider-set .owl-nav .owl-prev:after, .slider-set .owl-nav .owl-next:after{
	content: "";
    display: inline-block;
	width: 26px;
    height: 12px;
    background: url(../images/arw.png) no-repeat 0;
}
.slider-set .owl-nav .owl-prev:hover::after, .slider-set .owl-nav .owl-next:hover::after{
    background: url(../images/arw-hover.png) no-repeat 0;
}
.slider-set .owl-nav .owl-next:after {
	transform: rotate(-180deg);
}
.magnific-img img {
    width: 100%;
    height: auto;
}
.magnific-img {
    display: inline-block;
    width: 32.3%;
}
a.image-popup-vertical-fit {cursor: -webkit-zoom-in;}
.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}
.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px;
}

/*  Location  */
.location-slide .owl-nav{
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
}
.location-slide .owl-nav .owl-prev, .location-slide .owl-nav .owl-next{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
	border: 2px solid #e6ba22;
	display: inline-flex;
	background:#00000070;
	color:#e6ba22;
    text-indent: -99999px;
}
.location-slide .owl-nav .owl-prev:hover, .location-slide .owl-nav .owl-next:hover{
	background:transparent;
	border: 2px solid #63c0c5;
}
.slider-set .owl-nav .owl-prev {
    margin-right: 20px;
}
.location-slide .owl-nav .owl-prev:after, .location-slide .owl-nav .owl-next:after{
	content: "";
    display: inline-block;
	width: 26px;
    height: 12px;
    background: url(../images/arw.png) no-repeat 0;
}
.location-slide .owl-nav .owl-prev:hover::after, .location-slide .owl-nav .owl-next:hover::after{
    background: url(../images/arw-hover.png) no-repeat 0;
}
.location-slide .owl-nav .owl-next:after {
	transform: rotate(-180deg);
}

.location-details h2{
    margin-bottom: 30px;
    color: #63c0c5;
    font-size: 1.28571em;
    font-weight: 700;
    text-transform: capitalize;
	margin-bottom:15px;
}
.location-details p{
    font-size: 16px;
    line-height: 26px;
    color: #818181;
    font-weight: 500;
}
.location-details h3{
    margin-bottom: 30px;
    color: #e6ba22;
    font-size: 1em;
    font-weight: 700;
    text-transform: capitalize;
	padding:0;
	margin:0;
	margin-top:25px;
}
.location-details address{
	padding:0 50% 0 0
}

.satsang-features{
	float:left;
	width:100%;
	margin-top:15px;
	padding-top:15px;
	border-top:1px solid #ccc;
}
.satsang-features ul li {
    display: inline-block;
    margin: 0 10px 0 0;
}
.satsang-features ul li a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    color: #329da3;
	font-size:20px;
    position: relative;
    z-index: 1;
    display: block;
    text-align: center;
    border-radius: 100%;
    background-color: #63c0c525;
	border: 1px solid #63c0c5;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.satsang-features ul li a:hover {
    color: #e6ba22;
    background-color: #e6ba2225;
	border: 1px solid #e6ba22;
    -webkit-transition: all 0.9s ease;
    transition: all 0.9s ease;
}
[tooltip] {position: relative;}
[tooltip]::before,[tooltip]::after {
	text-transform: none;
	font-size: 0.9em;
	line-height: 1;
	user-select: none;
	pointer-events: none;
	position: absolute;
	display: none;
	opacity: 0;
}
[tooltip]::before {
	content: "";
	border: 5px solid transparent;
	z-index: 1001;
}
[tooltip]::after {
	content: attr(tooltip);
	text-align: center;
	min-width: 3em;
	max-width: 21em;
	white-space: nowrap;
	overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    padding: 8px;
    border-radius: 5px;
    background: #e6ba22;
    color: #fff;
    z-index: 1000;
}
[tooltip]:hover::before,[tooltip]:hover::after {
	display: block;
}
[tooltip=""]::before,[tooltip=""]::after {
	display: none !important;
}
/* --- flow down --- */
[tooltip][flow^="down"]::before {
	top: 105%;
	border-top-width: 0;
	border-bottom-color: #e6ba22;
}
[tooltip][flow^="down"]::after {top: calc(105% + 5px);}
[tooltip][flow^="down"]::before,[tooltip][flow^="down"]::after {
	left: 50%;
	transform: translate(-50%, 0.5em);
}
/* --- keyframes --- */
@keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}


@keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}
/* --- fx all the things --- */
[tooltip][flow^="down"]:hover::before,[tooltip][flow^="down"]:hover::after{
  animation: tooltips-vert 300ms ease-out forwards;
}
.cus-pop .modal-content {
    background: #e6ba22;
    border: 0;
    border-radius: 0;
	color:#fff;
	font-size:14px;
}
.cus-pop .modal-content a{color:#fff;}
.cus-pop .modal-content i{color:#9d7c08;}
.cus-pop h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #fff;
	border-bottom:1px solid #fff;
	margin-bottom:15px;
}

.row-flex {
	display: flex;
	flex-wrap: wrap;
}

/* vertical spacing between columns */
.location-list [class*="col-"] {margin-bottom: 30px;}
.location-list{
    margin-top: 0px;
    padding-top: 15px;
    padding-bottom: 100px;
	position:relative;
}
.location-list:before{
	content: "";
	position:absolute;
	top:0;
	height:80px;
	width:100%;
	background:#e6ba22;
}
.location-list h4{
    color: #fff;
    font-size: 26px;
    font-weight: 900;
	padding-top:10px;
}
.location-list .content {
	height: 100%;
	padding: 24px;
    font-size: 14px;
    line-height: 26px;
    color: #777;
    font-weight: 500;
}
.location-list .location-info{
	background: #ffffff80;
	box-shadow: 0 0 10px 5px #dde5eb;
	transition: background .2s;
	border-radius: 8px;
        min-height: 334px;
}
.location-list .location-info:hover {
    background: #ffffff;
    box-shadow: 0 0 10px 5px #dde5eb;
}
.location-list .content h3{
    color: #329da3;
    font-size: 20px;
    font-weight: 700;
	margin-bottom:15px;
}
.location-list .content p{margin-bottom:15px;}
.location-list .content p span{
    font-size: 13px;
	background:#e6ba2254;
	text-align:center;
    color: #e6ba22;
	margin-right:5px;
	width:26px;
	height:26px;
	padding:2px;
	display:inline-block;
    border-radius: 5px;
    vertical-align: top;
}
.location-list .content p span.loc-add{
    font-size: 13px;
	background:transparent;
	text-align:left;
    color: #4a4a4a;
	display:inline-block;
	width: calc(100% - 35px);
	padding:0;
	margin:0;	
    vertical-align: baseline;
}
.locate .search_box{
  background: #f7f7f7;
  border-radius: 5px;
  height: 50px;
  display: flex;
  padding: 10px;
}
.locate .search_box .search_field{
  width: 100%;
  height: 100%;
  position: relative;
}

.locate .search_box .search_field .input{
	width: 100%;
	height: 100%;
	border: 0px;
	font-size: 16px;
	padding-left: 20px;
	padding-right: 38px;
	color: #6f768d;
	outline:none;
}
.locate .search_box .search_field .fa{
	position: absolute;
	top: 6px;
	right: 10px;
	font-size: 18px;
	color: #5078ef;
	cursor: pointer;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */color: #9fa3b1;}
::-moz-placeholder { /* Firefox 19+ */color: #9fa3b1;}
:-ms-input-placeholder { /* IE 10+ */color: #9fa3b1;}

ul.year-sort{
	margin:0 auto 35px auto;
	text-align:center;
}
ul.year-sort li{
	display:inline;
	font-weight:700;
	color:#333;
}
ul.year-sort li a{
	font-size:20px;
	color:#333;
}
ul.year-sort li span{
	display:inline;
	margin: 0 10px;
	color:#f1ae44
}

@media screen and (max-width: 500px) {
  .l-width {
    width: 100%;
  }
  .cnt_padding{
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}