@import url('https://fonts.googleapis.com/css2?family=Saira:wght@400;500;600;700;800&display=swap');
:root {
    --thm-primary: #533af0;
    --thm-primary-rgb: 213, 63, 52;
    --thm-color-2: #e5ac1b;
    --thm-color-2-rgb: 229, 172, 27;
    --thm-color-3: #34a3d5;
    --thm-color-3-rgb: 52, 163, 213;
    --thm-color-4: #46b3a8;
    --thm-color-4-rgb: 70, 179, 168;
    --thm-color-5: #922ecb;
    --thm-color-5-rgb: 150, 64, 205;

    --thm-gray: #555555;
    --thm-black: #222222;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
}

a{
    text-decoration: none;
}
a:hover, a:focus{
    text-decoration: none;
}
body{
    font-family: 'Saira',sans-serif;
    font-size: 1rem;
    font-weight: 400;
}
/*==============================================
    Main Header Css        
===============================================*/
.main-header {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
    margin: 0px;
	z-index: 999;
	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 {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	padding: 0px 0px;
    background: rgba(255, 255, 255, 0.97);
	opacity: 0;
    visibility: hidden;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	z-index: 0;
}
.fixed-header .sticky-header {
	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;
    box-shadow: 0 0 10px rgba(0,0,0, .1);
	opacity: 1;
	z-index: 999999;
}
.sticky-header .logo {
    position: relative;
    display: block;
    padding: 23px 0 23px;
}
.sticky-header .logo a{
    position: relative;
    display: inline-block;
}
.sticky-header .main-menu .navigation> li {
    margin-right: 40px;
}
.sticky-header .main-menu .navigation> li> a {
    padding: 35px 0;
}
.sticky-header .relog-sticky{
    float: left;
    margin-top: 25px;
    margin-left: 30px;
}
.header-style-one {
    position: relative;
    display: block;
}
.header-top{
    position: relative;
    display: block;
    background: #533af0;
}
.header-top .outer-box{
    position: relative;
    display: block;
}

.header-top_left{
    position: relative;
    display: block;
    padding-left: 55px;
}
.header-top_left .icon{
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 60px;
    background-color: #2e148a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-top_left-content {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 520px;
    width: 100%;
    margin-left: 20px;
    min-height: 60px;
}
.header-top_left-content .single-item{
    position: relative;
    display: block;
}
.header-top_left-content .single-item p{
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}


.header-top_left-carousel{
    position: relative;
    display: block;
    padding-right: 70px;
}
.header-top_left-carousel .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
}
.header-top_left-carousel.owl-carousel .owl-nav button {
    position: relative;
    top: -2px;
    color: #ffffff;
    font-size: 30px;
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    line-height: 0;
}
.header-top_right {
    position: relative;
    display: block;
    padding: 10px 0 10px;
}
.header-social-link-1{
    position: relative;
    display: block;
    overflow: hidden;
}
.header-social-link-1 ul{
    position: relative;
    display: block;
    margin-bottom: 0;
}
.header-social-link-1 ul li{
    position: relative;
    display: inline-block; 
    margin-right: 5px;   
}
.header-social-link-1 ul li:last-child{
    margin-right: 0px;      
}
.header-social-link-1 ul li a {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.10);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 40px;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.header-social-link-1 ul li a:hover {
    background: #eab01d;
}
.header {
    position: relative;
    display: block;
    background: #ffffff;
}
.header .outer-box {
    position: relative;
    display: block;
}
.header-left {
    position: relative;
    display: block;
}
.header-left .logo {
    position: relative;
    display: block;
    padding-top: 30px;
    padding-bottom: 31px;
}
.header-left .logo a{
    position: relative;
    display: inline-block;
}
.header-right {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}
.header-right .nav-outer {
    position: relative;
    display: block;
    float: left;
    z-index: 2;
} 
.main-menu {
    position: relative;
    display: block;
    float: left;
}
.main-menu .navbar-collapse{
	padding:0px;
	display:block !important;
}
.main-menu .navigation {
	position: inherit;
	display: block;
    margin-bottom: 0;
}
.main-menu .navigation> li {
    position: inherit;
    display: inline-block;
    margin-right: 25px;
}
.main-menu .navigation> li:last-child{
    margin-right: 0;
}
.main-menu .navigation>li>a {
    position: relative;
    display: block;
    padding: 42px 0 43px;
    color: #5a5a5a;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: -0.15px;
    text-transform: uppercase;
    transition: all 500ms ease;
    opacity: 1;
}
.main-menu .navigation>li.dropdown>a {
    padding-right: 15px;
    cursor: pointer;
}
.main-menu .navigation>li.dropdown>a:before {
    position: absolute;
    right: -2px;
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    line-height: 28px;
    font-size: 13px;
    font-weight: 600;
}

