body {
	font-family: "Open Sans", sans-serif;
	color: rgb(68, 68, 68);
	overflow-x: hidden;
}

a {
	color: var(--theme-color);
	text-decoration: none;
}

a:hover {
	color: var(--theme-color);
	text-decoration: none;
}

ul, li {
	list-style: none;
	padding: 0px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Raleway, sans-serif;
}

:root {
	--theme-color: #1bbd36;
}

#preloader {
	position: fixed;
	inset: 0px;
	z-index: 9999;
	overflow: hidden;
	background: rgb(255, 255, 255);
}

.container-fluid {
	width: 88%;
}

#preloader::before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border-top-color: white;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: 1s linear 0s infinite normal none running animate-preloader;
}

@keyframes animate-preloader {
	0% {
			transform: rotate(0deg);
	}

	100% {
			transform: rotate(360deg);
	}
}

.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: var(--theme-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s ease 0s;
}

.back-to-top i {
	font-size: 28px;
	color: rgb(255, 255, 255);
	line-height: 0;
}

.back-to-top:hover {
	background: var(--theme-color);
	color: rgb(255, 255, 255);
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

#header {
	background: #fff;
	transition: all 0.5s ease 0s;
	z-index: 997;
	padding: 0px;
}

#header.header-scrolled {
	padding: 0px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 15px;
}

#header .logo {
	font-size: 26px;
	margin: 0px;
	padding: 0px 27px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	/* background: rgb(255, 255, 255); */
}

#header .logo a {
	color: rgb(11, 35, 65);
}

#header .logo img {
	max-height: 59px;
	margin: 7px 0px 6px;
}

.navbar {
	padding: 0px;
}

.navbar ul {
	margin: 0px;
	padding: 0px;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
	height: 72px;
	line-height: 72px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.navbar a, .navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 0px  0px 75px;
	font-size: 18px;
	color: #666;
	white-space: nowrap;
	transition: all 0.3s ease 0s;
}

.navbar a i, .navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
	color: var(--theme-color);
	text-shadow: 1px 0px 0px rgba(255,255,255,.5);
}

.navbar .getstarted, .navbar .getstarted:focus {
	background: var(--theme-color);
	padding: 8px 0px;
	margin-left: 30px;
	color: rgb(255, 255, 255);
	height: 40px;
	width: 40px;
	justify-content: center;
	border-radius: 50%;
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
	color: rgb(255, 255, 255);
	background: var(--theme-color);
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 72px);
	margin: 0px;
	padding: 10px 0px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: rgb(255, 255, 255);
	box-shadow: rgba(127, 137, 161, 0.25) 0px 0px 30px;
	transition: all 0.3s ease 0s;
}

.navbar .dropdown ul li {
	min-width: 200px;
	height: 44px;
	line-height: 44px;
}

.navbar .dropdown ul a {
	padding: 0px 20px;
	text-transform: none;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
	color: var(--theme-color);
}

.navbar .dropdown:hover > ul {
	opacity: 1;
	top: 72px;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0px;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0px;
	left: 100%;
	visibility: visible;
}
.navbar li.dropdown li a {
	color: #666;
}
@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
			left: -90%;
	}

	.navbar .dropdown .dropdown:hover > ul {
			left: -100%;
	}

	.why-us .content {
			padding: 60px 0px 0px 10px !important;
	}
}

.mobile-nav-toggle {
	color: rgb(11, 35, 65);
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: all 0.5s ease 0s;
}

.mobile-nav-toggle.bi-x {
	color: rgb(255, 255, 255);
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
			display: block;
			color: #666;
	}

	.navbar ul {
			display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	inset: 0px;
	background: rgba(4, 12, 21, 0.9);
	transition: all 0.3s ease 0s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	inset: 55px 15px 15px;
	padding: 10px 0px;
	background-color: rgb(255, 255, 255);
	overflow-y: auto;
	transition: all 0.3s ease 0s;
}

.navbar-mobile a, .navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: rgb(11, 35, 65);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
	color: var(--theme-color);
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0px;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: rgb(255, 255, 255);
	box-shadow: rgba(127, 137, 161, 0.25) 0px 0px 30px;
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
	color: var(--theme-color);
}

.navbar-mobile .dropdown > .dropdown-active {
	display: block;
}

