/* Fonts */
:root {
	--font-default: 'Metropolis', sans-serif;
	;
	--font-primary: 'Metropolis', sans-serif;
	;
	--font-secondary: 'Metropolis', sans-serif;
	;
}

/* Colors */
:root {	
	--color-primary: rgb(118, 184, 42);
	--color-secondary: #00b5ff;
	--color-secondary-green: #90D441;
	--color-default: rgb(30, 30, 30);
	--color-orange: #ff5f3b;
	--color-pink: rgb(255, 162, 137);
	--color-green-alpha: rgba(118, 184, 42, 0.5);
	--color-grey-light: #e3e3e3;
	--color-grey-regular: rgb(100, 100, 100);
}

/* Smooth scroll behavior */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  scroll-padding-top: 84px; 
}
body {
	font-family: var(--font-default);
	color: var(--color-default);
	overflow-x: hidden;
}

a {
	color: var(--color-secondary);
	text-decoration: none;
	transition: 0.3s;
}
a img {
	transition: 0.3s;
}

a:hover {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
	font-weight: 300 !important;
}
p {
	font-weight: 300;
	margin-bottom: 1.8rem;
}
ol, ul {
	margin-bottom: 1.8rem;
}
li {
	font-weight: 300;
	margin-bottom: 0.3rem;
}
img {
	max-width: 100%; height: auto !important;
}
table {
	width: 100%;
	margin: 10px 0px 30px 0px;
	border: none;
	border-top: 1px solid var(--color-grey-light);
}
tr {
	border-bottom: 1px solid var(--color-grey-light);
}
tr:hover {
	background: var(--color-grey-light);
}
td {
	padding: 5px;
}

.btn-read-more {
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 40px;
	border-radius: 0px;
	transition: 0.3s;
    transition-property: all;
    transition-delay: 0s;
	margin: 10px;
	background: white;
	color: var(--color-primary);
	border: 1px solid white;
}
.btn-read-more:hover {
	background: white;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
}
/*--------------------------------------------------------------
# Container default widths reset
--------------------------------------------------------------*/
@media (min-width: 1400px) {
	.container, .container-xl,  .container-xxl {
		max-width: 1440px !important;
	}
}



/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}

.section-header {
	text-align: center;
	padding-bottom: 60px;
}

.section-header h2 {
	font-size: 32px;
	font-weight: 300;
	position: relative;
	color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
	content: "";
	width: 50px;
	height: 2px;
	background:white;
	display: inline-block;
}

.section-header h2:before {
	margin: 0 15px 10px 0;
}

.section-header h2:after {
	margin: 0 0 10px 15px;
}

.section-header p {
	margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
	.section-header p {
		max-width: 60%;
	}
}

.section-bottom {
	text-align: center;
	padding-bottom: 60px;
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 340px 0 40px 0;
	min-height: 30vh;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--color-default);
	background-attachment: fixed;
}
@media (max-width: 575px) {
	.breadcrumbs {
		padding: 340px 0px 0px 0px;
	}
}
@media (max-height: 575px) {
	.breadcrumbs {
		padding: 110px 0px 0px 0px;
	}
}
.breadcrumbs.no-img {
	padding: 160px 0 40px 0;
	min-height: auto;
}

.breadcrumbs:before {
	content: "";
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	inset: 0;
}

.breadcrumbs h2 {
	font-size: 56px;
	font-weight: 500;
	color: #fff;
	font-family: var(--font-secondary);
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 16px;
	font-weight: 300;
	color: var(--color-primary);
}