.main-menu .navigation> li> ul,
.main-menu .navigation> li> .megamenu {
	position: absolute;
	top: 100%;
    left: inherit;
	width: 270px;
	padding: 0px 0;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
	-moz-transform: translateY(30px);
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
    transform: translateY(30px);
    transition:all 100ms ease;
	z-index: 100;
}
.main-menu .navigation> li> ul:before,
.main-menu .navigation> li> .megamenu:before{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: '';
    background: #ffffff;
    border-radius: 0;
	-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);
    z-index: -1;
}
.main-menu .navigation> li.dropdown:hover> ul,
.main-menu .navigation> li.dropdown:hover .megamenu{
	opacity:1;
	visibility:visible;
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
    transform: translateY(0);
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}


.main-menu .navigation> li> ul> li,
.main-menu .navigation> li> .megamenu li{
	position: relative;
    display: block;
    padding: 0 20px;
	width: 100%;
}
.main-menu .navigation> li> ul> li> a,
.main-menu .navigation> li> .megamenu li> a {
	position: relative;
	display: block;
    border-bottom: 1px solid #e9e9e9;
	padding: 13px 0px 13px;
	color: #11161e;
	font-size: 15px;
	line-height: 24px;
	font-weight: 600;
	text-align: left;
	text-transform: capitalize;
	transition: all 500ms ease;
}
.main-menu .navigation> li> ul> li:last-child> a,
.main-menu .navigation> li> .megamenu li:last-child a{
    border: none;
} 
.main-menu .navigation> li> ul> li> a:hover,
.main-menu .navigation> li> .megamenu li> a:hover {
    padding-left: 15px;
}

.main-menu .navigation> li> ul> li> a:before,
.main-menu .navigation> li> .megamenu li> a:before {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    content: "";
    margin: 15px 0;
    width: 0px;
    background: #d53f34;
    opacity: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.main-menu .navigation> li> ul> li:hover> a:before,
.main-menu .navigation> li> .megamenu li:hover a:before {
    width: 5px; 
    opacity: 1;
}
.main-menu .navigation> li> ul> li:hover> a:before{
	opacity: 1;
}
.main-menu .navigation> li> ul> li.dropdown> a:after {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-size: 14px;
    font-weight: 900;
    margin: 12px 0;
    text-align: right;
    z-index: 5; 
}
.main-menu .navigation> li> ul> li> ul {
	position: absolute;
	top: 0%;
	left: 100%;
	width: 250px;
	padding: 0;
	display: none;
	background: #ffffff;
    border-radius: 0;
	-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);
    -moz-transform: translateY(30px);
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
    transform: translateY(30px);
    transition:all 100ms ease;
	z-index: 100;
}
.main-menu .navigation li> ul> li.dropdown:hover ul {
	opacity:1;
	visibility:visible;
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;	
}
.main-menu .navigation>li>ul>li>ul> li {
	position: relative;
    display: block;
    padding: 0 20px;
	width: 100%;
}
.main-menu .navigation> li> ul> li> ul> li> a {
	position: relative;
	display: block;
    border-bottom: 1px solid #e9e9e9;
	padding: 13px 0px 13px;
	color: #11161e;
	font-size: 15px;
	line-height: 24px;
	font-weight: 600;
	text-align: left;
	text-transform: capitalize;
	transition: all 500ms ease;
}
.main-menu .navigation> li> ul> li> ul> li:last-child> a{
    border: none;
}
.main-menu .navigation> li> ul> li:hover > a{
    padding-left: 15px;
}
.main-menu .navigation> li> ul> li> ul> li> a:hover {
    padding-left: 15px;
}
.main-menu .navigation> li> ul> li> ul> li a:before{
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    content: "";
    margin: 15px 0;
    width: 0px;
    background: #533af0;
    transition: all 500ms ease;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.main-menu .navigation> li> ul> li> ul> li:hover> a:before{
    width: 5px;
}
/** Megamenu Style **/
.main-menu .navigation > li.dropdown > .megamenu {
    position: absolute;
    width: 100%;
    padding: 0px 0px;
    left: 0px;
}
.main-menu .navigation li.dropdown .megamenu li h4{
  font-weight: 500;
  padding: 3px 0px;
  color: #fff;
}
.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0;
    width: 50px;
    height: 42px;
    border-left: 1px solid #533af0;
    text-align: center;
    font-size: 16px;
    line-height: 42px;
    color: #ffffff;
    cursor: pointer;
    display: none;
    z-index: 5;
}
.main-menu .navigation > li:hover > 
a, .main-menu .navigation > li.current > a, 
.main-menu .navigation > li > ul > li > a:hover, 
.main-menu .navigation > li > ul > li:hover > a, 
.main-menu .navigation > li > ul > li > ul > li > a:hover, 
.main-menu .navigation > li > .megamenu li:hover a, 
.main-menu .navigation > li > ul > li.dropdown > a::after, 
.mobile-menu .navigation li.current > a, 
.mobile-menu .navigation li > a:hover, 
.outer-search-box-style1 .seach-toggle:hover, 
.outer-search-box-style1 .seach-toggle.active, 
.sticky-header .main-menu .navigation > li:hover > a, 
.sticky-header .main-menu .navigation > li.current > a {
    color: #533af0;
}
.header-right_buttom {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 30px;
}
.header-right_buttom .btns-box {
    position: relative;
    display: block;
}
.btn-one {
    position: relative;
    display: inline-block;
    padding-left: 15px;
    padding-right: 20px;
    background-color: #dc3545;
    color: #ffffff;
    font-size: 16px;
    line-height: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 1;
}

