:root {
	--transparent-color: #ffffff00;
    --white-color: #ffffff;
	--white-color-01: #ffffff1a;
	--white-color-15: #ffffff26;
	--white-color-75: #ffffffbf;
	--white-color-95: #fffffff2;
	--white-color-85: #ffffffd9;
	--white-color-50: #ffffff80;
	--white-color-25: #ffffff40;
    --black-color: #000000;
	--black-color-75: #000000bf;
	--black-color-50: #00000080;
	--black-color-25: #00000040;
	--black-color-15: #00000026;
	--dark-color-01: #1a1a1a;
	--dark-color-02: #061b3f;
    --theme-color-01: #2f806b;
	--theme-color-01-25: #2f806b40;
	--theme-color-01-50: #2f806b80;
	--theme-color-01-75: #2f806bbf;
    --theme-color-02: #649588;
	--theme-color-02-25: #64958840;
	--theme-color-02-50: #64958880;
	--theme-color-03: #22735c75;
	--light-color: #f1f0f4;
	--light-color-50: #f1f0f480;
	--light-color-25: #f1f0f440;
	--gray-color: #f5f6f6;
	--gray-color-02: #bdbdbd;
	--gray-color-03: #999999;
	--gray-color-04: #fbfbfb;
	--gray-color-05: #7f7f7f;
	--red-color: #ce2830;
	--green-color: #00a651;
	--yellow-color: #f07a22;
	--mask-color-01: linear-gradient(var(--transparent-color), var(--theme-color-01));
	--border-radius-01: .25rem;
	--border-radius-02: 50%;
	--border-radius-03: 0;
	--font-awesome: "Font Awesome 5 Pro", sans-serif;
	--font-barlow: "Barlow", sans-serif;
	--font-rajdhani: "Rajdhani", sans-serif;
	--font-cairo: "Cairo", sans-serif;
}

* {
    outline: 0 !important;
    box-shadow: none !important;
}

html {
    position: absolute;
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
	font-family: var(--font-barlow);
    color: var(--black-color);
    background-color: var(--white-color);
	font-size: 1rem;
	font-weight: 400;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
    min-height: 100%;
	direction: ltr;
}

a,
a:focus,
a:hover {
    text-decoration: none !important;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

ul {
    padding: 0;
    margin-bottom: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-rajdhani);
    font-weight: 700;
}

p {
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1320px;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

::selection {
    background: var(--theme-color-01);
    color: var(--white-color);
}

.lang-en {
	font-family: var(--font-barlow);
}

.lang-ar {
	font-family: var(--font-cairo);
}

.dir-num {
    direction: ltr;
    text-align: left;
}

.lang-body-en .langx-en {
	display: none !important;
}

.lang-body-ar .langx-ar {
	display: none !important;
}

/****** Preloader ******/

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
	height: 100vh;
    width: 100vw;
    background-color: var(--white-color);
    z-index: 9999;
	transition: all 2s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader img {
	position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 4.5rem;
    border: none;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.preloader .three-quarter-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3.5rem;
	height: 3.5rem;
	border: .25rem solid var(--theme-color-02);
	border-top: .25rem solid transparent;
	border-radius: var(--border-radius-02);
	animation: spin .5s linear 0s infinite;
	margin-left: -1.75rem;
	margin-top: 3rem;
}

.preloader.loaded {
	width: 0;
	left: -25%;
}

.preloader.loaded img {
	opacity: 0;	
	-webkit-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
	transition: all 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .three-quarter-spinner {
	opacity: 0;
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
	
}

@media (max-width: 576px) {
	.preloader img {
		width: 16rem;
	}
}


@keyframes spin {
  from {
    transform: rotate(0);
  }
  to{
    transform: rotate(359deg);
  }
}


/****** Header ******/

header {
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
    width: 100%;
    z-index: 20;
	-webkit-box-shadow: 0 0 5px 1px rgb(0 0 0 / 20%) !important;
    box-shadow: 0 0 5px 1px rgb(0 0 0 / 20%) !important;
}

header.headroom--not-top {
    position: fixed;
}

header.headroom--unpinned {
    opacity: 0;
}

header .header-cus {
    width: 100%;
	padding: 0.75rem 0;
	background-color: var(--white-color);
	border-bottom: 1px solid var(--white-color-25);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header.headroom--not-top .header-cus,
header.headroom--not-top .header-cus .navbar {
	background-color: var(--white-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .header-cus .navbar-expand-lg .navbar-nav .nav-link,
header .header-cus .navbar-expand-lg .navbar-nav .nav-link:focus {
    padding-right: 0;
    padding-left: 0;
    margin-left: 0;
    margin-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-size: .95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--theme-color-01);
	line-height: 2;
}

header .header-cus .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--theme-color-02);
}

header .header-cus .navbar.navbar-expand-lg {
	background-color: var(--white-color) !important;
}

header.headroom--not-top .header-cus .navbar-expand-lg .navbar-nav .nav-link,
header.headroom--not-top .header-cus .navbar-expand-lg .navbar-nav .nav-link:focus {
    padding-right: 0;
    padding-left: 0;
    margin-left: 0;
    margin-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-size: .95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--theme-color-01);
	line-height: 2;
}

header.headroom--not-top .header-cus .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--theme-color-02);
}

header .header-cus .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 0;
}

header .header-cus .navbar-expand-lg .navbar-nav .nav-link.lang-lang,
header .header-cus .navbar-expand-lg .navbar-nav .nav-link.lang-lang:focus {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
	padding-left: .75rem !important;
    padding-right: .75rem !important;
	background-color: var(--theme-color-02);
    color: var(--white-color);
	font-weight: bold;
	border-radius: var(--border-radius-03);
	line-height: 1.5;
	margin-top: 0;
}

header .header-cus .navbar-expand-lg .navbar-nav .nav-link.lang-lang:hover {
	background-color: var(--theme-color-01);
    color: var(--white-color);
}

header .header-cus .text-name {
	text-transform: none !important;
}

header .header-cus .text-name::after {
	content: "|";
	position: relative;
    right: -0.5rem;
	color: var(--dark-color);
}

header .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

header .navbar-brand img {
    height: 4.5rem;
    width: auto;
    padding: 0;
}

header.headroom--not-top .navbar-brand img.logo-white {
    display: none;
}

header.headroom--not-top .navbar-brand img.logo-org {
    display: block;
}

header .navbar-brand img.logo-org {
    display: none;
}

header .navbar-brand img.logo-white {
    display: block;
}