.breadcrumbs ol a {
	color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs ol a:hover {
	text-decoration: underline;
}

.breadcrumbs ol li+li {
	padding-left: 10px;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #fff;
	content: "-";
}
.main-image::before {
	content: "";
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	inset: 0;
}
.main-image img {
	max-width: unset;
}
a.readmore:hover {
	color: var(--color-primary);
	text-decoration: underline;
}
.bg-grey-light {
	background: rgba(0, 0, 0, 0.15);
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background: var(--color-primary);
	width: 40px;
	height: 40px;
	border-radius: 0px;
	transition: all 0.3s;
}

.scroll-top i {
	font-size: 24px;
	color: white;
	line-height: 0;
}

.scroll-top:hover {
	background: var(--color-default);
	color: #fff;
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: #fff;
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #fff;
	border-color: var(--color-primary) transparent var(--color-primary) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
	z-index: 997;
	position: fixed;
	padding: 30px 0;
	top: 0;
	left: 0;
	right: 0;
	background: rgb(255, 255, 255);
	transition: all 0.5s ease; 
	border-bottom: 1px solid rgb(183, 233, 125);
}
.header.scroll {
	padding: 15px 0;
}

.header .logo img {
	max-height: 48px;
	margin-right: 6px;
}

.header .logo h1 {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0;
	font-family: var(--font-primary);
}

.header .logo h1 span {
	color: var(--color-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
	.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: 16px 0 4px 28px;
	}

	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 3px;
		font-family: var(--font-primary);
		font-size: 14px;
		font-weight: normal;
		color: var(--color-default);
		text-transform: uppercase;
		white-space: nowrap;
		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: -6px;
		left: 0;
		background-color: var(--color-primary);
		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: var(--color-primary);
	}

	.navbar .dropdown ul {
		display: block;
		position: absolute;
		left: 12px;
		margin: 0;
		padding: 0 0;
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		background: #fff;
		/* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
		transition: 0.3s;
		border-bottom: 1px solid var(--color-primary);
	}
	
	.navbar .dropdown ul.navbar-last-link {
		left: auto;
		right: -12px;
	}
	
	.navbar .dropdown ul li {
		min-width: 200px;
		margin-bottom: 0px;
		padding: 0.2em 0;
	}
	
	.navbar .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--color-default);
		font-weight: 400;
	}

	.navbar .dropdown ul.navbar-last-link a {
		text-align: right;
	}
	.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(--color-secondary);
	}

	.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 (min-width: 1280px) and (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

@media (min-width: 1280px) {

	.mobile-nav-show,
	.mobile-nav-hide {
		display: none;
	}
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
	.navbar {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 400px;
		bottom: 0;
		transition: 0.3s;
		z-index: 9997;
	}

	.navbar ul {
		position: absolute;
		inset: 0;
		padding: 50px 0 10px 0;
		margin: 0;
		background: rgba(255, 255, 255, 1);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}

	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 20px;
		font-family: var(--font-primary);
		font-size: 15px;
		font-weight: 500;
		color: var(--color-default);
		white-space: nowrap;
		text-transform: uppercase;
		transition: 0.3s;
	}

	.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(--color-primary);
	}

	.navbar .dropdown ul,
	.navbar .dropdown .dropdown ul {
		position: static;
		display: none;
		padding: 10px 0;
		margin: 10px 20px;
		transition: all 0.5s ease-in-out;
		border: 1px solid var(--color-primary);
	}

	.navbar .dropdown>.dropdown-active,
	.navbar .dropdown .dropdown>.dropdown-active {
		display: block;
	}

	.mobile-nav-show {
		position: relative;
		color: var(--color-primary);
		font-size: 42px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		z-index: 9999;
		padding-right: 10px;
	}

	.mobile-nav-hide {
		color: var(--color-primary);
		font-size: 32px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		position: fixed;
		right: 20px;
		top: 20px;
		z-index: 9999;
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .navbar {
		right: 0;
	}

	.mobile-nav-active .navbar:before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.6);
		z-index: 9996;
	}
}


/*--------------------------------------------------------------
# Language switch
--------------------------------------------------------------*/
.lng-switch {

}
.lng-switch img {
	max-height: 18px;
	width: auto;
	border: 1px solid rgb(200, 200, 200);
}
.navbar .lng-switch a:hover::before, .navbar li:hover > a::before {
	height: 0px !important;
	visibility: hidden !important;
}

/*--------------------------------------------------------------
# Standard text page
--------------------------------------------------------------*/
#main-text {
}
.text-page {
	background: var(--color-grey-regular);
}
@media (max-width: 1440px) and (min-width: 1400px), (max-width: 575px ){
	.text-page {
		padding-top: 0px;
		padding-bottom: 0px
	}
}
.text-page h1 {
	margin: 0px 0px 30px 0px;
	font-size: 2.3em;
}
.text-page h2, .text-page h3 {
	margin: 25px 0px 5px 0px;
}
.text-body {
	background: white; 
}
.text-page a img:hover {
	opacity: 0.8;
}
.text-page a:hover {
	text-decoration: underline;
}
.text-page a.share:hover {
	text-decoration: none !important;
}
.aside-menu {
	color: white;
	background: var(--color-primary);
}
.text-page aside {
	color: var(--color-default);
}
.aside-menu h3 {
	color: white;
	margin-bottom: 15px;
	font-size: 1.1em;
	font-weight: bold;
	background: var(--color-secondary-green);
}
.aside-menu ul {
	list-style-type: none;
	padding-left: 0px;
}
.aside-menu li a {
	color: white;
	transition: 0.3s;
}
.aside-menu li a:hover {
	text-decoration: underline;
}
.aside-menu a.active {
	text-decoration: underline;
}


/*--------------------------------------------------------------
# Social sites
--------------------------------------------------------------*/
.social-sites {
	color: var(--color-primary);
}
.social-sites a {
	color: white;
	font-size: 42px;
	transition: 0.3s;
}
.social-sites a:hover {
	color: var(--color-secondary-green);
}
.btn-facebook {
	display: block;
	color: white;
	background-color: var(--color-secondary);
	transition: 0.3s;
}
.btn-facebook:hover {
	color: white;
	background-color: var(--color-grey-regular);
}
.btn-facebook:focus {
	color: white;
	color:  var(--color-secondary);
}


/*--------------------------------------------------------------
# Calendar Section
--------------------------------------------------------------*/
.calendar .section-header h2:before,
.calendar .section-header h2:after {
	content: "";
	width: 50px;
	height: 2px;
	background: white;
	display: inline-block;
}
.calendar {
	background: var(--color-primary);
}

.calendar h2 {
	color: white;
}
.calendar .calendar-item {
	background: rgba(255, 255, 255, 1);	
	height: 100%;
	transition: 0.3s;
	border: 1px solid var(--color-primary);
}
.calendar .calendar-item h2 {
	color:  var(--color-default);
}
.calendar .calendar-item:hover {
	background: rgba(255, 255, 255, 0.9);	
	border: 1px solid var(--color-default);
}


.calendar .calendar-item h3 {
	color: var(--color-primary);
	margin: 0 0 20px 0;
	padding-bottom: 8px;
	font-size: 22px;
	position: relative;
	display: inline-block;
	border-bottom: 1px solid var(--color-primary);
	transition: 0.3s;
}

.calendar .calendar-item p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}
.calendar .btn-read-more {
	background: white;
	color: var(--color-default);
	border: 1px solid white;
}
.calendar .btn-read-more:hover {
	background: white;
	border: 1px solid var(--color-default);
	color: var(--color-default);
}