.btn-one:before {
    position: absolute;
    left: 45%;
    bottom: 0px;
    right: 45%;
    height: 50%;
    border-radius: 8px;
    background: #191f2d;
    opacity: 0;
    content: "";
    z-index: -1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.btn-one:hover:before {
    opacity: 1;
    left: 0;
    height: 100%;
    right: 0;
    transition: all 400ms linear;
    transition-delay: 0.1s;
}

.btn-one .txt {
    position: relative;
    z-index: 1;
}

.btn-one .txt i.arrow1 {
    position: relative;
    top: 1px;
    display: inline-block;
    font-size: 18px;
    line-height: 0;
    padding-right: 10px;
    font-weight: 400;
    z-index: 1;
}

.btn-one:hover,
.btn-one:focus {
    color: #ffffff;
    text-shadow: 0px 5px 3px rgba(12, 21, 41, 0.1);
}
/* MOBILE MENU */
.nav-outer.style1 .mobile-nav-toggler {
    padding: 35px 0 15px;
}
.nav-outer .mobile-nav-toggler {
    position: relative;
    display: none;
    float: right;
    cursor: pointer;
    padding: 30px 0;
}
.nav-outer .mobile-nav-toggler .inner {
    position: relative;
    display: block;
    padding: 3px 5px;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    padding-right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}
.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}
.mobile-menu .menu-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 16, 32, 0.90);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    z-index: 1;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.70;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}
.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}
.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #000000;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}
.mobile-menu-visible .mobile-menu .menu-box {

    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}