.navbar-mobile li {
    display: block;
    height: auto;
}
.navbar-mobile li a {
    padding-top: 0;
    padding-bottom:0;
    height: 45px;
    line-height: 45px;
}
#hero {
	width: 100%;
	height: calc(100vh - 72px);
	overflow: hidden;
	position: relative;
	margin-top: 72px;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
	position: absolute;
	top: 0px;
	right: 0;
	left: 0;
	bottom: 0;
}

#hero .carousel-item {
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

#hero .carousel-container {
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	right: 50px;
	left: 50px;
	bottom: 0;
}

#hero h2 {
	color: rgb(255, 255, 255);
	margin: 0px;
	font-size: 48px;
	font-weight: 700;
	text-shadow: -1px 1px 3px rgba(0,0,0,1);
	text-align: center;
}

#hero p {
	margin-left: auto;
	margin-right: auto;
	animation-delay: 0.4s;
	color: rgb(255, 255, 255);
	margin-top: 18px;
	font-size: 22px;
	line-height: 1.7;
	text-align: center;
	text-shadow: rgba(0, 0, 0, 0.7) 1px 0px 3px;
}

@media (min-width: 1200px) {
	#hero p {
			width: 50%;
	}
}

#hero .carousel-inner .carousel-item {
	transition-property: opacity;
	background-position: center top;
}

#hero .carousel-inner .carousel-item, #hero .carousel-inner .active.carousel-item-start, #hero .carousel-inner .active.carousel-item-end {
	opacity: 0;
}

#hero .carousel-inner .active, #hero .carousel-inner .carousel-item-next.carousel-item-start, #hero .carousel-inner .carousel-item-prev.carousel-item-end {
	opacity: 1;
	transition: all 0.5s ease 0s;
}

#hero .carousel-inner .carousel-item-next, #hero .carousel-inner .carousel-item-prev, #hero .carousel-inner .active.carousel-item-start, #hero .carousel-inner .active.carousel-item-end {
	left: 0px;
	transform: translate3d(0px, 0px, 0px);
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
	font-size: 30px;
	line-height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	transition: all 0.3s ease 0s;
	color: rgba(255, 255, 255, 0.5);
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
	background: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
	list-style-type: none;
	cursor: pointer;
	background: rgb(255, 255, 255);
	overflow: hidden;
	border: 0px;
	width: 12px;
	height: 12px;
	border-radius: 50px;
	opacity: 0.6;
	transition: all 0.3s ease 0s;
}

#hero .carousel-indicators li.active {
	opacity: 1;
	background: var(--theme-color);
}

#hero .btn-get-started {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 14px 32px;
	border-radius: 4px;
	transition: all 0.5s ease 0s;
	line-height: 1;
	color: rgb(255, 255, 255);
	animation-delay: 0.8s;
	background: var(--theme-color);
	margin-top: 15px;
}

#hero .btn-get-started:hover {
	background: var(--theme-color);
}

@media (max-width: 992px) {
	#hero {
			height: 84vw;
	}

	#hero p {
			font-size: 15px;
			margin: 8px 0px;
	}

	#hero .btn-get-started {
			margin-top: 0px;
	}

	#hero .carousel-container {
			text-align: center;
			top: 74px;
	}
}

@media (max-width: 768px) {
	#hero h2 {
			font-size: 28px;
	}

	.container-fluid {
			width: 100% !important;
	}

	.category .cateogry-item {
			margin-bottom: 10px;
	}

	.why-us .video-box {
			min-height: 300px !important;
			background-size: contain !important;
	}
}

@media (min-width: 1024px) {
	#hero .carousel-control-prev, #hero .carousel-control-next {
			width: 5%;
	}
}

@media (max-height: 500px) {
	#hero {
			height: 120vh;
	}
}

.main {
}

section {
	padding: 60px 0px;
}

.section-bg {
	background-color: rgb(246, 249, 253);
}

.section-title {
	padding-bottom: 40px;
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0px;
	line-height: 1px;
	margin: 0px 0px 5px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgb(170, 170, 170);
	font-family: Poppins, sans-serif;
}

.section-title h2::after {
	content: "";
	width: 120px;
	height: 1px;
	display: inline-block;
	background: rgb(243, 139, 116);
	margin: 4px 10px;
}

.section-title p {
	margin: 0px;
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: Poppins, sans-serif;
	color: rgb(15, 47, 87);
}

