/*  @font-face {
 font-family: 'robotoblack';
 src: url('../fonts/roboto-black-webfont.woff2') format('woff2'), url('../fonts/roboto-black-webfont.woff') format('woff');
 font-weight: normal;
 font-style: normal;
}
 @font-face {
 font-family: 'robotobold';
 src: url('../fonts/roboto-bold-webfont.woff2') format('woff2'), url('../fonts/roboto-bold-webfont.woff') format('woff');
 font-weight: normal;
 font-style: normal;
}
 @font-face {
 font-family: 'robotolight';
 src: url('../fonts/roboto-light-webfont.woff2') format('woff2'), url('../fonts/roboto-light-webfont.woff') format('woff');
 font-weight: normal;
 font-style: normal;
}
 @font-face {
 font-family: 'robotomedium';
 src: url('../fonts/roboto-medium-webfont.woff2') format('woff2'), url('../fonts/roboto-medium-webfont.woff') format('woff');
 font-weight: normal;
 font-style: normal;
}
 @font-face {
 font-family: 'robotomedium_italic';
 src: url('../fonts/roboto-mediumitalic-webfont.woff2') format('woff2'), url('../fonts/roboto-mediumitalic-webfont.woff') format('woff');
 font-weight: normal;
 font-style: normal;
}
 @font-face {
 font-family: 'robotoregular';
 src: url('../fonts/roboto-regular-webfont.woff2') format('woff2'), url('../fonts/roboto-regular-webfont.woff') format('woff');
 font-weight: normal;
 font-style: normal;
}
 @font-face {
 font-family: 'robotothin';
 src: url('../fonts/roboto-thin-webfont.woff2') format('woff2'), url('../fonts/roboto-thin-webfont.woff') format('woff');
 font-weight: normal;
 font-style: normal;
} */
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
	font-family: 'Poppins', sans-serif;
	/* background: #0c0b09; */
	color: #fff;
}
a {
	color: #028482;
}
a:hover {
	color: #d9ba85;
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #1a1814;
}
#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #1a1814;
	border-top-color: #028482;
	border-bottom-color: #028482;
	border-radius: 50%;
    background-image: url(../img/loader-img.png);
    background-repeat: no-repeat;
    background-position: top center;
	width: 65px;
	height: 65px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}
 @-webkit-keyframes animate-preloader {
 0% {
 transform: rotate(0deg);
}
 100% {
 transform: rotate(360deg);
}
}
 @keyframes animate-preloader {
 0% {
 transform: rotate(0deg);
}
 100% {
 transform: rotate(360deg);
}
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 995;
}
.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50px;
	color: #028482;
	transition: all 0.4s;
	border: 2px solid #028482;
}
.back-to-top i:hover {
	background: #028482;
	color: #1a1814;
}
/*Custom Css Start Here*/
.accordian {
	width:100%; 
	height: 100%;
	overflow: hidden;
	/*Time for some styling*/
	margin: 30px auto;
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
	-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
}

/*A small hack to prevent flickering on some browsers*/
.accordian ul {
    width: 1200px;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.accordian li {
	position: relative;
	display: block;
	width:220px;
	float: left;
	border-left: 1px solid #888;
	box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	/*Transitions to give animation effect*/
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	/*If you hover on the images now you should be able to 
	see the basic accordian*/
}

/*Reduce with of un-hovered elements*/
.accordian ul:hover li {width: 40px;}
/*Lets apply hover effects now*/
/*The LI hover style should override the UL hover style*/
.accordian ul li:hover 
{
	width: 350px;}

.accordian li img {
	display: block;
}
.know-more-btn
{
	background-color:red;
}

/*Image title styles*/
.image_title {
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	left: 0; bottom: 0;	
    width:1200px;
    top:0;	

}
.image_title .p-title {
	display: block;
	color: #fff;
	text-decoration: none;
	font-size:25px;
	text-decoration:none;
	margin-bottom:10px;
	font-weight: 700;
}
.know-more-btn
{
	padding:10px 20px;
	background-color:#028482;
	color:#fff;
	display:inline-block;
	margin-top:20px;
}
.know-more-btn:hover
{
	color:#fff;
}

.product-cat
{
	padding:20px;
	padding-top:0;
	margin-top:50px;
}
.product-cat span
{
	display:block;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
 [data-aos-delay] {
 transition-delay: 0 !important;
}
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	height: 40px;
	font-size: 14px;
	transition: all 0.5s;
}
#topbar.topbar-scrolled {
	top: -40px;
}
#topbar .contact-info {
	color: white;
}
#topbar .contact-info i {
	color: #d9ba85;
	padding-right: 4px;
}
#topbar .contact-info i + i {
	margin-left: 15px;
}
#topbar .languages ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	color: #028482;
}
#topbar .languages ul a {
	color: white;
}
#topbar .languages ul li + li {
	padding-left: 10px;
}
 #topbar .languages ul li + li::before {
 display: inline-block;
 padding-right: 10px;
 color: rgba(255, 255, 255, 0.5);
 content: "/";
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	/*  background: rgba(12, 11, 9, 0.6);
  border-bottom: 1px solid rgba(12, 11, 9, 0.6);*/
  transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
	top: 40px;
}
#header.header-scrolled {
	top: 0;
	background: rgba(0, 0, 0, 0.85);
	border-bottom: 1px solid #37332a;
}
#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: 'robotoregular';
}
#header .logo a {
	color: #fff;
}
#header .logo img {
	max-height: 40px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-menu > ul {
	display: flex;
	align-items: center;
}
.nav-menu > ul > li {
	position: relative;
	white-space: nowrap;
	padding-left: 28px;
}
.nav-menu a {
	display: block;
	position: relative;
	color: white;
	transition: 0.3s;
	font-size: 14px;
	padding:6px;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
	color: #FFF;
	background: #028482;
}
.nav-menu .book-a-table a {
	border: 2px solid #028482;
	color: #fff;
	border-radius: 50px;
	padding: 8px 25px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: 0.3s;
}
.nav-menu .book-a-table a:hover {
	background: #028482;
	color: #fff;
}
.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 15px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}
.nav-menu .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}
.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #1a1814;
}
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
	color: #FFF;
}
.nav-menu .drop-down > a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}
.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}
.nav-menu .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
}
.nav-menu .drop-down .drop-down > a {
	padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}
 @media (max-width: 1366px) {
 .nav-menu .drop-down .drop-down ul {
 left: -90%;
}
 .nav-menu .drop-down .drop-down:hover > ul {
 left: -100%;
}
 .nav-menu .drop-down .drop-down > a:after {
 content: "\ea9d";
}
}
/* Mobile Navigation */
.mobile-nav-toggle {
	position: absolute;
	right: 15px;
	top: 15px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}
