:root {
	--white: #fff;
	--lightGray: #f8f8f8;
	--mediumGray: #ccc;
	--darkGray: #2d2d2f;
	--black: rgb(0, 0, 0);
	--blue: #1e6da8;
	--deepBlue: #334f81;
	--skyeBlue: #e4f2f7;
	--lightBlue: #d6e8f5;
	--midDarkBlue: #63787f;
	--red: #c83b3b;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
	word-break: break-word;
	line-height: 150%;
}

html {
	font-size: 62.5%;
}

body {
	background-color: var(--white);
}

body.loaded {
	opacity: 1;
}

body.menu-open {
	overflow: hidden;
}

a,
a:visited {
	text-decoration: none;
}

h1 {
	font-size: 32px;
	padding-bottom: 10px;
	line-height: 125%;
}

h2 {
	font-size: 26px;
	padding-bottom: 10px;
	line-height: 125%;
}

h3 {
	font-size: 24px;
	padding-bottom: 10px;
	line-height: 125%;
}

h4 {
	font-size: 20px;
	padding-bottom: 10px;
	line-height: 125%;
}

span {
	font-size: inherit;
	line-height: inherit;
}

.section-text-wrapper h1,
.section-text-wrapper h2 {
	padding: 10px 0;
}

a {
	color: var(--blue);
}

a,
p,
label,
li,
button {
	font-size: 16px;
	/* line-height: 1.75rem; */
	padding-bottom: 10px;
}

span {
	font-size: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

hr {
	border: 1px solid var(--lightGray);
}

input:focus,
input:active,
textarea:focus,
textarea:active {
	border-bottom: 2px solid var(--lightGray) !important;
}

html,
body {
	width: 100%;
	height: 100%;
}

#content-wrapper {
	min-height: 100%;
	width: 100%;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

main {
	width: 100%;
	transition: all 0.4s ease;
	flex-grow: 1;
}

footer {
	transition: all 0.4s ease;
}

header,
main,
footer {
	flex-shrink: 0;
}


/* Header */
#header-equalizer {
	position: relative;
	top: 0;
	left: 0;
	height: 0;
	width: 100%;
	z-index: -1;
}

body.sticky-body #header-equalizer {
	height: 11rem;
}

header {
	position: absolute;
	top: 0;
	z-index: 100;
	background: transparent;
	width: 100%;
}

.landing-page header {
	position: absolute;
	top: 0;
}

.header-transparent {
	background: transparent;
}

.header-colored {
	background: var(--pontenDarkBlueGradient);
}

.hide {
	display: none;
}

.shadow {
	box-shadow: 0 7px 14px rgba(171, 171, 171, 0.2), 0 5px 5px rgba(171, 171, 171, 0.2);
}

.app-menu {
	display: none;
	background-color: transparent;
	cursor: pointer;
}

.app-menu i {
	color: var(--white);
	font-size: 22px;
}

#open-menu-button {
	display: none;
}

#open-menu-button.open {
	display: block;
}

#close-menu-button {
	display: none;
}

#close-menu-button.open {
	display: block;
}

/* ############### */
.header-holder {
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 50px;
	max-width: 1800px;
	margin: 0 auto;
}

header.sticky {
	z-index: 998;
}

header.sticky {
	background: white;
	transition: all 0.4s ease;
	position: fixed;
	box-shadow: 0 2px 10px rgba(87, 87, 87, 0.31);
	top: 0;
	width: 100%;
}

header.sticky .logo img {
	filter: invert(1);
}

header.sticky .app-menu {
	top: 20px;
}

header.sticky .header-holder {
	opacity: 0;
	height: 80px;
	-moz-animation: fadeIn 0.4s ease-in forwards;
	-webkit-animation: fadeIn 0.4s ease-in forwards;
	-o-animation: fadeIn 0.4s ease-in forwards;
	animation: fadeIn 0.4s ease-in forwards;
}

header.sticky .mainmenu li>ul {
	top: 80px;
}

header.sticky .mainmenu li>ul>li>ul {
	top: 0;
}

header.sticky .mainmenu a {
	font-size: 1.4rem;
}

header.sticky .mainmenu>li .desktop-arrow {
	bottom: 13px;
}