.search-wrap h2 a {
	font-size: 24px;
	color: rgb(51, 51, 51);
	font-weight: normal;
}

.search-wrap h2 + p {
	color: var(--theme-color);
}

.search-wrap .search {
	width: 100%;
	max-width: 496px;
	margin: 0px auto;
	display: flex;
	border: 1px solid rgb(207, 207, 207);
	height: 50px;
}

.search-wrap input {
	flex: 1 1 0%;
	outline: none;
	border: none;
	padding: 0px 10px;
}

.search-wrap .search-btn {
	outline: none;
	background-color: transparent;
	border: none;
	width: 50px;
	height: 50px;
	cursor: pointer;
}

.category {
	display: flex;
}

.category .cateogry-item {
	padding: 0px 2px;
}

.category .cateogry-item a {
	padding: 20px 10px;
	background-color: var(--theme-color);
	border-radius: 8px;
	display: flex;
	width: 100%;
	color: rgb(255, 255, 255);
	justify-content: space-between;
}

.advantage .a-box {
	text-align: center;
	border-right: 1px solid rgb(236, 236, 236);
	padding: 0px 30px;
}

.advantage .a-box .a-title {
	font-size: 16px;
	margin: 14px 0px 10px;
	font-weight: bold;
}

.advantage .a-box .a-content {
	font-size: 14px;
	margin: 0px;
}




.about .content h3 {
	font-weight: 600;
	font-size: 26px;
}

.about .content ul {
	list-style: none;
	padding: 0px;
}

.about .content ul li {
	padding-left: 28px;
	position: relative;
}

.about .content ul li + li {
	margin-top: 10px;
}

.about .content ul i {
	position: absolute;
	left: 0px;
	top: 2px;
	font-size: 20px;
	color: var(--theme-color);
	line-height: 1;
}

.about .content p:last-child {
	margin-bottom: 0px;
}

.about .content .btn-learn-more {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 5px;
	transition: all 0.3s ease 0s;
	line-height: 1;
	color: var(--theme-color);
	animation-delay: 0.8s;
	margin-top: 6px;
	border: 2px solid var(--theme-color);
}

.about .content .btn-learn-more:hover {
	background: var(--theme-color);
	color: rgb(255, 255, 255);
	text-decoration: none;
}

.counts {
	padding-top: 0px;
}

.counts .count-box {
	box-shadow: rgba(0, 0, 0, 0.1) -10px -5px 40px 0px;
	padding: 30px;
	width: 100%;
}

.counts .count-box i {
	display: block;
	font-size: 30px;
	color: var(--theme-color);
	float: left;
}

.counts .count-box span {
	font-size: 42px;
	line-height: 24px;
	display: block;
	font-weight: 700;
	color: rgb(11, 35, 65);
	margin-left: 50px;
}

.counts .count-box p {
	padding: 30px 0px 0px;
	margin: 0px;
	font-family: Raleway, sans-serif;
	font-size: 14px;
}

.counts .count-box a {
	font-weight: 600;
	display: block;
	margin-top: 20px;
	color: rgb(22, 70, 130);
	font-size: 15px;
	font-family: Poppins, sans-serif;
	transition: all 0.3s ease-in-out 0s;
}

.counts .count-box a:hover {
	color: rgb(33, 105, 196);
}

.why-us {
	padding: 0px;
	overflow: hidden;
}

.why-us .content {
	padding: 60px 100px 0px;
}

.why-us .content h3 {
	font-size: 34px;
	color: var(--theme-color);
	margin-bottom: 20px;
	font-weight: normal;
}

.why-us .content h4 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 5px;
}

.why-us .content p {
	font-size: 16px;
	color: rgb(132, 132, 132);
	line-height: 2;
	margin-bottom: 20px;
}

.why-us .content p .btn {
	font-size: 14px;
	display: inline-flex;
	border: 1px solid var(--theme-color);
	border-radius: 35px;
	height: 35px;
	align-items: center;
	color: var(--theme-color);
}

.why-us .video-box {
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 35vw;
	position: relative;
	background-position: center bottom;
}

.why-us .accordion-list {
	padding: 0px 100px 60px;
}

.why-us .accordion-list ul {
	padding: 0px;
	list-style: none;
}

.why-us .accordion-list li + li {
	margin-top: 15px;
}