header .navbar-brand .slogan,
header .navbar-brand:focus .slogan {
    display: block;
	font-size: .75rem;
	font-weight: 600;
	color: var(--theme-color-01);
	text-align: center;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .navbar-brand:hover .slogan {
    color: var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 576px) {
	header .navbar-brand .slogan {
		font-size: .625rem;
	}
}

header .navbar {
    padding-top: 0;
    padding-bottom: 0;
    color: var(--white-color);
}

header.headroom--top .navbar {
	background-color: var(--theme-color-01);
}

header.headroom--not-top .navbar {
	background-color: var(--theme-color-01);
}

@media (min-width: 992px) {
	.navbar-expand-lg .navbar-collapse {
		display: inline-block !important;
		text-align: center;
	}
	
	.navbar-nav {
		display: inline-flex;
	}	
}

@media (max-width: 992px) {
    .navbar-toggler i.open-menu {
        color: var(--theme-color-01);
        transform: rotateY(0deg);
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        display: inline-block;
    }
	
    .navbar-toggler i.close-menu {
        color: var(--theme-color-02);
        height: 30px;
        width: auto;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        display: none;
    }
	
	header .header-cus {
		border-bottom: none;
	}
	
	header.headroom--not-top .navbar-toggler i.open-menu {
        color: var(--theme-color-01);
    }
	
    header.headroom--not-top .navbar-toggler i.close-menu {
        color: var(--theme-color-02);
    }
	
	
    .navbar-toggler[aria-expanded="true"] i.open-menu {
        display: none;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
	
    .navbar-toggler[aria-expanded="true"] i.close-menu {
        display: inline-block;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
	
	header .navbar-toggler {
		padding: 0;
		border-radius: 0;
		position: absolute;
		top: -3rem;
		right: .5rem;
	}
	header .header-cus {
		padding: 0.5rem 0;
	}
	header .header-cus .navbar-expand-lg .navbar-nav .nav-link.lang-lang {
		margin-top: 0;
	}
	header .collapse.navbar-cus {
		max-height: 90vh;
		overflow-y: auto;
	}
	header .header-cus .text-name::after {
		display: none;
	}
}

header .navbar-expand-lg .navbar-nav .nav-link,
header .navbar-expand-lg .navbar-nav .nav-link:focus {
    padding-right: 0;
    padding-left: 0;
    margin-left: 0;
    margin-right: 2.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: .95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #2f806b;
    /*color: var(--white-color-85);*/
}

    header .navbar-expand-lg .navbar-nav .nav-link:hover,
    header .navbar-expand-lg .navbar-nav .nav-link.active {
        /*color: var(--white-color);*/
        color: #2f806b;
    }

header .navbar-expand-lg .navbar-nav .nav-item.last-child .nav-link,
header .navbar-expand-lg .navbar-nav .nav-item.last-child .nav-link:focus {
	margin-right: 0;
	margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: .75rem;
    padding-right: .75rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: var(--theme-color-02);
	border: 1px solid var(--theme-color-02);
    color: var(--white-color);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .navbar-expand-lg .navbar-nav .nav-item.last-child .nav-link:hover,
header .navbar-expand-lg .navbar-nav .nav-item.last-child .nav-link.active{
    background-color: var(--transparent-color);
    color: var(--white-color);
	border: 1px solid var(--white-color);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (min-width: 992px) {
	header .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        padding: .5rem 0;
        border: none;
        border-radius: 0;
        background-color: var(--white-color);
		border-bottom: 1px solid var(--gray-color-02);
        min-width: 17rem;
    }
    header .dropdown-menu.fade-up {
        top: 140%;
    }
    header .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
		border: 1px solid var(--gray-color-02);
		border-top: none;
        transform: rotateX(0deg);
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    header .dropdown-toggle::after {
        display: none;
    }
    header .dropdown-menu .dropdown-item,
    header .dropdown-menu .dropdown-item:focus {
        display: block;
        width: 100%;
        padding: .75rem 1rem;
        clear: both;
        color: var(--black-color);
        text-align: inherit;
        text-decoration: none;
        white-space: nowrap;
        background-color: var(--transparent-color);
        border: 0;
        cursor: pointer;
        position: relative;
        font-weight: 500;
    }
    header .dropdown-menu .dropdown-item:hover,
    header .dropdown-menu .dropdown-item.active {
        color: var(--theme-color-02);
        padding: .75rem 1rem .75rem 1.5rem;
    }
    header .dropdown-menu .dropdown-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 24px;
        width: .25rem;
        height: 2px;
        opacity: 1;
        background-color: var(--black-color);
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    header .dropdown-menu .dropdown-item:hover::before,
    header .dropdown-menu .dropdown-item.active::before {
        width: 1rem;
		background-color: var(--theme-color-02);
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    header .dropdown-menu .dropdown-item.active {
        color: var(--theme-color-02);
    }
	header .dropdown-menu .dropdown-item img {
        width: calc(100% + 1rem);
		padding: 0;
		margin: 0;
		margin-left: -1rem;
		-webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
	header .dropdown-menu .dropdown-item:hover img {
        width: calc(100% + 1.5rem);
		padding: 0;
		margin: 0;
		margin-left: -1.5rem;
		-webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
}

@media (max-width: 992px) {
    header .navbar-expand-lg .navbar-nav {
        margin: 1rem 0 0 0;
        padding: 0;
    }
    header .navbar-expand-lg .navbar-nav .nav-link,
	header .navbar-expand-lg .navbar-nav .nav-link:hover {
        padding: 0 !important;
        margin-bottom: 1rem;            /* 1.5*/
		margin-right: 0;
        font-size: 1rem;
    }
	header .navbar-expand-lg .navbar-nav .nav-link .text-name {
		text-transform: none !important;
	}
    header .navbar-expand-lg .navbar-nav .dropdown-menu {
        border-radius: 0;
        padding: .5rem 0;
        margin-bottom: 1.5rem;
        background-color: var(--white-color);
		border: 1px solid var(--gray-color-02);
    }
    header .dropdown-menu .dropdown-item,
    header .dropdown-menu .dropdown-item:focus {
        padding: .5rem .75rem;
        color: var(--black-color);
        font-size: 1rem;
        font-weight: 600;
        background-color: var(--transparent-color);
        position: relative;
    }
    header .dropdown-menu .dropdown-item:hover,
    header .dropdown-menu .dropdown-item.active,
    header .dropdown-menu .dropdown-item:active {
        color: var(--red-color);
        background-color: var(--transparent-color);
    }
    header .dropdown-menu .dropdown-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 1.25rem;
        width: .25rem;
        height: 2px;
        opacity: 1;
        background-color: var(--black-color);
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    header .dropdown-menu .dropdown-item:hover::before,
    header .dropdown-menu .dropdown-item.active::before {
        background-color: var(--theme-color-02);
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    header .dropdown-menu .dropdown-item.active {
        color: var(--theme-color-02);
        pointer-events: none;
        cursor: default;
    }
	header .dropdown-menu .dropdown-item img {
        display: none !important;
    }
    header .dropdown-toggle::after {
        display: none;
    }
    header .dropdown-toggle::before {
        display: inline-block;
        content: "\f107";
        font-family: var(--font-awesome);
        float: right;
        border: none;
        font-weight: 400;
        margin-top: 2px;
    }
    header .navbar-brand img {
        height: 3.5rem;
    }
	header .header-cus .navbar-expand-lg .navbar-nav {
        margin: 0;
        padding: 0;
		flex-direction: row;
    }
	header .header-cus .navbar-expand-lg .navbar-nav .nav-link {
		margin-bottom: 0;
	}
	
	header .header-cus .navbar-expand-lg .navbar-nav .nav-item {
		display: inline-block;
	}
	header .navbar-expand-lg .navbar-nav .nav-item.last-child .nav-link,
	header .navbar-expand-lg .navbar-nav .nav-item.last-child .nav-link:focus {
		margin-right: 0;
		margin-top: 0;
		margin-bottom: 1rem !important;
		padding-left: .75rem !important;
		padding-right: .75rem !important;
		padding-top: .5rem !important;
		padding-bottom: .5rem !important;
	}
}

@media (max-width: 576px) {
	header .header-cus .navbar-expand-lg .navbar-nav {
        margin: 0 1.5rem 0 0;
    }
}

header.headroom {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform, opacity;
}

header.headroom.headroom--pinned {
    -webkit-animation-name: headroom--pinned;
    animation-name: headroom--pinned;
}

header.headroom.headroom--unpinned {
    -webkit-animation-name: headroom--unpinned;
    animation-name: headroom--unpinned;
}

header.headroom.headroom--unpinned.headroom--between {
	opacity: 0;
    visibility: hidden;
    max-height: 0;
    margin-bottom: 0;
    overflow: hidden;
    padding: 0;
}

header.headroom.headroom--pinned.headroom--between {
    -webkit-animation-name: headroom--unpinned;
    animation-name: headroom--unpinned;
}

@-webkit-keyframes headroom--pinned {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes headroom--pinned {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes headroom--unpinned {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes headroom--unpinned {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

.header-info {
	color: var(--black-color);
	position: relative;
	display: flex;
	padding: 0 2.5rem 0 0;
}

.header-info i {
	font-size: 1.5rem;
	margin-right: 1rem;
	color: var(--theme-color-01);
	padding-top: .5rem;
}

.header-info span {
	text-transform: uppercase;
	display: block;
	font-size: 1.125rem;
    font-weight: 600;
}

.header-info div {
	display: block;
    font-size: .875rem;
	font-weight: 500;
	color: var(--black-color);
}

.header-info div a,
.header-info div a:focus {
	color: var(--black-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.header-info div a:hover {
	color: var(--white-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header.headroom--not-top .header-info {
	color: var(--black-color);
	position: relative;
	display: flex;
	padding: 0 2.5rem 0 0;
}

header.headroom--not-top .header-info i {
	font-size: 1.5rem;
	margin-right: 1rem;
	color: var(--theme-color-01);
	padding-top: .5rem;
}

header.headroom--not-top .header-info span {
	text-transform: uppercase;
	display: block;
	font-size: 1.125rem;
    font-weight: 600;
}

header.headroom--not-top .header-info div {
	display: block;
    font-size: .875rem;
	font-weight: 500;
	color: var(--black-color);
}

header.headroom--not-top .header-info div a,
header.headroom--not-top .header-info div a:focus {
	color: var(--black-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header.headroom--not-top .header-info div a:hover {
	color: var(--theme-color-01);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 992px) {
	.header-info {
		display: none !important;
	}	
}

.side-menu {
	display: none;
}

@media (max-width: 992px){
	.side-menu {
		display: block;
		position: fixed;
		top: 0;
		left: -85vw;
		width: 85vw;
		height: 100%;
		padding: 4rem 2rem 2rem 2rem;
		border: none;
		background-color: var(--white-color);
		margin: 0;
		z-index: 30;
		-webkit-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
	
	.open-side-menu i {
		font-size: 1.25rem;
	}
	
	.side-menu.show {
		left: 0;
		background-color: var(--white-color);
		box-shadow: 2px 0px 7px rgb(0 0 0 / 5%), 1px 0px 3px rgb(0 0 0 / 7%) !important;
		-webkit-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
	
	.hide-menu .side-menu {
		left: 0;
		-webkit-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
	
	.side-menu .side-menu-info {
		color: var(--black-color);
		position: relative;
		display: flex;
		padding: 0;
	}

	.side-menu .side-menu-info i {
		font-size: 1.5rem;
		margin-right: 1rem;
		color: var(--theme-color-02);
		padding-top: 1rem;
	}

	.side-menu .side-menu-info span {
		text-transform: uppercase;
		display: block;
		font-size: 1.125rem;
		font-weight: 600;
	}

	.side-menu .side-menu-info div {
		display: block;
		font-size: .875rem;
		font-weight: 400;
	}

	.side-menu .side-menu-info div a,
	.side-menu .side-menu-info div a:focus {
		color: var(--black-color);
		-webkit-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}

	.side-menu .side-menu-info div a:hover {
		color: var(--theme-color-01);
		-webkit-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
	
	.side-menu .side-menu-social a,
	.side-menu .side-menu-social a:focus {
		color: var(--theme-color-01);
		-webkit-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}

	.side-menu .side-menu-social a:hover {
		color: var(--theme-color-02);
		-webkit-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
	
	.side-menu-bg {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: var(--transparent-color);
		cursor: pointer;
		z-index: 25;
		display: none;
		-webkit-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}

	.side-menu-bg.show {
		display: block;
		-webkit-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
}

@media (max-width: 992px) {
    .menu-mob header {
        background-color: var(--theme-color-01);
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
	
	.menu-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--theme-color-01-50);
        z-index: 5;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .menu-mob .menu-bg {
        opacity: 1;
        visibility: visible;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
}


/****** Footer ******/

footer {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
	background-color: var(--theme-color-01);
	background-image: url(../img/pages/footer-bg.webp);
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
    background-repeat: no-repeat;
	z-index: 2;
}

footer::before {
    content: "";
    background-color: var(--black-color-25);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

footer .top-footer {
	padding: 5rem 0 2rem 0;
	position: relative;
}

@media (max-width: 992px) {
	footer {
		background-attachment: scroll;
	}	
}

@media (max-width: 576px) {
	footer .top-footer {
		padding: 4rem 0 2rem 0;
	}	
}

footer .footer-about .logo-footer {
    width: auto;
	height: 3.5rem;
    margin: auto;
	margin-right: 2rem;
}

footer .footer-about a .slogan,
footer .footer-about a:focus .slogan {
    display: block;
	font-size: .65rem;
	font-weight: 600;
	color: var(--white-color);
	text-align: center;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .footer-about a:hover .slogan {
    color: var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .footer-about p.footer-pra {
	color: var(--white-color-85);
	font-size: .875rem;
	margin-top: 1.5rem;
	margin-bottom: 0;
	padding-right: 2rem;
	text-align: center;
}

@media (max-width: 992px) {
	footer .footer-about .logo-footer {
		height: 6rem;
	}

	footer .footer-about p.footer-pra {
		padding-right: 2rem;
		padding-left: 0;
	}	
}

@media (max-width: 992px) {
	footer .footer-about .logo-footer {
		height: 4rem;
		margin-right: 0;
	}
	
	footer .footer-about p.footer-pra {
		padding-right: 0;
		padding-left: 0;
	}	
}

@media (max-width: 576px) {
	footer .footer-about p.footer-pra {
		padding-right: 0;
		padding-left: 0;
	}	
}

footer .copyright {
    width: 100%;
    height: auto;
    padding: 1rem 0;
    position: relative;
	border-top: 1px solid var(--white-color-25);
}

@media (max-width: 992px) {
	footer .copyright {
		text-align: center;
	}	
}

footer .copyright p {
    margin-bottom: 0;
    color: var(--white-color-85);
}

footer .copyright p a,
footer .copyright p a:focus {
    color: var(--white-color-85);
}

footer .copyright p a:hover {
    color: var(--white-color);
}

footer .back-to-top,
footer .back-to-top:focus {
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
	line-height: 2.5rem;
    display: inline-block;
    border: none;
    border-radius: var(--border-radius-02);
    background-color: var(--white-color-85);
	text-align: center;
    z-index: 1;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .back-to-top:hover {
    background-color: var(--white-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .back-to-top i {
    color: var(--theme-color-01);
	font-size: 1.5rem;
    position: relative;
    top: 0.25rem;
}

footer .footer-contact .contact-item {
    padding: 0;
    position: relative;
    display: block;
	margin-bottom: 1.25rem;
}

footer .footer-contact .contact-item:last-child {
	margin-bottom: 0;
}

footer .footer-contact .contact-item i {
    color: var(--white-color);
	font-size: 1.25rem;
	position: absolute;
	top: .25rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .footer-contact .contact-item a,
footer .footer-contact .contact-item a:focus {
    Color: var(--white-color-85);
    margin-left: 2.5rem;
    line-height: 1.5rem;
	display: block;
}

footer .footer-contact .contact-item a:hover {
    Color: var(--white-color);
}

footer .footer-contact .follow-us {
    position: relative;
    color: var(--white-color);
}

footer .footer-contact .follow-us span {
    margin-right: .75rem;
    color: var(--white-color);
	font-weight: 700;
}

footer .footer-contact .follow-us a,
footer .footer-contact .follow-us a:focus {
    text-decoration: none;
}

footer .footer-contact .follow-us .social .footer-social-link,
footer .footer-contact .follow-us .social .footer-social-link:focus {
    width: auto;
    color: var(--white-color-85);
	font-size: 1.125rem;
    margin-right: 1.25rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .footer-contact .follow-us .social {
    display: inline-block;
}

footer .footer-contact .follow-us .social .footer-social-link:last-child {
    margin-right: 0;
}

footer .footer-contact .follow-us .social .footer-social-link:hover {
    color: var(--white-color);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-decoration: none;
}

footer .footer-title {
	font-family: var(--font-rajdhani);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
	position: relative;
}

footer .footer-title::after {
	content: "";
	width: 3rem;
	height: 2px;
    border-radius: 2px;
	position: absolute;
	left: 0;
	top: 2.5rem;
	background-color: var(--white-color);
}

footer .footer-links ul {
    margin-bottom: 0;
    padding-left: 0;
}

footer .footer-links a,
footer .footer-links a:focus {
    color: var(--white-color-85);
	font-weight: 500;
    line-height: 2.6rem;
	padding-left: 1rem;
	position: relative;
}

footer .footer-links a:hover,
footer .footer-links a.active {
    color: var(--white-color);
	padding-left: 1.5rem;
}

footer .footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65rem;
    width: .25rem;
    height: 2px;
    opacity: 1;
    background-color: var(--white-color-85);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .footer-links a:hover::before,
footer .footer-links a.active::before {
	width: 1rem;
	background-color: var(--white-color);
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

footer .subscribe-widget {
    padding: 4rem 2.5rem 3rem 2.5rem;
    position: relative;
	color: var(--white-color);
    z-index: 1;
	margin-top: -7rem;
}

footer .subscribe-widget:before {
    background-color: var(--theme-color-02);
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    clip-path: polygon(0% 5%,100% 0,100% 100%,0% 100%);
    z-index: -1;
}

footer .subscribe-widget .overlay-icon {
    position: absolute;
    right: 1.5rem;
    top: 4rem;
    color: var(--white-color-15);
    font-size: 10rem;
}

footer .subscribe-widget .overlay-icon-02 {
    color: var(--white-color);
	font-size: 4.5rem;
}

footer .subscribe-widget .form-outline .form-control {
    padding: 0.5rem 0.5rem;
    color: var(--black-color);
    background-color: var(--white-color);
    border: none;
    border-bottom: 1px solid var(--white-color);
    border-radius: 0;
}

footer .subscribe-widget .btn-cus-01,
footer .subscribe-widget .btn-cus-01:focus {
	display: block;
    width: 100%;
    padding: 0.25rem;
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: var(--theme-color-02);
    color: var(--white-color);
	border: 2px solid var(--white-color);
    border-radius: var(--border-radius-03);
	font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-rajdhani);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .subscribe-widget .btn-cus-01:hover {
	background-color: var(--theme-color-01);
	color: var(--white-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 992px) {
	footer .subscribe-widget {
		padding: 2rem;
		margin-top: 0;
		background-color: var(--theme-color-02);
	}

	footer .subscribe-widget:before {
		display: none;
	}
	
	footer .subscribe-widget .overlay-icon {
		top: 1.5rem;
	}
}

/****** Main ******/

main {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
}

.bg-white {
	background-color: var(--white-color);
}

.bg-black {
	background-color: var(--black-color);
}

.bg-gray {
	background-color: var(--gray-color) !important;
}

.bg-gray-04 {
	background-color: var(--gray-color-04);
}

.bg-theme-01 {
	background-color: var(--theme-color-01);
}

.text-black {
	color: var(--black-color) !important;
}

.text-theme-01 {
	color: var(--theme-color-01);
}

.text-theme-02 {
	color: var(--theme-color-02);
}

.section-cus-01 {
    position: relative;
	padding: 6rem 0;
}

.section-cus-02 {
    padding: 5rem 0;
}

.section-cus-03 {
    padding: 5rem 0 0 0;
}

.section-cus-04 {
    position: relative;
	padding: 5rem 0 6rem 0;
}

.section-cus-04::after {
	content: "";
    position: absolute;
	bottom: 0;
    left: 0;
    width: 100%;
    height: 3rem;
    opacity: .4;
    background-image: url(../img/pages/scale-top.webp);
    background-position: top;
    background-repeat: repeat-x;
	transform: rotate(180deg);
}

@media (max-width: 992px) {
	.section-cus-01 {
		padding: 4rem 0;
	}
	
	.section-cus-02 {
		padding: 3rem 0;
	}
	
	.section-cus-03 {
		padding: 3rem 0 0 0;
	}
	
	.section-cus-04 {
		padding: 3rem 0 4rem 0;
	}
}

.cus-bord-top,
.cus-bord-bot {
	position: relative;
}

.cus-bord-top::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 1rem;
    opacity: 1;
    background-image: url(../img/pages/scale-top.webp);
    background-position: top;
    background-repeat: repeat-x;
    background-size: contain;
}

.cus-bord-bot::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 100%;
    height: 1rem;
    opacity: 1;
    background-image: url(../img/pages/scale-bot.webp);
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: contain;
}

.btn-cus-01,
.btn-cus-01:focus {
	display: inline-block;
    padding: .5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: var(--theme-color-02);
    color: var(--white-color);
	border: 1px solid var(--theme-color-02);
    border-radius: var(--border-radius-03);
	font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-rajdhani);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-01:hover {
	background-color: var(--theme-color-01);
	color: var(--white-color);
	border: 1px solid var(--theme-color-01);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-02,
.btn-cus-02:focus {
	display: inline-block;
    padding: .5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: var(--white-color);
    color: var(--theme-color-01);
	border: 1px solid var(--white-color);
    border-radius: var(--border-radius-03);
	font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-rajdhani);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-02:hover {
	background-color: var(--theme-color-01);
	color: var(--white-color);
	border: 1px solid var(--theme-color-01);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-03,
.btn-cus-03:focus {
	display: inline-block;
    padding: .5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: var(--theme-color-01);
    color: var(--white-color);
	border: 1px solid var(--theme-color-01);
    border-radius: var(--border-radius-03);
	font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-rajdhani);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-03:hover {
	background-color: var(--theme-color-02);
	color: var(--white-color);
	border: 1px solid var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-03-02,
.btn-cus-03-02:focus {
	display: inline-block;
    padding: .25rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: var(--theme-color-01);
    color: var(--white-color);
	border: 1px solid var(--theme-color-01);
    border-radius: var(--border-radius-03);
	font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-rajdhani);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-03-02:hover {
	background-color: var(--theme-color-02);
	color: var(--white-color);
	border: 1px solid var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-03-03,
.btn-cus-03-03:focus {
	display: inline-block;
    padding: .25rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: var(--theme-color-02);
    color: var(--white-color);
	border: 1px solid var(--theme-color-02);
    border-radius: var(--border-radius-03);
	font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-rajdhani);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-03-03:hover {
	background-color: var(--theme-color-01);
	color: var(--white-color);
	border: 1px solid var(--theme-color-01);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-04,
.btn-cus-04:focus {
	display: inline-block;
    padding: .5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: var(--white-color);
    color: var(--theme-color-01);
	border: 1px solid var(--white-color);
    border-radius: var(--border-radius-03);
	font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-rajdhani);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-04:hover {
	background-color: var(--transparent-color);
	color: var(--white-color);
	border: 1px solid var(--white-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-05,
.btn-cus-05:focus {
	display: inline-block;
    padding: .25rem .5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: var(--transparent-color);
    color: var(--theme-color-01);
	border: 1px solid var(--theme-color-01);
    border-radius: var(--border-radius-03);
	font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-rajdhani);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-05:hover {
	color: var(--theme-color-02);
	border: 1px solid var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.cus-link,
.cus-link:focus {
    position: relative;
    display: inline-block;
    color: var(--theme-color-01);
}

.cus-link:hover {
    color: var(--theme-color-02);
}

.cus-link::after,
.cus-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 1px;
    width: 100%;
    background-color: currentColor;
}

.cus-link::before {
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.cus-link::after {
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
}

.cus-link:hover::before {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .3s cubic-bezier(.86, 0, .07, 1);
    -moz-transition: -moz-transform .3s cubic-bezier(.86, 0, .07, 1);
    transition: transform .3s cubic-bezier(.86, 0, .07, 1);
}

.cus-link:hover::after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform .3s cubic-bezier(.86, 0, .07, 1) .25s;
    -moz-transition: -moz-transform .3s cubic-bezier(.86, 0, .07, 1) .25s;
    transition: transform .3s cubic-bezier(.86, 0, .07, 1) .25s;
}

.section-title-bg {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.page-title-bg {
	background-image: url(../img/pages/page-top-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 50%;
	position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.page-title-bg::before {
	content: "";
	background-color: var(--theme-color-03);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	z-index: -1;
}

.page-title {
	padding: 10rem 0 5rem 0;
	color: var(--white-color-85);
}

.page-title .page-title-name {
	font-size: 3rem;
	font-weight: bold;
	color: var(--white-color);
	text-transform: uppercase;
}

.page-title .page-title-links {
	display: inline-block;
	position: relative;
	color: var(--white-color-85);
}

.page-title .page-title-links a, .page-title .page-title-links a:focus {
	color: var(--white-color-85);
	display: inline-block;
	margin-right: .25rem;
}

.page-title .page-title-links a:hover {
	color: var(--white-color);
}

.page-title .page-title-links a::after {
    content: "\f105";
	font-family: var(--font-awesome);
	margin-left: .5rem;
	color: var(--white-color-85);
}

.page-title .page-title-links span {
	margin-right: .25rem;
	color: var(--white-color-85);
}

.page-title .page-title-links span::after {
    content: "\f105";
	font-family: var(--font-awesome);
	margin-left: .5rem;
	color: var(--white-color-85);
}

.page-title .page-title-links p {
	color: var(--white-color);
	margin-top: 2rem;
}

@media (max-width: 992px) {
	.page-title-bg {
		background-attachment: scroll;
	}
	
	.page-title {
		padding: 10rem 0 5rem 0;
	}
	
	.page-title .page-title-name {
		font-size: 3rem;
	}
	
	.page-title .page-title-links {
		margin-top: .75rem;
	}
}

@media (max-width: 576px) {
	.page-title {
		padding: 8rem 0 4rem 0;
	}
	
	.page-title .page-title-name {
		font-size: 2rem;
	}
	
	.page-title .page-title-links {
		margin-top: .5rem;
	}
}

.section-mask {
    background-image: var(--mask-color-01);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 50%;
}

.constrot-strip {
    position: absolute;
	top: 0;
    height: 15px;
    width: 100%;
    background-image: url(../img/pages/footer-strip.webp);
    background-repeat: repeat-x;
    background-position: center top;
}

/****** Pages ******/

.home-slide .carousel-item {
    width: 100%;
    height: 85vh;
	overflow: hidden;
}

.home-slide .carousel-item::before {
    content: "";
    /*background-color: var(--theme-color-03);*/
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-slide .carousel-item .slide-bg img,
.home-slide .carousel-item .slide-bg video {
    object-fit: cover;
    background-size: cover;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.home-slide .carousel-caption {
    bottom: 4rem;
	left: 2%;
    right: 2%;
	z-index: 3;
}

.home-slide .carousel-control-next {
    bottom: 5%;
    top: auto;
    left: auto;
	right: 5%;
    width: 2rem;
    height: 2rem;
}

.home-slide .carousel-control-prev {
    bottom: 5%;
    top: auto;
    right: auto;
	left: 5%;
    width: 2rem;
    height: 2rem;
}

.home-slide h5 {
    color: var(--white-color);
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
	.home-slide .carousel-item {
		height: 75vh;
	}
	
	.home-slide h5 {
		font-size: 2.5rem;
	}
	
}

@media (max-width: 576px) {
	.home-slide .carousel-item {
		height: 70vh;
	}
	
	.home-slide .carousel-caption {
		bottom: 2rem;
	}
	
	.home-slide .carousel-control-next {
		width: 1.5rem;
    	height: 1.5rem;
	}

	.home-slide .carousel-control-prev {
		width: 1.5rem;
    	height: 1.5rem;
	}
	
	.home-slide h5 {
		font-size: 2.25rem;
		text-align: center;
	}
}

.art-title {
	font-family: var(--font-rajdhani);
	color: var(--theme-color-01);
	text-transform: uppercase;
	font-size: 1.5rem;
    font-weight: 700;
	position: relative;
	display: inline-block;
	margin-bottom: 1rem;
}

.art-title::after {
    content: "";
    width: 80%;
    height: 3px;
    border-radius: 0;
    position: absolute;
    left: 50%;
    top: 2.5rem;
    background-color: var(--theme-color-02);
	-webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.text-box-01 {
	position: relative;
	overflow: hidden;
	padding: 0;
	border: none;
	border-bottom: 1px solid var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-01:hover {
	border-bottom: 1px solid var(--theme-color-01);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-01 .text-box-slide-01 {
	background-color: var(--white-color);
	padding: 1rem .5rem 2rem .5rem;
	position: relative;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-01 h6 {
	font-size: 1rem;
	text-transform: uppercase;
	margin-bottom: 0;
}

.text-box-01 h3,
.text-box-01 h3 a,
.text-box-01 h3 a:focus {
	color: var(--theme-color-01);
	font-size: 1.5rem;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-01 h3 a:hover {
	color: var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-01 .date i {
	color: var(--theme-color-02);
}

.text-box-01 img {
	position: relative;
	-webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-01:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.text-box-01 .img-over {
	position: relative;
	display: block;
}

.text-box-01 .img-over::after {
    content: "";
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	background-color: var(--theme-color-01-25);
    -webkit-transform: scale(0);
    transform: scale(0);
	z-index: 1;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-01:hover .img-over::after {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-01 .img-over-01 {
    padding: 0;
    padding-top: 60%;
    margin: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.homeswiper-01 {
	padding-bottom: 6rem;
}

.homeswiper-01 .swiper-button-prev,
.homeswiper-01.swiper-container-rtl .swiper-button-next {
    left: 45%;
    right: auto;
    top: calc(100% - 42px);
    border-radius: var(--border-radius-03);
    padding: 1.5rem;
	text-align: center;
	background-color: var(--theme-color-02);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.homeswiper-01 .swiper-button-prev::after {
    content: "\f104";
	font-family: var(--font-awesome);
    color: var(--white-color);
	font-size: 2rem;
    font-weight: 300;
    position: absolute;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.homeswiper-01 .swiper-button-prev:hover {
    background-color: var(--theme-color-01);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.homeswiper-01 .swiper-button-next,
.homeswiper-01.swiper-container-rtl .swiper-button-prev {
    right: 45%;
    left: auto;
    top: calc(100% - 42px);
    border-radius: var(--border-radius-03);
    padding: 1.5rem;
	text-align: center;
	background-color: var(--theme-color-02);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.homeswiper-01 .swiper-button-next::after {
    content: "\f105";
	font-family: var(--font-awesome);
    color: var(--white-color);
	font-size: 2rem;
    font-weight: 300;
    position: absolute;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.homeswiper-01 .swiper-button-next:hover {
    background-color: var(--theme-color-01);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
	.homeswiper-01 .swiper-button-prev,
	.homeswiper-01.swiper-container-rtl .swiper-button-next {
		left: 40%;
	}
	
	.homeswiper-01 .swiper-button-next,
	.homeswiper-01.swiper-container-rtl .swiper-button-prev {
		right: 40%;
	}
}

@media (max-width: 576px) {
	.homeswiper-01 .swiper-button-prev,
	.homeswiper-01.swiper-container-rtl .swiper-button-next {
		left: 33%;
	}
	
	.homeswiper-01 .swiper-button-next,
	.homeswiper-01.swiper-container-rtl .swiper-button-prev {
		right: 33%;
	}
}

.homeswiper-02 {
	padding-bottom: 6rem;
}

.homeswiper-02 .swiper-button-prev,
.homeswiper-02.swiper-container-rtl .swiper-button-next {
    left: 45%;
    right: auto;
    top: calc(100% - 42px);
    border-radius: var(--border-radius-03);
    padding: 1.5rem;
	text-align: center;
	background-color: var(--theme-color-01);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.homeswiper-02 .swiper-button-prev::after {
    content: "\f104";
	font-family: var(--font-awesome);
    color: var(--white-color);
	font-size: 2rem;
    font-weight: 300;
    position: absolute;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.homeswiper-02 .swiper-button-prev:hover {
    background-color: var(--theme-color-02);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.homeswiper-02 .swiper-button-next,
.homeswiper-02.swiper-container-rtl .swiper-button-prev {
    right: 45%;
    left: auto;
    top: calc(100% - 42px);
    border-radius: var(--border-radius-03);
    padding: 1.5rem;
	text-align: center;
	background-color: var(--theme-color-01);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.homeswiper-02 .swiper-button-next::after {
    content: "\f105";
	font-family: var(--font-awesome);
    color: var(--white-color);
	font-size: 2rem;
    font-weight: 300;
    position: absolute;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.homeswiper-02 .swiper-button-next:hover {
    background-color: var(--theme-color-02);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
	.homeswiper-02 .swiper-button-prev,
	.homeswiper-02.swiper-container-rtl .swiper-button-next {
		left: 40%;
	}
	
	.homeswiper-02 .swiper-button-next,
	.homeswiper-02.swiper-container-rtl .swiper-button-prev {
		right: 40%;
	}
}

@media (max-width: 576px) {
	.homeswiper-02 .swiper-button-prev,
	.homeswiper-02.swiper-container-rtl .swiper-button-next {
		left: 33%;
	}
	
	.homeswiper-02 .swiper-button-next,
	.homeswiper-02.swiper-container-rtl .swiper-button-prev {
		right: 33%;
	}
}

.text-box-02 {
	position: relative;
	padding: 1rem 1rem 2rem 1rem;
	background-color: var(--white-color);
	text-align: center;
	overflow: hidden;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-02::after {
	content: "";
    position: absolute;
    width: 0;
    height: 0;
    right: 0;
    top: 0;
    opacity: 0;
    border-top: .25rem solid var(--theme-color-02);
    border-right: .25rem solid var(--theme-color-02);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-02::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    border-bottom: .25rem solid var(--theme-color-02);
    border-left: .25rem solid var(--theme-color-02);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-02:hover::after { 
	width: 50%;
    height: 50%;
    opacity: 1;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-02:hover::before { 
	width: 50%;
    height: 50%;
    opacity: 1;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-02 .text-box-slide-02 {
	z-index: 1;
	position: relative;
    display: block;
}

.text-box-02 h4,
.text-box-02 h4 a,
.text-box-02 h4 a:focus {
	color: var(--theme-color-01);
	font-size: 1.25rem;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-02 h4 a:hover {
	color: var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-02 .img-over-02 {
    padding: 0;
    padding-top: 90%;
    margin: 0;
	margin-bottom: 1rem;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-box-03 {
    margin-bottom: 1.5rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-03:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
}

.text-box-03 .img-over-03 {
    padding: 0;
    padding-top: 70%;
    margin-bottom: 0;
    border-radius: 0 !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-box-03-info {
    background: var(--theme-color-01);
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: -50px;
    position: relative;
    padding: 1rem;
}

.text-box-03 h5 a,
.text-box-03 h5 a:focus {
    font-size: 1.25rem;
    margin-bottom: 1rem;
	color: var(--white-color);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-03 h5 a:hover {
    color: var(--theme-color-02);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-03 p {
    margin-bottom: 1.5rem;
	font-size: .875rem;
	color: var(--white-color-85);
}

.offer-cus {
	overflow: hidden;
}

.offer-cus .img-over-04 {
    padding: 0;
    padding-top: 76%;
    margin-bottom: 0;
    border-radius: 0 !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.swipe-img-02 {
    height: 3rem;
    cursor: default;
    filter: grayscale(100%);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.swipe-img-02:hover {
    filter: grayscale(0%);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.card-01 {
	background-color: var(--theme-color-01);
	color: var(--white-color);
	padding: 2rem 1rem;
	text-align: center;
}

.card-01 i {
	font-size: 1.5rem;
	margin-bottom: .5rem;
}

.card-01 .card-01-title {
	font-size: 1.125rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: .5rem;
}

.card-01 a,
.card-01 a:focus {
	color: var(--white-color-85);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.card-01 a:hover {
	color: var(--white-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ifram-map {
    border: none;
    width: 100%;
    height: auto;
    min-height: 35.75rem;
    margin: 0;
    padding: 0;
}

.ifram-map-02 {
    border: none;
    width: 100%;
    height: auto;
    min-height: 21.5rem;
    margin: 0;
    padding: 0;
}

.section-full-01 {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 20% 50%;
	position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.section-full-01::before {
	content: "";
	background-color: var(--theme-color-01-75);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	z-index: -1;
}

.section-full-cont {
	padding: 4rem 0;
	color: var(--white-color);
}

.section-full-cont h5 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.section-full-cont h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.section-full-cont h6 {
	text-transform: uppercase;
	display: inline-block;
}

.section-full-cont p {
	margin-bottom: 2rem;
}

.section-full-cont p.tit-cou {
	display: inline-block;
	font-size: .875rem;
}

.section-full-cont .counter-number {
	display: inline-block;
	font-size: 3rem;
    font-weight: 600;
	width: 7rem;
}

.section-full-cont i {
	display: inline-block;
	font-size: 2rem;
}

.widget {
	padding: 1rem;
    border: 1px solid var(--theme-color-01);
    border-radius: 0;
    background-color: var(--gray-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.widget .widget-title {
    position: relative;
    left: -1rem;
    top: -1rem;
    width: calc(100% + 2rem);
    display: inline-block;
    font-family: var(--font-rajdhani);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--theme-color-01);
    color: var(--white-color);
    padding: .75rem;
    border: none;
    border-radius: 0;
}

.widget p {
    font-size: .875rem;
}

.widget-02 {
	padding: 1rem;
    border: 1px solid var(--theme-color-02-50);
    border-radius: 0;
    background-color: var(--white-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.widget-02 .carousel-item img {
	width: 100%;
	max-width: inherit;
}

@media (max-width: 576px) {
	.widget-02 {
		padding: .25rem;
	}
}

.widget-03 {
	padding: .5rem;
    border: 1px solid var(--theme-color-02-50);
    border-radius: 0;
    background-color: var(--white-color);
    position: relative;
    z-index: 1;
}

.widget-03 .widget-title {
    position: relative;
    left: -0.5rem;
    top: -0.5rem;
    width: calc(100% + 1rem);
    display: inline-block;
    font-family: var(--font-rajdhani);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--theme-color-01);
    color: var(--white-color);
    padding: .5rem .75rem;
    border: none;
    border-radius: 0;
}

.homeswiper-03 {
	padding-bottom: 3.5rem;
	padding-top: 1rem;
}

.homeswiper-03.swiper-container-horizontal>.swiper-pagination-bullets,
.homeswiper-03.swiper-pagination-custom,
.homeswiper-03.swiper-pagination-fraction {
    bottom: 0;
}

.homeswiper-03 .swiper-pagination-bullet {
    width: 1rem;
    height: .25rem;
    background: var(--theme-color-01);
    opacity: 1;
	border-radius: var(--border-radius-03);
}

.homeswiper-03 .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--theme-color-02);
}

.testim {
	text-align: center;
	position: relative;
}

.testim img {
    background: var(--white-color);
    width: 8rem;
    height: 8rem;
    position: relative;
    display: inline-block;
    border: 2px solid var(--white-color);
    margin: 0 0 1rem 0;
	border-radius: 100%;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.testim h6 {
    margin-bottom: .5rem;
	text-transform: uppercase;
	font-weight: 600;
}

.testim h6 span {
    color: var(--theme-color-02);
}

.text-box-05 {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--theme-color-01);
	text-align: center;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-05 .text-box-slide {
	position: relative;
    transform: translateY(0);
	background-color: var(--gray-color);
	padding: 3rem 3rem 3rem 3rem;
	border-bottom: 1px solid var(--transparent-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	z-index: 2;
}

.text-box-05 h3 {
	color: var(--theme-color-01);
	text-transform: uppercase;
	font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-05 p {
	display: inline-block;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-05 a,
.text-box-05 a:focus
.text-box-05 a:hover {
	color: var(--theme-color-01);
	text-transform: uppercase;
	font-size: 1.125rem;
    margin-top: 2rem;
	display: inline-block;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-05 .text-box-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	z-index: 0;
}

.text-box-05:hover {
	border: 1px solid var(--theme-color-02);
	padding-bottom: 1.5rem;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-05:hover .text-box-slide {
    transform: translateY(-80%);
	padding: 4rem 3rem .5rem 3rem;
	border-bottom: 1px solid var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-05:hover p {
	color: var(--white-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-05:hover a {
	color: var(--theme-color-02);
	font-weight: 600;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-06 {
	background-color: var(--theme-color-01-25);
	position: relative;
	overflow: hidden;
	border: 1px solid var(--theme-color-01);
	z-index: 1;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-06 .text-box-slide-03 {
	background-color: var(--theme-color-01-50);
	padding: 6rem 2rem 3rem 2rem;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-06 a h3 {
	color: var(--white-color);
	text-transform: uppercase;
	font-size: 1.25rem;
    margin: 2rem 0 .5rem 0;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-06 p {
	display: inline-block;
	color: var(--gray-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-06 .text-box-image-03 {
	-webkit-transform: scale(1);
	transform: scale(1);
    background-size: cover;
    background-position: 50% 50%;
	background-repeat: no-repeat;
	background-attachment: scroll;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-06:hover {
	border: 1px solid var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-06:hover .text-box-slide-03 {
	background-color: var(--theme-color-01-75);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-06:hover h3 {
	color: var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-06:hover p {
	color: var(--white-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-box-06:hover .text-box-image-03 {
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.profile-cus {
	position: relative;
}

.profile-cus h4 {
	text-transform: uppercase;
}

.profile-cus span {
	font-weight: 700;
}

.profile-cus a,
.profile-cus a:focus {
	color: var(--theme-color-01);
}

.profile-cus a:hover {
	color: var(--theme-color-02);
}

.profile-cus i {
	font-size: 1.5rem;
}

.doctord-filter .fillter-grid-item {
	position: relative;
	width: 100% !important;
	height: 100%;
	margin: auto;
}

.doctord-filter .filters {
	width: 100%;
	text-align: center;
}

.doctord-filter .filters li {
	padding: .25rem 0;
    display: block;
    vertical-align: middle;
	width: 100%;
}

.doctord-filter .filters li a,
.doctord-filter .filters li a:focus,
.doctord-filter .filters li a:hover {
	color: var(--theme-color-01);
	font-weight: 500;
	padding: .5rem 1rem;
	width: 100%;
	display: block;
	background-color: var(--theme-color-02-25);
}

.doctord-filter .filters li.active a {
	color: var(--white-color);
	background-color: var(--theme-color-01);
}

.doctord-filter .isotope-pager {
	text-align: center;
    margin: 1.5rem auto 0 auto;
	padding: .5rem 0;
    width: 50%;
    background-color: var(--white-color);
	border-radius: 0;
}

.doctord-filter .isotope-pager a,
.doctord-filter .isotope-pager a:focus,
.doctord-filter .isotope-pager a:hover{
	margin: 0 .75rem;
	display: inline-block;
	color: var(--black-color);
	padding: .25rem .75rem;
	border-radius: .25rem;
	min-width: 2rem;
}

.doctord-filter .isotope-pager a.active {
	color: var(--white-color);
	background-color: var(--theme-color-01);
}

@media (max-width: 576px) {
	.doctord-filter .isotope-pager {
		width: 100%;
	}
}

.accordion-item {
    border: none;
    margin-bottom: .5rem;
    border-radius: 0;
}

.accordion-flush .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    position: relative;
    display: inline-block;
    align-items: center;
    width: 100%;
    padding: 1rem 3rem 1rem 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--theme-color-01);
    background-color: var(--theme-color-02-25);
    border-radius: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.accordion-button i {
    font-size: 1.125rem;
}

.accordion-body {
    padding: 1rem;
	border: 1px solid var(--theme-color-02-50);
}

.accordion-button:not(.collapsed) {
    color: var(--white-color);
    background-color: var(--theme-color-01);
    border-radius: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.accordion-button::after {
    content: "\f078";
    font-family: var(--font-awesome);
    background-image: none;
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: var(--theme-color-01);
    transition: transform .3s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    content: "\f078";
    font-family: var(--font-awesome);
    background-image: none;
    color: var(--white-color);
    position: absolute;
    right: 1.3125rem;
    top: 1rem;
    transition: transform .3s ease-in-out;
}

.accordion-button.accordion-button-trip {
    cursor: default;
    color: var(--white-color);
    padding: 0.635rem 1.25rem;
}

.accordion-button.accordion-button-trip::after {
    display: none;
}


/****** Validate & Sweet Alert ******/

.form-outline {
    position: relative;
}

.form-outline .form-label {
	color: var(--black-color);
    font-family: var(--font-rajdhani);
	margin-bottom: 0;
    font-weight: 800;
    text-transform: uppercase;
}

.form-outline .form-control {
	padding: .25rem .5rem;
    color: var(--black-color);
    background-color: var(--transparent-color);
	border: none;
    border-bottom: 1px solid var(--black-color-25);
    border-radius: 0;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-outline .form-control:focus {
    border-bottom: 1px solid var(--black-color-75);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-outline textarea.form-control {
    resize: none;
    height: 6rem;
}

.form-outline .btn-light,
.form-outline .btn-light:focus {
    color: var(--light-color-03);
    background-color: var(--transparent-color);
    border: none;
	outline: 0 !important;
    box-shadow: none !important;
}

.form-outline .btn.btn-light,
.form-outline .btn.btn-light:focus,
.form-outline .btn.btn-light:hover {
    display: inline-block;
    line-height: 1.5;
    color: var(--black-color);
    background-color: var(--transparent-color);
    border: none;
    padding: 0 .75rem 0 0;
    border-radius: var(--border-radius);
	outline: 0 !important;
    box-shadow: none !important;
}

.form-outline .btn.btn-light.bs-placeholder {
	color: var(--gray-color-03) !important;
	font-weight: 600 !important;
}

.form-outline .dropdown-menu {
    padding: 0;
    margin: 0;
	margin-left: -.5rem !important;
    font-size: 1rem;
    color: var(--black-color);
    text-align: left;
    list-style: none;
    background-color: var(--white-color);
    background-clip: padding-box;
    border: 1px solid var(--light-color);
    border-radius: var(--border-radius-03);
}

.form-outline .bootstrap-select .dropdown-toggle .filter-option {
    left: 0;
    right: auto;
    float: left;
    text-align: left;
}

.form-outline .dropdown-item {
    padding: 0.25rem 1.5rem;
	font-weight: 600;
}

.form-outline .dropdown-item:focus, .form-outline .dropdown-item:hover {
    color: var(--black-color);
    background-color: var(--light-color);
	padding: .25rem 1.5rem;
}

.form-outline .dropdown-item.active, .form-outline .dropdown-item:active {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--theme-color-02);
}

.form-outline .form-control::placeholder {
	color: var(--gray-color-03) !important;
	font-weight: 400 !important;
	opacity: 1 !important;
}

.form-outline .form-control:-ms-input-placeholder {
	color: var(--gray-color-03) !important;
	font-weight: 400 !important;
	opacity: 1 !important;
}

.form-outline .form-control::-ms-input-placeholder {
	color: var(--gray-color-03) !important;
	font-weight: 400 !important;
	opacity: 1 !important;
}

.form-outline .invalid-feedback, .error {
    width: auto;
    position: absolute;
    bottom: -.05rem;
    right: .25rem;
    z-index: 2;
    color: var(--red-color);
    font-size: .75rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-outline.is-invalid .form-control {
    border-bottom: 1px solid var(--red-color) !important;
}

.sweet-alert {
    padding: 1rem;
    border-radius: 0;
}

.sweet-alert h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: var(--theme-color-01);
}

.sweet-alert .text-muted {
    color: var(--black-color) !important;
}

.sweet-alert .sa-confirm-button-container {
    position: relative;
    display: grid !important;
}

.sweet-alert .sa-icon.sa-success .sa-line {
    background-color: var(--green-color);
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
    border: 4px solid var(--green-color) !important;
}

.sweet-alert .btn-primary,
.sweet-alert .btn-primary:focus {
    font-family: var(--font-arimo);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: .5rem 2.5rem;
    border-radius: 0;
    color: var(--white-color);
    background-color: var(--theme-color-01);
    border: 1px solid var(--theme-color-01);
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.sweet-alert .btn-primary:hover {
    color: var(--white-color);
	background-color: var(--theme-color-02);
	border: 1px solid var(--theme-color-02);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.sweet-overlay {
    background-color: var(--theme-color-01);
    opacity: .8 !important;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    margin: .25rem 0 0 1rem;
    padding: .5rem !important;
}

.bootstrap-datetimepicker-widget.dropdown-menu::after,
.bootstrap-datetimepicker-widget.dropdown-menu::before {
    display: none;
}

.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:focus,
.bootstrap-datetimepicker-widget table td.disabled:hover {
    text-decoration: line-through !important;
    color: var(--black-color-50) !important;
    background-color: var(--transparent-color) !important;
    text-shadow: none !important;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover,
.bootstrap-datetimepicker-widget table td span.active {
    background-color: var(--theme-color-01) !important;
    color: var(--white-color) !important;
    text-shadow: none !important;
}

.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover,
.bootstrap-datetimepicker-widget table td span.month:hover,
.bootstrap-datetimepicker-widget table td span.year:hover {
    background-color: var(--black-color-25);
}

.bootstrap-datetimepicker-widget table th.next,
.bootstrap-datetimepicker-widget table th.prev {
    position: relative;
    background-color: var(--transparent-color);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--theme-color-01) !important;
}


/****** Jssocials Shares ******/

.share-sec {
	display: inline-block;
    font-size: 1.5rem;
    position: relative;
    top: 1.125rem;
    margin-right: 1.25rem;
	color: var(--theme-color-02);
}

#shareRoundIcons {
	display: inline-block;
}

.jssocials-shares {
    margin: 0;
	display: inline-block;
}

.jssocials-share {
    display: inline-block;
    vertical-align: top;
    margin: 0 1rem 0 0;
}

.jssocials-share:last-child {
    margin: 0;
}

.jssocials-share-link {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    line-height: 1;
}

.jssocials-share-logo, .jssocials-share-logo:focus {
    width: 3rem;
    height: 3rem;
    vertical-align: middle;
    font-size: 1rem;
    color: var(--white-color);
    background-color: var(--theme-color-01);
    line-height: 3rem;
    border-radius: var(--border-radius-03);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.jssocials-share-logo:hover {
    color: var(--white-color);
	background-color: var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 576px) {
	.share-sec {
		font-size: 1.25rem;
		top: .875rem;
		margin-right: 1rem;
	}
	
	.jssocials-share {
		margin: 0 .5rem 0 0;
	}
	
	.jssocials-share-logo, .jssocials-share-logo:focus {
		width: 3rem;
		height: 3rem;
		font-size: 1rem;
		line-height: 3rem;
	}
}


/****** DateTable ******/

.bg-table {
	background-color: #f7f7f7;
}

.cus-datatable .table-striped tfoot, .cus-datatable .table-striped thead {
    background-color: var(--theme-color-01);
    color: var(--white-color);
}

.cus-datatable .table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #e7e7e7;
}

.cus-datatable .table-striped>tbody>tr:nth-of-type(even) {
    background-color: #fbfbfb;
}

.cus-datatable .page-link {
    color: var(--theme-color-01);
}

.cus-datatable .page-item.active .page-link {
    background-color: var(--theme-color-01) !important;
	color: var(--white-color);
}

hr.hr-cus {
    background-color: var(--gray-color-02);
    opacity: 1;
    margin: 2rem 0;
}

.cus-datatable h4 {
	text-align: center;
	background-color: var(--gray-color-05);
	color: var(--white-color);
	margin-bottom: 1.5rem;
	padding: .5rem 0;
}

.cus-datatable h5 {
	text-align: center;
	color: var(--theme-color-02);
	margin-bottom: 1rem;
}


/****** Tabs ******/

.cus-datatable {
	overflow: auto;
}

.table-code-01 {
    width: 100%;
    overflow: auto;
}

.nav-pills .nav-link {
    background: 0 0;
    border: 0;
	border-bottom: 3px solid var(--transparent-color);
    border-radius: 0;
    background-color: var(--white-color);
	color: var(--theme-color-02);
	text-align: center;
	width: 100%;
	font-weight: 700;
	font-family: var(--font-rajdhani);
	font-size: 1.25rem;
	padding: .5rem 1.5rem;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--theme-color-01);
    background-color: var(--gray-color);
	border-bottom: 3px solid var(--theme-color-01);
}

.nav-pills .nav-item {
	padding: 0;
}

@media (max-width: 576px) {
	.nav-pills .nav-item {
		padding: .25rem 0;
		width: 100%;
	}	
}


/****** Unifilter ******/

.unifilter {
    position: relative;
    font-family: var(--font-rajdhani);
}

.uf-filter .uf-title,
.uf-range .uf-title,
.uf-search .uf-title,
.uf-sort .uf-title {
    color: var(--theme-color-01) !important;
	margin-bottom: .25rem !important;
    text-transform: uppercase;
}

.uf-search-wrap,
.uf-filter-wrap,
.uf-sort-wrap,
.uf-range-wrap {
    margin-bottom: .25rem !important;
}

.uf-filter,
.uf-search,
.uf-sort,
.uf-range {
    padding-bottom: 1rem !important;
    font-size: 1rem !important;
    line-height: 1rem !important;
    font-weight: normal !important;
}

.uf-filter .uf-tags a,
.uf-filter .uf-tags a:focus {
    border: 1px solid var(--gray-color-03) !important;
    color: var(--gray-color-03) !important;
    font-size: 1rem !important;
    letter-spacing: 0 !important;
    border-radius: 0 !important;
	font-weight: 500 !important;
	line-height: 1.5rem;
	background-color: var(--white-color);
}

.uf-filter .uf-tags a:hover {
    border: 1px solid var(--theme-color-01) !important;
    color: var(--theme-color-01) !important;
    font-size: 1rem !important;
    letter-spacing: 0 !important;
    border-radius: 0 !important;
}

.uf-filter .uf-tags .uf-selected a {
    background-color: var(--theme-color-01) !important;
    color: var(--white-color) !important;
    border: 1px solid var(--theme-color-01) !important;
}

.uf-filter .uf-tags .uf-tooltip {
    padding: 0.25rem 0.25rem !important;
	top: -30px !important;
}

.uf-filter .uf-tags .uf-tooltip:before {
    top: 24px !important;
}

.uf-sort .uf-sort-box {
    width: 100% !important;
}

.uf-sort-box .uf-select span {
    width: calc(100% - 30px) !important;
    max-width: 100% !important;
    padding: .5rem 1rem .5rem .5rem !important;
    font-size: 1rem !important;
	font-weight: 500 !important;
	height: 40px !important;
	line-height: 1.5rem;
    color: var(--gray-color-03) !important;
    margin-bottom: 0 !important;
    background-color: var(--white-color) !important;
    border: 1px solid var(--gray-color-03) !important;
    border-radius: 0 !important;
}

.uf-search-box {
    position: relative;
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden;
}

.uf-search input {
	font-family: var(--font-barlow) !important;
    margin: 0;
    padding: .5rem 2rem .5rem .5rem !important;
    height: 40px !important;
    width: 100% !important;
    outline: none;
	font-weight: 500 !important;
    color: var(--gray-color-03) !important;
    background-color: var(--white-color) !important;
    box-sizing: border-box;
    border: 1px solid var(--gray-color-03) !important;
    border-radius: 0 !important;
}

.uf-search-box .uf-reset {
    opacity: .75 !important;
	top: 11px !important;
}

.uf-sort-box .uf-options {
    width: 100% !important;
    max-width: calc(100% - 30px) !important;
    padding: 0 !important;
    top: 36px !important;
    color: var(--theme-color-02) !important;
    background-color: var(--theme-color-01) !important;
    border: 1px solid var(--white-color-15) !important;
    border-radius: 0 !important;
}

.uf-sort-box .uf-select span:after {
    left: auto !important;
    right: 1rem !important;
    top: 0 !important;
    margin-top: 16px !important;
    border-top-color: var(--gray-color-03) !important;
}

.uf-sort-box .uf-options li a,
.uf-sort-box .uf-options li a:focus {
    color: var(--gray-color-03) !important;
	background-color: var(--white-color) !important;
    font-size: 1rem !important;
	font-weight: 500 !important;
    padding: .5rem 1rem !important;
}

.uf-sort-box .uf-options li a:hover {
    color: var(--white-color) !important;
    background-color: var(--theme-color-01) !important;
}

.uf-sort-box .uf-options li:last-child a {
    border-top: 1px solid var(--gray-color-03) !important;
}

.uf-filter-wrap {
    flex: 0 0 auto;
    width: 100% !important;
}

.uf-sort-wrap {
    flex: 0 0 auto;
    width: 100% !important;
}

.uf-range-wrap {
    flex: 0 0 auto;
    width: 100% !important;
}

.uf-list #uf-empty {
    color: var(--gray-color-03) !important;
    font-weight: 500 !important;
}

.uf-list #uf-separator {
    border-top: 1px solid var(--gray-color-02) !important;
    color: var(--gray-color-03) !important;
}

@media (max-width: 992px) {
    .uf-filter-wrap {
        width: 100% !important;
    }

    .uf-sort-wrap {
        width: 50% !important;
    }

    .uf-range-wrap {
        width: 50% !important;
    }
}

@media (max-width: 576px) {
    .uf-filter-wrap {
        width: 100% !important;
    }

    .uf-sort-wrap {
        width: 100% !important;
    }

    .uf-range-wrap {
        width: 100% !important;
    }

    .uf-slider {
        max-width: 320px !important;
    }

    .uf-sort-box .uf-select span {
        max-width: 275px !important;
    }

    .uf-sort-box .uf-select span:after {
        left: 245px !important;
        margin-top: 20px !important;
        border-top-color: var(--white-color-50) !important;
    }
}

.namex {
	visibility: hidden;
	height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