.mobile-nav-toggle i {
	color: #fff;
}
.mobile-nav {
	position: fixed;
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #1a1814;
	border: 2px solid rgba(255, 255, 255, 0.1);
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
}
.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-nav .mobile-nav-close {
	margin: 0 15px 0 auto;
	display: block;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
	color: rgba(255, 255, 255, 0.5);
}
.mobile-nav .mobile-nav-close:hover {
	color: #fff;
}
.mobile-nav a {
	display: block;
	position: relative;
	color: #fff;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
	transition: 0.3s;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #028482;
	text-decoration: none;
}
.mobile-nav .drop-down > a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}
.mobile-nav .active.drop-down > a:after {
	content: "\eaa1";
}
.mobile-nav .book-a-table a {
	color: #fff;
	border: 2px solid #028482;
	border-radius: 50px;
	margin: 20px 0 0 0;
	padding: 10px 25px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: 0.3s;
	display: inline-block;
}
.mobile-nav .book-a-table a:hover {
	background: #028482;
	color: #fff;
}
.mobile-nav .drop-down > a {
	padding-right: 35px;
}
.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}
.mobile-nav .drop-down li {
	padding-left: 20px;
}
.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(0, 0, 0, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}
.mobile-nav-active {
	overflow: hidden;
}
.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: 100vh;
	background: url("../img/hero-bg3.jpg") top center;
	background-size: cover;
	position: relative;
	padding: 0;
}
#hero:before {
	content: "";
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}
#hero .container {
	padding-top: 110px;
}
 @media (max-width: 992px) {
 #hero .container {
 padding-top: 98px;
}
}
#hero h1 {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	color: #fff;
	font-family: 'poppins';
}
#hero h1 span {
	color: #FFF;
}
#hero h2 {
    color: #FFF;
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: normal !important;
    margin: 20px auto;
    line-height: 29px;
    font-family: 'poppins';
    max-width: 800px;
}
#hero .btns {
	margin-top: 30px;
}
#hero .btn-menu, #hero .btn-book {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	transition: 0.3s;
	line-height: 1;
	color: white;
	border: 2px solid #028482;
}
#hero .btn-menu:hover, #hero .btn-book:hover {
	background: #028482;
	color: #fff;
}
#hero .btn-book {
	margin-left: 15px;
}
#hero .play-btn {
	width: 94px;
	height: 94px;
	background: radial-gradient(#028482 50%, rgba(205, 164, 94, 0.4) 52%);
	border-radius: 50%;
	display: block;
	position: relative;
	overflow: hidden;
}
 #hero .play-btn::after {
 content: '';
 position: absolute;
 left: 50%;
 top: 50%;
 transform: translateX(-40%) translateY(-50%);
 width: 0;
 height: 0;
 border-top: 10px solid transparent;
 border-bottom: 10px solid transparent;
 border-left: 15px solid #fff;
 z-index: 100;
 transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 #hero .play-btn::before {
 content: '';
 position: absolute;
 width: 120px;
 height: 120px;
 -webkit-animation-delay: 0s;
 animation-delay: 0s;
 -webkit-animation: pulsate-btn 2s;
 animation: pulsate-btn 2s;
 -webkit-animation-direction: forwards;
 animation-direction: forwards;
 -webkit-animation-iteration-count: infinite;
 animation-iteration-count: infinite;
 -webkit-animation-timing-function: steps;
 animation-timing-function: steps;
 opacity: 1;
 border-radius: 50%;
 border: 5px solid rgba(205, 164, 94, 0.7);
 top: -15%;
 left: -15%;
 background: rgba(198, 16, 0, 0);
}
 #hero .play-btn:hover::after {
 border-left: 15px solid #028482;
 transform: scale(20);
}
 #hero .play-btn:hover::before {
 content: '';
 position: absolute;
 left: 50%;
 top: 50%;
 transform: translateX(-40%) translateY(-50%);
 width: 0;
 height: 0;
 border: none;
 border-top: 10px solid transparent;
 border-bottom: 10px solid transparent;
 border-left: 15px solid #fff;
 z-index: 200;
 -webkit-animation: none;
 animation: none;
 border-radius: 0;
}
 @media (min-width: 1024px) {
 #hero {
 background-attachment: fixed;
}
}
 @media (max-width: 992px) {
 #hero .play-btn {
 margin-top: 30px;
}
}
 @media (max-height: 500px) {
 #hero {
 height: auto;
}
 #hero .container {
 padding-top: 130px;
 padding-bottom: 60px;
}
}
 @media (max-width: 768px) {
 #hero h1 {
 font-size: 28px;
 line-height: 36px;
}
 #hero h2 {
 font-size: 18px;
 line-height: 24px;
}
}
 @-webkit-keyframes pulsate-btn {
 0% {
 transform: scale(0.6, 0.6);
 opacity: 1;
}
 100% {
 transform: scale(1, 1);
 opacity: 0;
}
}
 @keyframes pulsate-btn {
 0% {
 transform: scale(0.6, 0.6);
 opacity: 1;
}
 100% {
 transform: scale(1, 1);
 opacity: 0;
}
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}
.section-bg {
	background-color: #1a1814;
}
.section-title {
	padding-bottom: 30px;
}
.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #aaaaaa;
	font-family: 'robotoregular';
}
 .section-title h2::after {
/* content: "";
 width: 120px;
 height: 1px;
 display: inline-block;
 background: rgba(255, 255, 255, 0.2);
 margin: 4px 10px;*/
}
.section-title p {
	margin: 0;
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	font-family: 'poppins';
	color: #028482;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 15px 0;
	background: #1d1b16;
	margin-top: 103px;
}
 @media (max-width: 992px) {
 .breadcrumbs {
 margin-top: 98px;
}
}
.breadcrumbs h2 {
	font-size: 26px;
	font-weight: 300;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}
.breadcrumbs ol li + li {
	padding-left: 10px;
}
 .breadcrumbs ol li + li::before {
 display: inline-block;
 padding-right: 10px;
 color: #37332a;
 content: "/";
}
 @media (max-width: 768px) {
 .breadcrumbs .d-flex {
 display: block !important;
}
 .breadcrumbs ol {
 display: block;
}
 .breadcrumbs ol li {
 display: inline-block;
}
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
	background:#FFF;
	position: relative;
	padding: 80px 0;
}
.about .about-img {
	position: relative;
 transition: .5s;
}
.about .about-img img {
	max-width: 100%;
	border: 4px solid rgba(255, 255, 255, 0.2);
	position: relative;
	width: 100%;
}
 .about .about-img::before {
 position: absolute;
 left: 20px;
 top: 20px;
 width: 60px;
 height: 60px;
 z-index: 1;
 content: '';
 border-left: 5px solid #028482;
 border-top: 5px solid #028482;
 transition: .5s;
}
 .about .about-img::after {
 position: absolute;
 right: 20px;
 bottom: 20px;
 width: 60px;
 height: 60px;
 z-index: 2;
 content: '';
 border-right: 5px solid #028482;
 border-bottom: 5px solid #028482;
 transition: .5s;
}
.about .about-img:hover {
	transform: scale(1.03);
}
 .about .about-img:hover::before {
 left: 10px;
 top: 10px;
}
 .about .about-img:hover::after {
 right: 10px;
 bottom: 10px;
}
/* .about .content h3 {
	font-weight: 600;
	font-size: 26px;
	color:#000;
} */
.about .content ul {
	list-style: none;
	padding: 0;
}
.about .content ul li {
	padding-bottom: 10px;
	color:#000;
}
.about .content ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #028482;
}
.about .content p {
	color:#000;
}
.about .content p:last-child {
	margin-bottom: 0;
}
/*--------------------------------------------------------------
# Get Quote
--------------------------------------------------------------*/


.get-quote {
	background:#028482 url(../img/bg-banner.png);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	padding: 65px 40px;
	width: 100%;
	height: 100%;
}
.get-quote h4 {
    color: #fff;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 0;
	font-weight: 700;
}
.get-quote p {
	color:#FFF;
	font-size:13px;
}
.btn.btn-primary:after {
    content: "";
    background: #fff;
    -webkit-transition: all .5s;
    -khtml-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: absolute;
    height: 120%;
    width: 15px;
    opacity: .2;
    left: -35%;
    top: -10%;
    transform: rotate(0);
    -moz-transform: rotate(0);
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
}
section.get-quote .btn-dark {
    padding-left: 23px;
    padding-right: 23px;
	position: relative;
	line-height: 37px;
	font-weight: 700;
}
section.get-quote .btn-dark:hover:after, section.get-quote .btn-dark:focus:after {
    left: 130%;
}
/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/