header.sticky img {
	opacity: 0;
	width: 100%;
	max-width: 10rem;
	position: relative;
	left: 0;
	-moz-animation: fadeIn 0.4s ease-in forwards;
	-webkit-animation: fadeIn 0.4s ease-in forwards;
	-o-animation: fadeIn 0.4s ease-in forwards;
	animation: fadeIn 0.4s ease-in forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}

header img {
	width: 150px;
	padding: 16px 0;
	z-index: 2;
	display: block;
}

header nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.mainmenu {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
	flex-direction: row;
	justify-content: flex-end;
}

.mainmenu li {
	position: relative;
	padding: 0;
}

.mainmenu li>ul li {
	padding: 0;
}

.mainmenu li>ul {
	position: absolute;
	display: none;
	background-color: var(--lightGray);
	padding: 0;
	list-style-type: none;
	margin: 0;
	top: 110px;
	z-index: 200;
	min-width: 200px;
	box-shadow: 0 7px 14px rgba(171, 171, 171, 0.05), 0 5px 5px rgba(171, 171, 171, 0.05);
	border-top: 0;
	right: 0;
}

header.sticky .mainmenu li>ul {
	background-color: var(--white);
}

.mainmenu li>ul li a {
	padding: 20px;
	width: 100%;
	text-align: center;
	display: block;
}

.mainmenu li>ul>li>ul {
	display: none;
	right: calc(100% + -20px);
	top: 0;
	z-index: 300;
	right: 100%;
	background-color: var(--white);
}

header.sticky .mainmenu li>ul>li>ul {
	background-color: var(--white);
}

.mainmenu a.showsub {
	display: none;
}

.mainmenu a {
	color: var(--white);
	font-size: 1.6rem;
	display: flex;
	height: 100%;
	align-items: center;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	position: relative;
	padding: 1.7rem 1.5rem;
}

.menu-open .mainmenu a {
	color: var(--black);
}

.menu-open .app-menu i {
	color: var(--black);
}

.menu-open header img {
	filter: invert(1);
}

header.sticky .mainmenu a {
	color: var(--darkGray);
}

.mainmenu a:hover {
	background-color: var(--lightGray);
}

.mainmenu li.active {}

.mainmenu li.active .desktop-arrow i,
.mainmenu li.active .showsub i {
	color: var(--white) !important;
}

.mainmenu li a.active {
	font-weight: bold;
	color: var(--white);
}

.menu-open .mainmenu li a.active {
	color: var(--black);
}

.mainmenu a:hover {
	color: var(--darkGray);
	border-radius: 3rem;
}

.sticky .mainmenu a:hover {
	color: white;
	background: #767676;
}

.menu-container {
	display: flex;
	justify-content: flex-end;
}

header.sticky .menu-container {
	opacity: 0;
	-moz-animation: fadeIn 0.4s ease-in forwards;
	-webkit-animation: fadeIn 0.4s ease-in forwards;
	-o-animation: fadeIn 0.4s ease-in forwards;
	animation: fadeIn 0.4s ease-in forwards;
}