.mobile-menu .nav-logo a {
    position: relative;
    display: inline-block;
}
.mobile-menu .nav-logo img {
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}
.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}
.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    margin-left: 0;
    padding: 0;
}
.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.mobile-menu .navigation li.current > a{
    color: #d53f34;
}
.mobile-menu .navigation li > a::before {
    border-left: 5px solid #d53f34;
}
.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    padding: 10px 25px;
    color: #ffffff;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.mobile-menu .navigation li ul li > a {
    font-size: 15px;
    font-weight: 400;
    margin-left: 20px;
    text-transform: capitalize;
}
.mobile-menu .navigation li.current > a::before {
    height: 100%;
}
.mobile-menu .navigation li > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 32px;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}
.mobile-menu .navigation li > ul, .mobile-menu .navigation li > ul > li > ul, .mobile-menu .navigation > li.dropdown > .megamenu {
    display: none;
    padding:0;
    margin: 0;
    list-style: none;
}
.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.mobile-menu .social-links {
    position: relative;
    text-align: center;
    padding: 30px 25px;
}
.mobile-menu .social-links ul{
    margin: 0;
    padding: 0;
}
.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 5px 10px;
}
.mobile-menu .social-links li a {
    position: relative;
    color: #ffffff;
    font-size: 20px;
    line-height: 32px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.mobile-menu .relog{
    padding: 0 25px;
}

/*==============================================
    SLIDER
===============================================*/
.main-slider {
    position: relative;
    display: block;
    background: #ffffff;
    z-index: 10;
}
.main-slider.style1 {}
.main-slider .slide {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 150px 0px 150px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.main-slider .slide .image-layer{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	-webkit-transform: scale(1);
	-ms-transform:scale(1);
	transform:scale (1);
    transition: all .8s ease-in-out .4s;
    z-index: 1;
}
.main-slider .slide .image-layer:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}
.main-slider .active .slide .image-layer{
	-webkit-transform:scale(1.05);
	-ms-transform:scale(1.05);
	transform:scale(1.05);
}
.main-slider .content{
	position:relative;
	z-index:11;
}
.main-slider.style1 .slide {
    padding: 136px 0px 140px;
}
.main-slider.style1 .slide .image-layer:before{
    background-color: rgba(15, 11, 11, 0.10);
}
.main-slider.style1 .slide .image-layer{
    filter: grayscale(0);
}
.main-slider.style1 .content{
    position: relative;
    display: block;
    width: 100%;
    z-index: 10;
}
.main-slider .auto-container{
    position: relative;
}
.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
.main-slider .content h3{
    position: relative;
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.4em;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.025em;
	opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(-100);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(-100);
    transform: perspective(400px) rotateX(0deg) translateY(-100px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.main-slider .active .content h3{
	opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0);
    transform: perspective(400px) rotateX(0deg) translateY(0);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;    
}
.main-slider .content .big-title{
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 7px;
    margin-bottom: 25px;
	opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.main-slider .active .content .big-title{
	opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;   
}
.main-slider .content .big-title h2{
	color: #ffffff;
	font-size: 80px;
	line-height: 1.10em;
	font-weight: 700;
    text-transform: none;
    text-shadow: 0 5px 8px #000;
}
.main-slider .content .border-box{
    position: relative;
    display: block;
    max-width: 600px;
    width: 0%;
    height: 2px;
    background: #ffffff;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.main-slider .active .content .border-box{
    width: 100%;
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;   
}
.main-slider .content .border-box:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0px;
    background: var(--thm-primary);
    -webkit-transition: all 2000ms ease;
    -moz-transition: all 2000ms ease;
    -ms-transition: all 2000ms ease;
    -o-transition: all 2000ms ease;
    transition: all 2000ms ease;
}
.main-slider .active .content .border-box:before{
    width: 80px;
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;   
}
.main-slider .content .text{
    position: relative;
    display: block;
    padding-top: 34px;
	opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}
.main-slider .active .content .text{
	opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms; 
}
.main-slider .content .text p{
    color: #ffffff;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 3px #000;
}
.main-slider .content .btns-box{
	position: relative; 
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 43px;
	opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}
.main-slider .content .btns-box a.marlft15{
    margin-left: 15px;
}
.main-slider .active .content .btns-box{
	opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms; 
}
.main-slider .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    line-height: 0;
    opacity: 0;
    transform: scaleX(1.0) translateY(-30px);
    z-index: 3;
}
.main-slider:hover .owl-theme .owl-nav{
    opacity: 1;
    transform: scaleX(1.0) translateY(-30px);
}
.main-slider .owl-theme .owl-prev span, 
.main-slider .owl-theme .owl-next span{
    display: block;
}
.main-slider .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 50px;
    top: 0;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.30);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: rgba(255, 255, 255, 0.20);
    font-size: 25px;
    line-height: 56px;
    font-weight: 400;
    opacity: 1;
    margin: 0;
    padding: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-slider .owl-theme .owl-prev span:before { }
.main-slider .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 50px;
    top: 0;
    transform: rotate(0deg);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.30);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: rgba(255, 255, 255, 0.20);
    font-size: 25px;
    line-height: 56px;
    font-weight: 400;
    opacity: 1;
    margin: 0;
    padding: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-slider .owl-theme .owl-nav .owl-prev:hover,
.main-slider .owl-theme .owl-nav .owl-next:hover{
    color: #ffffff;
    border-color: var(--thm-primary);
}

.banner-carousel .owl-dots {
    display: none;
}
.main-slider.style1 .owl-theme .owl-nav{
    display: none;
}
.main-slider.style1 .banner-carousel.owl-carousel .owl-dots {
    position: absolute;
    top: 0;
    left: 50px;
    bottom: 0;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    counter-reset: count;
}
.main-slider.style1 .banner-carousel.owl-carousel button.owl-dot{
    position: relative;
    display: block;
    height: 25px;
    width: 25px;
    background: transparent;
    border-radius: 50%;
    margin: 5px 0;
    z-index: 1;
}
.main-slider.style1 .banner-carousel.owl-carousel button.owl-dot:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-radius: 50%;
    z-index: -1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    transform: scale(0);
}
.main-slider.style1 .banner-carousel.owl-carousel button.owl-dot.active:after{
    transform: scale(1.0);
}
.main-slider.style1 .banner-carousel.owl-carousel button.owl-dot:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    text-align: center;
    color: #222222;
    font-size: 12px;
    line-height: 25px;
    font-weight: 500;
    counter-increment: count;
    content: "0" counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
