/* ----------------------------------------------------------------
Canvas: Speaker
-----------------------------------------------------------------*/

:root {
	--cnvs-themecolor: #006833;
	--cnvs-themecolor-rgb: 0, 104, 51;
	--accent-rgb: 255, 205, 0;
	--cnvs-primary-font: "paralucent-text", sans-serif;
	--cnvs-body-font: "paralucent", sans-serif;
	--bs-bg-opacity: 1;
	--bs-breadcrumb-item-active-color: #006833;
}

#header {
	--cnvs-primary-menu-hover-color: #111;
}

.is-expanded-menu .menu-link {
	--cnvs-primary-menu-padding-x: 0;
}

.is-expanded-menu .menu-container > .menu-item {
	margin-left: 25px;
	margin-right: 25px;
}

.is-expanded-menu
.menu-container
> .menu-item:not(.sub-menu)
> .menu-link::after {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 50%;
	width: 110%;
	margin-left: -55%;
	height: 2px;
	background-color: var(--cnvs-themecolor);
	transform-origin: center center;
	transform: scaleX(0);
	transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-expanded-menu .menu-container > .menu-item:hover > .menu-link::after,
.is-expanded-menu .menu-container > .menu-item.current > .menu-link::after {
	transform: scaleX(1);
}

.is-expanded-menu .sub-menu-container {
	box-shadow: 0px 20px 50px 10px rgba(0, 0, 0, 0.05);
	border-radius: 0.25rem;
}

.h-bg-tranparent:hover {
	background: transparent !important;
}

#logo a {
	letter-spacing: -1px;
}

.button[class*="bg-opacity-"]:hover {
	--bs-bg-opacity: 1;
	color: #fff !important;
}

.header-misc-icon a:hover {
	color: var(--cnvs-themecolor);
}

.speaker-gallery img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.top-search-open .top-search-parent .header-misc > #top-cart {
	opacity: 1;
	color: #fff;
}

.dotted-bg {
	--cnvs-dotted-opacity: 0.7;
	--cnvs-dotted-top: 0;
	--cnvs-dotted-right: 0;
	--cnvs-dotted-left: auto;
	--cnvs-dotted-size: 190px;
}

.dotted-bg.pos-left {
	--cnvs-dotted-right: auto;
	--cnvs-dotted-left: 0;
}

.dotted-bg:before {
	content: "";
	position: absolute;
	display: block;
	top: var(--cnvs-dotted-top);
	left: var(--cnvs-dotted-left);
	right: var(--cnvs-dotted-right);
	width: var(--cnvs-dotted-size);
	height: var(--cnvs-dotted-size);
	background-size: 20px 20px;
	background-position: center;
	transform: translate(30px, -30px);
	background-image: radial-gradient(
		rgba(var(--cnvs-themecolor-rgb), var(--cnvs-dotted-opacity)) 25%,
		transparent 25%
	);
	z-index: auto;
}

.top-account .dropdown-menu {
	border-color: #eee;
	border-top: 2px solid var(--cnvs-themecolor);
	box-shadow: 0px 20px 50px 10px rgba(0, 0, 0, 0.05);
}

.top-cart-open a,
.top-account a.show {
	color: var(--cnvs-themecolor);
}

.sub-menu-container .menu-item > .menu-link,
.sub-menu-container .menu-item:hover > .menu-link {
	background-color: transparent;
	font-size: 1rem;
	font-family: var(--cnvs-primary-font) !important;
	font-weight: 500 !important;
}

.noice-effect::before {
	content: "";
	position: absolute;
	top: -100%;
	left: -100%;
	width: 300%;
	height: 300%;
	opacity: 0.6;
	background-image: url(images/noise-paatern.png);
	background-repeat: repeat;
	background-size: auto;
	animation: noiceAnim 8s steps(10) infinite;
}

@keyframes noiceAnim {
	0%,
	to {
		transform: translate(0);
	}

	10% {
		transform: translate(-5%, -10%);
	}

	20% {
		transform: translate(-15%, 5%);
	}

	30% {
		transform: translate(7%, -25%);
	}

	40% {
		transform: translate(-5%, 25%);
	}

	50% {
		transform: translate(-15%, 10%);
	}

	60% {
		transform: translate(15%);
	}

	70% {
		transform: translateY(15%);
	}

	80% {
		transform: translate(3%, 35%);
	}

	90% {
		transform: translate(-10%, 10%);
	}
}

.swiper_wrapper {
	--swiper-height: 43.5rem;
	--swiper-thumbs-height: 70px;
	--swiper-thumbs-gap: 10px;
	--swiper-navigation-size: 24px;
	min-height: var(--swiper-height);
}

.swiper_wrapper .swiper-container {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0;
}

.swiper-slide-bg {
	position: relative;
	z-index: auto;
	top: auto;
	left: auto;
	height: auto;
	min-height: calc(
		var(--swiper-height) - var(--swiper-thumbs-height) -
		calc(var(--swiper-thumbs-gap) * 2)
		);
}

.swiper-thumb {
	height: auto;
	padding: var(--swiper-thumbs-gap) 0;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
}