.video-warp {
	background: url("../img/about-bg.jpg") center center;
	background-size: cover;
	position: relative;
	padding: 80px 0;
}
.vde-img img {
	float: left;
	max-width: 36% !important;
	margin-right: 10px;
}
.vde-img span {
	font-size:12px;
}
.video-warp .nav-tabs .nav-link {
	background:none;
	border:0 none;
	color:#FFF;
	font-weight:400;
	padding: 0;
}
.video-warp .nav-tabs .nav-link span {
	color:#FFF;
	font-weight: normal;
	font-size:11px;
}
.video-warp .nav-tabs .nav-link:hover {
	color:#F3BC0A;
}
.video-warp .nav-tabs {
	border-bottom: 0 none;
}
.video-warp .nav-item {
	margin-bottom:60px;
}
 @media (min-width: 1024px) {
 .about {
 background-attachment: fixed;
}
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
	padding: 50px 30px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	transition: all ease-in-out 0.3s;
	background: #1a1814;
}
.why-us .box span {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: #028482;
}
.why-us .box h4 {
	font-size: 24px;
	font-weight: 600;
	padding: 0;
	margin: 20px 0;
	color: rgba(255, 255, 255, 0.8);
}
.why-us .box p {
	color: #aaaaaa;
	font-size: 15px;
	margin: 0;
	padding: 0;
}
.why-us .box:hover {
	background: #028482;
	padding: 30px 30px 70px 30px;
	box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
	color: #fff;
}
/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
	padding: 0;
	margin: 0 auto 0 auto;
	list-style: none;
	text-align: center;
	border-radius: 50px;
}
.menu #menu-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 8px 12px 10px 12px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	margin-bottom: 10px;
	transition: all ease-in-out 0.3s;
	border-radius: 50px;
	font-family: 'robotoregular';
}
.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
	color: #028482;
}
.menu #menu-flters li:last-child {
	margin-right: 0;
}
.menu .menu-item {
	margin-top: 50px;
}
.menu .menu-img {
	width: 70px;
	border-radius: 50%;
	float: left;
	border: 5px solid rgba(255, 255, 255, 0.2);
}
.menu .menu-content {
	margin-left: 85px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	position: relative;
}
 .menu .menu-content::after {
 content: "......................................................................" "...................................................................." "....................................................................";
 position: absolute;
 left: 20px;
 right: 0;
 top: -4px;
 z-index: 1;
 color: #bab3a6;
 font-family: 'robotoregular';
}
.menu .menu-content a {
	padding-right: 10px;
	background: #1a1814;
	position: relative;
	z-index: 3;
	font-weight: 700;
	color: white;
	transition: 0.3s;
}
.menu .menu-content a:hover {
	color: #028482;
}
.menu .menu-content span {
	background: #1a1814;
	position: relative;
	z-index: 3;
	padding: 0 10px;
	font-weight: 600;
	color: #028482;
}
.menu .menu-ingredients {
	margin-left: 85px;
	font-style: italic;
	font-size: 14px;
	font-family: 'robotoregular';
	color: rgba(255, 255, 255, 0.5);
}
/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
	overflow: hidden;
}
.specials .nav-tabs {
	border: 0;
}
.specials .nav-link {
	border: 0;
	padding: 12px 15px;
	transition: 0.3s;
	color: #fff;
	border-radius: 0;
	border-right: 2px solid #028482;
	font-weight: 600;
	font-size: 15px;
}
.specials .nav-link:hover {
	color: #028482;
}
.specials .nav-link.active {
	color: #1a1814;
	background: #028482;
	border-color: #028482;
}
.specials .nav-link:hover {
	border-color: #028482;
}
.specials .tab-pane.active {
	-webkit-animation: fadeIn 0.5s ease-out;
	animation: fadeIn 0.5s ease-out;
}
.specials .details h3 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
}
.specials .details p {
	color: #aaaaaa;
}
.specials .details p:last-child {
	margin-bottom: 0;
}
 @media (max-width: 992px) {
 .specials .nav-link {
 border: 0;
 padding: 15px;
}
}
/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
	background:#FFF;
	position: relative;
}
 .events::before {
}
.events .section-title h2 {
	color: #000;
	text-align: center;
	font-size: 33px;
	text-transform:capitalize;
}
.events .container {
	position: relative;
}
 @media (min-width: 1024px) {
 .events {
 background-attachment: fixed;
}
}
.events .events-carousel {
	background: rgba(255, 255, 255, 0.08);
	padding: 30px;
}
.events .event-item {
	color: #000;
	padding: 0;	
	margin: 0;
	text-align: center;
}
/* .events .event-item:hover {
	background:#028482;
} */
.events .event-item h3 {
	font-weight: 600;
	font-size: 26px;
	color: #028482;
	margin-top:20px;
}
.events .event-item .price {
	font-size: 26px;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	margin-bottom: 15px;
}
.events .event-item .price span {
	border-bottom: 2px solid #028482;
}
.events .event-item ul {
	list-style: none;
	padding: 0;
}
.events .event-item ul li {
	padding-bottom: 10px;
	display: inline;
	margin:0px 3px 0px 0px;
}
.events .event-item img {
	margin-bottom: 15px;
	height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.events .event-item ul i {
	font-size: 17px;
	padding-right: 0px;
	color: #F5F517;
}
.events .event-item p:last-child {
	margin-bottom: 0;
}
.events .owl-nav, .events .owl-dots {
	margin-top: 5px;
	text-align: center;
}
.events .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}
.events .owl-dot.active {
	background-color: #028482 !important;
}
 @media (min-width: 992px) {
 .events .testimonial-item p {
 width: 80%;
}
}
.events .event-item:hover p {
	color:#FFF !important;
}
/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
	width: 100%;
}
.book-a-table .php-email-form .form-group {
	padding-bottom: 8px;
}
.book-a-table .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}
.book-a-table .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}
.book-a-table .php-email-form .error-message br + br {
	margin-top: 25px;
}
.book-a-table .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}
.book-a-table .php-email-form .loading {
	display: none;
	text-align: center;
	padding: 15px;
}
.book-a-table .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #028482;
	border-top-color: #028482;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}
.book-a-table .php-email-form input, .book-a-table .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	background: #0c0b09;
	border-color: #625b4b;
	color: white;
}
 .book-a-table .php-email-form input::-webkit-input-placeholder, .book-a-table .php-email-form textarea::-webkit-input-placeholder {
 color: #a49b89;
}
 .book-a-table .php-email-form input::-moz-placeholder, .book-a-table .php-email-form textarea::-moz-placeholder {
 color: #a49b89;
}
 .book-a-table .php-email-form input:-ms-input-placeholder, .book-a-table .php-email-form textarea:-ms-input-placeholder {
 color: #a49b89;
}
 .book-a-table .php-email-form input::-ms-input-placeholder, .book-a-table .php-email-form textarea::-ms-input-placeholder {
 color: #a49b89;
}
 .book-a-table .php-email-form input::placeholder, .book-a-table .php-email-form textarea::placeholder {
 color: #a49b89;
}
.book-a-table .php-email-form input:focus, .book-a-table .php-email-form textarea:focus {
	border-color: #028482;
}
.book-a-table .php-email-form input {
	height: 44px;
}
.book-a-table .php-email-form textarea {
	padding: 10px 12px;
}
.book-a-table .php-email-form button[type="submit"] {
	background: #028482;
	border: 0;
	padding: 10px 35px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}