.mainmenu>li .desktop-arrow {
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: 20px;
	left: calc(50% - 10px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 400;
	color: var(--darkGray);
}

.mainmenu .desktop-arrow i {
	position: absolute;
	font-size: 11px;
}

.mainmenu>li>ul>li>.desktop-arrow {
	transform: rotate(90deg);
	left: 0;
	top: 24px;
}

.flex-wrapper {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

footer {
	width: 100%;
	background-color: var(--lightGray);
}

.footer-main {
	width: 100%;
	padding: 5rem 4rem 10rem 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

.footer-33-wrapper {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}

.footer-33-wrapper .footer-33 {
	width: 31.33%;
	margin: 1%;
	width: calc(31.33% - 3rem);
	margin: 1.5rem 0;
	color: var(--darkGray);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.footer-33-wrapper .footer-33:first-of-type {
	justify-content: flex-start;
}

.footer-33-wrapper .footer-33 a {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.footer-main .footer-33 a:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
	color: var(--blue);
}

#footer-33-1 {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

#footer-33-2 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#footer-33-2 .partner-logo {
	max-width: 15rem;
	padding: 1rem;
}

.footer-logo {
	max-width: 200px;
	min-width: 200px;
}

.footer-logos {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-evenly;
}

.footer-logo img {
	width: 100%;
	height: auto;
	filter: invert(1);
}

.footer-main .footer-33 a.footer-social:hover {
	color: var(--blue);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.footer-main p,
.footer-main a {
	color: var(--darkGray);
}

ul.footer-menu,
ul.footer-menu li {
	list-style-type: none;
}

ul.footer-menu li ul {
	padding-left: 5px;
}

ul.footer-menu li ul li {
	display: flex;
	display: none;
}

ul.footer-menu li ul li::before {
	content: "-";
	padding-right: 10px;
	color: var(--darkGray);
}

ul.footer-menu .sub ul ul {
	display: none;
}

ul.footer-menu .showsub {
	display: none;
}


#footer-logo img {
	max-width: 24rem;
	height: auto;
	margin: 0 auto;
}

.footer-social-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.footer-social-wrapper a {
	color: var(--darkGray);
	margin-bottom: 1rem;
}

.social-link-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0.7rem;
}

.social-link-wrapper i {
	font-size: 4rem;
	color: white;
	background: var(--deepBlue);
	border-radius: 0.7rem;
}

.footer-social {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer-social i {
	font-size: 30px;
	margin-right: .75rem;
}


.footer-copy {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 10px 25px;
	background-color: var(--darkGray);
}

.footer-copy p,
.footer-copy a {
	color: var(--lightGray);
	font-size: 12px;
	padding-bottom: 0;
}

.footer-icons {
	text-align: center;
}

.footer-icons a,
.footer-icons div {
	color: var(--darkGray);
	font-size: 9px;
}

.footer-icons a {
	font-weight: bold;
}

.center {
	text-align: center;
}

.fat {
	font-weight: bold;
	padding-bottom: 2.5px;
}

.bold {
	font-weight: bold;
}

.tiny {
	font-size: 4px;
	line-height: 100%;
}

.loader {
	align-items: center;
	justify-content: center;
	display: none;
	padding-top: 25px;
}

.circle {
	background-color: var(--mediumGray);
	border-radius: 50%;
	width: 12px;
	height: 12px;
	margin: 4px;
	animation: bounce 0.5s ease-in infinite;
}

.circle:nth-of-type(2) {
	animation-delay: 0.1s;
}

.circle:nth-of-type(3) {
	animation-delay: 0.2s;
}

@keyframes bounce {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.loader-wrapper {
	width: 100%;
	display: none;
}

#message-confirm {
	display: flex;
}

.spinner {
	margin: 100px auto;
	width: 50px;
	height: 40px;
	text-align: center;
	font-size: 10px;
}

.spinner>div {
	background-color: var(--mediumGray);
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.spinner .rect3 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4);
	}

	20% {
		-webkit-transform: scaleY(1);
	}
}

@keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4);
		transform: scaleY(0.4);
	}

	20% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
}


.form-wrapper {
	max-width: 1000px;
	width: 100%;
	width: calc(100% - 3rem);
	margin: 10rem 1.5rem;
	display: flex;
	flex-flow: column-reverse;
	border-radius: 5px;
}

.contact-form {
	background-color: var(--lightGray);
	color: var(--darkGray);
	display: flex;
	justify-content: center;
	flex-flow: column;
	padding: 5% 15%;
	width: 100%;
	border-radius: 0 0 2rem 2rem;
}

.contact-form-100 {
	width: 100%;
	border-radius: 0;
}

.contact-form h2 {
	padding-bottom: 10px;
}

.contact-info {
	color: var(--white);
	width: 100%;
	background-image: url('../images/walk.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 25px;
	min-height: 35rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	border-radius: 2rem 2rem 0 0;
	position: relative;
}

.contact-info::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: rgb(11 11 11 / 83%);
	border-radius: 2rem 2rem 0 0;
}

.contact-info-content {
	z-index: 1;
	text-align: center;
}

.contact-form label {
	display: block;
	margin: 5px 0;
	font-size: 14px;
	color: var(--darkGray);
	font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
	background-color: var(--lightGray);
	padding: 5px;
	display: block;
	border: none;
	min-width: 200px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--mediumGray);
	border-radius: 0 !important;
}

