:root {
	--main: rgba(75, 41, 109, 1);
	--sec: rgba(210, 218, 39, 1);
	--pink: #EB1985;
	--hover: #C3CA39;
}

* {
	font-family: 'Nunito';
	margin: 0;
	padding: 0;
}

body {
	background: var(--main);
	height: 100vh;
}

p small a {
	color: var(--main);
}

.none {
	display: none !important;
}

.clear {
	clear: both;
}

.mt-10 {
	margin-top: 10px !important;
}

.no-wrap {
	white-space: nowrap;
}

.content-holder {
	background: rgba(244, 244, 244, 1);
	height: calc(100vh - 40px);
	width: calc(100% - 40px);
	margin-top: 20px;
	margin-left: 20px;
	border-radius: 15px;
	box-sizing: border-box;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	opacity: 1;
	transition: opacity .5s ease-in-out;
}

.pt-page-current {
	opacity: 1;
	display: flex !important;
	margin-bottom: 20px;
}

.padd-right {
	padding-right: 120px;
}

.wrapper {
	width: calc(100% - 30px);
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
}

.relative {
	position: relative;
	z-index: 2;
}

@media (min-width: 1639px) {
	.wrapper {
		max-width: 1640px;
	}
	
	#video {
		height: 550px;
		position: relative;
	}
	
	.video-3 {
		left: -100px;
		transform: scale(1.3);
		z-index: 0;
	}
}

.holder {
	float: right;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 56px;
}

.holder p {
	color: var(--main);
	font-weight: 700;
	margin: 0;
	position: absolute;
	right: 0;
}

.holder ul {
	list-style: none;
	display: flex;
	gap: 40px;
	position: relative;
	z-index: 100;
}

.holder li {
	display: flex;
	gap: 7px;
	align-items: center;
	cursor: pointer;
}

.holder li span {
	width: 35px;
	height: 35px;
	line-height: 33px;
	font-weight: 700;
	box-sizing: border-box;
	border-radius: 100%;
	border: 1px solid var(--main);
	color: var(--main);
	font-size: 14px;
	display: block;
	text-align: center;
	margin-right: 10px;
	position: relative;
}

.holder li span:after {
	background: var(--sec);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	border-radius: 100%;
	z-index: -1;
	transform: scale(0);
	transition: .3s all ease-in-out;
}

.holder li.active span:after,
.holder li:hover span:after {
	transform: scale(1);
}

.holder li.lock {
	pointer-events: none;
}

.holder li.lock span::before {
	content: '';
	width: 18px;
	height: 18px;
	background: url('../assets/lock.svg') no-repeat center center / contain;
	position: absolute;
	top: -6px;
	right: -6px;
}

.logo {
	float: left;
	width: 61px;
	height: 56px;
	background: url('../assets/logo.svg') no-repeat center center / contain;
	display: block;
	text-decoration: none;
	position: absolute;
}