.book-a-table .php-email-form button[type="submit"]:hover {
	background: #d3af71;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
	box-sizing: content-box;
	min-height: 320px;
}
.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50%;
	margin: -40px 0 0 40px;
	position: relative;
	z-index: 2;
	border: 6px solid rgba(255, 255, 255, 0.2);
}
.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 45px;
	color: white;
}
.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 0 45px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
	color: #d3af71;
	font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
}
.testimonials .testimonial-item p {
	font-style: italic;
	margin: 0 15px 0 15px;
	padding: 20px 20px 60px 20px;
	background: #26231d;
	position: relative;
	border-radius: 6px;
	position: relative;
	z-index: 1;
}
.testimonials .owl-nav, .testimonials .owl-dots {
	margin-top: 5px;
	text-align: center;
}
.testimonials .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}
.testimonials .owl-dot.active {
	background-color: #028482 !important;
}
 @media (max-width: 767px) {
 .testimonials {
 margin: 30px 10px;
}
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
	overflow: hidden;
	border-right: 3px solid #454035;
	border-bottom: 3px solid #454035;
}
.gallery .gallery-item img {
	transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
	transform: scale(1.1);
}
/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs .member {
	text-align: center;
	margin-bottom: 20px;
	background: #343a40;
	position: relative;
	overflow: hidden;
}
.chefs .member .member-info {
	opacity: 0;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	transition: 0.2s;
}
.chefs .member .member-info-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	transition: bottom 0.4s;
}
.chefs .member .member-info-content h4 {
	font-weight: 700;
	margin-bottom: 2px;
	font-size: 18px;
	color: #fff;
}
.chefs .member .member-info-content span {
	font-style: italic;
	display: block;
	font-size: 13px;
	color: #fff;
}
.chefs .member .social {
	position: absolute;
	left: 0;
	bottom: -38px;
	right: 0;
	height: 48px;
	transition: bottom ease-in-out 0.4s;
	text-align: center;
}
.chefs .member .social a {
	transition: color 0.3s;
	color: #fff;
	margin: 0 10px;
	display: inline-block;
}
.chefs .member .social a:hover {
	color: #028482;
}
.chefs .member .social i {
	font-size: 18px;
	margin: 0 2px;
}
.chefs .member:hover .member-info {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
	opacity: 1;
	transition: 0.4s;
}
.chefs .member:hover .member-info-content {
	bottom: 60px;
	transition: bottom 0.4s;
}
.chefs .member:hover .social {
	bottom: 0;
	transition: bottom ease-in-out 0.4s;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
	width: 100%;
}
.contact .info i {
	font-size: 20px;
	float: left;
	width: 44px;
	height: 44px;
	background: #028482;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}
.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 5px;
	font-family: 'poppins';
	color: #000;
}
.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #000;
}
.contact .info .open-hours, .contact .info .email, .contact .info .phone {
	margin-top: 40px;
}
.contact .php-email-form {
	width: 100%;
}
.contact .php-email-form .form-group {
	padding-bottom: 8px;
}
.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}
.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}
.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}
.contact .php-email-form .loading {
	display: none;
	text-align: center;
	padding: 15px;
}
.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #028482;
	border-top-color: #1a1814;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	background: #FFF;
	border-color: #625b4b;
	color: white;
}
 .contact .php-email-form input::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
 color: #a49b89;
}
 .contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
 color: #a49b89;
}
 .contact .php-email-form input:-ms-input-placeholder, .contact .php-email-form textarea:-ms-input-placeholder {
 color: #a49b89;
}
 .contact .php-email-form input::-ms-input-placeholder, .contact .php-email-form textarea::-ms-input-placeholder {
 color: #a49b89;
}
 .contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
 color: #a49b89;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
	border-color: #028482;
}
.contact .php-email-form input {
	height: 44px;
}
.contact .php-email-form textarea {
	padding: 10px 12px;
}
.contact .php-email-form button[type="submit"] {
	background: #028482;
	border: 0;
	padding: 10px 35px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}
.contact .php-email-form button[type="submit"]:hover {
	background: #d3af71;
}
 @-webkit-keyframes animate-loading {
 0% {
 transform: rotate(0deg);
}
 100% {
 transform: rotate(360deg);
}
}
 @keyframes animate-loading {
 0% {
 transform: rotate(0deg);
}
 100% {
 transform: rotate(360deg);
}
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: black;
	padding: 20px 0px;
	color: #fff;
	font-size: 14px;
}
#footer .footer-top {
	background: #0c0b09;
	border-top: 1px solid #37332a;
	border-bottom: 1px solid #28251f;
	padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
	margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
	font-size: 24px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 300;
	text-transform: uppercase;
	font-family: 'robotoregular';
}
#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: 'robotoregular';
	color: #fff;
}
#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #28251f;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
	background: #028482;
	color: #fff;
	text-decoration: none;
}
#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}
#footer .footer-top .footer-links {
	margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #028482;
	font-size: 18px;
	line-height: 1;
}
#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}
#footer .footer-top .footer-links ul a {
	color: #fff;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
	color: #028482;
}
#footer .footer-top .footer-newsletter form {
	margin-top: 30px;
	background: #28251f;
	padding: 6px 10px;
	position: relative;
	border-radius: 50px;
	border: 1px solid #454035;
}
#footer .footer-top .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px;
	width: calc(100% - 110px);
	background: #28251f;
	color: white;
}
#footer .footer-top .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px 2px 20px;
	background: #028482;
	color: #fff;
	transition: 0.3s;
	border-radius: 50px;
}
#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
	background: #d3af71;
}
#footer .copyright {
	text-align: center;
	padding-top: 30px;
}
#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #fff;
}
.copyright {
	padding:20px 0px;
}
.copyright li {
	list-style: none;
	float: left;
	margin:0px 9px;
}
.copyright li a {
	color:#FFF;
}
.copyright li a:hover {
	color:#028482;
}
section#contact {
	background: #FFF;
}
/*---new css---*/
.sh-content li {
    color: #000;
    list-style: none;
    text-transform: capitalize;
    width: 48%;
    display: inline-flex;
    float: left;
    align-items: center;
    line-height: 32px;
    margin-right: 15px;
    border-bottom: 1px solid #fff;
    padding: 15px;
    background: #028482;
    color: #fff;
}
.sh-content ul{
    margin: 0;
    padding: 0;
}
.sh-content li:before{
	content: "";
	display: inline-block;
	margin-right: 5px;
	width:10px;
	height:10px;
	border: 1px solid #fff;
	border-radius: 100%;
}