.why-us .accordion-list li {
	padding: 20px;
	background: rgb(255, 255, 255);
	border-radius: 4px;
}

.why-us .accordion-list a {
	display: block;
	position: relative;
	font-family: Poppins, sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	padding-right: 30px;
	outline: none;
	color: rgb(11, 35, 65);
	cursor: pointer;
}

.why-us .accordion-list span {
	color: var(--theme-color);
	font-weight: 600;
	font-size: 18px;
	padding-right: 10px;
}

.why-us .accordion-list i {
	font-size: 24px;
	position: absolute;
	right: 0px;
	top: 0px;
}

.why-us .accordion-list p {
	margin-bottom: 0px;
	padding: 10px 0px 0px;
}

.why-us .accordion-list .icon-show {
	display: none;
}

.why-us .accordion-list a.collapsed {
	color: rgb(11, 35, 65);
}

.why-us .accordion-list a.collapsed:hover {
	color: var(--theme-color);
}

.why-us .accordion-list a.collapsed .icon-show {
	display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
	display: none;
}

.why-us .play-btn {
	width: 94px;
	height: 94px;
	background: radial-gradient(var(--theme-color) 50%, rgba(237, 80, 46, 0.4) 52%);
	border-radius: 50%;
	display: block;
	position: absolute;
	left: calc(50% - 47px);
	top: calc(50% - 47px);
	overflow: hidden;
}

.why-us .play-btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0px;
	height: 0px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid rgb(255, 255, 255);
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.why-us .play-btn::before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	animation: 2s ease 0s infinite normal none running pulsate-btn;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(237, 80, 46, 0.7);
	top: -15%;
	left: -15%;
	background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
	border-left: 15px solid var(--theme-color);
	transform: scale(20);
}

.why-us .play-btn:hover::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0px;
	height: 0px;
	border-right: none;
	border-image: initial;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid rgb(255, 255, 255);
	z-index: 200;
	animation: auto ease 0s 1 normal none running none;
	border-radius: 0px;
}

@media (max-width: 1024px) {
	.why-us .content, .why-us .accordion-list {
			padding-left: 0px;
			padding-right: 0px;
	}
}

@media (max-width: 992px) {
	.why-us .content {
			padding-top: 30px;
	}

	.why-us .accordion-list {
			padding-bottom: 30px;
	}
}

@keyframes pulsate-btn {
	0% {
			transform: scale(0.6, 0.6);
			opacity: 1;
	}

	100% {
			transform: scale(1, 1);
			opacity: 0;
	}
}

.services .icon-box {
	text-align: center;
	background: rgb(254, 254, 254);
	box-shadow: rgba(110, 123, 131, 0.1) 0px 5px 90px 0px;
	padding: 80px 20px;
	transition: all 0.3s ease-in-out 0s;
}

.services .icon-box .icon {
	margin: 0px auto 20px;
	width: 64px;
	height: 64px;
	background: var(--theme-color);
	border-radius: 5px;
	transition: all 0.3s ease-out 0s;
	display: flex;
	align-items: center;
	justify-content: center;
	transform-style: preserve-3d;
	position: relative;
	z-index: 2;
}

.services .icon-box .icon i {
	color: rgb(255, 255, 255);
	font-size: 28px;
}

.services .icon-box .icon::before {
	position: absolute;
	content: "";
	left: -8px;
	top: -8px;
	height: 100%;
	width: 100%;
	background: rgb(249, 198, 187);
	border-radius: 5px;
	transition: all 0.3s ease-out 0s;
	transform: translateZ(-1px);
	z-index: 1;
}

.services .icon-box h4 {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 24px;
}

.services .icon-box h4 a {
	color: rgb(11, 35, 65);
}

.services .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0px;
}

.services .icon-box:hover {
	background: var(--theme-color);
	border-color: var(--theme-color);
}

.services .icon-box:hover .icon {
	background: rgb(255, 255, 255);
}

.services .icon-box:hover .icon i {
	color: var(--theme-color);
}

.services .icon-box:hover .icon::before {
	background: rgb(241, 119, 93);
}

.services .icon-box:hover h4 a, .services .icon-box:hover p {
	color: rgb(255, 255, 255);
}

.testimonials .testimonial-wrap {
	padding-left: 50px;
}