/*--------------------------------------------------------------
# HP about us section
--------------------------------------------------------------*/
.hp-about-us  {
	position: relative;
	color: white;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.hp-about-us::before {
	content: "";
	background-color: rgba(53, 53, 53, 0.8);
	position: absolute;
	inset: 0;
}
.hp-about-us p {
	font-size: 1.2em;
	z-index: 1;
}

.hp-about-us .icon-box {
	margin-top: 50px;
}

.hp-about-us .icon-box i {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	margin-right: 25px;
	font-size: 28px;
	width: 56px;
	height: 56px;
	border-radius: 4px;
	line-height: 0;
	box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);

	transition: 0.3s;
}

.hp-about-us .icon-box:hover i {
	background-color: var(--color-primary);
	color: #fff;
}

.hp-about-us .icon-box h4 {
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 18px;
}

.hp-about-us .icon-box h4 a {
	color: white;
	transition: 0.3s;
}

.hp-about-us .icon-box h4 a:hover {
	color: var(--color-primary);
}

.hp-about-us .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}
.hp-about-us ul {
	z-index: 10;
}
.hp-about-us ul li {
	list-style-type: none !important;
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.news {
	background: var(--color-grey-light);
}
.news .section-header h2:before,
.news .section-header h2:after {
	content: "";
	width: 50px;
	height: 2px;
	background: black;
	display: inline-block;
}
.news .card-item {
  background: rgba(255, 255, 255, 1);
  position: relative;
  height: 100%;
  transition: 0.3s;
  border: 1px solid white;
}
.news .card-item.today {
  background: var(--color-green-alpha);
  border: 1px solid var(--color-green-alpha);
}
.news .card-item:hover {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-primary);
}

.news .card-item .card-bg {
  min-height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news .card-item .card-body {
  padding: 5px;
}

.news .card-item h3 {
  font-size: 24px;
  margin-bottom: 5px;
}
.news .card-item p {
  margin: 0;
}
.news .more-info {
	line-height: 36px;
	color: var(--color-primary);
}




/*--------------------------------------------------------------
# Cards (gallery) Section
--------------------------------------------------------------*/
.cards {
	background: var(--color-grey-light);
}
.cards .section-header h2:before,
.cards .section-header h2:after {
	content: "";
	width: 50px;
	height: 2px;
	background: black;
	display: inline-block;
}
.cards .card-item {
  background: rgba(255, 255, 255, 1);
  position: relative;
  height: 100%;
  transition: 0.3s;
  border: 1px solid var(--color-grey-light);
}
.cards .card-item:hover {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-primary);
}