.service-box.style3 .icon-bx-wraper {
    padding: 50px 30px;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.05);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
	position: relative;
	overflow: hidden;
}
.service-box.style3 .icon-bx-wraper:hover:after {
    width: 100%;
    left: 0;
    right: auto;
    transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -webkit-transform-origin: right;
    -o-transform-origin: right;
}
.service-box.style3 .icon-bx-wraper:after {
    content: "";
    height: 100%;
    width: 0;
    background-color: #028482;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -webkit-transform-origin: left;
    -o-transform-origin: left;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
/* .icon-bx-wraper:before {
	content: "";
    width: 100%;
    height: 100%;
    background: #028482;
    position: absolute;
    top: 0;
    left: 0;    
    display: inline-block;
	z-index: -1;
	transform: translateX(-100%);
	transition: transform 0.5s ease-in-out;
} */
.icon-bx-wraper:hover:before {
	transform: translateX(0%);
}
.service-box.style3 .dlab-tilte {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 30px;
	text-align: center;
	margin-top: 22px;
	height: 8vh;
	text-transform: uppercase;
}
.service-box.style3:hover .dlab-tilte{
	color: #fff;
}
.icon-lg {
    overflow: hidden;
    width: 150px;
    height: 150px;
    border: 2px solid #028482;
    border-radius: 100%;
	/* background: #fff url(../img/img-placeholder.jpg); */
	background: #fff;
	background-repeat: no-repeat;
}
.col-lg-3.col-md-6.service-box.style3 {
    margin-top: 34px;
}
.icon-lg {
    justify-content: center;
    align-items: center;
    align-self: center;
    display: flex;
}
.icon-lg img {
    width: 140px;
    height: auto;
}
#particles-js{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.section-title h3 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    font-family: 'poppins';
    color: #028482;
}
/* .event-item{
	box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.05);
} */
.row.spno, .spno {
    margin-left: 0;
    margin-right: 0;
}
.row.spno [class*="col-"], .spno [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}
.img-cover {
    object-fit: cover;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
}
.bg-primary2 {
    background-color: #028482;
}
.max-w700 {
    max-width: 700px;
}
.m-auto {
    margin: auto;
}
.p-tb50 {
    padding-bottom: 50px;
    padding-top: 50px;
}
.p-lr20 {
    padding-left: 20px;
    padding-right: 20px;
}
.icon-bx-wraper2 {
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 30px 30px;
    background: rgba(0,0,0,0.2);
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
	position: relative;
}
.m-b30 {
    margin-bottom: 30px;
}
.icon-md {
    width: 60px;
}
.icon-md{
    display: inline-block;
    text-align: center;
}
.icon-content {
    overflow: hidden;
}
.icon-bx-wraper2 .dlab-tilte {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
	margin-top: 0;
	position: relative;
}
.icon-bx-wraper2 p {
    opacity: 0.8;
    font-size: 15px;
    line-height: 26px;
}
.icon-bx-wraper2:hover .dlab-tilte, .icon-bx-wraper2:hover p{
	color: #000;
}
.icon-bx-wraper2:hover{
	background: #fff;
}
/*--product section css--*/
/* section.product-sec .col {
     width: 20%;
} */
section.product-sec {
    padding: 60px 0;
	background-image: url(../img/bg-background.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
section.product-sec .section-title h3 {
    padding-bottom: 100px;
    text-align: center;
}
.product-inner-sec {
    background: #fff;
    padding: 120px 15px 45px;
	position: relative;
	box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.05);
	-webkit-box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.05);
	-moz-box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.05);
	text-align: center;
	height: 100%;
	z-index: 1;
}
.product-inner-sec:before {
    z-index: -1;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #028482;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: bottom center;
    -webkit-transform-origin: bottom center;
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    -khtml-transition: .3s cubic-bezier(.24,.74,.58,1);
    -moz-transition: .3s cubic-bezier(.24,.74,.58,1);
    -ms-transition: .3s cubic-bezier(.24,.74,.58,1);
    -o-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
}
.product-inner-sec:hover:before {
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}
.product-inner-sec img {
    width: 100%;
	height: auto;
}
.product-inner-sec h3 {
    color: #000;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 5px;
    font-weight: 700;
    padding: 15px;
    text-transform: uppercase;
}
.product-inner-sec:hover h3{
	color: #fff;
}
.product-inner-sec span {
    position: absolute;
    max-width: 185px;
    width: 185px;
    height: 185px;
    max-height: 185px;
    -webkit-border-radius: 185px;
    -khtml-border-radius: 185px;
    -moz-border-radius: 185px;
    -ms-border-radius: 185px;
    -o-border-radius: 185px;
    border-radius: 185px;
    background-color: #fff;
    -webkit-box-shadow: 0 8px 35px rgba(12,12,12,9%);
    -khtml-box-shadow: 0 8px 35px rgba(12,12,12,9%);
    -moz-box-shadow: 0 8px 35px rgba(12,12,12,9%);
    -ms-box-shadow: 0 8px 35px rgba(12,12,12,9%);
    -o-box-shadow: 0 8px 35px rgba(12,12,12,9%);
    box-shadow: 0 8px 35px rgba(12,12,12,9%);
    top: -90px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
	z-index: 1;
}
.product-inner-sec span:before {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    opacity: 0;
    -webkit-transform: translateY(-5px);
    -khtml-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    display: block;
    background-color: #028482;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.product-inner-sec:hover span:before {
    opacity: 1;
    -webkit-transform: translateY(-15px);
    -khtml-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
}
.image-small img {
    -webkit-animation: rotation 8s infinite linear;
    animation: rotation 8s infinite linear;
	width: 100%;
}
.inner-image.image-small {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.1;
}
@-webkit-keyframes rotation{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(359deg)}}@-webkit-keyframes rotation2{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(-359deg)}}
.image-small {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
#about .image-small {
    position: absolute;
    left: -37px;
    top: -24px;
    z-index: 1;
    width: 221px;
    height: auto;
}
.ct-banner-meta {
    width: 195px;
    height: 195px;
    position: absolute;
    top: -21px;
    left: -21px;
    z-index: 1;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    background-color: initial;
    border: 40px solid #fff;
    -webkit-box-shadow: 0 15px 20px rgba(102,102,102,.19);
    -khtml-box-shadow: 0 15px 20px rgba(102,102,102,.19);
    -moz-box-shadow: 0 15px 20px rgba(102,102,102,.19);
    -ms-box-shadow: 0 15px 20px rgba(102,102,102,.19);
    -o-box-shadow: 0 15px 20px rgba(102,102,102,.19);
    box-shadow: 0 15px 20px rgba(102,102,102,.19);
}
.ct-banner-title svg {
    fill: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -khtml-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    overflow: visible;
    width: 145px;
    height: 145px;
    animation: ctspinsvg 15s linear infinite;
}
.ct-banner-title {
    font-size: 18px;
    white-space: nowrap;
    color: #222;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(-90deg);
    -khtml-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
	letter-spacing: 3px;
}
.ct-banner-title svg text {
    letter-spacing: inherit;
    fill: #020033;
}
@-ms-keyframes ctspinsvg{from{-ms-transform:translate(-50%,-50%)rotate(0)}to{-ms-transform:translate(-50%,-50%)rotate(-360deg)}}@-moz-keyframes ctspinsvg{from{-moz-transform:translate(-50%,-50%)rotate(0)}to{-moz-transform:translate(-50%,-50%)rotate(-360deg)}}@-webkit-keyframes ctspinsvg{from{-webkit-transform:translate(-50%,-50%)rotate(0)}to{-webkit-transform:translate(-50%,-50%)rotate(-360deg)}}@keyframes ctspinsvg{from{transform:translate(-50%,-50%)rotate(0)}to{transform:translate(-50%,-50%)rotate(-360deg)}}
button#form-submit {
    background: #333;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-list li{
	font-size: 16px !important;
	font-weight: 600;
}
.contact-list li i {
    font-size: 16px !important;
    font-weight: 600;
    color: #028482;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
}
.contact-info-sec{
	background: #fff url(../img/bg-404.png) no-repeat;
	background-position: bottom right;
}
.inner-box {
    -webkit-box-shadow: 0 3px 15px rgba(12,12,12,9%);
    -khtml-box-shadow: 0 3px 15px rgba(12,12,12,9%);
    -moz-box-shadow: 0 3px 15px rgba(12,12,12,9%);
    -ms-box-shadow: 0 3px 15px rgba(12,12,12,9%);
    -o-box-shadow: 0 3px 15px rgba(12,12,12,9%);
    box-shadow: 0 3px 15px rgba(12,12,12,9%);
    padding: 30px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
	height: 100%;
    position: relative;
}
.meta-box {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.item--icon {
    overflow: hidden;
    width: 70px;
    height: 70px;
    min-width: 70px;
    max-width: 70px;
    -webkit-border-radius: 70px;
    -khtml-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    -o-border-radius: 70px;
    border-radius: 70px;
    background-color: rgba(2,132,130,.2);
    color: #028482;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.item--icon i {
    font-size: 35px;
}
.item--icon img {
    -webkit-transition: all 300ms linear 100ms;
    -khtml-transition: all 300ms linear 100ms;
    -moz-transition: all 300ms linear 100ms;
    -ms-transition: all 300ms linear 100ms;
    -o-transition: all 300ms linear 100ms;
    transition: all 300ms linear 100ms;
}
.list-row {
    list-style: none;
    margin-bottom: 0;
}
.list-row li {
    line-height: 24px;
    font-size: 16px;
    color: #020033;
    font-weight: 500;
}
.list-row li a {
    color: #020033;
}
.list-row li+li {
    margin-top: 7px;
}
.item--title {
    margin-bottom: 8px;
    color: #000;
    font-size: 20px;
    font-weight: 900;
}
.sub-title {
    color: #020033;
}
.inner-box:hover .item--icon.icon-right-from-Left img,.inner-box:hover .item--icon.icon-right-from-Left i {
    -webkit-animation: toRightFromLeft .3s linear 1;
    -khtml-animation: toRightFromLeft .3s linear 1;
    -moz-animation: toRightFromLeft .3s linear 1;
    -ms-animation: toRightFromLeft .3s linear 1;
    -o-animation: toRightFromLeft .3s linear 1;
    animation: toRightFromLeft .3s linear 1;
}
@-webkit-keyframes toRightFromLeft{49%{-webkit-transform:translate(100%)}50%{opacity:0;-webkit-transform:translate(-100%)}51%{opacity:1}}@-moz-keyframes toRightFromLeft{49%{-moz-transform:translate(100%)}50%{opacity:0;-moz-transform:translate(-100%)}51%{opacity:1}}@keyframes toRightFromLeft{49%{transform:translate(100%)}50%{opacity:0;transform:translate(-100%)}51%{opacity:1}}
.inner-box:hover .item--icon.icon-shakeThatBooty i{
	-webkit-animation: shakeThatBooty .3s linear 1;
    -khtml-animation: shakeThatBooty .3s linear 1;
    -moz-animation: shakeThatBooty .3s linear 1;
    -ms-animation: shakeThatBooty .3s linear 1;
    -o-animation: shakeThatBooty .3s linear 1;
    animation: shakeThatBooty .3s linear 1;
}
@keyframes shakeThatBooty{33%{-webkit-transform:rotateZ(20deg);-khtml-transform:rotateZ(20deg);-moz-transform:rotateZ(20deg);-ms-transform:rotateZ(20deg);-o-transform:rotateZ(20deg);transform:rotateZ(20deg)}67%{-webkit-transform:rotateZ(-20deg);-khtml-transform:rotateZ(-20deg);-moz-transform:rotateZ(-20deg);-ms-transform:rotateZ(-20deg);-o-transform:rotateZ(-20deg);transform:rotateZ(-20deg)}100%{-webkit-transform:rotateZ(20deg);-khtml-transform:rotateZ(20deg);-moz-transform:rotateZ(20deg);-ms-transform:rotateZ(20deg);-o-transform:rotateZ(20deg);transform:rotateZ(20deg)}}
.inner-box:hover .item--icon.icon-Scale-Delay i{
	-webkit-animation: ct-cubeGridScaleDelay .9s linear 1;
    -khtml-animation: ct-cubeGridScaleDelay .9s linear 1;
    -moz-animation: ct-cubeGridScaleDelay .9s linear 1;
    -ms-animation: ct-cubeGridScaleDelay .9s linear 1;
    -o-animation: ct-cubeGridScaleDelay .9s linear 1;
    animation: ct-cubeGridScaleDelay .9s linear 1;
}
@-webkit-keyframes ct-cubeGridScaleDelay{0%,70%,100%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}}@keyframes ct-cubeGridScaleDelay{0%,70%,100%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}}
.events .event-item p {
    font-weight: 700;
    text-transform: uppercase;
}
.event-item .item--inner {
    text-align: center;
    padding: 0 10px;
    margin-bottom: 90px;
}
.event-item .item--image {
    position: relative;
}
.event-item .item--image .team-avatar {
    display: block;
    position: relative;
    overflow: hidden;
}
.event-item .item--image .team-avatar:before {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 125px;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#cccccc 15%),to(rgba(250,67,24,0)));
    background-image: -webkit-linear-gradient(bottom,#cccccc 15%,rgba(250,67,24,0));
    background-image: -moz-linear-gradient(bottom,#cccccc 15%,rgba(250,67,24,0));
    background-image: -ms-linear-gradient(bottom,#cccccc 15%,rgba(250,67,24,0));
    background-image: -o-linear-gradient(bottom,#cccccc 15%,rgba(250,67,24,0));
    background-image: linear-gradient(bottom,#cccccc 15%,rgba(250,67,24,0));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fa4318 15%',endColorStr='rgba(250, 67, 24, 0)');
    z-index: 1;
	position: absolute;
    display: block;
    content: "";
}
.event-item .team-avatar a {
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    -khtml-transition: .3s cubic-bezier(.24,.74,.58,1);
    -moz-transition: .3s cubic-bezier(.24,.74,.58,1);
    -ms-transition: .3s cubic-bezier(.24,.74,.58,1);
    -o-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
    color: #fa4318;
}
.event-item .item--image .team-avatar img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -webkit-transition: all 300ms linear 100ms;
    -khtml-transition: all 300ms linear 100ms;
    -moz-transition: all 300ms linear 100ms;
    -ms-transition: all 300ms linear 100ms;
    -o-transition: all 300ms linear 100ms;
    transition: all 300ms linear 100ms;
}
.event-item  .item--image .team-avatar:after {
    width: 100px;
    height: 100px;
    top: -60px;
    right: -60px;
    background-color: #fff;
    -webkit-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
	position: absolute;
    display: block;
    content: "";
}
.event-item .wp-content {
    position: relative;
}
.event-item .item--meta {
    padding: 0 20px 55px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 15px 2px rgba(102,102,102,.15);
    -khtml-box-shadow: 0 2px 15px 2px rgba(102,102,102,.15);
    -moz-box-shadow: 0 2px 15px 2px rgba(102,102,102,.15);
    -ms-box-shadow: 0 2px 15px 2px rgba(102,102,102,.15);
    -o-box-shadow: 0 2px 15px 2px rgba(102,102,102,.15);
    box-shadow: 0 2px 15px 2px rgba(102,102,102,.15);
    position: relative;
    -webkit-transition-delay: .18s;
    -moz-transition-delay: .18s;
    transition-delay: .18s;
}
.event-item .item--meta .line-top-meta {
    width: 100%;
    display: block;
    position: absolute;
    height: 25px;
    top: -25px;
    overflow: hidden;
    left: 0;
    right: 0;
}
.event-item .item--meta .line-top-meta:before {
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 25px;
    content: "";
    display: block;
    z-index: 2;
    -webkit-transform: skew(8deg);
    -khtml-transform: skew(8deg);
    -moz-transform: skew(8deg);
    -ms-transform: skew(8deg);
    -o-transform: skew(8deg);
    transform: skew(8deg);
}
.event-item .item--meta .line-top-meta:after {
    z-index: 1;
    width: 45px;
    height: 50px;
    top: 1px;
    right: 8px;
    background-color: #d9d9d9;
    -webkit-transform: rotate(-48deg);
    -khtml-transform: rotate(-48deg);
    -moz-transform: rotate(-48deg);
    -ms-transform: rotate(-48deg);
    -o-transform: rotate(-48deg);
    transform: rotate(-48deg);
}
.event-item .item--meta .item--title {
    color: #000;
}
.event-item .item--title {
    font-size: 22px;
    margin-bottom: 8px;
    min-height: 80px;
}
.event-item .item--meta .item--title a {
    color: inherit;
}
.event-item .item--meta .item--position {
    font-weight: 500;
    color: #fa4318;
}
.event-item .item-readmore {
    position: absolute;
    bottom: -25px;
    text-align: center;
    left: 0;
    width: 100%;
}
.event-item .btn-readmore {
    font-size: 14px;
    font-weight: 700;
    height: 51px;
    line-height: 51px;
    padding-left: 23px;
    padding-right: 23px;
    display: inline-block;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background-color: #028482;
    color: #fff;
    text-transform: uppercase;
	overflow: hidden;
    position: relative;
    z-index: 1;
}
.event-item .btn-readmore i {
    font-size: 10px;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
}
.event-item .btn-readmore:after{
	content: "";
    background: #fff;
    -webkit-transition: all .5s;
    -khtml-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: absolute;
    height: 120%;
    width: 15px;
    opacity: .2;
    left: -35%;
    top: -10%;
    transform: rotate(0);
    -moz-transform: rotate(0);
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
}
.event-item .item--inner:hover .team-avatar:before {
    opacity: 0;
}
.event-item .item--inner:hover .team-avatar img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}
[class^=caseicon-], [class*=" caseicon-"] {
    display: inline-block;
}
.event-item .item--inner:hover .item--meta {
    opacity: 0;
}
.event-item .item--holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #3c3c3c;
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: top center;
    -webkit-transform-origin: top center;
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    -khtml-transition: .3s cubic-bezier(.24,.74,.58,1);
    -moz-transition: .3s cubic-bezier(.24,.74,.58,1);
    -ms-transition: .3s cubic-bezier(.24,.74,.58,1);
    -o-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
    -webkit-transition-delay: .12s;
    -moz-transition-delay: .12s;
    transition-delay: .12s;
}
.event-item .item--inner:hover .item--holder {
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
}
.event-item .item--holder .item--holder-inner {
    position: relative;
    padding: 0 20px 50px;
}
.event-item .item--holder .line-top-meta {
    width: 100%;
    display: block;
    position: absolute;
    height: 25px;
    top: -25px;
    overflow: hidden;
    left: 0;
    right: 0;
}
.event-item .item--holder .line-top-meta:before {
    background-color: #3c3c3c;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 25px;
    content: "";
    display: block;
    z-index: 1;
    -webkit-transform: skew(8deg);
    -khtml-transform: skew(8deg);
    -moz-transform: skew(8deg);
    -ms-transform: skew(8deg);
    -o-transform: skew(8deg);
    transform: skew(8deg);
}
.event-item .item--holder .line-top-meta:after {
    z-index: 0;
    width: 45px;
    height: 50px;
    top: 1px;
    right: 8px;
    background-color: #000;
    -webkit-transform: rotate(-48deg);
    -khtml-transform: rotate(-48deg);
    -moz-transform: rotate(-48deg);
    -ms-transform: rotate(-48deg);
    -o-transform: rotate(-48deg);
    transform: rotate(-48deg);
}
.event-item .item--holder .ct-image-circle {
    width: 100px;
    height: 100px;
    position: absolute;
    top: -25px;
    left: 0;
    z-index: 1;
    overflow: hidden;
}
.event-item .item--inner:hover .ct-image-circle img {
    -webkit-animation: rotation 8s infinite linear;
    animation: rotation 8s infinite linear;
    -webkit-transition-delay: 3s;
    -moz-transition-delay: 3s;
    transition-delay: 3s;
}
.event-item .item--holder .item--title {
    color: #fff;
    position: relative;
    padding-bottom: 13px;
    margin-bottom: 25px;
    z-index: 1;
	font-size: 22px;
}
.event-item:hover .item--holder-inner .item--phone{
	color: #fff;
}
.event-item:hover .item--holder .item--title a{
	color: #fff;
	font-weight: 800;
}
.certificate-innerbox {
    position: relative;
    overflow: hidden;
}
.certificate-innerbox h3 {
    color: #000;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    background: #f8f8f8;
    padding: 10px 5px;
}
.certi-btn1 {
    width: 100%;
    background: rgba(0,0,0,0.5);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
	transition: transform 0.5s ease-in-out;
	z-index: 1;
}
.certificate-innerbox:hover .certi-btn1 {
	transform: translateY(0%);
}
.certi-btn1 a.btn.btn-lg.btn-success {
    background: transparent;
    border: 2px solid #fff;
    text-transform: uppercase;
    padding: 5px 31px;
    font-weight: 800;
}
h4#myModalLabel{
	color: #000 !important;
}
.owl-carousel.events-carousel .owl-nav button.owl-next, .owl-carousel.events-carousel .owl-nav button.owl-prev{
    color: #028482;
}
.owl-carousel.events-carousel .owl-nav button.owl-next, .owl-carousel.events-carousel .owl-nav button.owl-prev{
    color: #028482;
	font-size: 48px;
}
.events .owl-nav {
    position: absolute;
    top: -80px;
    right: 0;
}

.events .owl-nav button {
    width: 45px;
    height: 45px;
    border: 1px solid #028482 !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin: 0 0 0 10px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}
.events .owl-nav button:hover{
	background: #028482;
	color:#fff !important;
}
#brand{
	background:#f8f8f8 url(../img/bg-map-2.png);
	background-repeat: no-repeat;
	background-position: top center;
	padding-bottom: 150px;
}
.owl-carousel.brand-carousel .row.event-item {
    justify-content: center;
    align-items: center;
    align-self: center;
    border: 1px solid #ccc;
    padding: 0;
	margin: 0;
	background-color: #fff;
}
.owl-carousel.brand-carousel .row.event-item svg{
	width: 120px;
	height: auto;
}
.owl-carousel.brand-carousel .event-item .item--inner {
    margin-bottom: 0px;
}
.section-title p.brand-text {
    font-size: 1rem;
    color: #000;
    font-weight: 400;
    padding-bottom: 3rem;
}
div.top-right{
    right: 140px;
    top: 80px;
	position: absolute;
}
div.top-left{
    left: 140px;
    bottom: 80px;
	position: absolute;
}
div.top-right,div.top-left {
    animation: animationFramesThree 12s infinite linear alternate;
}
@keyframes animationFramesThree{0%{transform:translate(0,0)}20%{transform:translate(40px,-5px)}40%{transform:translate(60px,40px)}60%{transform:translate(40px,60px)}80%{transform:translate(-40px,60px)}100%{transform:translate(0,0)}}
section.wsu-sec ul li {
    color: #fff;
    display: inline-flex;
    border: 1px solid rgba(2,132,130,.15);
    margin-top: 1rem;
		padding: 28px 15px 60px 24px;
		line-height: 1;
		overflow: hidden;
		z-index: 1;
		position: relative;
		text-align: left;
}
section.wsu-sec ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
}
section.wsu-sec ul li:before {
    right: 0;
    z-index: -2;
    background-color: rgba(2,132,130,.15);
}
section.wsu-sec ul li:after {
    z-index: -1;
    background-color: #028482;
    right: 10px;
}
section.wsu-sec ul li:before, section.wsu-sec ul li:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 120%;
    height: 120%;
    bottom: 0;
    -webkit-border-radius: 0 75px 120px 0;
    -khtml-border-radius: 0 75px 120px 0;
    -moz-border-radius: 0 75px 120px 0;
    -ms-border-radius: 0 75px 120px 0;
    -o-border-radius: 0 75px 120px 0;
    border-radius: 0 75px 120px 0;
}
/*--catalogue--*/
.catalogue-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #ccc;
    padding: 5px;
    height: 65vh;
}
.catalogue-box h4 {
    color: #000;
    font-size: 16px;
    text-align: center;
    margin: 0;
    padding: 15px 5px;
	text-transform: uppercase;
	font-weight: 600;
	font-family: Poppins;
}
.catalogue-box .card__cover{
    position: absolute;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: rgba(0, 134, 118, 0.7);
    z-index: 2;
	width: 0;
    height:0;
    transition: width 0.4s ease, height 0.4s ease;	
	justify-content: center;
	align-self: center;
	align-items: center;
	overflow: hidden;
	display: flex;
}