.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .testimonial-item {
	box-sizing: content-box;
	padding: 30px 30px 30px 60px;
	margin: 30px 15px;
	min-height: 200px;
	box-shadow: rgba(11, 35, 65, 0.1) 0px 0px 20px 0px;
	position: relative;
	background: rgb(255, 255, 255);
}

.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 10px;
	border: 6px solid rgb(255, 255, 255);
	position: absolute;
	left: -45px;
}

.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0px 5px;
	color: rgb(17, 17, 17);
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: rgb(153, 153, 153);
	margin: 0px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
	color: rgb(253, 237, 234);
	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: 15px auto;
}

.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgb(255, 255, 255);
	opacity: 1;
	border: 1px solid var(--theme-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--theme-color);
}

.cta {
	padding: 80px 0px;
	background: rgb(11, 35, 65);
}

.cta h3 {
	color: rgb(255, 255, 255);
	font-size: 28px;
	font-weight: 700;
}

.cta p {
	color: rgb(255, 255, 255);
}

.cta .cta-btn {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 35px;
	border-radius: 4px;
	transition: all 0.5s ease 0s;
	margin-top: 10px;
	border: 2px solid var(--theme-color);
	color: rgb(255, 255, 255);
}

.cta .cta-btn:hover {
	background: var(--theme-color);
	border: 2px solid var(--theme-color);
}

.portfolio #portfolio-flters {
	padding: 0px;
	margin: 0px auto 25px;
	list-style: none;
	text-align: center;
	border-radius: 50px;
}

.portfolio #portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 10px 15px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: rgb(11, 35, 65);
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out 0s;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
	color: var(--theme-color);
}

.portfolio #portfolio-flters li:last-child {
	margin-right: 0px;
}

.portfolio .portfolio-item {
	margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
	opacity: 0;
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 0px;
	z-index: 3;
	transition: all 0.3s ease-in-out 0s;
	background: rgba(255, 255, 255, 0.9);
	padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
	font-size: 18px;
	font-weight: 600;
	color: rgb(11, 35, 65);
}

.portfolio .portfolio-item .portfolio-info p {
	color: rgb(26, 82, 152);
	font-size: 14px;
	margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
	position: absolute;
	right: 40px;
	font-size: 24px;
	top: calc(50% - 18px);
	color: rgb(18, 58, 109);
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
	color: var(--theme-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
	right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
	opacity: 0;
	left: 0px;
	right: 0px;
	text-align: center;
	z-index: 3;
	position: absolute;
	transition: all 0.3s ease-in-out 0s;
}

.portfolio .portfolio-item .portfolio-links a {
	color: rgb(255, 255, 255);
	margin: 0px 2px;
	font-size: 28px;
	display: inline-block;
	transition: all 0.3s ease 0s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
	color: rgb(245, 159, 140);
}

.portfolio .portfolio-item:hover .portfolio-info {
	opacity: 1;
	bottom: 20px;
}

.portfolio-details {
	padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
	width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgb(255, 255, 255);
	opacity: 1;
	border: 1px solid var(--theme-color);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--theme-color);
}

.portfolio-details .portfolio-info {
	padding: 30px;
	box-shadow: rgba(11, 35, 65, 0.08) 0px 0px 30px;
}

.portfolio-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgb(238, 238, 238);
}

.portfolio-details .portfolio-info ul {
	list-style: none;
	padding: 0px;
	font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
	margin-top: 10px;
}

.portfolio-details .portfolio-description {
	padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
	padding: 0px;
}

.team .member {
	text-align: center;
	margin-bottom: 20px;
	background: rgb(52, 58, 64);
	position: relative;
	overflow: hidden;
}

.team .member .member-info {
	opacity: 0;
	position: absolute;
	inset: 0px;
	transition: all 0.2s ease 0s;
}

.team .member .member-info-content {
	position: absolute;
	left: 50px;
	right: 0px;
	bottom: 0px;
	transition: bottom 0.4s ease 0s;
}

.team .member .member-info-content h4 {
	font-weight: 700;
	margin-bottom: 2px;
	font-size: 18px;
	color: rgb(255, 255, 255);
}

.team .member .member-info-content span {
	font-style: italic;
	display: block;
	font-size: 13px;
	color: rgb(255, 255, 255);
}