.swiper-thumb {
	width: calc(100% - calc(var(--swiper-navigation-size) + 60px));
	margin: 0 auto;
	text-align: center;
}

.swiper-thumb .swiper-slide,
.swiper-thumb .swiper-slide img {
	width: 270px;
	height: var(--swiper-thumbs-height);
	-o-object-fit: cover;
	object-fit: cover;
}

.swiper-thumb .swiper-slide {
	filter: grayscale(1);
	opacity: 0.4;
	flex-basis: 0;
	flex-grow: 1;
}

.swiper-thumb .swiper-slide-thumb-active {
	filter: grayscale(0);
	opacity: 1;
}

.circle-wave {
	---circle-wave-size: calc(30px + 1vw);
	---circle-wave-font-size: calc(0.75rem + 2vw);
	---circle-wave-ripple-size: 10px;
	height: var(---circle-wave-size);
	width: var(---circle-wave-size);
	border-radius: 100%;
	margin-top: 4%;
}

.circle-wave i {
	position: relative;
	font-size: var(---circle-wave-font-size);
	background: var(--cnvs-themecolor);
	color: #fff;
	text-align: center;
	height: var(---circle-wave-size);
	width: var(---circle-wave-size);
	line-height: var(---circle-wave-size);
	border-radius: 100%;
	z-index: 1;
}

.circle-wave:before,
.circle-wave:after {
	content: "";
	opacity: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	border: var(---circle-wave-ripple-size) solid
		rgba(var(--cnvs-themecolor-rgb), 0.75);
	border-radius: 100%;
	-webkit-animation-name: ripple;
	animation-name: ripple;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
	animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
	z-index: auto;
}

.circle-wave::before {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.entry .read-more i {
	font-size: 85%;
}

.entry:hover .read-more i {
	transform: translateX(4px);
}

.subscribe-widget input::-moz-placeholder {
	color: #aaa;
	font-size: 85%;
}

.subscribe-widget input::-webkit-input-placeholder {
	color: #aaa;
	font-size: 85%;
}

.modal-open {
	overflow: inherit !important;
}

.modal-backdrop.show {
	display: none;
}

#gotoTop {
	--cnvs-gotoTop-stroke-color: var(--cnvs-themecolor);
	--cnvs-gotoTop-stroke-size: 32px;
	--cnvs-gotoTop-stroke-width: 4px;
	--cnvs-gotoTop-scroll: 260;
	background-color: transparent !important;
}

#gotoTop::before {
	content: "\f148";
	font-family: "bootstrap-icons";
	position: absolute;
	left: 50%;
	top: 50%;
	width: calc(
		var(--cnvs-gotoTop-stroke-size) +
		calc(var(--cnvs-gotoTop-stroke-width) * 0.5)
	);
	height: calc(
		var(--cnvs-gotoTop-stroke-size) +
		calc(var(--cnvs-gotoTop-stroke-width) * 0.5)
	);
	line-height: calc(var(--cnvs-gotoTop-stroke-size) - 1px);
	font-size: 1rem;
	color: var(--cnvs-contrast-900);
	transform: translate(-50%, -50%);
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	z-index: -1;
}

#gotoTop circle {
	stroke: var(--cnvs-gotoTop-stroke-color);
	stroke-width: var(--cnvs-gotoTop-stroke-width);
	transform: rotate(-90deg);
	transform-origin: center;
	stroke-dashoffset: var(--cnvs-gotoTop-scroll);
	stroke-dasharray: 255 255;
	z-index: 1;
}

.btn-close {
	font-size: 0.75rem;
}

.widget_nav_menu li a,
.widget_links li a,
.widget_meta li a,
.widget_archive li a,
.widget_recent_entries li a,
.widget_categories li a,
.widget_pages li a,
.widget_rss li a,
.widget_recent_comments li a {
	font-family: var(--cnvs-primary-font);
}