.contact-form textarea {
	background-color: var(--lightGray);
	padding: 5px;
	display: block;
	border: none;
	min-width: 200px;
	min-height: 100px;
	margin-bottom: 20px;
	resize: vertical;
	border-bottom: 1px solid var(--mediumGray);
	outline: 0;
	border-radius: 0 !important;
}

textarea:focus,
input:focus,
button:focus {
	outline: none;
}

.contact-form #contact-form-title {
	padding-bottom: 25px;
	color: #4d4c50;
}

.contact-form #submit-button {
	display: block;
	border: none;
	background-color: var(--blue);
	color: var(--white);
	margin-top: 25px;
	cursor: pointer;
	padding: 10px 30px;
	border-radius: 3px;
	width: -moz-fit-content;
	width: fit-content;
	display: table;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	position: relative;
	transition: all 0.4s ease;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
	-webkit-appearance: none;
	appearance: none;
}

.contact-form #submit-button:disabled {
	background-color: var(--mediumGray);
	opacity: 0.7;
	color: var(--white);
	cursor: not-allowed;
}

.contact-form #submit-button:hover {
	background-color: var(--blue);
	color: var(--white);
	-webkit-animation-name: hvr-wobble-top;
	animation-name: hvr-wobble-top;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

.contact-form #submit-button:disabled:hover {
	background-color: var(--mediumGray);
	cursor: not-allowed;
	-webkit-animation: none !important;
	animation: none !important;
}

.contact-form #submit-button i {
	color: var(--white);
}

.contact-info .big-icon-wrapper .big-icon {
	font-size: 100px;
	color: var(--white);
}

.contact-info .big-icon-wrapper .big-icon i {
	animation: twiggle 5s 3s ease forwards infinite;
}

@keyframes twiggle {
	0% {
		transform: scale(1);
		transform: rotate(180deg);
	}

	10% {
		transform: scale(1.05);
	}

	50% {
		transform: scale(1.25);
	}

	90% {
		transform: rotate(180deg);
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

.error-message {
	font-size: 12px;
	color: var(--red);
	margin-bottom: 25px;
}


#message-box {
	height: 50px;
	width: 100%;
	overflow: hidden;
	position: fixed;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	background-color: var(--blue);
	animation-name: popUp;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	animation-delay: 1.5s;
}

#message-box p {
	text-align: center;
	line-height: 50px;
	font-weight: bold;
	font-size: 120%;
	color: var(--white);
}

@keyframes popUp {
	0% {
		bottom: -50px;
		opacity: 1;
	}

	10% {
		bottom: -25px;
		opacity: 1;
	}

	20% {
		bottom: 0px;
		opacity: 1;
	}

	79% {
		bottom: 0px;
		opacity: 1;
	}

	90% {
		bottom: -25px;
		opacity: 1;
	}

	99% {
		bottom: -50px;
		opacity: 1;
	}

	100% {
		bottom: -50px;
		opacity: 0;
	}
}


/* News */

.box-50-news,
.box-50-news:visited {
	width: 50%;
	width: calc(50% - 3rem);
	margin: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	color: var(--darkGray);
	border-radius: 0.3rem;
}

.box-50-news .box-date {
	background-color: var(--lightBlue);
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-flow: column;
	padding: 2.5rem;
	color: var(--darkGray);
	border-radius: 3px 3px 0 0;
}

.box-date-text-date {
	color: var(--darkGray);
	font-weight: bold;
	font-size: 16px;
}

.box-date-text-year {
	color: var(--darkGray);
	font-weight: bold;
	font-size: 14px;
}

.box-50-news .box-content {
	width: 100%;
	padding: 5rem;
	border-radius: 0 0 3px 3px;
}

.box-50-news .box-content h4 {
	color: var(--blue);
}

.box-50-news .box-content .box-content-date {
	font-size: 12px;
	padding-top: 10px;
	color: var(--lightGray);
}

.news-link {
	color: var(--mediumGray);
	font-weight: bold;
}

.single-news-header {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 600px;
}

.single-news {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	background-color: var(--white);
	margin: 50px auto;
	padding: 25px 50px;
}

.single-news h1 {
	position: relative;
	padding-bottom: 10px;
}

.single-news img {
	margin: 15px 0;
}

#news-wrapper {
	width: 100%;
	padding-top: 50px;
	display: flex;
	flex-wrap: wrap;
}