.team .member .social {
	position: absolute;
	left: -50px;
	top: 0px;
	bottom: 0px;
	width: 50px;
	transition: left 0.3s ease-in-out 0s;
	background: rgba(11, 35, 65, 0.5);
	text-align: center;
}

.team .member .social a {
	transition: color 0.3s ease 0s;
	display: block;
	color: rgb(255, 255, 255);
	margin-top: 15px;
}

.team .member .social a:hover {
	color: var(--theme-color);
}

.team .member .social i {
	font-size: 18px;
	margin: 0px 2px;
}

.team .member:hover .member-info {
	background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
	opacity: 1;
	transition: all 0.4s ease 0s;
}

.team .member:hover .member-info-content {
	bottom: 30px;
	transition: bottom 0.4s ease 0s;
}

.team .member:hover .social {
	left: 0px;
	transition: left 0.3s ease-in-out 0s;
}

.pricing .row {
	padding-top: 40px;
}

.pricing .box {
	padding: 80px 40px;
	margin-bottom: 30px;
	box-shadow: rgba(110, 123, 131, 0.1) 0px 5px 90px 0px;
	background: rgb(255, 255, 255);
	text-align: center;
}

.pricing h3 {
	font-weight: 300;
	margin-bottom: 15px;
	font-size: 28px;
}

.pricing h4 {
	font-size: 46px;
	color: rgb(11, 35, 65);
	font-weight: 400;
	font-family: "Open Sans", sans-serif;
	margin-bottom: 25px;
}

.pricing h4 span {
	color: rgb(186, 186, 186);
	font-size: 18px;
	display: block;
}

.pricing ul {
	padding: 0px;
	list-style: none;
	color: rgb(153, 153, 153);
	text-align: left;
	line-height: 20px;
}

.pricing ul li {
	padding-bottom: 12px;
}

.pricing ul i {
	color: var(--theme-color);
	font-size: 18px;
	padding-right: 4px;
}

.pricing ul .na {
	color: rgb(204, 204, 204);
}

.pricing ul .na i {
	color: rgb(204, 204, 204);
}

.pricing ul .na span {
	text-decoration: line-through;
}

.pricing .get-started-btn {
	display: inline-block;
	padding: 10px 40px 11px;
	border-radius: 4px;
	color: rgb(11, 35, 65);
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease 0s;
	border: 2px solid rgb(11, 35, 65);
	background: rgb(255, 255, 255);
}

.pricing .get-started-btn:hover {
	background: rgb(11, 35, 65);
	color: rgb(255, 255, 255);
}

.pricing .featured {
	z-index: 10;
	padding: 100px 40px;
	border: 4px solid var(--theme-color);
}

.pricing .featured .get-started-btn {
	background: var(--theme-color);
	color: rgb(255, 255, 255);
	border-color: var(--theme-color);
}

.pricing .featured .get-started-btn:hover {
	background: var(--theme-color);
}

@media (max-width: 992px) {
	.pricing .box {
			max-width: 60%;
			margin: 0px auto 30px;
	}
}

@media (max-width: 767px) {
	.pricing .box {
			max-width: 80%;
			margin: 0px auto 30px;
	}
}

@media (max-width: 420px) {
	.pricing .box {
			max-width: 100%;
			margin: 0px auto 30px;
	}
}

.faq .faq-item {
	margin: 20px 0px;
	padding: 20px 0px;
	border-bottom: 1px solid rgb(233, 241, 251);
}

.faq .faq-item i {
	color: rgb(102, 158, 229);
	font-size: 20px;
	float: left;
	line-height: 0;
	padding: 13px 0px 0px;
	margin: 0px;
}

.faq .faq-item h4 {
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	margin: 0px 0px 10px 28px;
	font-family: Poppins, sans-serif;
}

.faq .faq-item p {
	font-size: 15px;
}

.contact .info-box {
	color: rgb(11, 35, 65);
	text-align: center;
	box-shadow: rgba(214, 215, 216, 0.6) 0px 0px 30px;
	padding: 20px 0px 30px;
	background: rgb(255, 255, 255);
}

.contact .info-box i {
	font-size: 32px;
	color: var(--theme-color);
	border-radius: 50%;
	padding: 8px;
	border: 2px dotted rgb(251, 218, 210);
}

.contact .info-box h3 {
	font-size: 20px;
	color: rgb(119, 119, 119);
	font-weight: 700;
	margin: 10px 0px;
}

