* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	font-size: 16px;
	overflow-x: hidden;
}

body {
    background-color: var(--background-color-p);
	font-family: var(--font-p);
	height: 100%;
	font-weight: normal;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

section {
	position: relative;
}

p {
	margin: 0;
}

a {
	color: var(--cyan-a);
	text-decoration: underline;
}

nltag {
	display: block;
	position: relative;
	padding-left: 60px;
}

nltag:before {
	content: '';
	background-image: url('../images/icons/triple-arrow.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	height: 100%;
	width: 100px;
	display: block;
	position: absolute;
	left: -30px;
	transform: translateY(-50%);
	top: 50%;
}

.footerB {
	padding: 5px;
    font-size: 12px;
    background-color: var(--black);
    color: #888;
}

.footerB a {
	color: #888;
}

.bottom {
	height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: var(--black);
    color: var(--white);
    font-size: 12px;
}

@keyframes beat {
	100% { transform: scale(1.2); }
}

.header-section {
	background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 50%, var(--background-color-p) 100%), url('../images/header.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 237px;
	padding-bottom: 160px;
	position: relative;
}

.header-section:before {
	content: '';
	background-image: url('../images/circuit.svg');
	background-size: contain;
	background-position: left;
	background-repeat: no-repeat;
	width: 260px;
	height: 180px;
	display: block;
	position: absolute;
	bottom: 30%;
	left: 0;
	z-index: 2;
}

.header-section:after {
	content: '';
	width: 0;
	height: 0;
	display: block;
	position: absolute;
	bottom: calc(30% + 77px);
	left: 170px;
	z-index: 1;
	animation: glow 4s infinite alternate;
}


@keyframes glow {
	0% {
		box-shadow: 0 0 60px 30px #fff, 0 0 100px 60px #145a9b, 0 0 140px 90px #0089cd;
		opacity: 0.5;
	}
	40% {
		box-shadow: 0 0 80px 40px #fff, 0 0 120px 70px #145a9b, 0 0 160px 100px #0089cd;
		opacity: 0.6;
	}
	60% {
		box-shadow: 0 0 80px 40px #fff, 0 0 120px 70px #145a9b, 0 0 160px 100px #0089cd;
		opacity: 0.6;
	}
	100% {
		box-shadow: 0 0 60px 20px #fff, 0 0 100px 60px #145a9b, 0 0 140px 80px #0089cd;
		opacity: 0.5;
	}
}

.header-info.centered {
	justify-content: center;
}

.header-info {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: start;
}

.header-info.padded {
	padding-right: 30px;
}

.header-subtitle {
	font-size: 14px;
	color: var(--cyan-a);
	text-transform: uppercase;
	font-weight: 700;
}

.header-subtitle.decorated {
	position: relative;
	padding-right: 3px;
	margin-bottom: 10px;
}

.header-subtitle.decorated:after {
	content: '';
	background-image: url('../images/icons/border-bottom-right.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	z-index: 102;
	transform: translate(-50%, -50%);
	top: 100%;
	left: 100%;
}

.header-title {
	font-size: 50px;
	color: var(--white);
	font-weight: 700;
	line-height: 1.25em;
	margin-bottom: 0.25em;
}

.header-title.primary {
	font-size: 60px;
}

.header-title.padded {
	margin-bottom: 0.75em;
}

.header-description {
	font-size: 18px;
	color: var(--white);
	font-family: var(--font-s);
	font-weight: 300;
	margin-bottom: 40px;
	line-height: 30px;
}

.header-description.padded {
	padding-right: 40px;
}

.header-data {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 40px;
	margin-bottom: 40px;
	align-items: center;
	padding-left: 20px;
}

.header-data .icon {
	background-image: url('../images/icons/demand.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	display: block;
	position: relative;
	animation: ring 1.5s ease-in-out infinite;
}

.header-data .icon:after {
	content: '';
	width: 60px;
	height: 60px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid var(--grey-b);
}

.header-data .body {
	font-size: 16px;
	color: var(--grey-a);
	font-family: var(--font-s);
	font-weight: 300;
	line-height: 30px;
}

.header-button.padded {
	margin-top: 70px;
}

.header-image {
	width: 100%;
	aspect-ratio: 1.3;
	background-color: var(--white);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 4px;
	position: relative;
}

.header-image.thin {
	aspect-ratio: 1.8;
}

.header-image.even {
	aspect-ratio: 1;
}

.header-image.tall {
	aspect-ratio: 0.6;
}

.header-image.about {
	aspect-ratio: 1;
	width: 60%;
}

.header-image.about.secondary {
	position: absolute;
	left: 75%;
	top: 25%;
	width: 100%;
}

.product-swiper {
	aspect-ratio: 1.4;
	width: 100%;
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}

.product-swiper .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 4px;
}

.swiper {
	height: 500px;
	width: 1500px;
	position: relative;
	border-radius: 4px;
}

.swiper .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 4px;
}

.swiper-pagination.horizontal {
	top: calc(100% + 30px) !important;

}

.swiper-pagination.horizontal .swiper-pagination-bullet:not(:last-child):after {
	height: 1px;
	width: 8px;
	transform: translate(100%, -50%);
	right: -1px;
	left: unset;
	top: 50%;
}

.swiper-pagination:not(.horizontal) {
	position: absolute;
	top: 50% !important;
	bottom: unset !important;
	left: -35px !important;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 20px !important;
	justify-content: center;
	align-items: center;
	row-gap: 7px;
}
  
.swiper-pagination-bullet {
	border: 1px solid var(--cyan-a);
	background: none;
	width: 20px;
	height: 20px;
	position: relative;
	opacity: 1;
}

.swiper-pagination-bullet:not(:last-child):after {
	content: '';
	position: absolute;
	height: 8px;
	width: 1px;
	display: block;
	background-color: var(--cyan-a);
	transform: translate(-50%, 100%);
	left: 50%;
	bottom: 0;
}

.swiper-pagination-bullet:before {
	content: '';
	width: 0px;
	height: 0px;
	display: block;
	position: absolute;
	background-color: var(--cyan-a);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	transition: all .3s ease;
}

.swiper-pagination-bullet-active:before {
	width: 10px;
	height: 10px;
	transition: all .3s ease;
}

section.primary {
	background-color: var(--background-color-p);
	padding: 160px 0;
}

section.secondary {
	background-color: var(--background-color-s);
	padding: 160px 0;
}

section.ignored {
	height: 0;
}

section.large-bottom {
	padding-bottom: 470px;
}

section.large-top {
	padding-top: 470px;
}

.services-wrapper {
	position: absolute;
	top: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	z-index: 100;
	transform: translateY(-50%);
	top: 50%;
	width: calc(100% - 30px);
}

.services-wrapper .service-card {
	width: 25%;
	padding: 40px 30px;
	background-color: var(--background-color-s);
	position: relative;
	box-shadow: 0 2px 20px 5px #13131336;
	border-radius: 2px;
	transition: all 0.4s ease !important;
	cursor: pointer;
}

.services-wrapper .service-card:hover {
	background-color: var(--cyan-a);
	transition: all 0.4s ease !important;
}

.services-wrapper .service-card:hover .body {
	color: var(--white);
	transition: all 0.4s;
}

.services-wrapper .service-card:hover:before {
	filter: brightness(2);
	transition: all 0.4s;
}

.services-wrapper .service-card:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-image: linear-gradient(135deg, rgba(89, 44, 64, 0.21) 0%, rgba(254, 254, 254, 0.21) 100%);
	opacity: 0.4;
}

.services-wrapper .service-card:before {
	content: '';
	background-image: url('../images/icons/border-top-right.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	z-index: 102;
	transform: translate(-50%, -50%);
	top: 20px;
	left: calc(100% - 20px);
	filter: brightness(1);
	transition: all 0.4s;
}

.services-wrapper .service-card :is(.title, .body) {
	position: relative;
	z-index: 101;
}

.services-wrapper .service-card .title {
	font-size: 20px;
	color: var(--white);
	font-weight: 700;
	margin-bottom: 0.5em;
}

.services-wrapper .service-card .body {
	font-size: 16px;
	color: var(--grey-a);
	font-weight: 300;
	font-family: var(--font-s);
	transition: all 0.4s;
	line-height: 30px;
}

.decorated-section {
	width: 100%;
	height: 100%;
	position: relative;
}

.decorated-section:before {
	content: '';
	background-image: url('../images/circuit.svg');
	background-size: contain;
	background-position: left;
	background-repeat: no-repeat;
	width: 260px;
	height: 180px;
	display: block;
	position: absolute;
	top: 25%;
	right: 0;
	transform: scaleX(-1);
	z-index: 2;
}

.decorated-section:after {
	content: '';
	width: 0;
	height: 0;
	display: block;
	position: absolute;
	top: calc(25% + 95px);
	right: 170px;
	z-index: 1;
	animation: glow 4s infinite alternate;
}

.decorated-section.inverted:after {
	left: 170px;
}

.decorated-section.low:after {
	top: calc(75% + 95px);
}

.decorated-section.inverted:before {
	left: 0;
	right: unset;
	transform: unset;
}

.decorated-section.low:before {
	top: 75%;
}

.statistics-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto auto;
	grid-gap: 20px;
	height: 100%;
}

.statistics-wrapper .statistic-card {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.statistics-wrapper .statistic-card .counter {
	font-size: 100px;
	line-height: 1.15em;
	font-weight: 500;
	color: var(--white);
	font-family: var(--font-s);
}

.statistics-wrapper .statistic-card .subtitle {
	font-size: 16px;
	color: var(--grey-a);
	font-weight: 300;
	font-family: var(--font-s);
	text-transform: uppercase;
	line-height: 30px;
}

.facts-wrapper {
	margin-top: 130px;
	row-gap: 30px;
}

.facts-wrapper.thin {
	margin-top: 60px;
}

.facts-wrapper .fact-card {
	border: 1px solid var(--grey-b);
	padding: 30px;
	border-radius: 4px;
	height: 100%;
}

.facts-wrapper .fact-card .title {
	font-size: 20px;
	color: var(--white);
	font-weight: 700;
	margin: 1em 0;
}

.facts-wrapper .fact-card .body {
	font-size: 16px;
	color: var(--grey-a);
	font-weight: 300;
	font-family: var(--font-s);
	line-height: 30px;
}

.facts-wrapper .fact-card .icon {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 36px;
	height: 36px;
	display: block;
}

.facts-wrapper .fact-card .icon.padded {
	margin-bottom: 1rem;
}

.facts-wrapper .fact-card .icon0 {
	background-image: url('../images/icons/badge.svg');
}

.facts-wrapper .fact-card .icon1 {
	background-image: url('../images/icons/delivery.svg');
}

.facts-wrapper .fact-card .icon2 {
	background-image: url('../images/icons/like.svg');
}

.blogs-wrapper {
	margin-top: 80px;
	margin-bottom: 160px;
}

.blogs-wrapper .blog-card {
	background-color: var(--white);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	aspect-ratio: 3 / 2;
	border-radius: 4px;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.blogs-wrapper .blog-card:hover {
	background-size: 110%;
	transition: all 0.3s ease;
}

.blogs-wrapper .blog-card .title-wrapper {
	width: calc(100% - 20px);
	position: absolute;
	left: 50%;
	bottom: 30px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transform: translate(-50%, 100%);
	background-image: linear-gradient(to right, rgba(15, 18, 22, 0.27) 0%, rgba(101, 100, 100, 0.21) 100%);
	padding: 15px;
	border-radius: 4px;
}

.blogs-wrapper .blog-card .title-wrapper .title {
	font-size: 16px;
	color: var(--white);
	font-weight: 700;
	margin-bottom: 0.5em;
	height: 3em;
	max-height: 3em;
}

.blogs-wrapper .blog-card .title-wrapper .link {
	font-size: 14px;
	color: var(--cyan-a);
	font-weight: 400;
	text-align: right;
	position: relative;
	padding-right: 30px;
}

.blogs-wrapper .blog-card .title-wrapper .link.decorated:after {
	content: '';
	background-image: url('../images/icons/triple-arrow.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	transform: translate(-100%, -50%);
	top: 50%;
	left: 100%;
	transition: all 0.3s ease;
}

.blogs-wrapper .blog-card:hover .title-wrapper .link.decorated:after {
	left: calc(100% + 5px);
	transition: all 0.3s ease;
}

section.highlighted {
	background-color: var(--cyan-a);
	padding: 40px 0;
}

.footer-left {
	padding-right: 50px;
}

.footer-left img {
	height: 72px;
	margin-bottom: 20px;
}

.footer-left .body {
	font-size: 18px;
	color: var(--white);
	font-weight: 300;
	font-family: var(--font-s);
	margin-bottom: 40px;
	line-height: 30px;
}

.footer-left .terms {
	font-size: 14px;
	color: var(--grey-a);
	font-weight: 300;
	font-family: var(--font-s);
	text-decoration: underline;
	line-height: 30px;
}

footer {
	padding-top: 120px;
	padding-bottom: 160px;
	background-color: var(--background-color-s);
}

.footer-right .data .title {
	font-size: 20px;
	color: var(--white);
	font-weight: 700;
}

.footer-right.padded {
	margin-top: 1.5rem;
}

.footer-right {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 25px;
}

.footer-right .data .body {
	font-size: 16px;
	color: var(--grey-a);
	font-weight: 300;
	font-family: var(--font-s);
	line-height: 30px;
}

.footer-right .data {
	position: relative;
	padding-left: 60px;
	text-decoration: none;
}

.footer-right .data:not(.location, .phone, .mail, .user) {
	padding-left: 0;
}

.footer-right .data:before {
	content: '';
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.footer-right .data.bordered:after {
	content: '';
    width: 45px;
    height: 45px;
    display: block;
    position: absolute;
    top: 50%;
    left: -14px;
    border-radius: 50%;
    border: 1px solid var(--grey-b);
	background-color: var(--background-color-s);
	transform: translateY(-50%);
	z-index: 1;
}

.footer-right .data.bordered.inverted:after {
	background-color: var(--background-color-p);
}

.footer-right .data.location:before {
	background-image: url('../images/icons/location.svg');
}

.footer-right .data.phone:before {
	background-image: url('../images/icons/phone.svg');
}

.footer-right .data.mail:before {
	background-image: url('../images/icons/mail.svg');
}

.footer-right .data.user:before {
	background-image: url('../images/icons/phone.svg');
}

.ticker-view {
    display: flex;
    align-items: flex-end;
}

.ticker-column-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.ticker-column {
    position: absolute;
    transition: transform 1s ease;
}

.ticker-digit {
    display: block;
}

.number-placeholder {
    opacity: 0;
}

.breadcrumbs-section {
	margin-top: 177px;
	padding-top: 60px;
	padding-bottom: 130px;
	position: relative;
}

section.pt-0 {
	padding-top: 0;
}

section.pb-extended {
	padding-bottom: 200px;
}

.breadcrumbs {
	margin-bottom: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.breadcrumbs > span:first-child {
	padding-right: 10px;
}

.breadcrumbs > span:not(:first-child) {
	padding: 0 10px
}

.breadcrumbs a, .breadcrumbs {
	color: var(--white);
	text-transform: uppercase;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
}

.breadcrumbs span:last-child {
	color: var(--cyan-a);
}

.breadcrumbs a:hover {
	color: var(--white);
}

.blogs-wrapper.full {
	margin-top: -80px;
	margin-bottom: 160px;
	row-gap: 140px;
}

.blog-intro, .blog-content {
	font-size: 18px;
	color: var(--white);
	font-family: var(--font-s);
	font-weight: 300;
	display: block;
	margin-top: 1em;
	line-height: 30px;
}

.blog-thumbnail {
	background-color: var(--white);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 4px;
	width: 50%;
	aspect-ratio: 1.5;
	margin-bottom: 1em;
	margin-top: -200px;
	margin-left: 1em;
	float: right;
}

.breadcrumbs-title {
	font-size: 50px;
	color: var(--white);
	font-weight: 700;
	line-height: 1.25em;
}

.breadcrumbs-subtitle {
	font-size: 18px;
	color: var(--white);
	font-family: var(--font-s);
	font-weight: 300;
	line-height: 30px;
}

.services-wrapper.full {
	position: relative;
	flex-wrap: wrap;
	flex-direction: unset;
	transform: unset;
	top: unset;
	margin-top: -80px;
	width: 100%;
}

section.background-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

section.tinted {
	background-color: var(--black);
}

.product-body {
	font-size: 18px;
	color: var(--white);
	font-family: var(--font-s);
	font-weight: 300;
	line-height: 30px;
	margin-top: 80px;
	padding-right: 20px;
}

.page-body {
	font-size: 16px;
	color: var(--grey-a);
	font-family: var(--font-s);
	font-weight: 300;
	line-height: 30px;
	margin-top: 80px;
}

section.thin {
	padding-top: 80px;
}

section.wide-b {
	padding-bottom: 240px;
}

.form-group {
	margin-bottom: 1.25rem;
	display: flex;
	flex-direction: column;
	justify-content: end;
}

.form-group textarea {
	width: 100%;
	resize: none;
	border: 1px solid var(--grey-b);
	border-radius: 4px;
	background: none;
	outline: none;
	font-size: 16px;
	color: var(--grey-a);
	font-family: var(--font-s);
	font-weight: 300;
	padding: 20px 40px;
	height: 250px;
	transition: all 0.2s ease-in-out;
}

.form-group :is(input):not(input[type="checkbox"], input[type="file"]) {
	width: 100%;
	border: 1px solid var(--grey-b);
	border-radius: 4px;
	background: none;
	outline: none;
	font-size: 16px;
	color: var(--grey-a);
	font-family: var(--font-s);
	font-weight: 300;
	padding: 20px 40px;
	transition: all 0.2s ease-in-out;
}

.form-group :is(input, textarea):not(input[type="checkbox"], input[type="file"]):focus {
	border: 1px solid var(--cyan-a);
	transition: all 0.2s ease-in-out;
}

.form-group label:not(.checkboxContainer, .custom-upload) {
	font-family: var(--font-p);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 1em;
	width: 100%;
}

.checkboxContainer.tiny {
	font-size: 12px;
	padding-top: 12px;
}

.form-group label > span.highlighted {
	color: var(--cyan-a);
}

.checkboxContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-top: 8px;
	font-size: 16px;
	color: var(--grey-a);
	font-family: var(--font-s);
	font-weight: 300;
}

.checkboxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 10px;
    left: 0;
    height: 22px;
    width: 22px;
    border-radius: 4px;
    border: 1px solid var(--grey-b);
}

.checkboxContainer.reservationCheckbox{
    padding-top: 10px;
}

.checkboxContainer:hover input ~ .checkmark {
    background-color: var(--background-color-p);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkboxContainer input:checked ~ .checkmark:after {
    display: block;
}

.checkboxContainer .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid var(--cyan-a);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkboxContainer:hover input ~ .checkmark.disabled {
    background: var(--background-color-p);
}

.checkboxes-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 40px;
	row-gap: 20px;
}

.custom-file-upload .custom-upload {
	border: 1px solid var(--grey-b);
	border-radius: 4px;
	color: var(--grey-a);
	font-size: 16px;
	font-family: var(--font-s);
	font-weight: 300;
	padding: 15px 25px;
	padding-left: 50px;
	cursor: pointer;
	margin: 0;
	position: relative;
}

.custom-file-upload .custom-upload:before {
	content: '';
	background-image: url('../images/icons/folder.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	top: 50%;
	left: 18px;
	transform: translateY(-50%);
}

.custom-file-upload input {
	display: none;
}

.custom-file-upload .custom-upload-text {
	color: var(--grey-a);
	font-size: 12px;
	font-family: var(--font-s);
	font-weight: 300;
	display: inline-block;
}

.custom-file-upload {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 20px;
}

.attachment-list label {
	font-family: var(--font-s) !important;
	color: var(--grey-a) !important;
	font-size: 12px !important;
	font-weight: 300 !important;
	margin: 0 !important;
	width: auto !important;
	padding-left: 2px;
}

.banner {
	position: relative;
    background-color: #fff;
    border-radius: 8px;
    border: none;
    margin-bottom: 1.5rem;
	padding: 1.25rem;
	font-weight: 700;
}

.banner.success {
	background-color: #55c755;
	color: #267726;
}

.banner.error {
	background-color: #ffbcbc;
	color: #da7272;
}

@keyframes ring {
	0% {
		transform: rotate3d(0, 0, 1, 0deg);
	}
	20%, 32%, 44%, 56%, 68% {
		transform: rotate3d(0, 0, 1, 0deg);
	}
	23%, 35%, 47%, 59%, 71% {
		transform: rotate3d(0, 0, 1, 15deg);
	}
	26%, 38%, 50%, 62%, 74% {
		transform: rotate3d(0, 0, 1, 0deg);
	}
	29%, 41%, 53%, 65%, 77% {
		transform: rotate3d(0, 0, 1, -15deg);
	}
	80% {
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

.container-center {
	width: 100%;
	display: flex;
}

.contact-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 100px;
}

.contact-wrapper .body {
	font-size: 20px;
	font-weight: 700;
}

.mobile-show {
	display: none;
}

.desktop-show {
	display: block;
}

.gallery-grid {
	display: grid;
	gap: 0.5rem;
	grid-auto-rows: auto;
	grid-auto-flow: dense;
	margin-top: 3rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.swiper-slide img {
	width: 100%;
	height: 100%;
}

.swiper-slide.viewer {
	cursor: pointer;
}

.swiper-slide.viewer::before {
	content: '';
	background-image: url(../images/icons/loupe.svg);
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: 10px;
	right: 10px;
}

.wistia-video-wrapper {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: calc(100% - 30px);
	z-index: 100;
}