.cards .card-item .card-bg {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cards .card-item .card-body {
  padding: 5px;
}

.cards .card-item h3 {
  font-size: 24px;
  margin-bottom: 5px;
}
.cards .card-item p {
  margin: 0;
}
.preview-link img:hover {
	opacity: 0.8;
}
.card-bg {
	transition: 0.3s;
}
.card-bg:hover {
	opacity: 0.8;
}
.cards .card-item .card-info {
	opacity: 0;
	position: absolute;
	top: 15px !important;
	inset: 0;
	z-index: 9993;
	transition: all ease-in-out 0.3s;
	padding: 15px;
	width: 160px;
}

.cards .card-item .card-info h4 {
	font-size: 14px;
	padding: 5px 10px;
	font-weight: 400;
	color: #fff;
	display: inline-block;
	background-color: var(--color-primary);
	max-width: 100%;
}
.cards .card-item:hover .card-info {
	opacity: 1;
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.articles {
	background: var(--color-primary);
}

.articles .section-header h2:before,
.articles .section-header h2:after {
	content: "";
	width: 50px;
	height: 2px;
	background: white;
	display: inline-block;
}

.articles .section-bottom h3, .articles .section-bottom h3 a {
	color: white;
	transition: 0.5s;
}
.articles .section-bottom h3 a:hover {
	color: var(--color-default);
}

.articles .article-item {
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
	transition: 0.3s;
	background: white;
}

.articles .article-item .article-img img {
	transition: 0.5s;
}

.articles .article-item .article-date {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: var(--color-default);
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
	padding: 6px 12px;
	font-weight: 500;
	transition: 0.5s;
}

.articles .article-item .article-content {
	padding: 30px;
}

.articles .article-item .article-title {
	font-size: 22px;
	color: var(--color-default);
	font-weight: 300;
	transition: 0.3s;
	margin-bottom: 15px;
}

.articles .article-item .meta i {
	font-size: 16px;
	color: var(--color-primary);
}

.articles .article-item .meta span {
	font-size: 15px;
	color: #838893;
}

.articles .article-item hr {
	color: #888;
	margin: 20px 0;
}

.articles .article-item .readmore {
	display: flex;
	align-items: center;
	font-weight: 600;
	line-height: 1;
	transition: 0.3s;
	color: #838893;
}

.articles .article-item .readmore i {
	line-height: 0;
	margin-left: 6px;
	font-size: 16px;
}

.articles .article-item:hover .article-title,
.articles .article-item:hover .readmore {
	color: var(--color-primary);
}
.articles .article-item:hover .article-date {
	background: var(--color-primary);
}

.articles .article-item:hover .article-img img {
	transform: scale(1.1);
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	overflow-x: hidden;
	padding: 0;
}

.hero .carousel {
	width: 100%;
	min-height: 100vh;
	padding: 80px 0;
	margin: 0;
	position: relative;
}

.hero .carousel-item {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	z-index: 1;
	transition-duration: 0.4s;
}

.hero .carousel-item::before {
	content: "";
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	inset: 0;
}

.carousel.carousel-fade .carousel-item {
    display: block;
    opacity: 0;
    transition: opacity ease-in-out 0.9s;
}

.carousel.carousel-fade .carousel-item.active {
    opacity: 1 !important;
}


.hero .info {
	position: absolute;
	inset: 0;
	z-index: 2;
}
@media (max-width: 1279px) {
	.hero .info {
		margin-top: 125px;
	}
}
@media (max-width: 768px) {
	.hero .info {
		padding: 0 50px;
	}
}

.hero .info h2 {
	color: #fff;
	margin-bottom: 30px;
	padding-bottom: 30px;
	font-size: 56px;
	font-weight: 700;
	position: relative;
}

.hero .info h2:after {
	content: "";
	position: absolute;
	display: block;
	width: 80px;
	height: 4px;
	background: var(--color-primary);
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

@media (max-width: 768px) {
	.hero .info h2 {
		font-size: 36px;
	}
}

.hero .info p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
}

.hero .info .btn-get-started {
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 40px;
	border-radius: 0px;
	transition: 0.3s !important;
    transition-property: all !important;
    transition-delay: 0s !important;
	margin: 10px;
	color: #fff;
	border: 1px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
	background: var(--color-primary);
}

.hero .carousel-control-prev {
	justify-content: start;
}

@media (min-width: 640px) {
	.hero .carousel-control-prev {
		padding-left: 15px;
	}
}

.hero .carousel-control-next {
	justify-content: end;
}

@media (min-width: 640px) {
	.hero .carousel-control-next {
		padding-right: 15px;
	}
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
	background: none;
	font-size: 26px;
	line-height: 0;
	background: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.6);
	border-radius: 50px;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
	z-index: 3;
	transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
	opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
	opacity: 0.9;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	color: #fff;
	background: url("../../assets/img/hero-carousel/summer/3.jpg") top center no-repeat;
	background-size: cover;
	font-size: 14px;
	padding: 80px 0 60px 0;
	position: relative;
}

.footer:before {
	content: "";
	background: rgba(29, 29, 27, 0.8);
	position: absolute;
	inset: 0;
}

.footer .footer-content .footer-info {
	margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
	font-size: 28px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
	color: var(--color-primary);
}

.footer .footer-content .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: var(--font-primary);
	color: #fff;
}