.content {
	width: 85%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.clear {
	clear: both;
}

h1 {
	font-size: 38px;
	font-weight: 700;
	color: var(--main);
	margin-bottom: 25px;
}

h1 small {
	display: block;
	font-size: 20px;
	margin-bottom: 7px;
}

p {
	line-height: 1.5;
	margin-bottom: 15px;
	font-size: 16px;
	color: rgba(79, 79, 79, 1);
	font-weight: 400;
}

.col {
	width: 50%;
	max-width: 50%;
}

input,
select {
	width: 100%;
	height: 50px;
	line-height: 50px;
	max-width: 400px;
	border-radius: 16px;
	font-size: 16px;
	background: #fff;
	border: 0;
	box-sizing: border-box;
	padding: 0 15px;
	margin-bottom: 20px;
	transition: .3s all ease-in-out;
	outline: none !important;
}

select {
	background: #fff url('../assets/arrow.svg') no-repeat right 15px center / 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
} 

input:focus,
select:focus {
	box-shadow: 0px 12px 16px -4px #00000014;
}

form {
	display: block;
	margin-top: 25px;
	float: left;
	width: 90%;
}

.grecaptcha-badge { visibility: hidden; }

.pt-perspective {
	position: relative;
	width: 100%;
	height: 100%;
	perspective: 1200px;
	transform-style: preserve-3d;
}

.pt-page {
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	overflow: hidden;
	display: none;
	backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
}

.pt-page-current,
.no-js .pt-page {
	visibility: visible;
	overflow: scroll;
}

.no-js body {
	overflow: auto;
}

.pt-page-ontop {
	z-index: 999;
}

.button {
	width: 100%;
	height: 50px;
	max-width: 190px;
	line-height: 50px;
	background: var(--sec);
	border-radius: 50px;
	border: 0;
	outline: 0;
	font-size: 16px;
	cursor: pointer;
	margin-bottom: 20px;
	text-align: center;
	text-decoration: none;
	color: #000;
	display: inline-block;
	transition: .3s all ease-in-out;
}

.button:hover {
	background-color: var(--hover);
}

.button--link {
	float: left;
	position: relative;
	margin-top: 20px;
}

.button--link::after {
	content: '#savethedate';
	background: rgba(237, 21, 134, 1);
	color: #fff;
	border: 1.4px solid var(--main);
	width: 105px;
	height: 28px;
	line-height: 28px;
	position: absolute;
	right: -54px;
	top: -14px;
	padding: 0 10px;
	border-radius: 30px;
	transform: rotate(20deg);
}

footer {
	display: flex;
	gap: 30px;
	justify-content: end;
	align-content: center;
	align-items: center;
	width: 100%;
}

footer p {
	text-transform: uppercase;
	color: var(--main);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	margin: 0;
}

.icon {
	width: 30px;
	height: 30px;
	display: block;
	text-decoration: none;
}

.fb {
	background: url('../assets/fb.svg') no-repeat center center / contain;
}

.ig {
	background: url('../assets/ig.svg') no-repeat center center / contain;
}

.tiktok {
	background: url('../assets/tiktok.svg') no-repeat center center / contain;
}

.image-pattern {
	width: 450px;
	height: 450px;
	display: block;
	background: url('../assets/pattern.png') no-repeat center center / contain;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	justify-items: center;
	margin-left: 80px;
	position: relative;
}

.image-pattern img {
	margin-left: 50px;
	margin-top: 30px;
}

.pos-2 .image-pattern {
	margin-left: 0;
}

.pos-2 {
	margin-right: 60px;
} 

.tag {
	position: absolute;
	width: 150px;
	height: 40px;
	border: 2px solid var(--main);
	background: var(--sec);
	color: var(--main);
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	line-height: 40px;
	text-align: center;
	border-radius: 30px;
	transform: rotate(20deg);
	position: absolute;
	bottom: 70px;
	right: 20px;
}

h3 {
	font-size: 16px;
	color: var(--main);
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 15px;
}

h2 {
	color: var(--main);
	font-size: 24px;
	font-weight: 700;
}

.box {
	width: 100%;
	display: block;
	margin: 40px 0 10px;
	border-radius: 16px;
	box-sizing: border-box;
}

.box ul {
	width: 100%;
	display: flex;
	list-style: none;
	margin-top: 25px;
	gap: 20px;
}

.box ul li,
.box ul li a {
	display: flex;
	gap: 15px;
	align-content: center;
	align-items: center;
	font-size: 18px;
	color: var(--main);
	font-weight: 700;
}

.box ul li a {
	color: inherit;
	text-decoration: none;
	font: inherit;
}

.box .icon {
	width: 50px;
	height: 50px;
}

.calendar {
	background: url('../assets/calendar.svg') no-repeat center center / contain;
}

.pin {
	background: url('../assets/pin.svg') no-repeat center center / contain;
}

.recaptcha-text {
	margin-top: 10px;
	margin-bottom: 0;
}

.d-flex {
	display: flex;
	align-items: center;
	flex-flow: row-reverse;
}

.d-flex p {
	white-space: nowrap;
	margin: 0;
}

.grecaptcha-badge {
	display: none !important;
}

.radio-buttons {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

input[type="radio"]:not(:checked),
input[type="radio"]:checked {
  position: absolute;
  left: -40000px;
  opacity: 0;
}

input[type="radio"]:not(:checked) + label,
input[type="radio"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
  clear: both;
}


input[type="radio"]:not(:checked) + label:before,
input[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1.25em; height: 1.25em;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  border-radius: 100%;
}

input[type="radio"]:not(:checked) + label:after,
input[type="radio"]:checked + label:after {
   content: '';
  font-family: 'awesome';
  position: absolute;
  top: 3px; left: 3px;
  margin: auto;
  font-size: 12px;
  line-height: 0.8;
  background: var(--main);
  width: 16px;
  height: 16px;
  border-radius: 100%;
  transition: all .2s;
}

input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

input[type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

input[type="radio"]:disabled:not(:checked) + label:before,
input[type="radio"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: var(--main);
  background-color: #ddd;
}

input[type="radio"]:disabled:checked + label:after {
  color: var(--main);
}

input[type="radio"]:disabled + label {
  color: var(--main);
}

.text-center {
	text-align: center;
}

.w100p {
	width: 100%;
}

@media (max-width: 1045px) {	
	.radio-buttons {
		flex-flow: column;
	}
	
	.recaptcha-text {
		font-size: 15px;
	}
	
	#form2 {
		display: flex;
		justify-content: start;
	}
	
	.d-flex {
		flex-flow: column;
		gap: 20px;
	}
	
	.padd-right {
		padding-right: 0;
	}
	
	.radio-buttons {
		gap: 5px;
	}
	
	.video-3 {
		transform: scale(1) !important;
	}
	
	.holder p {
		position: absolute;
		top: -20px;
		font-size: 12px;
		text-align: center;
		width: calc(100% + 55px);
		background: var(--sec);
		left: -30px;
		padding: 7px 0;
	}
	
	.logo {
		width: 40px;
		height: 40px;
		margin-top: 25px;
	}
	
	.holder {
		margin-top: 25px;
		width: 200px;
		justify-content: right;
	}
	
	.holder ul {
		gap: 25px;
		position: relative;
		z-index: 100;
	}
	
	.holder li {
		display: block;
		font-size: 12px;
		font-weight: 500;
		text-align: center;
	}
	
	.holder li span {
		margin-bottom: 5px;
		margin-right: 0;
	}
	
	.content-holder {
		height: auto;
		padding: 20px 10px;
	}
	
	h1 {
		font-size: 28px;
		line-height: 1.3;
		margin-top: 15px;
	}
	
	h1 small {
		font-size: 14px;
	}
	
	.content {
		width: 100%;
		margin: 40px 0 0;
		flex-wrap: wrap;
	}
	
	.image-pattern {
		margin: 0;
		width: 90%;
		max-width: 450px;
	}
	
	.col {
		width: 100%;
		max-width: 100%;
	}
	
	.pos-2 {
		margin-right: 0;
	}
	
	.box ul li {
		width: 100%;
	}
	
	body {
		padding-bottom: 40px;
		height: auto;
	}
	
	footer {
		margin-top: 50px;
		gap: 20px;
	}
	
	footer p {
		font-size: 10px;
	}
	
	.image-pattern img {
		height: 325px;
	}
	
	.icon {
		width: 21px;
		height: 21px;
	}
	
	.align-center-mobile {
		justify-content: center;
		justify-items: center;
		display: flex;
	}
	
	.pos-1 {
		order: 1;
	}
	
	.pos-2 {
		order: 2;
	}
	
	form {
		width: 100%;
		justify-content: center;
		display: flex;
		flex-wrap: wrap;
	}
	
	.box ul {
		flex-wrap: wrap;
	}
	
	.box ul li {
		width: 100%;
		min-width: 100%;
		font-size: 16px;
		flex-wrap: wrap;
	}
}

.none {
	display: none;
}

.message {
	width: calc(100% - 20px);
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 30px;
	background: var(--sec);
	color: var(--main);
	font-size: 16px;
	margin: 0 auto;
	text-align: center;
	position: fixed;
	left: 0px;
	right: 0;
	top: 20px;
	z-index: 1000;
}

.message.error {
	background: #eb0000;
	color: #fff;
}

video {
	width: 100%;
	position: relative;
}

.video-3 {
	left: -30px;
	transform: scale(1.5);
	z-index: 0;
}

.relative {
	position: relative;
}

@media (max-width: 960px) {
	video {
		height: 350px;
	}
	
	.video-3 {
		left: 0;
	}
	
	.message {
		height: auto;
		line-height: 1.4;
		padding: 10px;
	}
}

@media (min-width: 765px) {
	.desktop-text-left {
		text-align: left !important;
	}
}

::-webkit-scrollbar {
	width: 0px;
}

::-webkit-scrollbar-track {
	background: rgba(217, 217, 217, 0); /* Barva pozadí */
}

::-webkit-scrollbar-thumb {
	background: rgba(217, 217, 217, 0); /* Barva scrollbaru */
}

::-moz-scrollbar {
	width: 0px;
}

::-moz-scrollbar-track {
	background: rgba(217, 217, 217, 0); /* Barva pozadí */
}

::-moz-scrollbar-thumb {
	background: rgba(217, 217, 217, 0); /* Barva scrollbaru */
}

::scrollbar {
	width: 0px;
}

::scrollbar-track {
	background: rgba(217, 217, 217, 0); /* Barva pozadí */
}

::scrollbar-thumb {
	background: rgba(217, 217, 217, 0); /* Barva scrollbaru */
}

.alert {
	width: 100%;
	max-width: 400px;
	padding: 10px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 10px;
	position: relative;
	transition: .3s all ease-in-out;
	opacity: 1;
	float: left;
	margin-bottom: 20px;
}

.alert.hidden {
	opacity: 0;
}

.alert .loader {
	width: 100%;
	height: 5px;
	position: absolute;
	top: -8px;
	left: 0;
	border-radius: 10px;
	transition: 5s all linear;
}

.alert .loader.active {
	width: 0%;
}

.alert p {
	margin: 5px 0;
}

.alert.ok {
	background: var(--sec) url('../assets/ok.svg') no-repeat 10px center / 20px;
	color: #000;
	padding-left: 40px;
}

.alert.error {
	background: var(--pink) url('../assets/error.svg') no-repeat 10px center / 20px;
	color: #fff;
	padding-left: 40px;
}

.alert.ok p {
	color: #000;
}

.alert.error p {
	color: #fff;
}

.alert.ok .loader {
	background: var(--sec);
}

.alert.error .loader {
	background: var(--pink);
}

.button.ok,
.button.error {
	width: 80px;
	transition: .3s color width ease-in-out;
	pointer-events: none;
	color: transparent;
	background: var(--sec) url('../assets/ok.svg') no-repeat center center / 30px;
}

.button.error {
	background: var(--pink) url('../assets/error.svg') no-repeat center center / 30px;
}

.disabled {
	opacity: .5;
	pointer-events: none;
}
