* {
	font-family: Nunito, sans-serif;
	font-style: normal;
	box-sizing: border-box;
}

a:hover {
	text-decoration: none;
}

canvas, img, video {
	max-width: fit-content;
}

.nav-item.btn__primary {
	background: #0CC5F4;
	box-shadow: 2px 4px 8px rgba(22, 143, 255, 0.25);
	border-radius: 20px;
}

.btn.btn__primary {
	background: #0CC5F4;
	box-shadow: 4px 6px 12px rgba(22, 143, 255, 0.25);
	border-radius: 25px;
	padding: 15px 45px;
	font-weight: bold;
	font-size: 1.375em;
	line-height: 30px;
	color: #FFFFFF;
	transition-duration: 500ms;
}
.btn.btn__primary:hover {
	color: #FFFFFF;
	box-shadow: 4px 6px 20px rgba(22, 143, 255, 0.5);
}

.page-header {
	z-index: 10;
	margin-bottom: 100px;
	position: relative;
	display: inline-block;
}

.page-header__breadcrumbs {
	margin-bottom: 5px;
}
.page-header__breadcrumbs .breadcrumb__link {
	font-size: 0.875em;
	line-height: 19px;
}
.page-header__breadcrumbs a.breadcrumb__link {
	text-decoration: none;
	font-weight: normal;
	color: #353637;
}
.page-header__breadcrumbs span.breadcrumb__link {
	font-weight: 600;
	color: #000000;
}
.page-header__breadcrumbs .breadcrumb__divider {
	margin: 0 10px;
	color: #464646;
	border: 0.5px solid #FFFFFF;
	box-sizing: border-box;
	font-size: 0.75em;
}

.page-header__title h1 {
	font-weight: bold;
	font-size: 3em;
	line-height: 65px;
	color: #000000;
}

.gallery-header {
	z-index: 10;
	margin-bottom: 155px;
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: flex-end;
}
.gallery-header > div {
	position: relative;
}

.gallery-header__breadcrumbs {
	margin-bottom: 5px;
}
.gallery-header__breadcrumbs .breadcrumb__link {
	font-size: 0.875em;
	line-height: 19px;
}
.gallery-header__breadcrumbs a.breadcrumb__link {
	text-decoration: none;
	font-weight: normal;
	color: #353637;
}
.gallery-header__breadcrumbs span.breadcrumb__link {
	font-weight: 600;
	color: #000000;
}
.gallery-header__breadcrumbs .breadcrumb__divider {
	margin: 0 10px;
	color: #464646;
	border: 0.5px solid #FFFFFF;
	box-sizing: border-box;
	font-size: 0.75em;
}

.gallery-header__title h1 {
	font-weight: bold;
	font-size: 3em;
	line-height: 65px;
	color: #000000;
}

.header-filters {
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
}
.header-filters__buttons {
	display: flex;
	flex-direction: row;
	margin-right: 115px;
}
.header-filters__buttons .button {
	background-color: #FFFFFF;
	border: 3px solid #0CC5F4;
	box-sizing: border-box;
	border-radius: 20px;
	padding: 16px 30px;
	font-weight: 600;
	font-size: 1.125em;
	line-height: 25px;
	color: #0CC5F4;
	margin-right: 10px;
	text-decoration: none;
	text-transform: capitalize;
}
.header-filters__buttons .button:last-child {
	margin-right: 0;
}
.header-filters__buttons .button.active {
	background-color: #0CC5F4;
	box-shadow: 2px 4px 8px rgba(22, 143, 255, 0.25);
	color: #FFFFFF;
	font-weight: bold;
}
.header-filters__buttons .button-helper {
	width: 65px;
	height: 65px;
	background-color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 4px 6px 12px rgba(28, 28, 28, 0.15);
	border-radius: 50%;
	text-decoration: none;
}
.header-filters__buttons .button-helper span {
	color: #000000;
	font-size: 1.25em;
}
.header-filters__buttons .button-helper--next {
	margin-left: 25px;
}
.header-filters__buttons .button-helper--prev {
	margin-right: 35px;
}
.header-filters__search {
	position: relative;
}
.header-filters__search .search {
	display: flex;
	background-color: #EBE2E2;
	border-radius: 20px;
	height: 63px;
	padding: 0 40px;
	align-items: center;
}
.header-filters__search .search span {
	color: #464646;
	font-size: 1.25em;
}
.header-filters__search .search .form-control {
	background: transparent;
	border: none;
	margin-left: 30px;
	font-size: 1.125em;
	line-height: 25px;
	color: #464646;
}
.header-filters__search .search .form-control:focus, .header-filters__search .search .form-control:active, .header-filters__search .search .form-control:hover, .header-filters__search .search .form-control:focus-visible {
	box-shadow: none;
	outline: none;
	border: none;
}
.header-filters__search .search .form-control::placeholder {
	font-size: 1.125em;
	line-height: 25px;
	color: #464646;
}