.footer .footer-content .social-links a {
	font-size: 18px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	line-height: 1;
	margin-right: 8px;
	border-radius: 0px;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
	background: var(--color-primary);
	text-decoration: none;
}

.footer .footer-content h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-content .footer-links {
	margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-content .footer-links ul li {
	padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-content .footer-links ul a {
	color: rgba(255, 255, 255, 0.6);
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
	color: #fff;
}

.footer .footer-legal .copyright {
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .credits {
	padding-top: 4px;
	font-size: 13px;
	color: #fff;
}

.footer .footer-legal .credits a {
	color: var(--color-primary);
}


/*--------------------------------------------------------------
# FullCalendar styles
--------------------------------------------------------------*/
.calendar table {
	background: white;
}
.calendar .fc-daygrid-day-top a {
	color:  var(--color-default) !important;
}
.calendar h2::first-letter {
	text-transform: uppercase;
} 
.calendar button, .calendar button:focus {
	border-radius: 0px !important;
	background: white !important;
	color: var(--color-primary) !important;
	border: 1px solid white !important;
}
.calendar button:hover {
	color: var(--color-default) !important;
	border: 1px solid var(--color-default) !important;
}
.calendar thead tr {
}
.calendar th {
	padding: 3px 0px;
}
.calendar th a {
	color: var(--color-default);
}
.calendar-event {
	border-radius: 0px;
	padding: 4px;
	background: white;
	color: var(--color-default) !important;
	border: 1px solid white !important;
}
.calendar-event .fc-event-title {
	color: var(--color-primary) !important;
	font-weight: normal;
}
.calendar-event:hover {
	background: var(--color-secondary) !important;
	border: 1px solid  var(--color-secondary) !important;
	color: white !important;
}
.calendar-event:hover .fc-event-title  {
	color: white !important;
}
.calendar tr:hover {
	background: white;
}
.fc-day-today {
	background: var(--color-grey-light) !important;
}

.fc-daygrid-event-dot {
	display: none !important;
}
@media (max-width: 575px) {
	section.calendar {
		padding: 20px 0px 60px 0px;
	}
	.fc .fc-toolbar {
		display: block;
		margin: 0px auto;
		text-align: center;
	}
	.fc-toolbar-chunk {
		width: 100%;
		margin: 15px auto;
	}
}



/*--------------------------------------------------------------
# Legacy CSS from BE text editor
--------------------------------------------------------------*/
/* card */
.fotobox0 {
	width: 320px;
	min-height: 410px;
	margin: 10px;
	padding: 10px;
	border: 1px solid #CCC;
	float: left;
	position: relative;
}
.fotobox0 p{
	margin: 5px 10px;
	text-align: left;
	margin-left: 10px;
}
.fotobox1 {
	width: 320px;
	margin: 0 0 10px 0;
	background-color:#fff;
	text-align: left;
}
.fotobox1 p {
	font-weight: normal;
	text-align:left;
	font-size: .9em;
}
.fotopozice {
	border: 0;
}
.fotopozice2 {
	display:none;
}
.fotoboxtext {
	width: 270px;
	min-height: 70px;
}
/* infrastruktura*/
.vcard {
	width: 92%;
	margin: 10px;
	padding: 10px 4%;
	border: 1px solid #CCC;
	float: left;
}
.vcardinfo {
	float: right;
	width: calc(100% - 340px);
	margin-top: 10px;
	padding-top: 15px;
}
.vcard p {
	margin: 5px 10px;
	text-align:left;
	margin-left: 10px;
}