.contact .info-box p {
	padding: 0px;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0px;
}

.contact .php-email-form {
	box-shadow: rgba(214, 215, 216, 0.6) 0px 0px 30px;
	padding: 30px;
	background: rgb(255, 255, 255);
}

.contact .php-email-form .error-message {
	display: none;
	color: rgb(255, 255, 255);
	background: rgb(237, 60, 13);
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message br + br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: rgb(255, 255, 255);
	background: rgb(24, 210, 110);
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: rgb(255, 255, 255);
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading::before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0px 10px -6px 0px;
	border-width: 3px;
	border-style: solid;
	border-color: rgb(238, 238, 238) rgb(24, 210, 110) rgb(24, 210, 110);
	border-image: initial;
	animation: 1s linear 0s infinite normal none running animate-loading;
}

.contact .php-email-form input, .contact .php-email-form textarea {
	box-shadow: none;
	font-size: 14px;
	border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
	border-color: var(--theme-color);
}

.contact .php-email-form input {
	padding: 10px 15px;
}

.contact .php-email-form textarea {
	padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
	background: var(--theme-color);
	border: 0px;
	padding: 10px 30px;
	border-radius: 4px;
	color: rgb(255, 255, 255);
	transition: all 0.4s ease 0s;
}

.contact .php-email-form button[type="submit"]:hover {
	background: var(--theme-color);
}

@keyframes animate-loading {
	0% {
			transform: rotate(0deg);
	}

	100% {
			transform: rotate(360deg);
	}
}

.breadcrumbs {
	padding: 15px 0px;
	background: rgb(246, 249, 253);
	min-height: 40px;
	margin-top: 82px;
}

@media (max-width: 992px) {
	.breadcrumbs {
			margin-top: 74px;
	}
}

.breadcrumbs h2 {
	font-size: 28px;
	font-weight: 600;
	color: rgb(11, 35, 65);
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0px 0px 10px;
	margin: 0px;
	font-size: 14px;
}

.breadcrumbs ol li + li {
	padding-left: 10px;
}

.breadcrumbs ol li + li::before {
	display: inline-block;
	padding-right: 10px;
	color: rgb(18, 58, 109);
	content: "/";
}

#footer {
	background: rgb(42, 44, 48);
	padding: 0px 0px 30px;
	color: rgb(255, 255, 255);
	font-size: 14px;
}

#footer .footer-top {
	padding: 60px 0px 30px;
}

#footer .footer-top .footer-info {
	margin-bottom: 15px;
	background: rgb(255, 255, 255);
	border-top: 4px solid var(--theme-color);
	text-align: center;
	padding: 22px 20px;
}

#footer .footer-top .footer-info img {
	width: 160px;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0px;
	color: rgb(51, 51, 51);
	font-family: Raleway, sans-serif;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	color: rgb(255, 255, 255);
	line-height: 1;
	padding: 8px 0px;
	margin-right: 4px;
	border-radius: 4px;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: all 0.3s ease 0s;
	background: rgb(10, 30, 56);
}

#footer .footer-top .social-links a:hover {
	color: rgb(255, 255, 255);
	background: var(--theme-color);
	text-decoration: none;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: rgb(255, 255, 255);
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: var(--theme-color);
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0px;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0px;
}

#footer .footer-top .footer-links ul a {
	color: rgb(255, 255, 255);
	transition: all 0.3s ease 0s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	color: var(--theme-color);
}

#footer .footer-top .footer-newsletter form {
	margin-top: 30px;
	background: rgb(255, 255, 255);
	padding: 6px 10px;
	position: relative;
	border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
	border: 0px;
	padding: 4px;
	width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: 0px;
	right: -2px;
	bottom: 0px;
	border: 0px;
	font-size: 16px;
	padding: 0px 20px 2px;
	background: var(--theme-color);
	color: rgb(255, 255, 255);
	transition: all 0.3s ease 0s;
	border-radius: 0px 4px 4px 0px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
	background: var(--theme-color);
}

#footer .copyright {
	border-top: 1px solid rgb(15, 47, 87);
	text-align: center;
	padding-top: 30px;
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: rgb(255, 255, 255);
}

@media (max-width: 575px) {
	#footer .footer-top .footer-info {
			margin: -20px 0px 30px;
	}
}