.page-item {
	height: 50px;
	width: 50px;
	box-sizing: border-box;
	margin-right: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.page-item:first-child {
	display: none;
}
.page-item:last-child {
	margin-right: 0;
}
.page-item .page-link {
	height: 100%;
	width: 100%;
	font-weight: bold;
	font-size: 1.125em;
	line-height: 30px;
	text-align: center;
	color: #0CC5F4;
	border-radius: 50% !important;
	background-color: #FFFFFF;
	border: 2px solid #0CC5F4;
	transition-duration: 200ms;
}
.page-item .page-link:hover {
	background-color: rgba(12, 197, 244, 0.1);
	border: 2px solid #0CC5F4;
	color: #0CC5F4;
}
.page-item.active .page-link {
	color: #FFFFFF;
	background-color: #0CC5F4 !important;
	border-color: #0CC5F4 !important;
	border: 2px solid #0CC5F4;
}
.page-item.next .page-link, .page-item.prev .page-link {
	background-color: #FFFFFF;
	border: none;
	box-shadow: 4px 6px 12px rgba(28, 28, 28, 0.15);
	color: #000000;
	transition-duration: 200ms;
}
.page-item.next .page-link:hover, .page-item.prev .page-link:hover {
	box-shadow: 4px 6px 20px rgba(28, 28, 28, 0.2);
}
.page-item.next .page-link span, .page-item.prev .page-link span {
	line-height: 35px;
}

.content-header {
	z-index: 10;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	width: 100%;
}

.content-header__breadcrumbs {
	width: fit-content;
	margin-bottom: 5px;
	position: relative;
}
.content-header__breadcrumbs .breadcrumb__link {
	font-size: 0.875em;
	line-height: 19px;
}
.content-header__breadcrumbs a.breadcrumb__link {
	text-decoration: none;
	font-weight: normal;
	color: #353637;
}
.content-header__breadcrumbs span.breadcrumb__link {
	font-weight: 600;
	color: #000000;
}
.content-header__breadcrumbs .breadcrumb__divider {
	margin: 0 10px;
	color: #464646;
	border: 0.5px solid #FFFFFF;
	box-sizing: border-box;
	font-size: 12px;
}

.content-header__image {
	position: absolute;
	right: 75px;
	top: -80px;
	opacity: 0.5;
	width: 490px;
	height: 490px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.content-header__title h1 {
	font-weight: bold;
	font-size: 3em;
	line-height: 65px;
	color: #000000;
	margin-bottom: 0;
}

.container__navigation {
	position: relative;
	padding: 90px 0;
}
.container__navigation .navbar {
	padding: 0;
	z-index: 100;
}
.container__navigation .navbar .container-fluid {
	padding: 0;
}
.container__navigation .navbar .nav-item {
	padding-left: 75px;
}
.container__navigation .navbar .nav-item:first-child {
	padding-left: 0;
}
.container__navigation .navbar .nav-item.btn__primary {
	padding: 12px 35px;
}
.container__navigation .navbar .nav-item.btn__primary .nav-link {
	padding: 0;
}
.container__navigation .navbar .btn__primary {
	margin-left: 40px;
	cursor: pointer;
}
.container__navigation .navbar .btn__primary .nav-link {
	font-family: Nunito;
	font-style: normal;
	font-weight: 800;
	font-size: 1.125em;
	color: #FFFFFF;
}
.container__navigation .navbar .btn__primary + .nav-item {
	padding-left: 40px;
}
.container__navigation .navbar .nav-link {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 1.125em;
	line-height: 25px;
	color: #000000;
	position: relative;
	padding: 0;
}
.container__navigation .navbar .nav-item:not(.btn__primary) .nav-link.active {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: 1.125em;
	line-height: 25px;
	color: #000000;
}
.container__navigation .navbar .nav-item:not(.btn__primary) .nav-link.active span {
	background: #6EEF92;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	bottom: -10px;
	right: 0;
	left: 0;
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
}
.container__navigation .navbar .nav-item:not(.btn__primary) .nav-link.active span.pink {
	background: #FFA3A7;
}
.container__navigation .navbar .nav-item:not(.btn__primary) .nav-link.active span.yellow {
	background: #FFD266;
}

.container-fluid.container__navigation {
	padding-left: 200px;
	padding-right: 200px;
}

.container-fluid.container__navigation.container__navigation--wide {
	max-width: 100%;
	padding-top: 61px;
	padding-left: 200px;
	padding-right: 200px;
}

.button_container {
	height: 35px;
	width: 25px;
	cursor: pointer;
	z-index: 100;
	transition: opacity 0.25s ease;
	position: relative;
}
.button_container:hover {
	opacity: 0.7;
}
.button_container.active .top {
	transform: translateY(8px) translateX(0) rotate(45deg);
	background: #353637;
	width: 100%;
	margin-left: 0;
}
.button_container.active .middle {
	opacity: 0;
	background: #353637;
}
.button_container.active .bottom {
	transform: translateY(-8px) translateX(0) rotate(-45deg);
	background: #353637;
	width: 100%;
	margin-left: 0;
}
.button_container span {
	background: #353637;
	border: none;
	height: 3px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.35s ease;
	cursor: pointer;
	border-radius: 5px;
}
.button_container span:nth-of-type(1) {
	width: 50%;
	margin-left: 50%;
}
.button_container span:nth-of-type(2) {
	top: 8px;
}
.button_container span:nth-of-type(3) {
	top: 16px;
	width: 75%;
	margin-right: 25%;
}

.navigation-sm {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.navigation-sm div:first-child a {
	text-decoration: none;
}
.navigation-sm div:first-child a img.logo {
	width: 50px;
	margin-right: 13.58px;
}
.navigation-sm div:first-child a img:last-child {
	height: 38px;
}

.logo-row div {
	z-index: 100;
}
.logo-row div img:first-child {
	margin-right: 25.8px;
	width: 93px;
}
.logo-row div img:last-child {
	height: 71px;
}

.overlay ul li.overlay__item--blue, .overlay ul li.overlay__item--yellow, .overlay ul li.overlay__item--pink, .overlay ul li.overlay__item--green {
	background-size: 200% 100% !important;
	background-position: right !important;
	transition: all 0.55s ease-out;
	border-radius: 8px;
	padding: 5px 15px;
}
.overlay ul li.overlay__item--blue:hover, .overlay ul li.overlay__item--yellow:hover, .overlay ul li.overlay__item--pink:hover, .overlay ul li.overlay__item--green:hover {
	background-position: left !important;
}

.overlay {
	position: fixed;
	background: #FFFFFF;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s, visibility 0.35s, height 0.35s;
	overflow: hidden;
	z-index: 99;
}
.overlay.open {
	opacity: 1;
	visibility: visible;
	height: 100%;
}
.overlay.open li {
	animation: fadeInRight 0.5s ease forwards;
	animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
	animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
	animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
	animation-delay: 0.5s;
}
.overlay nav {
	position: relative;
	top: 110px;
	padding: 0 25px;
}
.overlay ul {
	list-style: none;
	padding: 0;
	display: inline-block;
	position: relative;
	height: 100%;
	width: 100%;
}
.overlay ul li {
	display: block;
	position: relative;
	opacity: 0;
	margin-bottom: 30px;
}
.overlay ul li a {
	display: block;
	position: relative;
	color: #000000;
	text-decoration: none;
	overflow: hidden;
	font-weight: 600;
	font-size: 1.125em;
	line-height: 25px;
	width: 100%;
}
.overlay ul li a span {
	float: right;
	font-size: 10px;
	line-height: 25px;
}
.overlay ul li.overlay__item--green {
	background: linear-gradient(to right, #6EEF92 50%, #fff 50%);
}
.overlay ul li.overlay__item--pink {
	background: linear-gradient(to right, #FFA3A7 50%, #fff 50%);
}
.overlay ul li.overlay__item--yellow {
	background: linear-gradient(to right, #FFD266 50%, #fff 50%);
}
.overlay ul li.overlay__item--blue {
	background: linear-gradient(to right, #8AE3FA 50%, #fff 50%);
}
.overlay ul .button-enroll {
	background-color: #0CC5F4;
	box-shadow: 4px 6px 12px rgba(22, 143, 255, 0.25);
	border-radius: 20px;
	width: 100%;
	text-align: center;
	padding: 15px 0;
}
.overlay ul .button-enroll a {
	font-weight: bold;
	font-size: 1em;
	line-height: 22px;
	color: #FFFFFF;
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}
.container__footer {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.footer-info {
	background-color: #FFF8E6;
	padding: 75px 200px;
	display: flex;
	flex-direction: row;
}
.footer-info__logo {
	margin-right: 150px;
}
.footer-info__logo img {
	width: 200px;
}
.footer-info__title {
	font-weight: bold;
	font-size: 1.125em;
	line-height: 25px;
	letter-spacing: 1px;
	color: #131111;
	margin-bottom: 50px;
}
.footer-info__description {
	font-weight: normal;
	font-size: 1em;
	line-height: 24px;
	color: #2F2F2F;
}
.footer-info__description div:first-child {
	margin-bottom: 25px;
}

.footer-legal {
	padding: 50px 200px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	background-color: #FFFFFF;
}
.footer-legal__link {
	margin-right: 50px;
	margin-bottom: 0;
	margin-top: 10px;
}
.footer-legal__link a, .footer-legal__link span {
	font-weight: normal;
	font-size: 14px;
	line-height: 19px;
	color: #131111;
	mix-blend-mode: normal;
	opacity: 0.72;
	text-decoration: none;
}
.footer-legal__link a:hover, .footer-legal__link span:hover {
	color: #131111;
}
.footer-legal__link:last-child {
	margin-right: 0;
}

* {
	font-family: Nunito, sans-serif;
	font-style: normal;
	box-sizing: border-box;
}

a:hover {
	text-decoration: none;
}

canvas, img, video {
	max-width: fit-content;
}

.nav-item.btn__primary {
	background: #0CC5F4;
	box-shadow: 2px 4px 8px rgba(22, 143, 255, 0.25);
	border-radius: 20px;
}

.btn.btn__primary {
	background: #0CC5F4;
	box-shadow: 4px 6px 12px rgba(22, 143, 255, 0.25);
	border-radius: 25px;
	padding: 15px 45px;
	font-weight: bold;
	font-size: 1.375em;
	line-height: 30px;
	color: #FFFFFF;
	transition-duration: 500ms;
}
.btn.btn__primary:hover {
	color: #FFFFFF;
	box-shadow: 4px 6px 20px rgba(22, 143, 255, 0.5);
}

.page-header {
	z-index: 10;
	margin-bottom: 100px;
	position: relative;
	display: inline-block;
}

.page-header__breadcrumbs {
	margin-bottom: 5px;
}
.page-header__breadcrumbs .breadcrumb__link {
	font-size: 0.875em;
	line-height: 19px;
}
.page-header__breadcrumbs a.breadcrumb__link {
	text-decoration: none;
	font-weight: normal;
	color: #353637;
}
.page-header__breadcrumbs span.breadcrumb__link {
	font-weight: 600;
	color: #000000;
}
.page-header__breadcrumbs .breadcrumb__divider {
	margin: 0 10px;
	color: #464646;
	border: 0.5px solid #FFFFFF;
	box-sizing: border-box;
	font-size: 0.75em;
}

.page-header__title h1 {
	font-weight: bold;
	font-size: 3em;
	line-height: 65px;
	color: #000000;
}

.gallery-header {
	z-index: 10;
	margin-bottom: 155px;
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: flex-end;
}
.gallery-header > div {
	position: relative;
}

.gallery-header__breadcrumbs {
	margin-bottom: 5px;
}
.gallery-header__breadcrumbs .breadcrumb__link {
	font-size: 0.875em;
	line-height: 19px;
}
.gallery-header__breadcrumbs a.breadcrumb__link {
	text-decoration: none;
	font-weight: normal;
	color: #353637;
}
.gallery-header__breadcrumbs span.breadcrumb__link {
	font-weight: 600;
	color: #000000;
}
.gallery-header__breadcrumbs .breadcrumb__divider {
	margin: 0 10px;
	color: #464646;
	border: 0.5px solid #FFFFFF;
	box-sizing: border-box;
	font-size: 0.75em;
}

.gallery-header__title h1 {
	font-weight: bold;
	font-size: 3em;
	line-height: 65px;
	color: #000000;
}

.header-filters {
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
}
.header-filters__buttons {
	display: flex;
	flex-direction: row;
	margin-right: 115px;
}
.header-filters__buttons .button {
	background-color: #FFFFFF;
	border: 3px solid #0CC5F4;
	box-sizing: border-box;
	border-radius: 20px;
	padding: 16px 30px;
	font-weight: 600;
	font-size: 1.125em;
	line-height: 25px;
	color: #0CC5F4;
	margin-right: 10px;
	text-decoration: none;
	text-transform: capitalize;
}
.header-filters__buttons .button:last-child {
	margin-right: 0;
}
.header-filters__buttons .button.active {
	background-color: #0CC5F4;
	box-shadow: 2px 4px 8px rgba(22, 143, 255, 0.25);
	color: #FFFFFF;
	font-weight: bold;
}
.header-filters__buttons .button-helper {
	width: 65px;
	height: 65px;
	background-color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 4px 6px 12px rgba(28, 28, 28, 0.15);
	border-radius: 50%;
	text-decoration: none;
}
.header-filters__buttons .button-helper span {
	color: #000000;
	font-size: 1.25em;
}
.header-filters__buttons .button-helper--next {
	margin-left: 25px;
}
.header-filters__buttons .button-helper--prev {
	margin-right: 35px;
}
.header-filters__search {
	position: relative;
}
.header-filters__search .search {
	display: flex;
	background-color: #EBE2E2;
	border-radius: 20px;
	height: 63px;
	padding: 0 40px;
	align-items: center;
}
.header-filters__search .search span {
	color: #464646;
	font-size: 1.25em;
}
.header-filters__search .search .form-control {
	background: transparent;
	border: none;
	margin-left: 30px;
	font-size: 1.125em;
	line-height: 25px;
	color: #464646;
}
.header-filters__search .search .form-control:focus, .header-filters__search .search .form-control:active, .header-filters__search .search .form-control:hover, .header-filters__search .search .form-control:focus-visible {
	box-shadow: none;
	outline: none;
	border: none;
}
.header-filters__search .search .form-control::placeholder {
	font-size: 1.125em;
	line-height: 25px;
	color: #464646;
}

.page-item {
	height: 50px;
	width: 50px;
	box-sizing: border-box;
	margin-right: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.page-item:first-child {
	display: none;
}
.page-item:last-child {
	margin-right: 0;
}
.page-item .page-link {
	height: 100%;
	width: 100%;
	font-weight: bold;
	font-size: 1.125em;
	line-height: 30px;
	text-align: center;
	color: #0CC5F4;
	border-radius: 50% !important;
	background-color: #FFFFFF;
	border: 2px solid #0CC5F4;
	transition-duration: 200ms;
}
.page-item .page-link:hover {
	background-color: rgba(12, 197, 244, 0.1);
	border: 2px solid #0CC5F4;
	color: #0CC5F4;
}
.page-item.active .page-link {
	color: #FFFFFF;
	background-color: #0CC5F4 !important;
	border-color: #0CC5F4 !important;
	border: 2px solid #0CC5F4;
}
.page-item.next .page-link, .page-item.prev .page-link {
	background-color: #FFFFFF;
	border: none;
	box-shadow: 4px 6px 12px rgba(28, 28, 28, 0.15);
	color: #000000;
	transition-duration: 200ms;
}
.page-item.next .page-link:hover, .page-item.prev .page-link:hover {
	box-shadow: 4px 6px 20px rgba(28, 28, 28, 0.2);
}
.page-item.next .page-link span, .page-item.prev .page-link span {
	line-height: 35px;
}

.content-header {
	z-index: 10;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	width: 100%;
}

.content-header__breadcrumbs {
	width: fit-content;
	margin-bottom: 5px;
	position: relative;
}
.content-header__breadcrumbs .breadcrumb__link {
	font-size: 0.875em;
	line-height: 19px;
}
.content-header__breadcrumbs a.breadcrumb__link {
	text-decoration: none;
	font-weight: normal;
	color: #353637;
}
.content-header__breadcrumbs span.breadcrumb__link {
	font-weight: 600;
	color: #000000;
}
.content-header__breadcrumbs .breadcrumb__divider {
	margin: 0 10px;
	color: #464646;
	border: 0.5px solid #FFFFFF;
	box-sizing: border-box;
	font-size: 12px;
}

.content-header__image {
	position: absolute;
	right: 75px;
	top: -80px;
	opacity: 0.5;
	width: 490px;
	height: 490px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.content-header__title h1 {
	font-weight: bold;
	font-size: 3em;
	line-height: 65px;
	color: #000000;
	margin-bottom: 0;
}

@media (min-width: 1920px) {
	body .content-news {
		width: calc((100vw - 594px) / 4);
		margin-right: 25px;
	}
}
@media (max-width: 1650px) {
	body .container-fluid.container__navigation {
		padding-left: 150px;
		padding-right: 150px;
	}
	body .container-fluid.container__navigation .navbar .nav-item {
		padding-left: 40px;
	}
	body .container-fluid.container__navigation .navbar .nav-item.btn__primary {
		padding-left: 30px;
		padding-right: 30px;
	}
	body .container-fluid.container__navigation .navbar .btn__primary + .nav-item {
		padding-left: 30px;
	}
	body .container-fluid.container__navigation.container__navigation--wide {
		padding-left: 150px;
		padding-right: 150px;
	}
	body .hero__container {
		padding: 0 150px;
	}
	body .hero__container .hero__logo img.logo {
		width: 138px;
	}
	body .hero__container .hero__logo img:last-child {
		width: 449px;
	}
	body .hero__container .hero__column-presentation .hero__image--small {
		width: 220px;
		height: 220px;
	}
	body .hero__container .hero__column-presentation .hero__image--small img {
		width: 280px;
		left: -15px;
	}
	body .hero__container .hero__column-presentation .hero__image--large {
		width: 400px;
		height: 400px;
	}
	body .hero__container .hero__column-presentation .hero__image--large img {
		width: 400px;
	}
	body .hero__container .hero__column-presentation .hero__image--small-img1 img,
body .hero__container .hero__column-presentation .hero__image--small-img2 img {
		width: 204px;
		left: 0;
	}
	body .hero__container .hero__column-presentation .hero__image--large-img2 img {
		width: 475px;
		left: -70px;
	}
	body .hero__container .hero__column-presentation .hero__image--large-img3 img {
		width: 430px;
		left: 15px;
	}
	body .featured-news__container {
		padding: 75px 95px 100px 150px;
	}
	body .featured-news__container .featured-news__carousel-control-next {
		left: 850px;
	}
	body .featured-news__container .featured-news__carousel-link {
		left: 955px;
	}
	body .featured-content__container {
		padding: 0 150px;
	}
	body .featured-content__container .featured-content__card--green, body .featured-content__container .featured-content__card--pink, body .featured-content__container .featured-content__card--yellow, body .featured-content__container .featured-content__card--blue {
		width: calc((100vw - 375px) / 4);
		padding: 25px 20px;
	}
	body .last-galleries__container {
		padding: 0 150px;
	}
	body .last-galleries__container .last-gallery {
		width: calc((100vw - 375px) / 4);
		height: calc((100vw - 375px) / 4);
	}
	body .footer-info {
		padding: 75px 150px;
	}
	body .footer-info__logo {
		margin-right: 100px;
	}
	body .footer-legal {
		padding: 50px 150px;
		/*.d-flex.flex-row {
			flex-direction: column !important;

			.footer-legal__link {
				margin-bottom: 10px;
				margin-top: 0;
			}
		}*/
	}
	body .logo__home-1 {
		left: 800px;
		top: -60px;
	}
	body .header-filters__buttons {
		margin-right: 75px;
	}
	body .header-filters__buttons .button {
		padding: 15px;
	}
}
@media (max-width: 1750px) and (min-width: 1650px) {
	body .container-fluid.container__navigation {
		padding-left: 175px;
		padding-right: 175px;
	}
	body .container-fluid.container__navigation .navbar .nav-item {
		padding-left: 50px;
	}
	body .container-fluid.container__navigation .navbar .nav-item.btn__primary {
		padding-left: 35px;
	}
	body .container-fluid.container__navigation .navbar .btn__primary + .nav-item {
		padding-left: 35px;
	}
	body .container-fluid.container__navigation.container__navigation--wide {
		padding-left: 175px;
		padding-right: 175px;
	}
	body .hero__container {
		padding: 0 175px 0 160px;
	}
	body .featured-news__container {
		padding: 75px 95px 100px 175px;
	}
	body .featured-news__container .featured-news__carousel-control-next {
		left: 875px;
	}
	body .featured-news__container .featured-news__carousel-link {
		left: 980px;
	}
	body .featured-content__container {
		padding: 0 175px;
	}
	body .featured-content__container .featured-content__card--green, body .featured-content__container .featured-content__card--pink, body .featured-content__container .featured-content__card--yellow, body .featured-content__container .featured-content__card--blue {
		width: calc((100vw - 425px) / 4);
	}
	body .last-galleries__container {
		padding: 0 175px;
	}
	body .last-galleries__container .last-gallery {
		width: calc((100vw - 425px) / 4);
		height: calc((100vw - 425px) / 4);
	}
	body .footer-info {
		padding: 75px 175px;
	}
	body .footer-legal {
		padding: 50px 175px;
	}
	body .container-fluid.container__content {
		padding: 10px 175px 125px 175px;
	}
	body .header-filters__buttons {
		margin-right: 100px;
	}
	body .header-filters__buttons .button {
		padding: 16px 20px;
	}
}
@media (max-width: 1727px) and (min-width: 1550px) {
	body .slogan {
		right: 92px;
		top: 40px;
	}
	body .slogan img {
		width: 400px;
	}
}
@media (max-width: 1550px) {
	html, body {
		font-size: 14px !important;
	}

	body .page__background {
		position: absolute;
		top: -30%;
		right: -10.5%;
		width: 50%;
		height: 100%;
		background-size: 50% 100%;
		z-index: -1;
		background: url(../images/logo_outlines.svg);
		background-repeat: no-repeat;
	}
	body .logo__home-1 {
		left: 650px;
		top: -20px;
	}
	body .container-fluid.container__navigation {
		padding: 75px 100px;
	}
	body .container-fluid.container__navigation .navbar .nav-item {
		padding-left: 40px;
	}
	body .container-fluid.container__navigation .navbar .nav-item.btn__primary {
		padding-left: 30px;
		padding-right: 30px;
	}
	body .container-fluid.container__navigation .navbar .btn__primary + .nav-item {
		padding-left: 30px;
	}
	body .container-fluid.container__navigation.container__navigation--wide {
		padding: 50px 100px;
	}
	body .container-fluid.container__content {
		padding-left: 100px;
		padding-right: 100px;
	}
	body .logo-row div {
		z-index: 100;
	}
	body .logo-row div img.logo {
		margin-right: 20px;
		width: 70.31px;
	}
	body .logo-row div img:last-child {
		height: 53.91px;
	}
	body .hero__container {
		padding: 0 100px;
	}
	body .hero__container .hero__action-arrow {
		left: 0;
		width: 80px;
	}
	body .hero__container .hero__logo img.logo {
		width: 108px;
		margin-bottom: 25px;
	}
	body .hero__container .hero__logo img:last-child {
		width: 350px;
	}
	body .featured-news__container {
		padding: 75px 100px;
	}
	body .featured-news__container .featured-news__carousel {
		width: 700px;
	}
	body .featured-news__container .featured-news__carousel .slick-slide {
		width: 325px !important;
	}
	body .featured-news__container .featured-news__card--green,
body .featured-news__container .featured-news__card--pink,
body .featured-news__container .featured-news__card--yellow,
body .featured-news__container .featured-news__card--blue {
		max-width: 325px;
		min-height: 325px;
		padding: 40px 25px;
	}
	body .featured-news__container .featured-news__carousel-control-next {
		left: 700px;
	}
	body .featured-news__container .featured-news__carousel-link {
		left: 800px;
	}
	body .slogan {
		right: 92px;
		top: 90px;
	}
	body .slogan img {
		width: 400px;
	}
	body .arrow__home-1 img {
		width: 150px;
	}
	body .arrow__page-2 {
		left: 245px;
		bottom: -35px;
	}
	body .arrow__page-2 img {
		width: 150px;
	}
	body .arrow__page-3 {
		right: -90px;
		bottom: -175px;
	}
	body .arrow__page-3 img {
		width: 75px;
	}
	body .arrow__page-content {
		right: -90px;
	}
	body .arrow__page-content img {
		width: 90px;
	}
	body .arrow__page-featured {
		left: -110px;
		top: -100px;
	}
	body .arrow__page-featured img {
		width: 150px;
	}
	body .featured-content__container {
		padding: 0 100px;
	}
	body .featured-content__container .featured-content__card--green,
body .featured-content__container .featured-content__card--pink,
body .featured-content__container .featured-content__card--yellow,
body .featured-content__container .featured-content__card--blue {
		width: calc((100vw - 275px) / 4);
	}
	body .last-galleries__container {
		padding: 0 100px;
	}
	body .last-galleries__container .last-gallery {
		width: calc((100vw - 275px) / 4);
		height: calc((100vw - 275px) / 4);
	}
	body .content__carousel-image {
		width: calc((100vw - 275px) / 4);
		height: calc((100vw - 275px) / 4);
	}
	body .footer-info {
		padding: 50px 100px;
	}
	body .footer-info__logo {
		margin-right: 75px;
	}
	body .footer-legal {
		padding: 50px 100px;
	}
	body .arrow__home-3 {
		bottom: -175px;
	}
	body .logo__home-3 {
		top: 60px;
		right: 90px;
	}
	body .container__text {
		padding-left: 75px;
	}
	body .page-header {
		margin-bottom: 50px;
	}
	body .gallery-header {
		margin-bottom: 50px;
	}
	body .container__content .row .col-md-3 {
		width: 30%;
	}
	body .container__content .row .col-12.col-md-9 {
		width: 70%;
	}
	body .header-filters__buttons {
		margin-right: 50px;
	}
	body .header-filters__search .search {
		padding: 0 25px;
	}
	body .container__content #galleries_list.row .col-md-3 {
		width: 25%;
	}
	body .gallery {
		width: calc((100vw - 350px) / 4);
		height: calc((100vw - 350px) / 4);
	}
	body .content-news {
		width: calc((100vw - 350px) / 4);
	}
	body .news__carousel .news__card,
body .news__carousel .news__card--green,
body .news__carousel .news__card--blue,
body .news__carousel .news__card--yellow,
body .news__carousel .news__card--pink,
body .news__carousel-small .news__card,
body .news__carousel-small .news__card--green,
body .news__carousel-small .news__card--blue,
body .news__carousel-small .news__card--yellow,
body .news__carousel-small .news__card--pink {
		padding: 35px 25px;
	}
}
@media (max-width: 1250px) {
	body {
		font-size: 12px !important;
	}
	body .container-fluid.container__navigation {
		padding: 75px;
	}
	body .container-fluid.container__navigation .navbar .nav-item {
		padding-left: 35px;
	}
	body .container-fluid.container__navigation .navbar .nav-item.btn__primary {
		padding-left: 20px;
		padding-right: 20px;
		margin-left: 25px;
	}
	body .container-fluid.container__navigation .navbar .btn__primary + .nav-item {
		padding-left: 20px;
		padding-right: 20px;
	}
	body .container-fluid.container__navigation.container__navigation--wide {
		padding: 50px 75px;
	}
	body .container-fluid.container__content {
		padding-left: 75px;
		padding-right: 75px;
	}
	body .hero__container {
		padding: 0 75px;
		padding-bottom: 50px;
	}
	body .hero__container .hero__action-arrow {
		left: 0;
		width: 80px;
	}
	body .hero__container .hero__logo img.logo {
		width: 91px;
	}
	body .hero__container .hero__logo img:last-child {
		width: 296px;
	}
	body .hero__container .hero__action-title {
		margin-bottom: 35px;
	}
	body .hero__container .hero__action-arrow {
		width: 60px;
		bottom: 15px;
	}
	body .hero__container .hero__column-presentation .hero__image img, body .hero__container .hero__column-presentation .hero__image--small img, body .hero__container .hero__column-presentation .hero__image--large img {
		position: absolute;
		bottom: 0;
	}
	body .hero__container .hero__column-presentation .hero__image--small {
		border: 6px solid #FFFFFF;
		width: 180px;
		height: 180px;
	}
	body .hero__container .hero__column-presentation .hero__image--small img {
		left: 2px;
		width: 200px;
	}
	body .hero__container .hero__column-presentation .hero__image--large {
		width: 350px;
		height: 350px;
	}
	body .hero__container .hero__column-presentation .hero__image--large img {
		width: 350px;
	}
	body .hero__container .hero__column-presentation .hero__image .hero__image-details--large, body .hero__container .hero__column-presentation .hero__image--small .hero__image-details--large, body .hero__container .hero__column-presentation .hero__image--large .hero__image-details--large {
		right: 10px;
		top: 15px;
	}
	body .hero__container .hero__column-presentation .hero__image--small-img1 img,
body .hero__container .hero__column-presentation .hero__image--small-img2 img {
		width: 164px;
	}
	body .hero__container .hero__column-presentation .hero__image--large-img2 img {
		width: 400px;
		left: -50px;
	}
	body .hero__container .hero__column-presentation .hero__image--large-img3 img {
		width: 375px;
	}
	body .btn.btn__primary {
		padding: 12.5px 35px;
	}
	body .featured-news__container {
		padding: 75px;
	}
	body .featured-news__container .featured-news__carousel {
		width: 650px;
	}
	body .featured-news__container .featured-news__carousel .slick-slide {
		width: 300px !important;
	}
	body .featured-news__container .featured-news__card--green,
body .featured-news__container .featured-news__card--pink,
body .featured-news__container .featured-news__card--yellow,
body .featured-news__container .featured-news__card--blue {
		max-width: 300px;
		min-height: 300px;
		padding: 35px 20px;
	}
	body .featured-news__container .featured-news__carousel-control-next {
		left: 625px;
	}
	body .featured-news__container .featured-news__carousel-link {
		left: 725px;
	}
	body .slogan {
		right: 40px;
		top: 50px;
	}
	body .slogan img {
		width: 350px;
	}
	body .arrow__home-2 {
		bottom: -300px;
	}
	body .arrow__home-2 img {
		width: 120px;
	}
	body .arrow__home-3 {
		bottom: -150px;
	}
	body .arrow__home-3 img {
		width: 60px;
	}
	body .featured-content__container {
		padding: 0 75px;
	}
	body .featured-content__container .featured-content__card--green,
body .featured-content__container .featured-content__card--pink,
body .featured-content__container .featured-content__card--yellow,
body .featured-content__container .featured-content__card--blue {
		width: calc((100vw - 200px) / 2);
		margin-bottom: 25px;
	}
	body .last-galleries__container {
		padding: 0 75px;
	}
	body .last-galleries__container .last-gallery {
		width: calc((100vw - 225px) / 4);
		height: calc((100vw - 225px) / 4);
	}
	body .content__carousel-image {
		width: calc((100vw - 225px) / 4);
		height: calc((100vw - 225px) / 4);
	}
	body .footer-info {
		padding: 50px 75px;
	}
	body .footer-info__logo {
		margin-right: 50px;
	}
	body .footer-legal {
		padding: 50px 75px;
	}
	body .logo__home-3 {
		top: 45px;
		right: 50px;
	}
	body .logo__home-3 img {
		width: 200px;
	}
	body .header-filters__buttons {
		margin-right: 35px;
	}
	body .header-filters__buttons .button {
		padding: 10px;
		border-radius: 15px;
	}
	body .header-filters__search .search {
		padding: 0 15px;
		height: 51px;
	}
	body .container__content #galleries_list.row .col-md-3 {
		width: 33.33%;
	}
	body .gallery {
		width: calc((100vw - 350px) / 3);
		height: calc((100vw - 350px) / 3);
	}
	body .arrow__page-content {
		right: -50px;
		bottom: -200px !important;
	}
	body .arrow__page-content img {
		width: 75px;
	}
	body .arrow__page-featured {
		left: -90px;
	}
	body .arrow__page-featured img {
		width: 125px;
	}
	body .news__table-content {
		padding: 35px 25px;
	}
	body .news__table-date {
		margin-right: 50px;
	}
}
@media (max-width: 1050px) {
	body {
		font-size: 11px !important;
	}
	body .hero__container {
		padding: 0 75px;
		padding-bottom: 50px;
	}
	body .hero__container .hero__action-arrow {
		width: 50px;
		left: -25px;
		bottom: 15px;
	}
	body .hero__container .hero__column-presentation .hero__image--large {
		width: 300px;
		height: 300px;
	}
	body .hero__container .hero__column-presentation .hero__image--large img {
		width: 300px;
	}
	body .hero__container .hero__column-presentation .hero__image--small {
		width: 150px;
		height: 150px;
	}
	body .hero__container .hero__column-presentation .hero__image--small img {
		width: 175px;
		left: -1px;
	}
	body .hero__container .hero__column-presentation .hero__image--small-img1 img,
body .hero__container .hero__column-presentation .hero__image--small-img2 img {
		width: 134px;
		left: 0;
	}
	body .hero__container .hero__column-presentation .hero__image--large-img2 img,
body .hero__container .hero__column-presentation .hero__image--large-img3 img {
		width: 350px;
	}
	body .logo-row div img:first-child {
		margin-right: 15px;
		width: 53px;
	}
	body .logo-row div img:last-child {
		height: 41px;
	}
	body .featured-news__container .featured-news__carousel-control-next
	body .featured-news__container .featured-news__carousel-control-prev, {
		width: 60px;
		height: 60px;
	}
	body .featured-news__container .featured-news__carousel-control-next span,
		body .featured-news__container .featured-news__carousel-control-prev span {
		line-height: 55px;
		font-size: 1.5em;
	}
	body .featured-news__container .featured-news__carousel-link {
		left: 700px;
	}
	body .last-galleries__container .last-gallery__image-count--blue,
body .last-galleries__container .last-gallery__image-count--green,
body .last-galleries__container .last-gallery__image-count--pink,
body .last-galleries__container .last-gallery__image-count--yellow {
		width: 75px;
		height: 75px;
		border: 6px solid #FFFFFF;
	}
	body .last-galleries__carousel-control--prev,
body .last-galleries__carousel-control--next {
		width: 50px;
		height: 50px;
	}
	body .last-galleries__carousel-control--prev span,
body .last-galleries__carousel-control--next span {
		font-size: 14px;
	}
	body .last-galleries__carousel-control--next {
		right: -15px;
	}
	body .last-galleries__carousel-control--prev {
		left: -30px;
	}
	body .slogan {
		right: 92px;
		top: 100px;
	}
	body .arrow__home-1 {
		right: 50px;
	}
	body .arrow__home-1 img {
		width: 100px;
	}
	body .footer-info__title {
		margin-bottom: 15px;
	}
	body .container__footer .col-12.col-md-6.col-xl-3 {
		margin-bottom: 25px;
	}
	body .container__footer .footer-info {
		padding-bottom: 25px;
	}
	body .footer-legal__link {
		margin-right: 35px;
	}
	body .side-menu {
		border-radius: 30px;
		background-color: #ccffcb;
		padding: 20px 15px;
	}
	body .side-menu__mask {
		border-top-left-radius: 30px;
	}
	body .container__text {
		padding-left: 35px;
	}
	body .container__content .row .col-md-3 {
		width: 35%;
	}
	body .container__content .row .col-12.col-md-9 {
		width: 65%;
	}
	body .arrow__page-1 {
		right: -250px;
	}
	body .header-filters {
		align-items: center;
	}
	body .header-filters__buttons {
		width: 215px;
		flex-wrap: wrap;
	}
	body .header-filters__buttons .button {
		margin-bottom: 10px;
	}
	body .content-table, body .content-table--blue, body .content-table--pink, body .content-table--yellow {
		border-radius: 30px;
		padding: 20px 15px !important;
	}
	body .content-table__mask {
		border-top-left-radius: 30px;
		width: 200px;
		height: 200px;
	}
	body .content-table__header {
		padding: 0 15px;
		margin-bottom: 30px;
	}
	body .content-table__row {
		padding: 20px 15px;
		border-radius: 20px;
		margin-bottom: 15px;
	}
	body .content-table__icon {
		display: none;
	}
	body .content-table__data > div {
		flex-direction: column;
	}
	body .content-table__date {
		margin-bottom: 10px;
	}
	body .arrow__page-3 {
		display: none !important;
	}
	body .gallery {
		width: calc((100vw - 225px) / 3);
		height: calc((100vw - 225px) / 3);
	}
	body .content-news {
		width: calc((100vw - 225px) / 4);
	}
	body .content-news__arrow {
		display: none;
	}
	body .content-news__mask {
		width: 150px;
		height: 150px;
	}
	body .content-header__image {
		right: 50px;
		top: -50px;
		width: 350px;
		height: 350px;
	}
	body .news__table-content {
		padding: 30px 20px;
	}
	body .news__table-date {
		margin-right: 35px;
	}
	body .news__table-link {
		display: none;
	}
}
@media (max-width: 992px) {
	body .overlay nav {
		top: 175px;
	}
	body .hero__container {
		padding-bottom: 0;
	}
	body .hero__container > div {
		width: 100%;
	}
	body .hero__container .hero__column-logo {
		transform: none;
	}
	body .featured-news__container {
		margin-top: 0;
	}
}
@media (max-width: 768px) {
	body {
		font-size: 16px !important;
	}
	body .overlay nav {
		top: 110px;
	}
	body .container__content .row .col-md-3 {
		width: 100% !important;
	}
	body .container__content .row .col-12.col-md-9 {
		width: 100%;
	}
	body .page__background {
		top: -4%;
		right: -17%;
		z-index: -1;
		height: 355px;
	}
	body .hero__container {
		padding: 25px;
	}
	body .hero__container > div {
		flex-direction: column-reverse;
	}
	body .hero__container .hero__column-logo {
		width: 100%;
		z-index: 5;
		transform: none;
	}
	body .hero__container .hero__column-logo .hero__logo {
		display: none !important;
	}
	body .hero__container .hero__column-logo .hero__action {
		margin-top: 140px;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		position: relative;
	}
	body .hero__container .hero__column-logo .hero__action-arrow {
		right: 0;
		transform: rotate(250deg);
		bottom: 110px;
		width: 62.46px;
		left: auto;
	}
	body .hero__container .hero__column-logo .hero__action-title {
		font-size: 1em;
		line-height: 140.19%;
		text-align: left;
		width: 75%;
		margin-bottom: 20px;
	}
	body .hero__container .hero__column-logo .hero__action-link {
		width: 100%;
	}
	body .hero__container .hero__column-logo .hero__action-link a {
		width: 100%;
		font-size: 16px;
		line-height: 22px;
	}
	body .hero__container .hero__column-presentation {
		width: 100%;
		display: block !important;
		position: relative;
	}
	body .hero__container .hero__column-presentation .hero__image--small {
		transform: translateY(93px);
		z-index: 6;
		height: 154px;
		width: 154px;
	}
	body .hero__container .hero__column-presentation .hero__image--small img {
		width: 140px;
	}
	body .hero__container .hero__column-presentation .hero__image--large {
		height: 206px;
		width: 206px;
		background: linear-gradient(57.54deg, #FFC4C7 13.55%, #FED4D6 82.35%);
		z-index: 5;
		position: absolute;
		top: 0;
		right: 0;
	}
	body .hero__container .hero__column-presentation .hero__image--large img {
		width: 215px;
		left: -3px;
	}
	body .hero__container .hero__column-presentation .hero__image--large-offset img {
		left: -16px;
	}
	body .hero__container .hero__column-presentation .hero__image--large-img2 img {
		width: 270px;
		left: -50px;
	}
	body .hero__container .hero__column-presentation .hero__image--large-img3 img {
		width: 230px;
		left: 5px;
	}
	body .hero__container .hero__column-presentation .hero__image-details--large {
		right: -10px !important;
	}
	body .section__title {
		margin-bottom: 35px;
	}
	body .section__title h2 {
		font-size: 24px;
		line-height: 131.69%;
	}
	body .section__title p {
		font-size: 16px;
	}
	body .featured-news__container {
		padding: 0;
		margin-top: 25px;
	}
	body .featured-content__container {
		padding: 0 25px;
		margin-bottom: 0;
	}
	body .featured-content__container .d-flex.flex-row {
		flex-direction: column !important;
	}
	body .featured-content__container .featured-content__mask--green,
body .featured-content__container .featured-content__mask--yellow,
body .featured-content__container .featured-content__mask--pink,
body .featured-content__container .featured-content__mask--blue {
		clip-path: circle(50% at 28% 24%);
		height: 200px;
		width: 200px;
	}
	body .featured-content__container .featured-content__card--green,
body .featured-content__container .featured-content__card--yellow,
body .featured-content__container .featured-content__card--pink,
body .featured-content__container .featured-content__card--blue {
		width: 100%;
		height: 188px;
		margin-bottom: 15px;
		padding: 25px 20px;
	}
	body .featured-content__container .featured-content__card--green .card__body-title,
body .featured-content__container .featured-content__card--yellow .card__body-title,
body .featured-content__container .featured-content__card--pink .card__body-title,
body .featured-content__container .featured-content__card--blue .card__body-title {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		margin-bottom: 15px;
	}
	body .featured-content__container .featured-content__card--green .card__body-title span,
body .featured-content__container .featured-content__card--yellow .card__body-title span,
body .featured-content__container .featured-content__card--pink .card__body-title span,
body .featured-content__container .featured-content__card--blue .card__body-title span {
		font-size: 40px !important;
	}
	body .featured-content__container .featured-content__card--green .card__body h4,
body .featured-content__container .featured-content__card--yellow .card__body h4,
body .featured-content__container .featured-content__card--pink .card__body h4,
body .featured-content__container .featured-content__card--blue .card__body h4 {
		font-size: 18px;
		margin-bottom: 0;
	}
	body .featured-content__container .featured-content__card--green .card__body .card__info,
body .featured-content__container .featured-content__card--yellow .card__body .card__info,
body .featured-content__container .featured-content__card--pink .card__body .card__info,
body .featured-content__container .featured-content__card--blue .card__body .card__info {
		margin-bottom: 10px;
	}
	body .featured-content__container .featured-content__card--green .card__body .card__info div:first-child,
body .featured-content__container .featured-content__card--yellow .card__body .card__info div:first-child,
body .featured-content__container .featured-content__card--pink .card__body .card__info div:first-child,
body .featured-content__container .featured-content__card--blue .card__body .card__info div:first-child {
		height: 40px;
		width: 40px;
		font-size: 16px;
	}
	body .featured-content__container .featured-content__card--green .card__body .card__info div:last-child,
body .featured-content__container .featured-content__card--yellow .card__body .card__info div:last-child,
body .featured-content__container .featured-content__card--pink .card__body .card__info div:last-child,
body .featured-content__container .featured-content__card--blue .card__body .card__info div:last-child {
		font-size: 16px;
		color: #000000;
	}
	body .featured-content__container .featured-content__card--green .card__body .card__description,
body .featured-content__container .featured-content__card--yellow .card__body .card__description,
body .featured-content__container .featured-content__card--pink .card__body .card__description,
body .featured-content__container .featured-content__card--blue .card__body .card__description {
		font-size: 14px;
	}
	body .container-fluid.container__navigation,
body .container-fluid.container__navigation.container__navigation--wide {
		padding: 25px;
	}
	body .footer-info {
		padding: 25px;
		flex-direction: column;
	}
	body .footer-info__logo {
		margin-right: 0;
		margin-bottom: 35px;
	}
	body .footer-info__logo img {
		width: 135px;
	}
	body .footer-info__title {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 20px;
	}
	body .footer-info__title:last-child {
		margin-bottom: 0;
	}
	body .footer-info__description {
		margin-bottom: 25px;
	}
	body .footer-legal {
		padding: 25px;
		flex-direction: column;
	}
	body .footer-legal .d-flex.flex-row {
		flex-direction: column !important;
	}
	body .footer-legal .d-flex.flex-row .footer-legal__link {
		margin-bottom: 10px;
		margin-top: 0;
	}
	body .container-fluid.container__content {
		padding: 25px;
	}
	body .container__text {
		padding-left: 0;
	}
	body .page-header {
		display: block;
		margin-bottom: 35px;
	}
	body .page-header .breadcrumb__link {
		font-size: 12px;
		line-height: 16px;
	}
	body .page-header .page-header__title h1 {
		font-size: 24px;
		line-height: 131.69%;
	}
	body .page-header .logo__page-1 {
		display: none;
	}
	body .page-header .arrow__page-1 {
		right: -10px;
		top: 10px;
	}
	body .page-header .arrow__page-1 img {
		width: 62.46px;
	}
	body .last-galleries__container {
		padding: 0 0 0 35px;
		margin-bottom: 0;
	}
	body .last-galleries__container p {
		padding-right: 25px;
	}
	body .last-galleries__container .last-galleries__carousel-small .slick-slide {
		margin: 0 7.5px;
	}
	body .last-galleries__container .last-galleries__carousel-small .slick-list {
		margin: 0 -7.5px;
		padding: 0 20% 0 0;
	}
	body .last-galleries__container .last-gallery {
		width: 250px;
		height: 250px;
	}
	body .last-galleries__container .last-gallery:hover .last-gallery__filter {
		background-color: rgba(104, 104, 104, 0.5);
	}
	body .last-galleries__container .last-gallery__info div:first-child {
		font-weight: 600;
		font-size: 14px;
	}
	body .last-galleries__container .last-gallery__info div:last-child {
		font-size: 16px;
	}
	body .last-galleries__container .last-gallery__image-count--green,
body .last-galleries__container .last-gallery__image-count--yellow,
body .last-galleries__container .last-gallery__image-count--pink,
body .last-galleries__container .last-gallery__image-count--blue {
		width: 75px;
		height: 75px;
	}
	body .last-galleries__container .last-gallery__image-count--green span,
body .last-galleries__container .last-gallery__image-count--yellow span,
body .last-galleries__container .last-gallery__image-count--pink span,
body .last-galleries__container .last-gallery__image-count--blue span {
		font-size: 20px;
	}
	body .gallery-header {
		flex-direction: column;
		align-items: flex-start;
		max-width: 100%;
		margin-bottom: 0;
	}
	body .gallery-header__title h1 {
		font-size: 24px;
		line-height: 131.69%;
		margin-bottom: 30px;
	}
	body .header-filters {
		flex-direction: column;
		max-width: 100%;
	}
	body .header-filters__buttons {
		margin-right: 0;
		margin-bottom: 15px;
		flex-wrap: nowrap;
		width: 100%;
	}
	body .header-filters__buttons .button {
		border: 1.5px solid #0CC5F4;
		box-sizing: border-box;
		border-radius: 15px;
		padding: 10px 9px;
		line-height: 19px;
		font-size: 14px;
		margin-bottom: 0;
	}
	body .header-filters__buttons .button.active {
		padding: 10px 20px;
	}
	body .header-filters__search {
		width: 100%;
	}
	body .header-filters__search .search {
		height: 52px;
		padding: 0 25px;
		width: 100%;
	}
	body .header-filters__search .search span {
		font-size: 18px;
	}
	body .header-filters__search .search .form-control {
		margin-left: 25px;
	}
	body .content-table__mask {
		width: 140px;
		height: 140px;
		border-top-left-radius: 30px;
	}
	body .content-table, body .content-table--blue, body .content-table--pink, body .content-table--yellow {
		padding: 10px !important;
		border-radius: 30px;
	}
	body .content-table__list a:last-child .content-table__row {
		margin-bottom: 0;
	}
	body .content-table__row {
		border-radius: 20px;
		padding: 15px;
		margin-bottom: 10px;
		height: 100px;
	}
	body .content-table__icon {
		display: none;
	}
	body .content-table__data {
		display: flex;
	}
	body .content-table__data > div {
		flex-direction: column;
	}
	body .content-table__date {
		font-size: 12px;
		line-height: 16px;
		color: #424242;
		margin-bottom: 5px;
	}
	body .content-table__title {
		font-family: Nunito;
		font-style: normal;
		font-weight: bold;
		font-size: 16px;
		line-height: 24px;
		color: #000000;
	}
	body .gallery-header > div {
		width: 100%;
	}
	body .gallery-header__breadcrumbs .breadcrumb__link {
		font-size: 12px;
		line-height: 16px;
	}
	body .news__table-content {
		border: 4px solid #8AE3FA;
		box-shadow: 5px 12px 18px rgba(0, 0, 0, 0.08);
		border-radius: 20px;
		margin-bottom: 15px;
		flex-direction: column;
		padding: 15px 20px;
		align-items: flex-start;
	}
	body .news__table-date {
		font-size: 12px;
		margin-right: 0;
	}
	body .news__table-title {
		font-size: 16px;
	}
	body .news__table-cell {
		flex-direction: column;
		align-items: flex-start;
	}
	body .news__table-link {
		display: none;
	}
	body .gallery {
		width: 275px;
		height: 275px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 35px;
	}
	body .gallery:hover .gallery__filter {
		background-color: rgba(104, 104, 104, 0.5);
	}
	body .gallery .gallery__image-count,
body .gallery .gallery__image-count--blue,
body .gallery .gallery__image-count--pink,
body .gallery .gallery__image-count--yellow,
body .gallery .gallery__image-count--green {
		width: 75px;
		height: 75px;
		bottom: 0;
		right: 0;
	}
	body .gallery .gallery__image-count span,
body .gallery .gallery__image-count--blue span,
body .gallery .gallery__image-count--pink span,
body .gallery .gallery__image-count--yellow span,
body .gallery .gallery__image-count--green span {
		font-size: 20px;
	}
	body .gallery__info div:first-child {
		font-weight: 600;
		font-size: 14px;
	}
	body .gallery__info div:last-child {
		font-size: 16px;
	}
	body .container__404 {
		padding: 25px;
	}
	body .container__404 .navbar__404 div img:first-child {
		margin-right: 13.58px;
		width: 50px;
	}
	body .container__404 .navbar__404 div img:last-child {
		height: 38px;
	}
	body .container__404 .content__404 {
		margin-top: 25px;
	}
	body .container__404 .content__404 div:nth-child(1) {
		font-size: 150px;
	}
	body .container__404 .content__404 div:nth-child(1) span:nth-child(2) {
		margin-left: -40px;
	}
	body .container__404 .content__404 div:nth-child(1) span:nth-child(3) {
		margin-left: -40px;
	}
	body .container__404 .content__404 div:nth-child(2) {
		text-align: center;
		font-size: 32px;
		margin-bottom: 25px;
	}
	body .container__404 .content__404 div:nth-child(3) a {
		font-size: 18px;
	}
	body .content-data {
		margin-top: 15px;
	}
	body .content-data__section-title {
		margin-bottom: 25px;
	}
	body .content-data__section-title h4 {
		font-size: 24px;
	}
	body .content-featured .d-flex.flex-row.justify-content-between {
		flex-direction: column !important;
	}
	body .content-featured .d-flex.flex-row.justify-content-between .content-news {
		width: 100%;
		padding: 20px;
		height: 135px;
		margin-bottom: 15px;
		border-radius: 30px;
	}
	body .content-news__data span {
		font-size: 12px;
	}
	body .content-news__data div {
		font-size: 18px;
	}
	body .content-news__arrow {
		bottom: 20px;
		right: 20px;
	}
	body .content-news__arrow span {
		font-size: 16px;
	}
	body .content-news__mask {
		width: 195px;
		height: 195px;
		border-top-left-radius: 30px;
	}
	body .content-header__breadcrumbs a.breadcrumb__link {
		font-size: 12px;
	}
	body .content-header__breadcrumbs .breadcrumb__divider {
		margin: 0 5px;
	}
	body .content-header__title h1 {
		font-size: 24px;
		line-height: 131.69%;
	}
	body .content-data__info {
		font-size: 12px;
		line-height: 16px;
		margin-bottom: 15px;
	}
	body .content-data__text {
		width: 100%;
		font-size: 14px;
		line-height: 175%;
	}
	body .content-data__section {
		margin-top: 50px;
	}
	body .content-data__section.section__table {
		overflow-x: scroll;
		margin: 50px -25px 0 -25px;
		width: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	body .content-data__section.section__table::-webkit-scrollbar {
		display: none;
	}
	body .content-data__section.section__table .content-data__section-title {
		position: sticky;
		left: 0;
		padding-left: 25px;
	}
	body .content-data__section.section__table .content-data__section-container {
		padding: 0 25px;
		width: 1250px;
	}
	body .content-data__section.section__table .content-table, body .content-data__section.section__table .content-table--yellow, body .content-data__section.section__table .content-table--pink, body .content-data__section.section__table .content-table--blue {
		width: 100%;
	}
	body .content-data__section.section__table .content-table__row {
		height: fit-content;
	}
	body .content-table__header {
		padding: 0 15px;
		margin-bottom: 15px;
	}
	body .content-table__header-title {
		font-size: 16px;
		line-height: 150%;
	}
	body .content-featured {
		margin-top: 50px;
	}
	body .content-data__news-front {
		margin-top: 0;
		margin-bottom: 15px;
		padding: 7px 15px;
	}
	body .content-data__news-front span:first-child {
		font-size: 16px;
		margin-right: 15px;
	}
	body .content-data__news-front span:last-child {
		font-size: 14px;
	}
	body .contact__title {
		margin-top: 20px;
		margin-bottom: 20px;
		font-size: 20px;
		line-height: 20px;
	}
	body .contact__title#kontakti-uciteljev {
		padding-top: 150px;
	}
	body .contact-teachers__section {
		margin-bottom: 25px;
	}
	body .contact-teachers__group-title h6 {
		font-size: 12px;
		line-height: 16px;
		margin-bottom: 20px;
		margin-right: 25px;
	}
	body .contact-teachers__group-divider div {
		margin-top: 7px;
	}
	body .contact__teacher {
		margin-bottom: 15px;
	}
	body .contact__teacher p {
		font-size: 16px;
		line-height: 22px;
	}
	body .contact__teacher a {
		font-size: 18px;
		line-height: 25px;
	}
	body .category__title {
		font-weight: bold;
		font-size: 18px;
		line-height: 20px;
		margin-bottom: 25px;
	}
	body .teacher {
		margin-top: 25px;
	}
	body .container__text .category .row .col-md-6:first-child .teacher {
		margin-top: 0;
	}
	body .container__text .category .row .col-md-6:last-child .divider__teacher {
		display: none !important;
	}
	body .category {
		margin-bottom: 50px;
	}
	body .teacher .teacher__avatar, body .teacher .teacher__avatar--no-image, body .teacher .teacher__avatar--image {
		width: 50px;
		height: 50px;
		margin-right: 20px;
	}
	body .teacher .teacher__avatar--no-image span {
		font-size: 16px;
	}
	body .teacher__name {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 0;
	}
	body .teacher__info div:first-child {
		width: 86.8px;
	}
	body .teacher__classes > div:first-child {
		margin-right: 15px;
	}
	body .teacher__info div:first-child div,
body .teacher__classes div:first-child div {
		font-size: 14px;
		line-height: 20px;
	}
	body .teacher__info div:last-child div,
body .teacher__classes div:last-child div {
		font-size: 14px;
		line-height: 20px;
		word-break: break-all;
	}
	body .header-filters__buttons .button-helper {
		box-shadow: 4px 6px 12px rgba(28, 28, 28, 0.15);
		width: 40px;
		height: 40px;
	}
	body .header-filters__buttons .button-helper span {
		font-size: 13px;
	}
	body .header-filters__buttons .button-helper--prev {
		margin-right: 15px;
	}
	body .header-filters__buttons .button-helper--next {
		margin-left: 15px;
	}
	body .arrow__page-content, body .arrow__page-featured {
		display: none !important;
	}
}
html, body {
	font-family: Nunito, sans-serif !important;
	font-size: 16px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	position: relative;
	overflow-x: hidden;
	margin: 0;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

.skip-to-content {
    position: absolute;
    left: 2px
}

.skip-to-content:active,.skip-to-content:focus {
    position: static;
    left: 70px;
    width: auto;
    height: auto;
    overflow: visible
}

.skip-to-content:active .skip-to-content-hide,.skip-to-content:focus .skip-to-content-hide {
    display: block;
    position: absolute;
    border: solid 1px #d8d8d8;
    background: #eeeff0;
    padding: 5px;
    margin-top: 10px;
    top: 2px;
    left: 70px;
    font-size: 1.2rem
}

.skip-to-content .skip-to-content-hide {
    display: none;
    position: relative;
    z-index: 999
}

.page__background {
	position: absolute;
	top: -60%;
	right: -30.5%;
	width: 88%;
	height: 160%;
	background-size: 88% 160%;
	z-index: -1;
	background: url("../images/logo_outlines.svg");
	background-repeat: no-repeat;
}

.dropdown-menu.dropdown__header {
	border-radius: 25px;
	border: none;
	box-sizing: border-box;
	box-shadow: 0px 15px 20px rgba(31, 31, 31, 0.15);
	padding: 15px 5px;
	margin-top: 0;
	left: inherit;
}
.dropdown-menu.dropdown__header li {
	margin-bottom: 5px;
}
.dropdown-menu.dropdown__header li:last-child {
	margin-bottom: 0;
}
.dropdown-menu.dropdown__header a.dropdown-item {
	padding-top: 7.5px;
	padding-bottom: 7.5px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.125em;
	line-height: 20px;
	color: #353637;
	border-radius: 8px;
}
.dropdown-menu.dropdown__header a.dropdown-item:active {
	color: #FFFFFF;
	background-color: #6EEF92;
}

.dropdown-menu.dropdown__header--pink a.dropdown-item:active {
	background-color: #FFA3A7;
}

.section__title {
	margin-bottom: 75px;
}
.section__title h2 {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 3em;
	line-height: 131.69%;
	color: #000000;
	margin-bottom: 0;
}
.section__title p {
	margin-top: 25px;
	margin-bottom: 0;
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 1.375em;
	line-height: 151.69%;
	color: #515151;
}

.hero__container {
	padding: 0 200px 0 160px;
}
.hero__container > div {
	display: flex;
	flex-direction: row;
}
.hero__container .hero__column-logo {
	transform: translateY(-140px);
	width: 45%;
	z-index: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero__container .hero__logo {
	margin-bottom: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.hero__container .hero__logo img.logo {
	margin-bottom: 35px;
	width: 169px;
}
.hero__container .hero__logo img:last-child {
	width: 551px;
}
.hero__container .hero__action {
	display: flex;
	align-items: center;
	flex-direction: column;
	position: relative;
}
.hero__container .hero__action-arrow {
	position: absolute;
	width: 98.14px;
	bottom: 0;
	left: 25px;
	transform: matrix(-0.97, -0.26, -0.26, 0.97, 0, 0);
}
.hero__container .hero__action-title {
	margin-bottom: 50px;
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 1.4em;
	line-height: 140.19%;
	text-align: center;
	color: #686868;
}
.hero__container .hero__action-link {
	position: relative;
}
.hero__container .hero__column-presentation {
	width: 55%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.hero__container .hero__column-presentation .hero__image, .hero__container .hero__column-presentation .hero__image--large, .hero__container .hero__column-presentation .hero__image--small {
	box-sizing: border-box;
	position: relative;
	border-radius: 50%;
}
.hero__container .hero__column-presentation .hero__image img, .hero__container .hero__column-presentation .hero__image--large img, .hero__container .hero__column-presentation .hero__image--small img {
	position: absolute;
	bottom: 0;
}
.hero__container .hero__column-presentation .hero__image--small {
	background: linear-gradient(67.65deg, #B9EBF8 9.85%, #D4EFF6 88.63%);
	border: 8px solid #FFFFFF;
	width: 270px;
	height: 270px;
	z-index: 2;
	transform: translate(50px, 180px);
}
.hero__container .hero__column-presentation .hero__image--small img {
	left: -8px;
}
.hero__container .hero__column-presentation .hero__image--large {
	background: linear-gradient(57.54deg, #FFC4C7 13.55%, #FED4D6 82.35%);
	width: 490px;
	height: 490px;
	z-index: 1;
}
.hero__container .hero__column-presentation .hero__image--large-img2 img {
	left: -85px;
}

.hero__image-details, .hero__image-details--large, .hero__image-details--small {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 999;
}
.hero__image-details--small {
	top: 10px;
	left: -20px;
}
.hero__image-details--small .hero__image-details__container span {
	padding-left: 15px;
}
.hero__image-details--large {
	bottom: 50px;
	right: 20px;
}
.hero__image-details__button {
	min-width: 70px;
	width: fit-content;
	height: 70px;
	background-color: #FFFFFF;
	border-radius: 70px;
	padding: 20px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(0, 0, 0, 0.2) 0px 12px 28px 0px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition-duration: 150ms;
}
.hero__image-details__button:hover {
	box-shadow: none;
}
.hero__image-details__button span {
	font-size: 24px;
}
.hero__image-details__button .hero__image-details__container {
	width: fit-content;
	box-sizing: border-box;
	display: none;
	color: #000000;
	max-width: 0;
	-webkit-transition: max-width 750ms;
	transition: max-width 750ms;
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
	overflow: hidden;
}
.hero__image-details__button .hero__image-details__container span {
	display: block;
}
.hero__image-details__button .hero__image-details__container span:first-child {
	font-size: 16px;
	font-weight: 700;
}
.hero__image-details__button .hero__image-details__container span:last-child {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.75);
	margin-top: -5px;
}
.hero__image-details__button:hover .hero__image-details__container {
	max-width: 500px;
}

.featured-content__container {
	position: relative;
	padding: 0 222px;
	margin-bottom: 100px;
	display: flex;
	flex-direction: column;
}
.featured-content__container .featured-content__card--blue, .featured-content__container .featured-content__card--yellow, .featured-content__container .featured-content__card--pink, .featured-content__container .featured-content__card--green {
	width: calc((100vw - 519px) / 4);
	height: 350px;
	border-radius: 45px;
	background-color: #CCFFCB;
	position: relative;
	padding: 35px 25px;
	z-index: 0;
	cursor: pointer;
	transition-duration: 250ms;
}
.featured-content__container .featured-content__card--blue:hover, .featured-content__container .featured-content__card--yellow:hover, .featured-content__container .featured-content__card--pink:hover, .featured-content__container .featured-content__card--green:hover {
	transform: scale(1.05);
	transform: rotate(2deg);
}
.featured-content__container .featured-content__card--blue .card__body, .featured-content__container .featured-content__card--yellow .card__body, .featured-content__container .featured-content__card--pink .card__body, .featured-content__container .featured-content__card--green .card__body {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.featured-content__container .featured-content__card--blue .card__body h4, .featured-content__container .featured-content__card--yellow .card__body h4, .featured-content__container .featured-content__card--pink .card__body h4, .featured-content__container .featured-content__card--green .card__body h4 {
	font-family: Nunito, sans-serif;
	font-weight: bold;
	font-size: 2em;
	line-height: 42px;
	color: #000000;
	margin-bottom: 25px;
}
.featured-content__container .featured-content__card--blue .card__body .card__info, .featured-content__container .featured-content__card--yellow .card__body .card__info, .featured-content__container .featured-content__card--pink .card__body .card__info, .featured-content__container .featured-content__card--green .card__body .card__info {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 15px;
}
.featured-content__container .featured-content__card--blue .card__body .card__info div:first-child, .featured-content__container .featured-content__card--yellow .card__body .card__info div:first-child, .featured-content__container .featured-content__card--pink .card__body .card__info div:first-child, .featured-content__container .featured-content__card--green .card__body .card__info div:first-child {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	background-color: #FFFFFF;
	font-weight: bold;
	font-size: 1.375em;
	color: #000000;
	margin-right: 20px;
}
.featured-content__container .featured-content__card--blue .card__body .card__info div:last-child, .featured-content__container .featured-content__card--yellow .card__body .card__info div:last-child, .featured-content__container .featured-content__card--pink .card__body .card__info div:last-child, .featured-content__container .featured-content__card--green .card__body .card__info div:last-child {
	font-family: Nunito, sans-serif;
	font-weight: 600;
	font-size: 1.25em;
	line-height: 24px;
	color: #000000;
}
.featured-content__container .featured-content__card--blue .card__body .card__description, .featured-content__container .featured-content__card--yellow .card__body .card__description, .featured-content__container .featured-content__card--pink .card__body .card__description, .featured-content__container .featured-content__card--green .card__body .card__description {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 1.125em;
	line-height: 131.69%;
	color: #464646;
}
.featured-content__container .featured-content__card--blue .card__body .card__icon--blue, .featured-content__container .featured-content__card--yellow .card__body .card__icon--blue, .featured-content__container .featured-content__card--pink .card__body .card__icon--blue, .featured-content__container .featured-content__card--green .card__body .card__icon--blue, .featured-content__container .featured-content__card--blue .card__body .card__icon--pink, .featured-content__container .featured-content__card--yellow .card__body .card__icon--pink, .featured-content__container .featured-content__card--pink .card__body .card__icon--pink, .featured-content__container .featured-content__card--green .card__body .card__icon--pink, .featured-content__container .featured-content__card--blue .card__body .card__icon--yellow, .featured-content__container .featured-content__card--yellow .card__body .card__icon--yellow, .featured-content__container .featured-content__card--pink .card__body .card__icon--yellow, .featured-content__container .featured-content__card--green .card__body .card__icon--yellow, .featured-content__container .featured-content__card--blue .card__body .card__icon--green, .featured-content__container .featured-content__card--yellow .card__body .card__icon--green, .featured-content__container .featured-content__card--pink .card__body .card__icon--green, .featured-content__container .featured-content__card--green .card__body .card__icon--green {
	font-size: 3.9375em;
	align-self: flex-end;
	margin-top: auto;
}
.featured-content__container .featured-content__card--blue .card__body .card__icon--green, .featured-content__container .featured-content__card--yellow .card__body .card__icon--green, .featured-content__container .featured-content__card--pink .card__body .card__icon--green, .featured-content__container .featured-content__card--green .card__body .card__icon--green {
	color: #6EEF92;
	text-shadow: 0 0 1px #25F05E;
}
.featured-content__container .featured-content__card--blue .card__body .card__icon--yellow, .featured-content__container .featured-content__card--yellow .card__body .card__icon--yellow, .featured-content__container .featured-content__card--pink .card__body .card__icon--yellow, .featured-content__container .featured-content__card--green .card__body .card__icon--yellow {
	color: #FFD266;
	text-shadow: 0 0 1px #FFB300;
}
.featured-content__container .featured-content__card--blue .card__body .card__icon--pink, .featured-content__container .featured-content__card--yellow .card__body .card__icon--pink, .featured-content__container .featured-content__card--pink .card__body .card__icon--pink, .featured-content__container .featured-content__card--green .card__body .card__icon--pink {
	color: #FFA3A7;
	text-shadow: 0 0 1px #FFB2B5;
}
.featured-content__container .featured-content__card--blue .card__body .card__icon--blue, .featured-content__container .featured-content__card--yellow .card__body .card__icon--blue, .featured-content__container .featured-content__card--pink .card__body .card__icon--blue, .featured-content__container .featured-content__card--green .card__body .card__icon--blue {
	color: #8AE3FA;
	text-shadow: 0 0 1px #00C5F8;
}
.featured-content__container .featured-content__mask--blue, .featured-content__container .featured-content__mask--yellow, .featured-content__container .featured-content__mask--pink, .featured-content__container .featured-content__mask--green {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #6EFF6B;
	clip-path: circle(50% at 25% 25%);
	height: 265px;
	width: 265px;
	border-top-left-radius: 45px;
}
.featured-content__container .featured-content__card--green {
	background-color: #CCFFCB;
}
.featured-content__container .featured-content__mask--green {
	background-color: #6EEF92;
}
.featured-content__container .featured-content__card--pink {
	background-color: #FED4D6;
}
.featured-content__container .featured-content__mask--pink {
	background-color: #FFA3A7;
}
.featured-content__container .featured-content__card--yellow {
	background-color: #FFE7AD;
}
.featured-content__container .featured-content__mask--yellow {
	background-color: #FFD266;
}
.featured-content__container .featured-content__card--blue {
	background-color: #BCEBF8;
}
.featured-content__container .featured-content__mask--blue {
	background-color: #8AE3FA;
}

.featured-news__container {
	position: relative;
	margin-top: -140px;
	padding: 75px 95px 100px 215px;
}
.featured-news__container .featured-news__carousel-control-next,
.featured-news__container .featured-news__carousel-control-prev {
	display: block;
	position: absolute;
	left: 925px;
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #0CC5F4;
	border: 4px solid #FFFFFF;
	box-sizing: border-box;
	box-shadow: 4px 6px 12px rgba(22, 143, 255, 0.25);
	cursor: pointer;
	z-index: 2;
}
.featured-news__container .featured-news__carousel-control-next span,
.featured-news__container .featured-news__carousel-control-prev span {
	display: inherit;
	line-height: 75px;
	vertical-align: middle;
	text-align: center;
	font-size: 2em;
	color: #fff;
}
.featured-news__container .featured-news__carousel-link {
	position: absolute;
	left: 1030px;
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
	z-index: 1;
	height: 48px;
}
.featured-news__container .featured-news__carousel-link a {
	font-weight: bold;
	font-size: 1em;
	line-height: 151.69%;
	color: #565656;
	text-decoration: none;
}
.featured-news__container .featured-news__carousel {
	position: relative;
	width: 800px;
	z-index: 1;
}
.featured-news__container .featured-news__carousel .featured-news__carousel-slide:focus-visible {
	outline: none;
}
.featured-news__container .featured-news__carousel .slick-list {
	padding-right: 50px;
}
.featured-news__container .featured-news__carousel .slick-slide {
	box-sizing: border-box;
	padding: 25px 12.5px;
	width: 375px !important;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.3s linear, opacity 0.3s linear;
}
.featured-news__container .featured-news__carousel .slick-slide:first-child {
	/*padding-left: 0;
	width: 375px !important;*/
}
.featured-news__container .featured-news__carousel .slick-slide.slick-active {
	visibility: visible;
	opacity: 1;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--blue, .featured-news__container .featured-news__carousel-small .featured-news__card--pink, .featured-news__container .featured-news__carousel-small .featured-news__card--yellow, .featured-news__container .featured-news__carousel-small .featured-news__card--green, .featured-news__container .featured-news__card--blue, .featured-news__container .featured-news__card--pink, .featured-news__container .featured-news__card--yellow, .featured-news__container .featured-news__card--green {
	display: flex;
	flex-direction: column;
	padding: 50px 35px;
	background-color: #FFFFFF;
	box-sizing: border-box;
	box-shadow: 0px 15px 20px rgba(31, 31, 31, 0.15);
	border-radius: 45px;
	width: 100%;
	height: 100%;
	cursor: pointer;
	max-width: 350px;
	min-height: 350px;
	user-select: none;
}
.featured-news__container .featured-news__card--blue .featured-news__date, .featured-news__container .featured-news__card--pink .featured-news__date, .featured-news__container .featured-news__card--yellow .featured-news__date, .featured-news__container .featured-news__card--green .featured-news__date {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 0.875em;
	line-height: 131.69%;
	color: #7B7B7B;
	margin-bottom: 10px;
}
.featured-news__container .featured-news__card--blue .featured-news__title, .featured-news__container .featured-news__card--pink .featured-news__title, .featured-news__container .featured-news__card--yellow .featured-news__title, .featured-news__container .featured-news__card--green .featured-news__title {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 1.5em;
	line-height: 131.69%;
	color: #000000;
	margin-bottom: 25px;
}
.featured-news__container .featured-news__card--blue .featured-news__text, .featured-news__container .featured-news__card--pink .featured-news__text, .featured-news__container .featured-news__card--yellow .featured-news__text, .featured-news__container .featured-news__card--green .featured-news__text {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 1em;
	line-height: 138.19%;
	color: #343434;
	margin-bottom: 25px;
}
.featured-news__container .featured-news__card--blue .featured-news__link, .featured-news__container .featured-news__card--pink .featured-news__link, .featured-news__container .featured-news__card--yellow .featured-news__link, .featured-news__container .featured-news__card--green .featured-news__link {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: auto;
}
.featured-news__container .featured-news__card--blue .featured-news__link > a, .featured-news__container .featured-news__card--pink .featured-news__link > a, .featured-news__container .featured-news__card--yellow .featured-news__link > a, .featured-news__container .featured-news__card--green .featured-news__link > a {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 0.875em;
	line-height: 19px;
	color: #303030;
	text-decoration: none;
}
.featured-news__container .featured-news__card--blue .featured-news__link > a span:first-child, .featured-news__container .featured-news__card--pink .featured-news__link > a span:first-child, .featured-news__container .featured-news__card--yellow .featured-news__link > a span:first-child, .featured-news__container .featured-news__card--green .featured-news__link > a span:first-child {
	margin-right: 20px;
}
.featured-news__container .featured-news__card--green {
	border: 7px solid #6EEF92;
}
.featured-news__container .featured-news__card--yellow {
	border: 7px solid #FFD266;
}
.featured-news__container .featured-news__card--pink {
	border: 7px solid #FFA3A7;
}
.featured-news__container .featured-news__card--blue {
	border: 7px solid #8AE3FA;
}
.featured-news__container .featured-news__carousel-small {
	padding-left: 35px;
}
.featured-news__container .featured-news__carousel-small .slick-slide {
	margin: 0 10px;
}
.featured-news__container .featured-news__carousel-small .slick-list {
	margin: 0 -10px;
	padding: 0 20% 50px 0;
}
.featured-news__container .featured-news__carousel-small .featured-news__carousel-slide {
	width: 250px !important;
	height: 235px;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--green,
.featured-news__container .featured-news__carousel-small .featured-news__card--pink,
.featured-news__container .featured-news__carousel-small .featured-news__card--blue,
.featured-news__container .featured-news__carousel-small .featured-news__card--yellow {
	padding: 25px 20px;
	height: 235px !important;
	width: 100%;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--blue, .featured-news__container .featured-news__carousel-small .featured-news__card--pink, .featured-news__container .featured-news__carousel-small .featured-news__card--yellow, .featured-news__container .featured-news__carousel-small .featured-news__card--green {
	display: flex;
	flex-direction: column;
	padding: 25px 20px;
	background-color: #FFFFFF;
	box-sizing: border-box;
	box-shadow: 5px 10px 10px rgba(31, 31, 31, 0.05);
	border-radius: 30px;
	width: 100%;
	height: 100%;
	cursor: pointer;
	max-width: 250px;
	min-height: 235px;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--blue .featured-news__date, .featured-news__container .featured-news__carousel-small .featured-news__card--pink .featured-news__date, .featured-news__container .featured-news__carousel-small .featured-news__card--yellow .featured-news__date, .featured-news__container .featured-news__carousel-small .featured-news__card--green .featured-news__date {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 0.75em;
	line-height: 131.69%;
	color: #7B7B7B;
	margin-bottom: 10px;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--blue .featured-news__title, .featured-news__container .featured-news__carousel-small .featured-news__card--pink .featured-news__title, .featured-news__container .featured-news__carousel-small .featured-news__card--yellow .featured-news__title, .featured-news__container .featured-news__carousel-small .featured-news__card--green .featured-news__title {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 1em;
	line-height: 131.69%;
	color: #000000;
	margin-bottom: 15px;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--blue .featured-news__text, .featured-news__container .featured-news__carousel-small .featured-news__card--pink .featured-news__text, .featured-news__container .featured-news__carousel-small .featured-news__card--yellow .featured-news__text, .featured-news__container .featured-news__carousel-small .featured-news__card--green .featured-news__text {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 0.875em;
	line-height: 138.19%;
	color: #787878;
	margin-bottom: 25px;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--blue .featured-news__link, .featured-news__container .featured-news__carousel-small .featured-news__card--pink .featured-news__link, .featured-news__container .featured-news__carousel-small .featured-news__card--yellow .featured-news__link, .featured-news__container .featured-news__carousel-small .featured-news__card--green .featured-news__link {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: auto;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--blue .featured-news__link > a, .featured-news__container .featured-news__carousel-small .featured-news__card--pink .featured-news__link > a, .featured-news__container .featured-news__carousel-small .featured-news__card--yellow .featured-news__link > a, .featured-news__container .featured-news__carousel-small .featured-news__card--green .featured-news__link > a {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 0.875em;
	line-height: 19px;
	color: #303030;
	text-decoration: none;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--blue .featured-news__link > a span:first-child, .featured-news__container .featured-news__carousel-small .featured-news__card--pink .featured-news__link > a span:first-child, .featured-news__container .featured-news__carousel-small .featured-news__card--yellow .featured-news__link > a span:first-child, .featured-news__container .featured-news__carousel-small .featured-news__card--green .featured-news__link > a span:first-child {
	margin-right: 20px;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--green {
	border: 5px solid #6EEF92;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--yellow {
	border: 5px solid #FFD266;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--pink {
	border: 5px solid #FFA3A7;
}
.featured-news__container .featured-news__carousel-small .featured-news__card--blue {
	border: 5px solid #8AE3FA;
}

.news__carousel .slick-slide, .news__carousel-small .slick-slide {
	margin: 0 20px;
}
.news__carousel .slick-list, .news__carousel-small .slick-list {
	margin: 0 -20px;
	padding-bottom: 75px;
}
.news__carousel .news__card, .news__carousel .news__card--green, .news__carousel .news__card--blue, .news__carousel .news__card--yellow, .news__carousel .news__card--pink, .news__carousel-small .news__card, .news__carousel-small .news__card--green, .news__carousel-small .news__card--blue, .news__carousel-small .news__card--yellow, .news__carousel-small .news__card--pink {
	background: #FFFFFF;
	box-sizing: border-box;
	box-shadow: 0px 15px 20px rgba(31, 31, 31, 0.15);
	border-radius: 45px;
	height: 100%;
	width: 100%;
	padding: 50px 35px;
	cursor: pointer;
	height: 350px;
	display: flex;
	flex-direction: column;
	z-index: 0;
	position: relative;
}
.news__carousel .news__card .news__date, .news__carousel .news__card--green .news__date, .news__carousel .news__card--blue .news__date, .news__carousel .news__card--yellow .news__date, .news__carousel .news__card--pink .news__date, .news__carousel-small .news__card .news__date, .news__carousel-small .news__card--green .news__date, .news__carousel-small .news__card--blue .news__date, .news__carousel-small .news__card--yellow .news__date, .news__carousel-small .news__card--pink .news__date {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 0.875em;
	line-height: 131.69%;
	color: #7B7B7B;
	margin-bottom: 10px;
}
.news__carousel .news__card .news__title, .news__carousel .news__card--green .news__title, .news__carousel .news__card--blue .news__title, .news__carousel .news__card--yellow .news__title, .news__carousel .news__card--pink .news__title, .news__carousel-small .news__card .news__title, .news__carousel-small .news__card--green .news__title, .news__carousel-small .news__card--blue .news__title, .news__carousel-small .news__card--yellow .news__title, .news__carousel-small .news__card--pink .news__title {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 1.5em;
	line-height: 131.69%;
	color: #000000;
	margin-bottom: 25px;
}
.news__carousel .news__card .news__text, .news__carousel .news__card--green .news__text, .news__carousel .news__card--blue .news__text, .news__carousel .news__card--yellow .news__text, .news__carousel .news__card--pink .news__text, .news__carousel-small .news__card .news__text, .news__carousel-small .news__card--green .news__text, .news__carousel-small .news__card--blue .news__text, .news__carousel-small .news__card--yellow .news__text, .news__carousel-small .news__card--pink .news__text {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 1em;
	line-height: 138.19%;
	color: #343434;
	margin-bottom: 25px;
}
.news__carousel .news__card .news__link, .news__carousel .news__card--green .news__link, .news__carousel .news__card--blue .news__link, .news__carousel .news__card--yellow .news__link, .news__carousel .news__card--pink .news__link, .news__carousel-small .news__card .news__link, .news__carousel-small .news__card--green .news__link, .news__carousel-small .news__card--blue .news__link, .news__carousel-small .news__card--yellow .news__link, .news__carousel-small .news__card--pink .news__link {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: auto;
}
.news__carousel .news__card .news__link > a, .news__carousel .news__card--green .news__link > a, .news__carousel .news__card--blue .news__link > a, .news__carousel .news__card--yellow .news__link > a, .news__carousel .news__card--pink .news__link > a, .news__carousel-small .news__card .news__link > a, .news__carousel-small .news__card--green .news__link > a, .news__carousel-small .news__card--blue .news__link > a, .news__carousel-small .news__card--yellow .news__link > a, .news__carousel-small .news__card--pink .news__link > a {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 0.875em;
	line-height: 19px;
	color: #303030;
	text-decoration: none;
}
.news__carousel .news__card .news__link > a span:first-child, .news__carousel .news__card--green .news__link > a span:first-child, .news__carousel .news__card--blue .news__link > a span:first-child, .news__carousel .news__card--yellow .news__link > a span:first-child, .news__carousel .news__card--pink .news__link > a span:first-child, .news__carousel-small .news__card .news__link > a span:first-child, .news__carousel-small .news__card--green .news__link > a span:first-child, .news__carousel-small .news__card--blue .news__link > a span:first-child, .news__carousel-small .news__card--yellow .news__link > a span:first-child, .news__carousel-small .news__card--pink .news__link > a span:first-child {
	margin-right: 20px;
}
.news__carousel .news__card .news__cover, .news__carousel .news__card--green .news__cover, .news__carousel .news__card--blue .news__cover, .news__carousel .news__card--yellow .news__cover, .news__carousel .news__card--pink .news__cover, .news__carousel-small .news__card .news__cover, .news__carousel-small .news__card--green .news__cover, .news__carousel-small .news__card--blue .news__cover, .news__carousel-small .news__card--yellow .news__cover, .news__carousel-small .news__card--pink .news__cover {
	z-index: -1;
	position: absolute;
	bottom: 0;
	right: 0;
	clip-path: circle(50% at 77% 81%);
	height: 265px;
	width: 265px;
	border-bottom-right-radius: 45px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.3;
}
.news__carousel .news__card--pink, .news__carousel-small .news__card--pink {
	border: 7px solid #FFA3A7;
}
.news__carousel .news__card--yellow, .news__carousel-small .news__card--yellow {
	border: 7px solid #FFD266;
}
.news__carousel .news__card--blue, .news__carousel-small .news__card--blue {
	border: 7px solid #8AE3FA;
}
.news__carousel .news__card--green, .news__carousel-small .news__card--green {
	border: 7px solid #6EEF92;
}

.news__carousel-small {
	padding-left: 10px;
	margin-right: -25px;
}
.news__carousel-small .slick-slide {
	margin: 0 10px;
}
.news__carousel-small .slick-list {
	margin: 0 -10px;
	padding: 0 20% 25px 0;
}
.news__carousel-small .news__carousel-slide {
	width: 250px !important;
	height: 235px;
}
.news__carousel-small .news__card, .news__carousel-small .news__card--pink, .news__carousel-small .news__card--yellow, .news__carousel-small .news__card--blue, .news__carousel-small .news__card--green {
	box-shadow: 5px 10px 10px rgba(31, 31, 31, 0.05);
	border-radius: 30px;
	padding: 25px 20px;
	height: 235px;
}
.news__carousel-small .news__card .news__date, .news__carousel-small .news__card--pink .news__date, .news__carousel-small .news__card--yellow .news__date, .news__carousel-small .news__card--blue .news__date, .news__carousel-small .news__card--green .news__date {
	font-size: 0.75em;
}
.news__carousel-small .news__card .news__title, .news__carousel-small .news__card--pink .news__title, .news__carousel-small .news__card--yellow .news__title, .news__carousel-small .news__card--blue .news__title, .news__carousel-small .news__card--green .news__title {
	font-size: 1em;
}
.news__carousel-small .news__card .news__text, .news__carousel-small .news__card--pink .news__text, .news__carousel-small .news__card--yellow .news__text, .news__carousel-small .news__card--blue .news__text, .news__carousel-small .news__card--green .news__text {
	font-size: 0.875em;
}
.news__carousel-small .news__card .news__cover, .news__carousel-small .news__card--pink .news__cover, .news__carousel-small .news__card--yellow .news__cover, .news__carousel-small .news__card--blue .news__cover, .news__carousel-small .news__card--green .news__cover {
	clip-path: circle(50% at 77% 81%);
	height: 150px;
	width: 150px;
	border-bottom-right-radius: 30px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.3;
}
.news__carousel-small .news__card--pink {
	border: 5px solid #FFA3A7;
}
.news__carousel-small .news__card--yellow {
	border: 5px solid #FFD266;
}
.news__carousel-small .news__card--blue {
	border: 5px solid #8AE3FA;
}
.news__carousel-small .news__card--green {
	border: 5px solid #6EEF92;
}

.news__carousel-control, .news__carousel-control--prev, .news__carousel-control--next {
	position: absolute;
	width: 80px;
	height: 80px;
	background-color: #FFFFFF;
	box-shadow: -4px 6px 12px rgba(28, 28, 28, 0.15);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	color: #000000;
	border-radius: 50%;
	top: 135px;
	cursor: pointer;
	z-index: 2;
}
.news__carousel-control--next {
	right: -35px;
}
.news__carousel-control--prev {
	left: -35px;
}

.last-galleries__container {
	position: relative;
	padding: 0 222px;
	padding-right: 223px;
	margin-bottom: 0;
}
.last-galleries__container .last-gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #EEEEEE;
	background-size: cover;
	background-position: center;
	border-radius: 50%;
	width: calc((100vw - 519px) / 4);
	height: calc((100vw - 519px) / 4);
	cursor: pointer;
}
.last-galleries__container .last-gallery__filter {
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: rgba(104, 104, 104, 0.5);
	border-radius: 50%;
	transition-duration: 200ms;
}
.last-galleries__container .last-gallery:hover .last-gallery__filter {
	background-color: rgba(104, 104, 104, 0.9);
}
.last-galleries__container .last-gallery__info {
	position: absolute;
	z-index: 3;
	text-align: center;
	width: 75%;
}
.last-galleries__container .last-gallery__info div:first-child {
	font-weight: 600;
	font-size: 1em;
	line-height: 22px;
	color: #FFFFFF;
	mix-blend-mode: normal;
	opacity: 0.85;
	margin-bottom: 5px;
}
.last-galleries__container .last-gallery__info div:last-child {
	font-weight: bold;
	font-size: 1.125em;
	line-height: 24px;
	text-align: center;
	color: #FFFFFF;
}
.last-galleries__container .last-gallery__image-count, .last-galleries__container .last-gallery__image-count--blue, .last-galleries__container .last-gallery__image-count--pink, .last-galleries__container .last-gallery__image-count--yellow, .last-galleries__container .last-gallery__image-count--green {
	position: absolute;
	bottom: -5px;
	right: -5px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 8px solid #FFFFFF;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
}
.last-galleries__container .last-gallery__image-count--green {
	background-color: #CCFFCB;
}
.last-galleries__container .last-gallery__image-count--yellow {
	background-color: #FFE7AD;
}
.last-galleries__container .last-gallery__image-count--pink {
	background-color: #FED4D6;
}
.last-galleries__container .last-gallery__image-count--blue {
	background-color: #BCEBF8;
}
.last-galleries__container .last-gallery__image-count span, .last-galleries__container .last-gallery__image-count--green span, .last-galleries__container .last-gallery__image-count--yellow span, .last-galleries__container .last-gallery__image-count--pink span, .last-galleries__container .last-gallery__image-count--blue span {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: 1.875em;
	line-height: 151.69%;
	color: #211D1D;
}

.last-galleries__carousel {
	z-index: 1;
}

.last-galleries__carousel-control, .last-galleries__carousel-control--prev, .last-galleries__carousel-control--next {
	position: absolute;
	width: 80px;
	height: 80px;
	background-color: #FFFFFF;
	box-shadow: -4px 6px 12px rgba(28, 28, 28, 0.15);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	color: #000000;
	border-radius: 50%;
	top: 0;
	bottom: 0;
	margin-bottom: auto;
	margin-top: auto;
	cursor: pointer;
	z-index: 2;
}
.last-galleries__carousel-control--next {
	right: -25px;
}
.last-galleries__carousel-control--prev {
	left: -50px;
}

.container-fluid.container__content {
	padding: 10px 10.416% 125px 10.416%;
}

.container__text {
	padding-left: 110px;
}
.container__text p, .container__text span, .container__text div {
	font-style: normal !important;
	/*font-weight: normal !important;
	font-size: 18px !important;
	line-height: 35px !important;
	color: #343434 !important;*/
}
.container__text strong {
	font-family: Nunito, sans-serif !important;
	font-weight: bold !important;
	/*font-size: 20px !important;
	line-height: 35px !important;
	color: #000000 !important;*/
}

.side-menu {
	position: sticky;
	top: 50px;
	border-radius: 45px;
	background-color: #CCFFCB;
	padding: 25px 20px;
	z-index: 0;
}
.side-menu__mask {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #6EFF6B;
	clip-path: circle(50% at 25% 25%);
	height: 265px;
	width: 265px;
	border-top-left-radius: 45px;
	background-color: #6EEF92;
}

.side-menu__list a:last-child {
	margin-bottom: 0;
}

.side-menu__item {
	background: #F8FFF8;
	border-radius: 20px;
	padding: 18px 0 18px 25px;
	margin-bottom: 10px;
	display: block;
	text-decoration: none;
	position: relative;
}
.side-menu__item-mask {
	display: none;
}
.side-menu__item-link {
	width: calc(100% - 25px);
	/*white-space: nowrap;*/
	/*overflow: hidden;*/
	/*text-overflow: ellipsis;*/
	text-decoration: none;
	font-weight: 600;
	font-size: 1.125em;
	/*line-height: 20px;*/
	color: #353637;
}
.side-menu__item--active .side-menu__item-mask {
	display: block;
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #6EFF6B;
	clip-path: circle(70.8% at 91% 66%);
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	height: 56px;
	width: 117px;
	background-color: #6EEF92;
	padding-right: 25px;
}
.side-menu__item--active .side-menu__item-mask span {
	text-align: right;
	width: 100%;
	color: #F8FFF8;
	font-size: 1.25em;
	display: block;
	margin-right: 25px;
	line-height: 56px;
	vertical-align: middle;
}
.side-menu__item--active .side-menu__item-link {
	font-weight: bold;
	font-size: 1.125em;
	/*line-height: 20px;*/
	color: #000000;
	width: calc(100% - 85px);
}

.side-menu__item-dropdown {
	margin-bottom: 10px;
}
.side-menu__item-dropdown div:first-child {
	display: block;
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	background-color: #f8fff8;
	padding-right: 25px;
}
.side-menu__item-dropdown div:first-child span {
	text-align: right;
	width: 100%;
	color: #353637;
	font-size: 1.125em;
	display: block;
	margin-right: 25px;
	line-height: 56px;
	vertical-align: middle;
}
.side-menu__item-dropdown .side-menu__item-link {
	font-weight: normal;
	font-size: 1.125em;
	/*line-height: 20px;*/
	color: #353637;
	width: calc(100% - 85px);
}

.side-menu__item-dropdown-menu {
	padding-top: 25px;
	background-color: #f8fff8;
	margin-top: -30px;
	border-bottom-right-radius: 25px;
	border-bottom-left-radius: 25px;
	margin-bottom: 10px;
	padding-left: 25px;
	padding-bottom: 18px;
	padding-right: 25px;
}
.side-menu__item-dropdown-menu hr {
	margin: 0 0 15px 0;
}
.side-menu__item-dropdown-menu .menu-item, .side-menu__item-dropdown-menu .menu-item--selected {
	padding: 2px 5px;
	border-radius: 5px;
	background-color: transparent;
	width: 100%;
	transition-duration: 150ms;
	cursor: pointer;
	margin-bottom: 2.5px;
}
.side-menu__item-dropdown-menu .menu-item:last-child, .side-menu__item-dropdown-menu .menu-item--selected:last-child {
	margin-bottom: 0;
}
.side-menu__item-dropdown-menu .menu-item a, .side-menu__item-dropdown-menu .menu-item--selected a {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #353637;
	text-decoration: none;
	/*width: 100%; 
	white-space: nowrap; 
	overflow: hidden; 
	text-overflow: ellipsis;*/
}
.side-menu__item-dropdown-menu .menu-item:hover, .side-menu__item-dropdown-menu .menu-item--selected:hover {
	background-color: #6EEF92;
}
.side-menu__item-dropdown-menu .menu-item:hover a, .side-menu__item-dropdown-menu .menu-item--selected:hover a {
	font-weight: bold;
	color: #FFFFFF;
}
.side-menu__item-dropdown-menu .menu-item--selected {
	background-color: #6EEF92;
}
.side-menu__item-dropdown-menu .menu-item--selected a {
	font-weight: bold;
	color: #FFFFFF;
}

.side-menu--pink {
	background-color: #FED4D6 !important;
}
.side-menu--pink .side-menu__mask {
	background-color: #FFA3A7;
}
.side-menu--pink .side-menu__item-dropdown-menu {
	background: #FFF6F6;
}
.side-menu--pink .side-menu__item {
	background: #FFF6F6;
}
.side-menu--pink .side-menu__item--active .side-menu__item-mask {
	background-color: #FFA3A7;
}
.side-menu--pink .side-menu__item-dropdown div:first-child {
	background: #FFF6F6;
}
.side-menu--pink .menu-item:hover, .side-menu--pink .menu-item--selected:hover {
	background-color: #FFA3A7;
}
.side-menu--pink .menu-item--selected {
	background-color: #FFA3A7;
}
.side-menu--pink .menu-item--selected a {
	font-weight: bold;
	color: #FFFFFF;
}

.navigation-dropdown {
	z-index: 10;
	margin-bottom: 35px;
	position: relative;
}
.navigation-dropdown button {
	text-align: left;
	background-color: #CCFFCB;
	border-radius: 20px;
	height: 56px;
	border: none;
	padding: 18px 25px;
	width: 100%;
}
.navigation-dropdown button:focus, .navigation-dropdown button:hover, .navigation-dropdown button:active, .navigation-dropdown button:focus-visible, .navigation-dropdown button.btn-secondary:focus, .navigation-dropdown button.btn-secondary:hover, .navigation-dropdown button.btn-secondary:active, .navigation-dropdown button.btn-secondary:focus-visible {
	border: none;
	box-shadow: none !important;
	outline: none;
	background-color: #CCFFCB;
}
.navigation-dropdown__title {
	width: calc(100% - 50px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	font-weight: bold;
	font-size: 1.125em;
	line-height: 20px;
	color: #000000;
}
.navigation-dropdown__mask {
	display: block;
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #6EFF6B;
	clip-path: circle(70.8% at 91% 66%);
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	height: 56px;
	width: 117px;
	background-color: #6EEF92;
	padding-right: 25px;
	transition-duration: 250ms;
}
.navigation-dropdown__mask span {
	text-align: right;
	width: 100%;
	color: #F8FFF8;
	font-size: 1em;
	display: block;
	margin-right: 25px;
	line-height: 56px;
	vertical-align: middle;
}
.navigation-dropdown .dropdown-menu {
	margin-top: 5px !important;
	border-radius: 20px;
	width: 100%;
	left: 25px;
}

.navigation-dropdown.navigation-dropdown--pink button {
	background-color: #FED4D6;
}
.navigation-dropdown.navigation-dropdown--pink button:focus, .navigation-dropdown.navigation-dropdown--pink button:hover, .navigation-dropdown.navigation-dropdown--pink button:active, .navigation-dropdown.navigation-dropdown--pink button:focus-visible {
	background-color: #FED4D6;
}
.navigation-dropdown.navigation-dropdown--pink .navigation-dropdown__mask {
	background-color: #FFA3A7;
}
.navigation-dropdown.navigation-dropdown--pink .navigation-dropdown__mask span {
	color: #FFFFFF;
}

.slogan {
	position: absolute;
	right: 290px;
	top: 90px;
	z-index: 0;
}
.slogan img {
	width: 500px;
}

.arrow__home-1 {
	position: absolute;
	right: 92px;
	bottom: 0;
}
.arrow__home-1 img {
	width: 198px;
}

.arrow__home-2 {
	position: absolute;
	left: -10px;
	bottom: -350px;
	transform: rotate(-49.99deg);
}
.arrow__home-2 img {
	width: 314.86px;
}

.arrow__home-3 {
	position: absolute;
	right: 75px;
	bottom: -200px;
	transform: scaleY(-1);
}
.arrow__home-3 img {
	transform: rotate(332deg);
	width: 126.07px;
}

.arrow__page-1 {
	position: absolute;
	right: -350px;
	top: 30px;
}
.arrow__page-1 img {
	transform: rotate(-121.29deg);
	width: 98.14px;
}

.arrow__page-2 {
	position: absolute;
	left: 225px;
	bottom: -55px;
	transform: matrix(-0.97, 0.24, 0.24, 0.97, 0, 0);
}
.arrow__page-2 img {
	width: 187.6px;
}

.arrow__page-3 {
	position: absolute;
	right: -150px;
	bottom: -200px;
}
.arrow__page-3--end {
	right: -450px;
}
.arrow__page-3 img {
	width: 102px;
}

.arrow__page-content {
	position: absolute;
	right: -150px;
	bottom: -450px;
}
.arrow__page-content img {
	width: 102px;
}

.arrow__page-featured {
	position: absolute;
	left: -175px;
	top: -75px;
	transform: rotate(-51.6deg);
}
.arrow__page-featured img {
	width: 190.39px;
}

.logo__home-1 {
	position: absolute;
	left: 895px;
	top: -40px;
	z-index: -1;
}
.logo__home-1 img {
	width: 213px;
}

.logo__home-2 {
	position: absolute;
	left: 1175px;
	top: 80px;
	z-index: -1;
}
.logo__home-2 img {
	width: 108px;
	transform: rotate(180deg);
}

.logo__home-3 {
	position: absolute;
	right: 107px;
	top: 90px;
	z-index: 0;
}
.logo__home-3 img {
	width: 255px;
}

.logo__page-1 {
	position: absolute;
	right: -140px;
	top: -55px;
	z-index: -2;
}
.logo__page-1 img {
	width: 213px;
}

.logo__page-content {
	position: absolute;
	left: 200px;
	top: -55px;
	z-index: -1;
}
.logo__page-content img {
	width: 213px;
}

.notes__home-1 {
	position: absolute;
	left: 95px;
	bottom: 175px;
	z-index: 0;
}
.notes__home-1 img {
	width: 170px;
}

.notes__home-2 {
	position: absolute;
	left: 58%;
	top: -60px;
	z-index: 0;
}
.notes__home-2 img {
	width: 384.25px;
}

.notes__home-3 {
	position: absolute;
	left: 43%;
	top: 20px;
	z-index: -1;
}
.notes__home-3 img {
	width: 249.68px;
}

.notes__home-4 {
	position: absolute;
	left: 107px;
	bottom: -50px;
	z-index: 0;
}
.notes__home-4 img {
	width: 236.47px;
}

.category {
	margin-bottom: 100px;
}
.category__title {
	font-size: 2em;
	line-height: 20px;
	margin-bottom: 25px;
	font-weight: bold;
}

.teacher {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 50px;
}
.teacher .teacher__avatar, .teacher .teacher__avatar--no-image, .teacher .teacher__avatar--image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-right: 35px;
}
.teacher .teacher__avatar--image {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.teacher .teacher__avatar--no-image {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #6EEF92;
}
.teacher .teacher__avatar--no-image span {
	font-weight: bold;
	font-size: 2em;
	color: #FFFFFF;
}
.teacher__name {
	font-weight: bold;
	font-size: 24px;
	line-height: 20px;
	margin-bottom: 15px;
}
.teacher__info {
	display: flex;
	flex-direction: row;
	margin-bottom: 5px;
}
.teacher__info > div:first-child {
	margin-right: 15px;
}
.teacher__info > div:first-child div {
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 5px;
}
.teacher__info > div:first-child div:last-child {
	margin-bottom: 0;
}
.teacher__info div:last-child div {
	font-size: 16px;
	line-height: 20px;
	color: #353637;
	margin-bottom: 5px;
	overflow-wrap: anywhere;
}
.teacher__info div:last-child div a {
	color: #353637;
}
.teacher__info div:last-child div:last-child {
	margin-bottom: 0;
}
.teacher__classes {
	display: flex;
	flex-direction: row;
}
.teacher__classes > div:first-child {
	margin-right: 15px;
}
.teacher__classes > div:first-child div {
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
}
.teacher__classes div:last-child div {
	font-size: 16px;
	line-height: 20px;
	color: #353637;
}

.gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #EEEEEE;
	background-size: cover;
	background-position: center;
	border-radius: 50%;
	width: calc((100vw - 519px) / 4);
	height: calc((100vw - 519px) / 4);
	cursor: pointer;
	margin-bottom: 75px;
}
.gallery__filter {
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: rgba(104, 104, 104, 0.5);
	border-radius: 50%;
	transition-duration: 200ms;
}
.gallery:hover .gallery__filter {
	background-color: rgba(104, 104, 104, 0.9);
}
.gallery__info {
	position: absolute;
	z-index: 3;
	text-align: center;
	width: 75%;
}
.gallery__info div:first-child {
	font-weight: 600;
	font-size: 1em;
	line-height: 22px;
	color: #FFFFFF;
	mix-blend-mode: normal;
	opacity: 0.85;
	margin-bottom: 5px;
}
.gallery__info div:last-child {
	font-weight: bold;
	font-size: 1.125em;
	line-height: 24px;
	text-align: center;
	color: #FFFFFF;
}
.gallery__image-count, .gallery__image-count--blue, .gallery__image-count--pink, .gallery__image-count--yellow, .gallery__image-count--green {
	position: absolute;
	bottom: -5px;
	right: -5px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 8px solid #FFFFFF;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
}
.gallery__image-count--green {
	background-color: #CCFFCB;
}
.gallery__image-count--yellow {
	background-color: #FFE7AD;
}
.gallery__image-count--pink {
	background-color: #FED4D6;
}
.gallery__image-count--blue {
	background-color: #BCEBF8;
}
.gallery__image-count span, .gallery__image-count--green span, .gallery__image-count--yellow span, .gallery__image-count--pink span, .gallery__image-count--blue span {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: 1.875em;
	line-height: 151.69%;
	color: #211D1D;
}

.content-table, .content-table--blue, .content-table--pink, .content-table--yellow {
	height: 100%;
	width: 100%;
	border-radius: 45px;
	padding: 35px 25px 10px 25px !important;
	z-index: 0;
	position: relative;
}
.content-table a, .content-table--blue a, .content-table--pink a, .content-table--yellow a {
	text-decoration: none;
}
.content-table__header {
	margin-bottom: 45px;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0 35px;
}
.content-table__header-title {
	font-weight: bold;
	font-size: 1.375em;
	line-height: 150%;
	color: #000000;
}
.content-table__mask {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #6EFF6B;
	clip-path: circle(50% at 25% 25%);
	height: 298px;
	width: 298px;
	border-top-left-radius: 45px;
}
.content-table__row {
	padding: 45px 35px;
	border-radius: 25px;
	margin-bottom: 25px;
}
.content-table__data {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.content-table__date {
	width: 85px;
	margin-right: 75px;
	font-weight: normal;
	font-size: 16px;
	line-height: 22px;
	color: #424242;
	mix-blend-mode: normal;
	opacity: 0.8;
}
.content-table__title {
	font-weight: bold;
	font-size: 22px;
	line-height: 24px;
	color: #000000;
}
.content-table__icon span {
	color: #303030;
	font-size: 24px;
}

.content-table--yellow {
	background-color: #FFE7AD;
}
.content-table--yellow .content-table__mask {
	background-color: #FFD266;
}
.content-table--yellow .content-table__row {
	background-color: #FFFDF7;
}

.content-table--pink {
	background-color: #FED4D6;
}
.content-table--pink .content-table__mask {
	background-color: #FFA3A7;
}
.content-table--pink .content-table__row {
	background-color: #FFF6F6;
}

.content-table--blue {
	background-color: #BCEBF8;
}
.content-table--blue .content-table__mask {
	background-color: #8AE3FA;
}
.content-table--blue .content-table__row {
	background-color: #f7fdff;
}

.content-data__info {
	font-weight: normal;
	font-size: 0.875em;
	line-height: 19px;
	color: #424242;
	mix-blend-mode: normal;
	opacity: 0.8;
	margin-bottom: 50px;
}

.content-data__news-front {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 9px 25px;
	background: #FFB2B5;
	border-radius: 15px;
	width: fit-content;
	margin-top: -25px;
	margin-bottom: 50px;
}
.content-data__news-front span {
	color: #FFF6F6;
}
.content-data__news-front span:first-child {
	font-size: 1.25em;
	margin-right: 25px;
}
.content-data__news-front span:last-child {
	font-weight: bold;
	font-size: 1.125em;
	line-height: 150%;
}

.content-data__text {
	font-weight: normal;
	font-size: 1.125em;
	line-height: 175%;
	color: #343434;
	width: 75%;
}

.content-data__section {
	margin-top: 100px;
	width: 100%;
}
.content-data__section-title {
	margin-bottom: 75px;
}
.content-data__section-title h4 {
	font-weight: bold;
	font-size: 1.75em;
	line-height: 150%;
	color: #000000;
	margin-bottom: 0;
}

.content-data__section-container {
	position: relative;
}

.content-featured {
	position: relative;
	margin-top: 100px;
}

.content__carousel-image {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #eee;
	background-size: cover;
	background-position: center;
	border-radius: 50%;
	width: calc((100vw - 519px) / 4);
	height: calc((100vw - 519px) / 4);
	cursor: pointer;
}

.content__carousel-control, .content__carousel-control--prev, .content__carousel-control--next {
	position: absolute;
	width: 80px;
	height: 80px;
	background-color: #FFFFFF;
	box-shadow: -4px 6px 12px rgba(28, 28, 28, 0.15);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	color: #000000;
	border-radius: 50%;
	top: 0;
	bottom: 0;
	margin-bottom: auto;
	margin-top: auto;
	cursor: pointer;
}
.content__carousel-control--next {
	right: -25px;
}
.content__carousel-control--prev {
	left: -50px;
}

.content-news {
	width: calc((100vw - 519px) / 4);
	height: 150px;
	position: relative;
	padding: 25px;
	border-radius: 35px;
	z-index: 0;
}
.content-news__mask {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #6EFF6B;
	clip-path: circle(50% at 10% 5%);
	height: 205px;
	width: 205px;
	border-top-left-radius: 35px;
}
.content-news__data span {
	font-weight: normal;
	font-size: 0.875em;
	line-height: 131.69%;
	color: #7B7B7B;
	margin-bottom: 5px;
}
.content-news__data div {
	font-weight: bold;
	font-size: 1.25em;
	line-height: 131.69%;
	color: #000000;
}
.content-news__arrow {
	position: absolute;
	bottom: 25px;
	right: 25px;
}
.content-news__arrow span {
	color: #000000;
	font-size: 1.1625em;
}
.content-news--green {
	background-color: #CCFFCB;
}
.content-news--green .content-news__mask {
	background-color: #6EEF92;
}
.content-news--yellow {
	background-color: #FFE7AD;
}
.content-news--yellow .content-news__mask {
	background-color: #FFD266;
}
.content-news--pink {
	background-color: #FED4D6;
}
.content-news--pink .content-news__mask {
	background-color: #FFA3A7;
}
.content-news--blue {
	background-color: #BCEBF8;
}
.content-news--blue .content-news__mask {
	background-color: #8AE3FA;
}

.container__search-small {
	background-color: #E2E2E2;
	border-radius: 20px;
	position: relative;
	height: 52px;
	margin-bottom: 40px;
}
.container__search-small .search {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.container__search-small .search span {
	color: #686868;
}
.container__search-small .search input {
	height: 50px;
	border: none;
	margin-left: 25px;
	width: 90%;
	font-family: Nunito;
	font-style: normal;
	font-weight: normal;
	font-size: 1em;
	line-height: 22px;
	color: #686868;
	background-color: transparent;
}
.container__search-small .search input:focus, .container__search-small .search input:active, .container__search-small .search input:focus-visible {
	outline: none;
	border: none;
}

.container__search {
	position: absolute;
	bottom: 0;
	left: 200px;
	right: 200px;
	border-radius: 25px;
	z-index: 999;
	background: #FFFFFF;
	border: 2.5px solid #FFD266;
	box-sizing: border-box;
	box-shadow: 0px 15px 20px rgba(31, 31, 31, 0.15);
	height: 65px;
}
.container__search .search {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.container__search .search input {
	height: 60px;
	border: none;
	margin-left: 25px;
	width: 70%;
	font-family: Nunito;
	font-style: normal;
	font-weight: normal;
	font-size: 1em;
	line-height: 138.19%;
	color: #343434;
}
.container__search .search input:focus, .container__search .search input:active, .container__search .search input:focus-visible {
	outline: none;
	border: none;
}

.news__table-body > a {
	text-decoration: none;
}
.news__table-content {
	border: 7px solid #8AE3FA;
	box-sizing: border-box;
	box-shadow: 5px 12px 18px rgba(0, 0, 0, 0.08);
	border-radius: 25px;
	margin-bottom: 25px;
	padding: 45px 35px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.news__table-cell {
	display: flex;
	align-items: center;
}
.news__table-date {
	display: inline-block;
	margin-right: 75px;
	font-weight: normal;
	font-size: 16px;
	line-height: 22px;
	color: #424242;
	mix-blend-mode: normal;
	opacity: 0.8;
}
.news__table-title {
	display: inline-block;
	font-weight: bold;
	font-size: 22px;
	line-height: 24px;
	color: #000000;
	width: 60vw;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news__table-link span {
	font-size: 25px;
	color: #303030;
}

.contact__title {
	/*padding-top: 100px;*/
	/*margin-top: -100px;*/
	margin-bottom: 50px;
	font-weight: bold;
	font-size: 32px;
	line-height: 20px;
	position: relative;
	z-index: 10;
}

.contact-teachers__section {
	margin-bottom: 50px;
}

.contact-teachers__group {
	display: flex;
	flex-direction: row;
}
.contact-teachers__group-title h6 {
	font-family: Nunito, sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 22px;
	color: #464646;
	margin-bottom: 25px;
	white-space: nowrap;
	margin-right: 35px;
}
.contact-teachers__group-divider {
	width: 100%;
}
.contact-teachers__group-divider div {
	background-image: url("../images/divider.png");
	width: 100%;
	background-position: left;
	background-size: cover;
	height: 4px;
	margin-top: 10px;
}

.contact__teacher {
	margin-bottom: 35px;
}
.contact__teacher p {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 35px;
	color: #000000;
	margin-bottom: 5px;
}
.contact__teacher a {
	font-family: Nunito, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 20px;
	color: #000000;
	word-wrap: break-word;
	text-decoration: none;
}

.container__404 {
	padding: 50px;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}
.container__404 ::selection {
	background-color: #6EEF92;
	color: white;
}
.container__404 ::-moz-selection {
	background-color: #6EEF92;
	color: white;
}
.container__404 .navbar__404 div {
	z-index: 100;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.container__404 .navbar__404 div img:first-child {
	margin-right: 25.8px;
	width: 93px;
}
.container__404 .navbar__404 div img:last-child {
	height: 71px;
}
.container__404 .content__404 {
	margin-top: 75px;
}
.container__404 .content__404 div:nth-child(1) {
	font-family: "Jua", sans-serif;
	font-size: 300px;
	text-align: center;
	font-weight: bold;
}
.container__404 .content__404 div:nth-child(1) span:nth-child(1) {
	color: #8AE3FA;
}
.container__404 .content__404 div:nth-child(1) span:nth-child(2) {
	color: #FFA3A7;
	margin-left: -75px;
}
.container__404 .content__404 div:nth-child(1) span:nth-child(3) {
	color: #FFD266;
	margin-left: -75px;
}
.container__404 .content__404 div:nth-child(2) {
	text-align: center;
	font-size: 48px;
	margin-bottom: 25px;
	font-weight: bold;
	color: #515151;
}
.container__404 .content__404 div:nth-child(3) {
	text-align: center;
}
.container__404 .content__404 div:nth-child(3) a {
	text-decoration: none;
	font-size: 24px;
	font-family: "Nunito", sans-serif;
	font-weight: bold;
	color: #0CC5F4;
}

.contact__divider {
	margin: 100px 0;
}

.section-divider--contact1 {
	padding: 0;
	width: 100%;
}
.section-divider--contact1 div {
	background-image: url("../images/divider.png");
	width: 100%;
	background-position: left;
	background-size: cover;
	height: 4px;
}

.section-divider--contact1 {
	margin: 100px 0;
}

.calendar-event-small
{
	background-color: #6EEF92;
	border-radius: 5px;
	margin-bottom: 5px;
	width: 100%;
	padding: 8px 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	width: calc(100vw - 100px);
}

.calendar-event-small-today
{
	background-color: #F8FFF8;
	border: 1px solid #6EEF92;
}

/* Accessibility */

/* Navigation via tab key with focus */
/* Hide all nested ul elements by default */ 
nav ul li > ul {
  display: none;
}
/* When a parent li element has focus, show its immediate child ul element */
nav ul li:focus-within > ul {
  display: block;
}

.dropdown-menu-visible {
	display: block;
}
/* Eof navigation via tab key with focus */

.keyboard-outline1 {
	outline: #000 solid 3px;
	-webkit-transition: none !important;
	transition: none !important;
}
button:active.keyboard-outline,
button:focus.keyboard-outline,
input:active.keyboard-outline,
input:focus.keyboard-outline,
a[role="tab"].keyboard-outline {
	/*outline-offset: -5px;*/
}

.accessibility-icon {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 9997;
}

.accessibility-icon button {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	margin: 0;
	width: 32px;
	height: 32px;
}

.accessibility-icon i {
	font-size: 50px;
	color: #E05206;
}

.accessibility-icon img {
	display: block;
	width: 100%;
	height: 100%;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}


.accessibility-menu {
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background-color: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	z-index: 9998;
	transition: transform 0.3s ease-in-out;
}

.accessibility-menu.show {
	transform: translateX(250px);
}

.accessibility-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #E05206;
}

.accessibility-menu h2 {
	margin: 0;
	padding: 20px;
	font-size: 20px;
	color: white;
}

.accessibility-menu a {
	padding: 20px;
	font-size: 20px;
	color: white;
}

.accessibility-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.accessibility-menu li {
	margin: 0;
	padding: 0;
}

.accessibility-menu ul button,
.accessibility-menu ul div,
.accessibility-menu ul a {
	display: block;
	width: 100%;
	padding: 10px 20px;
	text-align: left;
	font-size: 16px;
	border: none;
	background-color: transparent;
	color: #333;
	cursor: pointer;
}

.accessibility-menu ul div {
	cursor: inherit;
	padding-bottom: 0;
}

.accessibility-menu ul button i {
	display: none;
}

.accessibility-menu ul button:focus,
.accessibility-menu ul button:hover {
	background-color: #eee;
}

.accessibility-menu ul .options button {
	display: inline-block;
	width: inherit;
	padding: 10px 16px;
}

.accessibility-menu ul .options button.selected {
	background-color: #eee;
	border: 2px solid #333;
	padding: 10px 12px;
}

.accessibility-menu .a1 {
	font-size: calc(1.275rem + .3vw)!important;
}

.accessibility-menu .a2 {
	font-size: calc(1.3rem + .6vw)!important;
}

.accessibility-menu .a3 {
	font-size: calc(1.325rem + .9vw)!important;
}

.accessibility-menu .a4 {
	font-size: calc(1.375rem + 1.5vw)!important;
}

/*.blacknwhite *:not(.accessibility-menu):not(.accessibility-menu-header) {
	background-color: #fff!important;
}*/
.nav-item.btn__primary
.blacknwhite *:not(.accessibility-menu):not(.accessibility-menu-header) a {
	text-decoration: underline;
	text-decoration-color: #000;
}
.blacknwhite .accessibility-icon i {
	color: #000;
}
.blacknwhite .accessibility-menu-header {
	background-color: #fff;
}
.blacknwhite .accessibility-menu-header h2 {
	color: #000;
}
.blacknwhite .accessibility-menu-header a {
	color: #000;
}

.blacknwhite a,
.blacknwhite a:hover,
.blacknwhite .hero__action-title,
.blacknwhite .featured-news__date
{
	color: #000!important;
}
.blacknwhite .page__background,
.blacknwhite .logo__page-1,
.blacknwhite .logo__page-content,
.blacknwhite .logo__home-1,
.blacknwhite .logo__home-2,
.blacknwhite .logo__home-3,
.blacknwhite .notes__home-1,
.blacknwhite .notes__home-2,
.blacknwhite .notes__home-3,
.blacknwhite .notes__home-4,
.blacknwhite .content-news__mask,
.blacknwhite .featured-content__mask--green,
.blacknwhite .featured-content__mask--yellow,
.blacknwhite .featured-content__mask--pink,
.blacknwhite .featured-content__mask--blue,
.blacknwhite .fc-mask,
.blacknwhite .content-table__mask,
.blacknwhite .side-menu__item-mask
{
	display: none!important;
}

.blacknwhite .nav-item.btn__primary,
.blacknwhite .btn.btn__primary,
.blacknwhite .featured-news__carousel-control-next,
.blacknwhite .featured-news__carousel-control-prev,
.blacknwhite .content-data__news-front,
.blacknwhite .content-news--green,
.blacknwhite .content-news--yellow,
.blacknwhite .content-news--pink,
.blacknwhite .nav-link.active span,
.blacknwhite .last-gallery__image-count--green,
.blacknwhite .last-gallery__image-count--yellow,
.blacknwhite .last-gallery__image-count--pink,
.blacknwhite .last-gallery__image-count--blue,
.blacknwhite .featured-content__card--green,
.blacknwhite .featured-content__card--yellow,
.blacknwhite .featured-content__card--pink,
.blacknwhite .featured-content__card--blue,
.blacknwhite .header-filters__buttons .button.active,
.blacknwhite .page-item.active .page-link,
.blacknwhite .menu-item--selected,
.blacknwhite .side-menu__item--active,
.blacknwhite .navigation-dropdown__mask,
.blacknwhite .button-enroll,
.blacknwhite .teacher__avatar--no-image
{
	background-color: #000!important;
}
.blacknwhite .nav-item.btn__primary a:not(.dropdown-item),
.blacknwhite .btn.btn__primary,
.blacknwhite .content-news__data span,
.blacknwhite .content-news__data div,
.blacknwhite .card__icon--green,
.blacknwhite .card__icon--yellow,
.blacknwhite .card__icon--pink,
.blacknwhite .card__icon--blue,
.blacknwhite .card__body h4,
.blacknwhite .card__info div:last-child,
.blacknwhite .card__description,
.blacknwhite .last-gallery__image-count--green span,
.blacknwhite .last-gallery__image-count--yellow span,
.blacknwhite .last-gallery__image-count--pink span,
.blacknwhite .last-gallery__image-count--blue span,
.blacknwhite .header-filters__buttons .button.active,
.blacknwhite .page-item.active .page-link,
.blacknwhite .menu-item--selected a,
.blacknwhite .side-menu__item--active .side-menu__item-link,
.blacknwhite .button-enroll a
{
	color: #fff!important;
}
.blacknwhite .container__search,
.blacknwhite .header-filters__buttons .button,
.blacknwhite .fc-scrollgrid-sync-inner,
.blacknwhite .featured-news__container .featured-news__card--yellow,
.blacknwhite .featured-news__container .featured-news__card--blue,
.blacknwhite .featured-news__container .featured-news__card--green,
.blacknwhite .featured-news__container .featured-news__card--pink,
.blacknwhite .news__card--green,
.blacknwhite .news__card--yellow,
.blacknwhite .news__card--pink,
.blacknwhite .news__card--blue,
.blacknwhite .news__table-content,
.blacknwhite .calendar-event-small,
.blacknwhite .calendar-event-small-today,
.blacknwhite .page-link,
.blacknwhite .page-item.active .page-link
{
	border-color: #000!important;
}
.blacknwhite .content-table__row,
.blacknwhite .navigation-dropdown button
{
	border-color: #000!important;
	border-width: 2px;
	border-style: solid;
}
.blacknwhite .hero__container .hero__column-presentation .hero__image--small,
.blacknwhite .hero__container .hero__column-presentation .hero__image--large
{
	background: #fff;
}
.blacknwhite .side-menu,
.blacknwhite .side-menu .side-menu__mask,
.blacknwhite .side-menu .side-menu__item:not(.side-menu__item--active),
.blacknwhite .side-menu .side-menu__item-dropdown div,
.blacknwhite .side-menu .side-menu__item-dropdown-menu,
.blacknwhite .side-menu .menu-item:hover,
.blacknwhite .footer-info,
.blacknwhite .fc-scrollgrid-sync-inner,
.blacknwhite .calendar-event-small,
.blacknwhite .calendar-event-small-today,
.blacknwhite .fc-event-start,
.blacknwhite .content-table--yellow,
.blacknwhite .content-table--blue,
.blacknwhite .content-table__row,
.blacknwhite .navigation-dropdown button
{
	background-color: #fff!important;
}

.blacknwhite .overlay ul li.overlay__item--green,
.blacknwhite .overlay ul li.overlay__item--blue,
.blacknwhite .overlay ul li.overlay__item--pink,
.blacknwhite .overlay ul li.overlay__item--yellow
{
	background: linear-gradient(to right, #aaa 50%, #fff 50%);
}

.blacknwhite .last-gallery__filter,
.blacknwhite .gallery__filter {
	background-color: rgba(0, 0, 0, 0.75);
}
.blacknwhite .last-gallery__info div:first-child {
	opacity: 1;
}

.bold-font *:not(.accessibility-menu *):not(.accessibility-icon *) {
	font-weight: 700!important;
}

.larger-font-a1 *:not(.accessibility-menu *):not(.accessibility-icon *) {
	font-size: calc(1.275rem + .3vw)!important;
	line-height: 1.5;
	overflow-wrap: break-word;
}

.larger-font-a2 *:not(.accessibility-menu *):not(.accessibility-icon *) {
	font-size: calc(1.3rem + .6vw)!important;
	line-height: 1.5;
	overflow-wrap: break-word;
}

.larger-font-a3 *:not(.accessibility-menu *):not(.accessibility-icon *) {
 font-size: calc(1.325rem + .9vw)!important;
	line-height: 1.5;
	overflow-wrap: break-word;
}

.larger-font-a4 *:not(.accessibility-menu *):not(.accessibility-icon *) {
	font-size: calc(1.375rem + 1.5vw)!important;
	line-height: 1.5;
	overflow-wrap: break-word;
}

.larger-font-a1 .featured-news__carousel-control-next .fas,
.larger-font-a1 .featured-news__carousel-control-prev .fas,
.larger-font-a2 .featured-news__carousel-control-next .fas,
.larger-font-a2 .featured-news__carousel-control-prev .fas,
.larger-font-a3 .featured-news__carousel-control-next .fas,
.larger-font-a3 .featured-news__carousel-control-prev .fas
{
	line-height: 75px;
}

.underline-links {
	text-decoration: underline;
	text-decoration-thickness: 2px;
}

.arial-font, .arial-font *:not(.fas) {
	font-family: Arial, sans-serif;
}
/* Eof accessibility */


/* Facebook */
.facebook-icon {
	position: fixed;
	top: 70px;
	left: 12px;
	z-index: 9997;
}
.facebook-icon a {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	margin: 0;
	width: 32px;
	height: 32px;
}
.facebook-icon i {
	font-size: 47px;
	color: #1877F2;
}
/* Eof Facebook */

/*# sourceMappingURL=styles.css.map */
