html {
	font-size: 17px
}
body {
	font-family: "Open Sans", sans-serif;
	color: #444444;
}
a {
	color: #73d414;
	text-decoration: none;
}
a:hover {
	color: #007aff;
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Raleway", sans-serif;
}
h4 {
	font-size: 20px;
	font-weight: bold;
}
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}
#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #73d414;
	border-top-color: white;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}
@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: #73d414;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}
.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}
.back-to-top:hover {
	background: #ff9f86;
	color: #fff;
}
.back-to-top.active {
	visibility: visible;
	opacity: 1;
}
#header {
	background: rgba(0, 0, 0, 0.9);
	transition: all 0.5s;
	z-index: 997;
	position: relative;
	height: 70px;
}
@media (max-width: 992px) {
#header {
	height: 60px;
}
}
#header.fixed-top,
#header.header-inner-pages {
	background: rgba(21, 5, 23, 0.9);
}
#header.fixed-top {
	position: fixed;
}
.logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.logo a {
	color: #fff;
}
.logo a span {
	color: #73d414;
}
#header .logo img {
    max-height: 160px;
    margin-top: 0px;
}
@media (max-width: 991px) {
#header .logo img {
    max-height: 110px;
    margin-top: 0px;
}
}
.scrolled-offset {
	margin-top: 70px;
}
@media (max-width: 991px) {
.scrolled-offset {
	margin-top: 60px;
}
}
.header-social-links {
	padding-left: 20px;
}
.header-social-links a {
	color: rgba(255, 255, 255, 0.6);
	margin-left: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}
.header-social-links a i {
	line-height: 0;
}
.header-social-links a:hover {
	color: #fff;
}
@media (max-width: 768px) {
.header-social-links {
	padding: 0 15px 0 0;
}
}
.navbar {
	padding: 0;
}
.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}
.navbar li {
	position: relative;
}
.navbar>ul>li {
	white-space: nowrap;
	padding: 10px 12px;
}
.navbar a, .navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 3px;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	transition: 0.3s;
	color: white;
	position: relative;
}
.navbar a i, .navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}
.navbar>ul>li>a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -7px;
	left: 0;
	background-color: #73d414;
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover>a:before, .navbar .active:before {
	visibility: visible;
	width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
	color: #fff;
}
.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 12px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}
.navbar .dropdown ul li {
	min-width: 200px;
}
.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	font-weight: 500;
	color: #150517;
}
.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: #73d414;
}
.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}
.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}
@media (max-width: 1366px) {
.navbar .dropdown .dropdown ul {
	left: -90%;
}
.navbar .dropdown .dropdown:hover>ul {
	left: -100%;
}
}
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}
@media (max-width: 991px) {
.mobile-nav-toggle {
	display: block;
}
.navbar ul {
	display: none;
}
}
.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	transition: 0.3s;
	z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}