/*==============================================
    Proses Aktivasi
===============================================*/
.feature {
    background: #f9f9f9;
    padding: 120px 0;
    border-top:2px solid #ddd;
}
h2.center{
	font-size: 26px;
	margin-top: 0;
	margin-bottom: 0px;
	text-align: center;
	color: #3b5998;
	text-transform: uppercase;
	font-weight: bold;
}
.feature-wrap {
    margin-bottom: 5px;
    overflow: hidden;
}
.feature-wrap .icon {
    text-align: center;
}
.feature-wrap h2 {
    margin-top: 10px;
    text-align: center; 
    font-size: 18px;
    color:#3b5998;
}
.feature-wrap h3 {
    text-align: center;
    font-size:16px;
}
.feature-wrap i {
    font-size: 48px;
    height: 110px;
    width: 110px;
    margin: 3px;
    border-radius: 100%;
    line-height: 110px;
    text-align: center;
    background: #ffffff;
    color: #3b5998;
    border: 2px solid #74a7e0;
    box-shadow: inset 0 0 0 5px #f2f2f2;
    -webkit-box-shadow: inset 0 0 0 5px #f2f2f2;
    cursor: default;
}
.feature-wrap .feature-wrap-text{
	font-size: 1rem;
	text-align: center;
}
.lead {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #888;
}

/*==============================================
    Footer area
===============================================*/
.footer-area {
    position: relative;
    display: block;
    background: #21293b;
    z-index: 10;
}

.footer {
    position: relative;
    display: block;
    padding: 100px 0 91px;
    z-index: 1;
}
.footer .auto-container {
    max-width: 1325px;
}

.single-footer-widget {
    position: relative;
    display: block;
}
.single-footer-widget.martop {
    margin-top: 12px;
}


.single-footer-widget .title {
    position: relative;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 32px;
}
.single-footer-widget .title::before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background:var(--thm-primary);
    content: "";
}
.single-footer-widget .title h3{
    color: #ffffff;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
}

.single-footer-widget .our-company-info {
    position: relative;
    display: block;
}
.single-footer-widget .our-company-info .footer-logo{
    position: relative;
    display: block;
    margin-bottom: 27px;
}
.single-footer-widget .our-company-info .footer-logo a{
    position: relative;
    display: inline-block;
}

.single-footer-widget .our-company-info .text-box {
    position: relative;
    display: block;
}
.single-footer-widget .our-company-info .text-box p{
    color: rgba(255, 255, 255, 0.40);
    margin: 0;
}


.footer-contact-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 25px;
}
.footer-contact-info .icon{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--thm-primary);
    font-size: 15px;
    line-height: 40px;
    text-align: center;
}
.footer-contact-info .support-box {
    position: relative;
    display: block;
    padding-left: 15px;
}
.footer-contact-info .support-box h5 {
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}
.footer-contact-info .support-box h5 a{
    color: #ffffff;
}
.footer-contact-info .support-box .email{
    position: relative;
    display: block;
}
.footer-contact-info .support-box .email p{
    margin: 0;
}
.footer-contact-info .support-box .email p a{
    color: #ffffff;
}



.footer-widget-links1{
    position: relative;
    display: block;
    padding: 0;
    list-style: none;
}
.footer-widget-links1 li{
    position: relative;
    display: block;
    margin-bottom: 10px;
}
.footer-widget-links1 li:last-child{
    margin-bottom: 0;
}
.footer-widget-links1 li a {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.40);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    transition: all 500ms ease;
}
.footer-widget-links1 li a:hover{
    color: #ffffff;
}