.catalogue-box:hover .card__cover{
    width: 100%;
	height: 100%;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.catalogue-box .card__cover a{
	color: #fff;
	border: 1px solid #fff;
	border-radius: 5px;
	text-align: center;
	padding: 5px 10px;
}
.title-holder {
    color: #FFFFFF;
	font-family: 'Be Vietnam Pro', sans-serif;
	font-weight: 900;
}
.title-holder {
    text-align: center;
    position: absolute;
    top: -61px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
	width: 100%;
}
.title-holder {
    position: absolute;
    text-stroke-color: rgba(102,102,102,.2);
    -webkit-text-stroke-color: rgba(102,102,102,.2);
    text-stroke-width: 1px;
    -webkit-text-stroke-width: 1px;
    color: transparent;
    font-size: 100px;
    z-index: 1;
}
.whySelect-carousel .grid-item-inner {
    position: relative;
}
.whySelect-carousel .item--featured {
    position: relative;
    overflow: hidden;
}
.whySelect-carousel .item--featured img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    filter: blur(5px);
    -webkit-filter: blur(5px);
}
.whySelect-carousel .grid-item-inner:hover .item--featured img {
    position: relative;
    filter:none;
    -webkit-filter: none;
}
.whySelect-carousel .item--featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50%;
    background-size: cover;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    -webkit-transform: scale(1.3);
    -khtml-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: all .3s;
    -khtml-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.whySelect-carousel .grid-item-inner .item--holder {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 35px 15px 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    -khtml-transition: .3s cubic-bezier(.24,.74,.58,1);
    -moz-transition: .3s cubic-bezier(.24,.74,.58,1);
    -ms-transition: .3s cubic-bezier(.24,.74,.58,1);
    -o-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
}
.whySelect-carousel .item-number {
    font-size: 24px;
    color: #fff;
    display: inline-block;
    margin-bottom: 15px;
}
.whySelect-carousel .item--title {
    font-size: 22px;
    margin-bottom: 22px;
}
.whySelect-carousel .item--title a {
    color: #fff;
}
.whySelect-carousel .item--content {
    height: 0;
    color: #a9a9a9;
    font-size: 17px;
    line-height: 28px;
    overflow: visible;
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: top center;
    -webkit-transform-origin: top center;
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    -khtml-transition: .3s cubic-bezier(.24,.74,.58,1);
    -moz-transition: .3s cubic-bezier(.24,.74,.58,1);
    -ms-transition: .3s cubic-bezier(.24,.74,.58,1);
    -o-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
    opacity: 0;
    margin-bottom: 0;
}
.whySelect-carousel a.btn-readmore {
    width: 38px;
    text-align: center;
    height: 35px;
    line-height: 34px;
    background-color: #fff;
    display: inline-block;
    color: #000;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
.whySelect-carousel .grid-item-inner:hover .item--featured-bg {
    opacity: 0;
}
.whySelect-carousel .grid-item-inner:hover .item--holder {
    background-color: rgba(0,0,0,.8);
    top: 30px;
    left: 30px;
    bottom: 30px;
    right: 30px;
}
.whySelect-carousel .grid-item-inner:hover .item-number {
    color: #faa80a;
    display: inline-block;
    margin-bottom: 15px;
}
.whySelect-carousel .grid-item-inner:hover .item--content {
    height: auto;
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    -webkit-transition-delay: .12s;
    -moz-transition-delay: .12s;
    transition-delay: .12s;
    margin-bottom: 25px;
}
.whySelect-carousel .grid-item-inner:hover a.btn-readmore {
    background-color: #028482;
    color: #fff;
}
#brand .inner-image.image-small {
    justify-content: center;
    align-items: center;
    align-self: center;
    display: flex;
    width: 100%;
}
#brand .image-small img {
    width: auto;
}
#brand .inner-image.image-small {
    justify-content: center;
    align-items: center;
    align-self: center;
    display: flex;
    width: 100%;
    bottom: auto;
    top: 46%;
    z-index: 1;
}
#brand .inner-image.image-small2 svg {
    fill: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -khtml-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    overflow: visible;
    width: 145px;
    height: 145px;
    animation: ctspinsvg 15s linear infinite;
}
#brand .ct-banner-meta {
    width: 195px;
    height: 195px;
    position: absolute;
    top: 54%;
    left: 41.5%;
    z-index: 1;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    background-color: initial;
    border: 40px solid #fff;
    -webkit-box-shadow: 0 15px 20px rgba(102,102,102,.19);
    -khtml-box-shadow: 0 15px 20px rgba(102,102,102,.19);
    -moz-box-shadow: 0 15px 20px rgba(102,102,102,.19);
    -ms-box-shadow: 0 15px 20px rgba(102,102,102,.19);
    -o-box-shadow: 0 15px 20px rgba(102,102,102,.19);
    box-shadow: 0 15px 20px rgba(102,102,102,.19);
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    /* width: auto; */
    margin: 0 auto;
}
.section-title {
     position: relative;
}
.video-warp .title-holder {
    position: absolute;
    text-stroke-color: rgba(102,102,102,.2);
    -webkit-text-stroke-color: rgba(255,255,255,.2);
    text-stroke-width: 1px;
    -webkit-text-stroke-width: 1px;
    color: transparent;
    font-size: 100px;
    z-index: 1;
}
.accordian li a img {
    height: 500px;
}
.sh-content li a {
    color: #fff;
}
ul.list-sec li {
    border: 1px solid rgba(0,0,0,0.1);
    display: inline-block;
    flex-direction: column;
    width: 33%;
    color: #000;
    padding: 10px;
    text-align: center;
    box-shadow: 5px 5px 20px 0 rgb(0 0 0 / 5%);
}
ul.list-sec {
    margin: 0;
    padding: 0;
}
ul.list-sec h3 {
    font-weight: 700;
    color: #028482;
}
ul {
	margin-left: 0;
	padding: 0;
}

.question,
.answer {
	list-style-type: none;
    color: #000;
}

.question {
	border-top: 1px solid grey;
	padding: 0.5em 1em 0.5em 3em;
	font-weight: bold;
	position: relative;
}
.new-accordion ul:last-child {
	border-bottom: 1px solid grey;
}
.question:hover {
	cursor: pointer;
}
.answer {
	display: none;
	padding: 1em 0.5em 2.5em;
}

.expand-bar {
	position: absolute;
	top: 50%;
	left: 1em;
	transition: all 0.5s ease;
}
.expand-bar,
.expand-bar:after {
	width: 15px;
	height: 2px;
	background-color: #028482;
}
.expand-bar:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	transform: rotate(90deg);
	transition: all 0.5s ease;
}
.open {
	border-bottom: none;
}
.open .expand-bar {
	transform: rotate(180deg);
}
.open .expand-bar:after {
	transform: rotate(180deg);
}