.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #150517;
}
.navbar-mobile>ul>li {
	padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover>a:before, .navbar-mobile .active:before {
	visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
	color: #73d414;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
	margin: 15px;
}
.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.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: #73d414;
}
.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}
.hero {
	padding: 0;
	overflow: hidden;
	position: relative;
}
.hero .hero-container {
	position: relative;
	min-height: 90.3vh;
	display: flex;
	align-items: center;
	padding: 80px 0 80px 0;
}
.hero .hero-container .video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.hero .hero-container .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.4);
	z-index: 2;
}
.hero .hero-container .container {
	z-index: 3;
}
.hero .hero-container .hero-content {
	padding-right: 30px;
}
.hero .hero-container .hero-content h1 {
	font-size: 3.7rem;
	font-weight: 800;
	line-height: 1.2;
	color: white;
}
@media (max-width: 992px) {
.hero .hero-container .hero-content h1 {
	font-size: 2.5rem;
	color: white;
}
}
@media (max-width: 576px) {
.hero .hero-container .hero-content h1 {
	font-size: 2rem;
	text-align: center;
}
}
.hero .hero-container .hero-content p {
	font-size: 1.4rem;
	margin-bottom: 35px;
	color: white;
}
@media (max-width: 576px) {
.hero .hero-container .hero-content p {
	font-size: 1.1rem;
	text-align: center;
}
}
.hero .hero-container .hero-content .cta-buttons {
	display: flex;
	gap: 15px;
}
@media (max-width: 576px) {
.hero .hero-container .hero-content .cta-buttons {
	flex-direction: column;
	align-items: center;
}
}
.hero .hero-container .hero-content .cta-buttons a {
	padding: 14px 30px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.5px;
	display: inline-block;
	transition: all 0.3s ease;
	text-align: center;
}
@media (max-width: 576px) {
.hero .hero-container .hero-content .cta-buttons a {
	width: 100%;
	max-width: 240px;
}
}
.hero .hero-container .hero-content .cta-buttons .btn-primary {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	border: 2px solid var(--accent-color);
}
.hero .hero-container .hero-content .cta-buttons .btn-primary:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
	transform: translateY(-3px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.hero .hero-container .hero-content .cta-buttons .btn-secondary {
	background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
	color: var(--default-color);
	border: 2px solid var(--surface-color);
}
.hero .hero-container .hero-content .cta-buttons .btn-secondary:hover {
	background-color: var(--surface-color);
	transform: translateY(-3px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
.hero .hero-container .hero-content {
	padding-right: 0;
	margin-bottom: 40px;
}
}
.hero .hero-container .stats-card {
	background-color: color-mix(in srgb, var(--surface-color), transparent 95%);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.hero .hero-container .stats-card .stats-header {
	text-align: center;
	margin-bottom: 25px;
}
.hero .hero-container .stats-card .stats-header h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
}
.hero .hero-container .stats-card .stats-header .decoration-line {
	height: 3px;
	width: 70px;
	background-color: var(--accent-color);
	margin: 0 auto;
}
.hero .hero-container .stats-card .stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}
.hero .hero-container .stats-card .stats-grid .stat-item {
	display: flex;
	align-items: center;
}
.hero .hero-container .stats-card .stats-grid .stat-item .stat-icon {
	font-size: 1.8rem;
	height: 55px;
	width: 55px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--contrast-color);
	background-color: var(--accent-color);
	margin-right: 12px;
	flex-shrink: 0;
}
.hero .hero-container .stats-card .stats-grid .stat-item .stat-content h4 {
	font-size: 1.6rem;
	font-weight: 800;
	margin: 0;
	line-height: 1;
}
.hero .hero-container .stats-card .stats-grid .stat-item .stat-content p {
	opacity: 0.8;
	margin: 5px 0 0 0;
	font-size: 0.9rem;
}
@media (max-width: 576px) {
.hero .hero-container .stats-card .stats-grid {
	grid-template-columns: 1fr;
	gap: 20px;
}
}
@media (max-width: 992px) {
.hero .hero-container {
	text-align: center;
}
}
.hero .event-ticker {
	background-color: var(--accent-color);
	padding: 25px 0;
	color: var(--contrast-color);
}
.hero .event-ticker .ticker-item {
	display: flex;
	align-items: center;
}
.hero .event-ticker .ticker-item .date {
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 700;
	margin-right: 10px;
	border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
}
.hero .event-ticker .ticker-item .title {
	margin-right: 15px;
	font-size: 0.95rem;
}
.hero .event-ticker .ticker-item .btn-register {
	background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
	color: var(--contrast-color);
	padding: 5px 12px;
	border-radius: 4px;
	font-size: 0.8rem;
	transition: all 0.3s ease;
}
.hero .event-ticker .ticker-item .btn-register:hover {
	background-color: var(--contrast-color);
	color: var(--accent-color);
}
.btn-vidim-rukama {
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 35px;
	border-radius: 50px;
	transition: 0.4s;
	margin: 30px 5px 0 5px;
	border: 2px solid #fff;
	color: #fff;
}
.btn-vidim-rukama:hover {
	background: #73d414;
	border: 2px solid #73d414;
	color: #fff;
}
.btn-vidim-rukama-inv {
	background: #73d414;
	border: 2px solid #73d414;
	color: #fff;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 35px;
	border-radius: 50px;
	transition: 0.4s;
}
.btn-vidim-rukama-inv:hover {
	background: #fff;
	border: 2px solid #73d414;
	color: #73d414;
}
section, .section {
	padding: 40px 0;
	overflow: hidden;
}
.section-bg {
	background-color: #fcfcfc;
}
.section-title {
	text-align: center;
	padding-bottom: 30px;
}
.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}
.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: #73d414;
	bottom: 0;
	left: calc(50% - 25px);
}
h3 {
	color: #73d414;
	font-weight: bold;
}
.about .content h3 {
	font-weight: bold;
	font-size: 36px;
	margin-bottom: 20px;
}
.about .content ul {
	list-style: none;
	padding: 0;
}
.about .content ul li {
	padding-left: 28px;
	position: relative;
}
.about .content ul li+li {
	margin-top: 10px;
}
.about .content ul i {
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 20px;
	color: #73d414;
	line-height: 1;
}
.about .content p:last-child {
	margin-bottom: 0;
}
.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: 0.3s;
	line-height: 1;
	color: #73d414;
	animation-delay: 0.8s;
	margin-top: 6px;
	border: 2px solid #73d414;
}
.about .content .btn-learn-more:hover {
	background: #73d414;
	color: #fff;
	text-decoration: none;
}
/*--------------------------------------------------------------# Counts--------------------------------------------------------------*/
.counts {
	padding: 0;
}
.counts .counters span {
	font-size: 48px;
	display: block;
	color: #73d414;
}
.counts .counters p {
	padding: 0;
	margin: 0 0 20px 0;
	font-family: "Raleway", sans-serif;
	font-size: 14px;
}
/*--------------------------------------------------------------# Our Values--------------------------------------------------------------*/
.sara-vybaveni .card {
	border: 0;
	padding: 160px 20px 20px 20px;
	margin-bottom: 20px;
	position: relative;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.sara-vybaveni .card-body {
	z-index: 10;
	background: rgba(0, 0, 0, 0.5);
	padding: 15px 30px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
	transition: 0.3s;
	transition: ease-in-out 0.4s;
	border-radius: 5px;
	margin-bottom: 20px;
}
.sara-vybaveni .card-title {
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
}
.sara-vybaveni .card-title {
	color: #fff;
}
.sara-vybaveni .card-text {
	color: #fff;
}
.sara-vybaveni .card:hover .card-body {
	background: #73d414;
}
.sara-vybaveni .card:hover .read-more a, .sara-vybaveni .card:hover .card-title, .sara-vybaveni .card:hover .card-title a, .sara-vybaveni .card:hover .card-text {
	color: #fff;
}
.v1 {
	background-image: url("../img/historie/puvodni.webp")
}
.v2 {
	background-image: url("../img/historie/obnova.webp")
}
.v3 {
	background-image: url("../img/historie/mapa.webp")
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
	overflow: hidden;
}
.testimonials .testimonial-item {
	box-sizing: content-box;
	min-height: 210px;
	box-shadow: 0 0 10px rgba(0,0,0,.15);
	border-radius: 10px;
	margin: 5px
}
.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50%;
	margin: -40px 0 0 40px;
	position: relative;
	z-index: 2;
	border: 6px solid #fff;
}
.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 25px;
	color: #111;
}
.testimonials .testimonial-item span {
	margin: 40px 25px 20px 0;
	text-align: right;
	display: block;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
	color: #73d414;
	font-size: 1.2em;
}
.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;
	background: #fff;
	position: relative;
	border-radius: 6px;
	position: relative;
	z-index: 1;
	text-align: justify;
	min-height: 117px;
}
.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid #73d414;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #73d414;
}
.testimonials i {
	color: gold;
	font-size: 1.5em;
}
.cta {
	width: 100%;
	background: url("../../img/back.webp") center center;
	background-size: cover;
	position: relative;
	padding: 60px 0;
}
.cta h3 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
}
.cta p {
	color: #fff;
}
.cta .cta-btn {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 35px;
	border-radius: 4px;
	transition: 0.5s;
	margin-top: 10px;
	border: 2px solid #fff;
	color: #fff;
	background: transparent;
}
.cta .cta-btn:hover {
	background: #73d414;
	border: 2px solid #73d414;
}
.dn {
	display: none !important
}
/*--------------------------------------------------------------# Portfolio--------------------------------------------------------------*/
.portfolio #portfolio-flters {
	list-style: none;
	margin-bottom: 20px;
}
.portfolio #portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	margin: 0 15px 10px 15px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #444444;
	transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
	color: #73d414;
}
.portfolio #portfolio-flters li.filter-active::before, .portfolio #portfolio-flters li.filter-active::after {
	color: #73d414;
}
.portfolio .portfolio-item {
	margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-img {
	overflow: hidden;
}
.portfolio .portfolio-item .portfolio-img img {
	transition: all 0.5s ease-in-out;
}
.portfolio .portfolio-item .portfolio-info {
	opacity: 0;
	position: absolute;
	left: 15px;
	bottom: 0;
	z-index: 3;
	right: 15px;
	transition: all ease-in-out 0.3s;
	background: rgba(0, 0, 0, 0.5);
	padding: 10px 15px;
}
.portfolio .portfolio-item .portfolio-info strong {
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0px;
}
.portfolio .portfolio-item .portfolio-info p {
	color: white;
	font-size: 14px;
	margin-bottom: 0;
}
.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: #fff;
	transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
	color: #73d414;
}
.portfolio .portfolio-item .portfolio-info .details-link {
	right: 10px;
}
.portfolio .portfolio-item:hover .portfolio-img img {
	transform: scale(1.2);
}
.portfolio .portfolio-item:hover .portfolio-info {
	opacity: 1;
}
/*--------------------------------------------------------------# Portfolio Details--------------------------------------------------------------*/
.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: #fff;
	opacity: 1;
	border: 1px solid #73d414;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #73d414;
}
.portfolio-details .portfolio-info {
	padding: 30px;
	box-shadow: 0px 0 30px rgba(21, 5, 23, 0.08);
}
.portfolio-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	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: 0;
}
/*--------------------------------------------------------------# Team--------------------------------------------------------------*/
.team .member {
	margin-bottom: 20px;
	overflow: hidden;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.team .member .member-img {
	position: relative;
	overflow: hidden;
}
.team .member .social {
	position: absolute;
	left: 0;
	bottom: 30px;
	right: 0;
	opacity: 0;
	transition: ease-in-out 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
}
.team .member .social a {
	transition: color 0.3s;
	color: #150517;
	margin: 0 3px;
	border-radius: 4px;
	width: 36px;
	height: 36px;
	background: rgba(255, 127, 93, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: ease-in-out 0.3s;
	color: #fff;
}
.team .member .social a i {
	line-height: 0;
}
.team .member .social a:hover {
	background: #73d414;
}
.team .member .social i {
	font-size: 18px;
}
.team .member .member-info {
	padding: 25px 15px;
}
.team .member .member-info h4 {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 18px;
	color: #150517;
}
.team .member .member-info span {
	display: block;
	font-size: 13px;
	font-weight: 400;
	color: #aaaaaa;
}
.team .member .member-info p {
	font-style: italic;
	font-size: 14px;
	line-height: 26px;
	color: #777777;
}
.team .member:hover .social {
	opacity: 1;
	bottom: 15px;
}
/*--------------------------------------------------------------# Pricing--------------------------------------------------------------*/
.pricing .box {
	padding: 20px;
	background: #fff;
	text-align: center;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}
.pricing h3 {
	font-weight: 400;
	margin: -20px -20px 20px -20px;
	padding: 20px 15px;
	font-size: 16px;
	font-weight: 600;
	color: #777777;
	background: #f8f8f8;
}
.pricing h4 {
	font-size: 36px;
	color: #73d414;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	margin-bottom: 20px;
}
.pricing h4 sup {
	font-size: 20px;
	top: -15px;
	left: -3px;
}
.pricing h4 span {
	color: #bababa;
	font-size: 16px;
	font-weight: 300;
}
.pricing ul {
	padding: 0;
	list-style: none;
	color: #444444;
	text-align: center;
	line-height: 20px;
	font-size: 14px;
}
.pricing ul li {
	padding-bottom: 16px;
}
.pricing ul i {
	color: #73d414;
	font-size: 18px;
	padding-right: 4px;
}
.pricing ul .na {
	color: #ccc;
	text-decoration: line-through;
}
.pricing .btn-wrap {
	margin: 20px -20px -20px -20px;
	padding: 20px 15px;
	background: #f8f8f8;
	text-align: center;
}
.pricing .btn-buy {
	background: #73d414;
	display: inline-block;
	padding: 8px 35px 9px 35px;
	border-radius: 4px;
	color: #fff;
	transition: none;
	font-size: 14px;
	font-weight: 400;
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	transition: 0.3s;
}
.pricing .btn-buy:hover {
	background: #ff9377;
}
.pricing .featured h3 {
	color: #fff;
	background: #73d414;
}
.pricing .advanced {
	width: 200px;
	position: absolute;
	top: 18px;
	right: -68px;
	transform: rotate(45deg);
	z-index: 1;
	font-size: 14px;
	padding: 1px 0 3px 0;
	background: #73d414;
	color: #fff;
}
/*--------------------------------------------------------------# Frequently Asked Questions--------------------------------------------------------------*/
.faq .faq-list {
	padding: 0 100px;
}
.faq .faq-list ul {
	padding: 0;
	list-style: none;
}
.faq .faq-list li+li {
	margin-top: 15px;
}
.faq .faq-list li {
	padding: 20px;
	background: #fff;
	border-radius: 4px;
	position: relative;
}
.faq .faq-list a {
	display: block;
	position: relative;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	padding: 0 30px;
	outline: none;
	cursor: pointer;
}
.faq .faq-list .icon-help {
	font-size: 24px;
	position: absolute;
	right: 0;
	left: 20px;
	color: #007aff;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
	font-size: 24px;
	position: absolute;
	right: 0;
	top: 0;
}
.faq .faq-list p {
	margin-bottom: 0;
	padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
	display: none;
}
.faq .faq-list a.collapsed {
	color: #343a40;
}
.faq .faq-list a.collapsed:hover {
	color: #73d414;
}
.faq .faq-list a.collapsed .icon-show {
	display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
	display: none;
}
@media (max-width: 1200px) {
.faq .faq-list {
	padding: 0;
}
}
/*--------------------------------------------------------------# Contact--------------------------------------------------------------*/
.contact .info {
	width: 100%;
	background: #fff;
}
.contact .info i {
	font-size: 20px;
	color: #73d414;
	float: left;
	width: 44px;
	height: 44px;
	background: #fff8f6;
	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: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #150517;
}
.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #62176b;
}
.contact .info .email, .contact .info .phone {
	margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
	background: #73d414;
	color: #fff;
}
.contact .php-email-form {
	width: 100%;
	background: #fff;
}
.contact .php-email-form .form-group {
	padding-bottom: 8px;
}
.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	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: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}
.contact .php-email-form .loading {
	display: none;
	background: #fff;
	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 #18d26e;
	border-top-color: #eee;
	animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
	border-radius: 4px;
	box-shadow: none;
	font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
	border-color: #73d414;
}
.contact .php-email-form input {
	height: 44px;
}
.contact .php-email-form textarea {
	padding: 10px 12px;
}
.contact .php-email-form button[type=button], .cudl {
	background: #73d414;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
}
.contact .php-email-form button[type=submit]:button, .cudl {
	background: #ff9377;
}
@keyframes animate-loading {
0% {
	transform: rotate(0deg);
}
100% {
	transform: rotate(360deg);
}
}
/*--------------------------------------------------------------# Breadcrumbs--------------------------------------------------------------*/
.breadcrumbs {
	padding: 15px 0;
	background: #fafafa;
	min-height: 40px;
}
.breadcrumbs h2 {
	font-size: 28px;
	font-weight: 500;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 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: #3b0e41;
	content: "/";
}
#footer {
	background: url("../../img/back.webp") center center no-repeat;
	color: #fff;
	font-size: 14px;
	position: relative;
}
#footer::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(2, 0, 2, 0.6);
	z-index: 1;
}
#footer .footer-top {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 80px 0;
}
#footer .footer-top h3 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	position: relative;
	font-family: "Poppins", sans-serif;
	padding-bottom: 0;
	margin-bottom: 0;
}
#footer .footer-top p {
	font-size: 16px;
	font-style: italic;
	margin: 35px 0 0 0;
	padding: 0;
}
#footer .footer-top .footer-newsletter {
	text-align: center;
	font-size: 15px;
	margin-top: 30px;
}
#footer .footer-top .footer-newsletter form {
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 4px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	text-align: left;
}
#footer .footer-top .footer-newsletter form input[type=text] {
	border: 0;
	padding: 4px 8px;
	width: calc(100% - 100px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
	position: absolute;
	top: 0;
	right: -1px;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px;
	background: #73d414;
	color: #fff;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
	background: #ff9377;
}
#footer .footer-top .social-links {
	margin-top: 30px;
}
#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 4px;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
	background: #73d414;
	color: #fff;
	text-decoration: none;
}
#footer .footer-bottom {
	border-top: 1px solid #254407;
	z-index: 2;
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
}
#footer .copyright {
	float: left;
}
#footer .credits {
	float: right;
	font-size: 13px;
}
@media (max-width: 768px) {
#footer .copyright,
#footer .credits {
	float: none;
	text-align: center;
}
#footer .credits {
	padding-top: 5px;
}
}
.vidim-list-check ul {
	padding-left: 0;
	margin-left: 0;
}
.vidim-list-check ul li {
	list-style: none;
	position: relative;
	padding-left: 1.8em;
	margin-bottom: -5px;
}
.vidim-list-check ul li::before {
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 0.05em;
	color: #73d414;
	display: inline-block;
}
.vidim-list-check ul li::marker {
	content: '';
	display: none;
}