.single-footer-widget.fixwidth{
    width: 260px;
    float: right;
}
.single-footer-widget .text{
    position: relative;
    display: block;
}
.single-footer-widget .text p{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.40);
    margin: 0;
}
.widget-subscribe-form{
    position: relative;
    display: block;
    margin-top: 31px;
}
.widget-subscribe-form .form-group{
    position: relative;
    display: block;
    margin: 0;
}
.widget-subscribe-form .form-group input[type='email']{
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    background: #ffffff;
    padding-left: 25px;
    padding-right: 70px;
    border-radius: 10px;
    border:0px solid transparent;
}
.widget-subscribe-form .form-group button{
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    transition: all 300ms ease 100ms;
    font-size: 20px;
    padding: 0;
    background: var(--thm-primary);
    border-radius: 8px;
}
.widget-subscribe-form .form-group button i{
    color: #ffffff;
    font-size: 15px;
}










.footer-bottom {
    position: relative;
    display: block;
}
.footer-bottom  .auto-container {
    max-width: 1325px;
}
.footer-bottom_content_box {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 45px 0;
    border-top: 1px solid #4a5161
}

.copyright-text {
    position: relative;
    display: block;
}
.copyright-text p{
    color:rgba(255, 255, 255, 0.50);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
}
.copyright-text p a {
    color:rgba(255, 255, 255, 0.90);
    font-weight: 500;
    transition: all 500ms ease;
}
.copyright-text p a:hover{
    color:rgba(255, 255, 255, 0.50);    
}
  
.footer-social-link{
    position: relative;
    display: block;
    margin-left: 20px;
}
.footer-social-link .social-links-style1{
    position: relative;
    display: block;
    overflow: hidden;
}
.footer-social-link .social-links-style1 li {
    position: relative;
    display: inline-block;
    color: #ffffff;
    margin-right: 5px;
}
.footer-social-link .social-links-style1 li a{
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.footer-social-link .social-links-style1 li a:hover{
    background: var(--thm-color-2);
}
.footer-social-link .social-links-style1 li a i{
    color: #ffffff;
    font-size: 15px;
    line-height: 40px;
}
.scroll-top:hover {
    color: #f8f8f8;
}
.scroll-top {
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background-color: var(--thm-primary);
    color: #ffffff;
    border-radius: 5px;
    font-size: 20px;
    line-height: 55px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    display: none;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 999999999;
    cursor: pointer;
    border: none; 
    padding: 0;
}
.photo-border .photo-list {
    width: 51px;
    height: 51px;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
}
.photo-border .photo-list > img {
    width: 51px;
    height: auto;
}

.breadcrumb-area {
    position: relative;
    display: block;
    overflow: hidden;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 109px 0 115px;
    z-index: 10;
}
.breadcrumb-area::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #0e131e;
    opacity: 0.75;
    content: "";
    z-index: -1;
}
.breadcrumb-area .inner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumb-area .title {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}
.breadcrumb-area .title h2 {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: capitalize;
}
.breadcrumb-area .inner-content .border-box {
    position: relative;
    display: block;
    width: 80px;
    height: 2px;
    background: #ffffff;
    margin: 19px auto 24px;
}
.breadcrumb-area .inner-content .border-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: var(--thm-primary);
}
.breadcrumb-menu {
    position: relative;
    display: block;
    line-height: 0;
    z-index: 1;
}
.breadcrumb-menu ul {
    position: relative;
    display: block;
    overflow: hidden;
}
.breadcrumb-menu ul li {
    position: relative;
    display: inline-block;
    float: none;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    padding-right: 5px;
    margin-right: 5px;
}
.breadcrumb-menu ul li a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.data-table {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}
.dataTables_paginate .page-link:focus,
.dataTables_paginate .page-link:active{
    box-shadow: none !important;
}
.dataTables_wrapper table{
    width: 100% !important;
}
.btn-link{
    appearance: none;
    margin:0;
    padding:0;
    border:0;
    background: none;
    line-height: 1.85;
}
.btn-link:hover{
    text-decoration: none;
}

/* VIEW ANGGOTA */
.userpro-box {
    background-color: #fff;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
}
.userpro-box .img-wrraper {
    position: relative;
    width: fit-content;
    margin: auto;
}
.userpro-box .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    border: 7px solid rgba(77, 138, 255, 0.08);
    margin-bottom: 15px;
}
.table-font-sm{
    font-size: 0.875rem !important
}
.nav-izin .nav-link.active {
    font-weight: 600;
    color: #533af0;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}
.nav-izin .nav-link.active:hover{
    font-weight: 600;
    color: #533af0;
}
.nav-izin .nav-link {
    font-weight: 400;
    color: #878787;
}
.nav-izin .nav-link:hover{
    color:#131313;
}
span.aname{
    font-weight:500;
    position: relative;
    display: flex;
}
span.aname i.verified{
    color:#0e99ed;
    font-size: 12px;
    margin-top: 0;
}