.latest-news-wrapper {
	padding: 5rem 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.box-33-news {
	width: 33.33%;
	width: calc(33.33% - 3rem);
	margin: 1.5rem;
	background-color: var(--white);
	background-color: var(--lightGray);
	border-radius: 0.3rem;
}

.box-33-news .box-image-container {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 65%;
}

.box-33-news .box-content {
	padding: 30px;
}

.box-33-news .item-action {
	margin-bottom: 0 !important;
}

#more-news-wrapper {
	width: 100%;
	padding: 0 1.5rem;
}

#more-news {
	margin: 50px auto;
	display: table;
}

.news-loader-wrapper {
	width: 100%;
	position: relative;
}

.news-loader {
	align-items: center;
	justify-content: center;
	display: none;
	padding-top: 25px;
}


/* SLideshows */

.box-slider-image {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	/* height: 75vh; */
	height: 60vh;
	min-height: 300px;
	width: 100%;
	position: relative;
}

.slider-text-holder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	width: calc(100% - 30px);
	max-width: 1100px;
}

.slider-text-holder h1 {
	color: var(--white);
	font-size: 44px;
	padding-bottom: 15px;
}

.slider-text-holder p {
	color: var(--white);
	font-size: 22px;
	line-height: 175%;
}

.slider-text {
	padding: 20px 50px;
}


/** Gallery **/