/* Testimonials */
.testimonials-carousel .owl-item {
	opacity: 0.25;
	transform: scale(0.9);
	-webkit-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.testimonials-carousel .owl-item.active.center {
	opacity: 1;
	transform: scale(1);
}

.clients {
	max-height: 50px;
}

.owl-stage-outer::before,
.owl-stage-outer::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 300px;
	height: 100%;
	z-index: 1;
	background: -moz-linear-gradient(
		left,
		rgba(249, 249, 249, 1) 52%,
		rgba(249, 249, 249, 0.06) 90%,
		rgba(249, 249, 249, 0) 100%
	);
	background: -webkit-linear-gradient(
		left,
		rgba(249, 249, 249, 1) 52%,
		rgba(249, 249, 249, 0.06) 90%,
		rgba(249, 249, 249, 0) 100%
	);
	background: linear-gradient(
		to right,
		rgba(249, 249, 249, 1) 52%,
		rgba(249, 249, 249, 0.06) 90%,
		rgba(249, 249, 249, 0) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#00f9f9f9',GradientType=1 );
}

.owl-stage-outer::after {
	left: auto;
	right: 0;
	background: -moz-linear-gradient(
		right,
		rgba(249, 249, 249, 1) 52%,
		rgba(249, 249, 249, 0.06) 90%,
		rgba(249, 249, 249, 0) 100%
	);
	background: -webkit-linear-gradient(
		right,
		rgba(249, 249, 249, 1) 52%,
		rgba(249, 249, 249, 0.06) 90%,
		rgba(249, 249, 249, 0) 100%
	);
	background: linear-gradient(
		to left,
		rgba(249, 249, 249, 1) 52%,
		rgba(249, 249, 249, 0.06) 90%,
		rgba(249, 249, 249, 0) 100%
	);
}

/*--- Services ---*/
.ins-categories .nav-link {
	padding: 20px 30px;
	color: #444;
	background-color: #f4f4f4;
	margin-top: 17px;
	font-size: 1.2em;
	border-radius: 0.25rem;
	transition: max-height 0.5s;
	max-height: 70px;
	overflow: hidden;
}

.ins-categories .nav-link:first-child {
	margin-top: 0;
}

.ins-categories .nav-link:hover {
	background-color: #e5e5e5;
}

.ins-categories .nav-link.active {
	color: #000;
	background-color: #e3eaf1;
	max-height: 200px;
}

.ins-categories .nav-link .tab-header img {
	width: 30px;
	height: 30px;
	line-height: 30px;
	margin-right: 15px;
	opacity: 0.5;
}

.ins-categories .nav-link .tab-desc {
	opacity: 0;
	transition: opacity 0.3s;
	color: #5b5855;
	font-size: 1.025rem;
	padding-left: 45px;
}

.ins-categories .nav-link.active .tab-desc {
	opacity: 1;
	transition: opacity 0.5s;
	transition-delay: 0.25s;
}

/* Story Timeline
-----------------------------------------------------------------*/
.story-timeline {
	position: relative;
	padding-top: 60px;
}

.story-timeline > .story-timeline-line {
	position: absolute;
	display: block;
	top: 0;
	left: 10px;
	bottom: 0;
	width: 5px;
	border-radius: 0 0 6px 6px;
	background-image: linear-gradient(to bottom, #ffe640 0%, #fe9603 100%);
}

.story-timeline .story-timeline-dots {
	position: absolute;
	display: block;
	top: 0;
	left: 26px;
	z-index: 1;
	width: 26px;
	height: 36px;
	margin-left: -13px;
	background-image: linear-gradient(#ffe640 0%, #fe9603 100%);
	border: 6px solid var(--cnvs-contrast-0);
	border-radius: 50%;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	transition: border-color 0.3s ease;
}

.story-timeline > .row {
	position: relative;
	padding-left: 40px;
}

.story-timeline > .row:hover .story-timeline-dots {
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	background: var(--cnvs-contrast-700);
}

/* Badge
-----------------------------------------------------------------*/
.badge {
	padding: 8px;
	font-size: 12px;
	margin-bottom: 15px;
	border-radius: 2px;
	font-weight: 500;
	line-height: 0.8;
}

.badge.badge-default {
	border: 1px solid var(--cnvs-themecolor);
	color: var(--cnvs-themecolor);
}

.page-title.parallax::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 104, 51, 1);
}

/* Top Links
-----------------------------------------------------------------*/
.heading-block > p {
	color: var(--cnvs-contrast-600);
}

@-webkit-keyframes ripple {
	from {
		opacity: 1;
		transform: scale3d(0.75, 0.75, 1);
	}

	to {
		opacity: 0;
		transform: scale3d(1.5, 1.5, 1);
	}
}

@keyframes ripple {
	from {
		opacity: 1;
		transform: scale3d(0.75, 0.75, 1);
	}

	to {
		opacity: 0;
		transform: scale3d(1.5, 1.5, 1);
	}
}

@media (min-width: 768px) {
	.swiper-slide-info {
		margin-top: var(--swiper-thumbs-height);
	}

	/* Story Timeline
	-----------------------------------------------------------------*/
	.story-timeline > .story-timeline-line {
		left: 50%;
		transform: translateX(-50%);
	}

	.story-timeline .story-timeline-dots {
		left: 50%;
		transform: translateX(-50%);
		margin-left: 0;
	}

	.story-timeline > .row {
		margin-right: -50px;
		margin-left: -50px;
		padding-left: 0;
	}

	.story-timeline > .row > .col,
	.story-timeline > .row > [class*="col-"] {
		padding-right: 50px;
		padding-left: 50px;
	}
}

/* Devices Under 991 Width */
@media (max-width: 991px) {
	.owl-stage-outer::before,
	.owl-stage-outer::after {
		display: none;
	}

	.ins-categories .nav-link {
		width: 100%;
	}
}

@media (max-width: 545px) {
	.swiper_wrapper {
		--swiper-height: 22.5rem;
	}
}

/* Upper 992px Devices */
@media (min-width: 992px) {
	.text-stretch {
		position: relative;
		width: calc(100% + 150px);
		z-index: 1;
	}

	.section-1-bg {
		background: #f5f5f5 url("images/section-1.jpg") no-repeat left bottom /
			cover;
	}

	.circle-wave {
		---circle-wave-size: calc(40px + 4vw);
	}

	.card-seo-about {
		transform: translateY(-20%);
	}
}