.gallery-modal-layer {
	transform: translateZ(0);
	transform: translateX(-200%);
	transition: transform 0.5s cubic-bezier(0.07, 0.23, 0.34, 1);
	position: fixed;
	overflow: visible;
	overflow-y: scroll;
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-modal {
	background-color: var(--white);
	width: 80%;
	height: 80%;
	margin: auto;
	padding: 25px;
	position: relative;
	box-shadow: 0 7px 14px rgba(87, 87, 87, 0.12), 0 5px 5px rgba(88, 88, 88, 0.12);
}

.close-gallery-modal {
	position: absolute;
	top: -10px;
	right: -10px;
	cursor: pointer;
	padding: 15px;
	background-color: var(--blue);
}

.close-gallery-modal i {
	font-size: 25px;
	color: var(--white);
}

.gallery-modal-image {
	width: 100%;
	height: calc(100% - 100px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-modal-image img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.gallery-modal-inner {
	height: 100px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
}

.gallery-modal-inner .prev,
.gallery-modal-inner .next {
	cursor: pointer;
}

.gallery-modal-inner .prev i,
.gallery-modal-inner .next i {
	color: var(--mediumGray);
	font-size: 50px;
}

.gallery-modal-content {
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-flow: column;
	padding-top: 25px;
}

body.gallery-modal-open .gallery-modal-layer {
	transform: translateX(0);
	transform: translateY(0);
	position: fixed;
}

body.gallery-modal-open .gallery-modal {
	filter: drop-shadow(0 7px 14px rgba(87, 87, 87, 0.308));
}

.gallery-wrapper {
	padding: 50px 0;
	display: flex;
	flex-wrap: wrap;
}

.gallery-item {
	margin: 1.5rem;
	width: 100%;
	width: calc(20% - 3rem);
	cursor: pointer;
	background-color: var(--white);
	border-radius: 0.3rem;
	/* padding: 2.5rem; */
	/* padding: .5rem; */
}

.gallery-item img {
	max-width: 100%;
}

@media all and (max-width: 1250px) {
	body.sticky-body #header-equalizer {
		height: 7rem;
	}

	body.menu-open main,
	body.menu-open footer {
		margin-left: 300px;
		position: relative;
		overflow: hidden;
	}

	body.menu-open main::after,
	body.menu-open footer::after {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		overflow: hidden;
		z-index: 2;
	}

	.header-content {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		padding-right: 62px;
	}

	.mainmenu.open {
		border-top: 1px solid var(--lightGray);
	}

	header.sticky img {
		/* width: 50px; */
		/* width: 32px; */
		width: 100%;
		max-width: 10rem;
		position: relative;
		left: 0;
		top: 0;
	}

	.header-content #logo {
		padding-bottom: 0;
	}

	header img {
		width: 100%;
		max-width: 10rem;
		padding: 0.3rem;
	}

	header.sticky .header-holder {
		height: 70px;
		-moz-animation: fadeIn 0.4s ease-in forwards;
		-webkit-animation: fadeIn 0.4s ease-in forwards;
		-o-animation: fadeIn 0.4s ease-in forwards;
		animation: fadeIn 0.4s ease-in forwards;
	}

	header.sticky .mainmenu li>ul {
		top: 0;
	}

	header.sticky .mainmenu li>ul>li>ul {
		top: 10px;
	}

	.header-holder {
		height: 70px;
		padding: 0;
	}

	header.sticky header-holder {
		height: 70px;
	}

	.menu-open {
		overflow: hidden;
	}

	.app-menu {
		display: block;
		z-index: 600;
		padding: 20px;
	}

	header.sticky .app-menu {
		position: relative;
		left: 0;
		top: 0;
	}

	.mainmenu.open {
		top: 70px;
		left: 0;
	}

	.mainmenu>li {
		font-size: 20px;
		margin: 20px 0 !important;
		margin: 0 !important;
		padding: 0;
		border-bottom: 3px solid #f3f3f3;
	}

	.mainmenu li>ul {
		background-color: var(--white);
	}

	.mainmenu li>ul>li>ul {
		background-color: var(--white);
	}

	.mainmenu>li>ul>li {
		font-size: 16px;
	}

	.mainmenu>li>ul>li a {
		font-weight: normal !important;
		padding: 1rem 2.5rem;
	}

	.mainmenu>li>ul>li>ul>li {
		font-size: 15px;
	}

	.mainmenu>li>ul>li>ul>li a {
		font-weight: normal;
		margin-bottom: 10px;
		margin-top: -10px;
		margin-left: 5px;
	}

	.mainmenu {
		display: block;
		position: fixed;
		top: 70px;
		left: -100%;
		width: 300px;
		max-width: 300px;
		height: 100%;
		background-color: var(--white);
		z-index: 998;
		overflow: scroll;
		padding-bottom: 200px;
		transition: all 0.4s ease;
		box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15), 0 5px 5px rgba(171, 171, 171, 0.15);
	}

	.mainmenu a {
		padding: 1.5rem 2rem;
	}

	.mainmenu li>ul li a {
		text-align: left;
	}

	.mainmenu li {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.mainmenu>li .desktop-arrow {
		display: none;
	}

	.mainmenu a:after {
		display: none;
	}

	.mainmenu li a.active:after {
		display: none;
	}

	.mainmenu a.showsub {
		position: absolute;
		bottom: 0;
		width: 40px;
		height: 40px;
		right: 10px;
		top: 6px;
		display: flex;
		justify-content: center;
	}

	.showsub:hover {
		text-decoration: none;
		background-color: transparent !important;
	}

	.mainmenu>li>ul>li>a.showsub {
		right: 10px;
		top: 4px;
	}

	.mainmenu a.showsub i {
		color: var(--mediumGray);
		font-size: 16px;
	}

	.mainmenu li.sub a.showsub i {
		color: var(--blue);
		font-size: 16px;
	}

	.mainmenu a.showsub i.hide {
		display: none;
	}

	.mainmenu li>ul {
		position: relative;
		top: 11px;
		box-shadow: none;
		border: none;
		background-color: var(--white);
		background-image: none;
		margin-top: -1.5rem;
	}

	.mainmenu li>ul>li>ul {
		top: 10px;
		right: 0;
		background-color: var(--white);
		background-image: none;
	}

	header.sticky .mainmenu li>ul>li>ul {
		background-color: var(--white);
		background-image: none;
	}

	.slider-text {
		padding: 20px;
	}

	.gallery-item {
		width: calc(25% - 3rem);
	}
}

@media all and (max-width: 960px) {

	/* header img {
    width: 90px;
    padding: 19px 0;
  } */
	.single-news-header {
		min-height: 500px;
	}

	.footer-triangle {
		-webkit-clip-path: polygon(50% 65%, 0% 100%, 100% 100%);
		clip-path: polygon(50% 65%, 0% 100%, 100% 100%);
	}

	.footer-main .icons-wrapper i {
		font-size: 24px;
		padding: 12px;
	}

	.footer-top:after {
		background-color: transparent;
	}

	.gallery-item {
		width: calc(33.33% - 3rem);
	}

	.single-news {
		padding: 25px 20px;
	}

	.box-50-news .box-content {
		padding: 3.5rem;
	}

	.form-wrapper {
		margin: 2rem 1.5rem;
	}

	.footer-logo {
		width: 100%;
		max-width: 200px;
		min-width: 200px;
		padding: 30px;
	}

	.footer-logos {
		flex-wrap: wrap;
	}
}

@media all and (max-width: 768px) {

	h1,
	section.section-header>div .section-text-wrapper h1,
	section.section-header>div .section-text-wrapper h1>span {
		font-size: 24px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 18px;
	}

	h4 {
		font-size: 16px;
	}

	p,
	a,
	label,
	li {
		font-size: 14px;
	}

	.slider-text-holder h1 {
		font-size: 24px;
	}

	.slider-text-holder p {
		font-size: 16px;
		line-height: 150%;
	}

	.box-slider-image {
		height: 50vh;
	}

	.gallery-wrapper {
		columns: 2;
	}

	.single-news-header {
		min-height: 400px;
	}

	.form-wrapper {
		flex-flow: column-reverse;
		width: 100%;
		margin: 0;
	}

	.contact-form {
		width: 100%;
		padding: 5rem 3rem;
	}

	.contact-info {
		width: 100%;
		padding: 25px;
		background-attachment: unset !important;
		min-height: 25rem;
	}

	.contact-info .big-icon-wrapper {
		padding: 25px;
	}

	.contact-info .big-icon-wrapper .big-icon {
		font-size: 50px;
		color: var(--white);
	}

	.contact-info .big-icon-wrapper .big-icon i {
		font-size: 50px;
		color: var(--white);
	}

	.gallery-item {
		width: calc(50% - 3rem);
	}

	.box-50-news {
		flex-flow: column;
		width: calc(100% - 4rem);
		margin: 1.5rem 2rem;
	}

	.box-50-news .box-date {
		width: 100%;
		padding: 25px 0;
	}

	.box-33-news {
		width: calc(100% - 4rem);
		margin: 1.5rem 2rem;
	}

	.contact-info .big-icon-wrapper .big-icon {
		font-size: 50px;
		color: var(--white);
	}


	.form-wrapper,
	.contact-info,
	.contact-info::after {}

	.footer-main .footer-33 {
		width: 100%;
		width: calc(50% - 3rem);
		margin: 0;
	}

	.footer-main {
		padding: 5rem 2rem;
	}

	.footer-33-wrapper .footer-33 {
		padding: 1.5rem 0;
	}

	#footer-33-2 {
		border: none;
	}

	#footer-33-2 .partner-logo {
		max-width: 10rem;
		padding: 1rem;
	}

	.footer-33 .footer-contact-info {
		text-align: center;
	}

	#footer-33-3 {
		justify-content: center;
		display: flex;
	}

	#footer-33-3 .footer-social {
		display: flex;
		justify-content: center;
	}

	.footer-menu {
		text-align: center;
	}

	.footer-social-wrapper {
		align-items: center;
	}

}

@media all and (max-width: 550px) {

	p,
	a,
	label,
	li {
		font-size: 14px;
	}

	.gallery-wrapper {
		columns: 1;
	}

	.gallery-item {
		width: 100%;
		margin: 1rem 0;
		padding: 0 2rem;
	}

	.single-news-header {
		min-height: 350px;
	}

	.footer-main {
		padding: 50px 0;
	}

	.footer-copy p,
	.footer-copy a {
		font-size: 8px;
	}

	.footer-main .icons-wrapper i {
		font-size: 20px;
		padding: 10px;
	}

	.footer-main .footer-33 {
		width: 100%;
		margin: 0;
		padding: 20px;
	}

	.gallery-modal-inner {
		padding: 10px;
	}

	.gallery-modal-inner .next i,
	.gallery-modal-inner .prev i {
		font-size: 20px;
	}

	.gallery-modal {
		padding: 25px;
	}

	.close-gallery-modal {
		padding: 10px;
	}

	.close-gallery-modal i {
		font-size: 20px;
	}

	.contact-form,
	.contact-info::after {
		border-radius: 0;
	}

	.form-wrapper {
		border-radius: 0;
	}
}
