/**************************
	RESET 
***************************/
	
	@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;700&display=swap');

	body {
		font-family: 'Heebo', sans-serif;
		background: #000000;
		font-size: 28px;
		line-height: 1.1;
		color: #000000;
	}

	*::selection {
		background-color: rgba(0, 0, 0, 0.1);
	}

	*:focus {
		outline: 0 !important;
	}

	p {
		margin: 0;
	}
	
	img {
		max-width: 100%;
		height: auto;
	}
	
	a:link,
	a:visited,
	a:hover,
	a:active {
		text-decoration: none;
		color: inherit;
	}

	h1, h2, h3, h4, h5, h6 {
		margin: 0;
		font-weight: normal;
	}
	
	ul {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	
	label {
		font-weight: normal;
	}

	input,
	textarea,
	button {
		font-family: inherit;
		background-color: transparent;
		border: 0;
		padding: 0;
	}

	button {
		cursor: pointer;
		background-color: transparent;
		border: 0;
		padding: 0;
	}
	
	::-webkit-input-placeholder { color: #797979; }
	::-moz-placeholder { color: #797979; }
	:-ms-input-placeholder { color: #797979; }
	:-moz-placeholder { color: #797979; }

	.input-wrapper.error input::-webkit-input-placeholder { color: #e51d3b; }
	.input-wrapper.error input::-moz-placeholder { color: #e51d3b; }
	.input-wrapper.error input:-ms-input-placeholder { color: #e51d3b; }
	.input-wrapper.error input:-moz-placeholder { color: #e51d3b; }

	::-webkit-scrollbar	{
		width: 12px;
		height: 12px;
		background-color: #000000;
	}

	::-webkit-scrollbar-track	{
		background-color: #e5e5e5;
	}

	::-webkit-scrollbar-thumb {
		background-color: rgba(0, 0, 0, 0.1);
	}

	::-webkit-scrollbar-thumb:hover {
		background-color: rgba(0, 0, 0, 0.2);
	}

  
	
/**************************
	GLOBALS
***************************/

	.fullheight {
		height: 100%;
	}
	
	.wrapper {
		height: 100vh;
	}

	
/**************************
	SLIDER
***************************/

	.slider {
		position: fixed;
		top: 0;
		bottom: 0;
		right: 0;
		left: 530px;
	}

	.slider-parent,
	.slider-parent .slick-list,
	.slider-parent .slick-track {
		height: 100%;
	}

	.slider-item {
		-webkit-background-size: cover;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center center;
	}

	.slider-item[data-index='1'] {
		background-image: url('../images/slider-1.jpg');
	}

	.slider-item[data-index='2'] {
		background-image: url('../images/slider-2.jpg');
	}

	.slider-item[data-index='3'] {
		background-image: url('../images/slider-3.jpg');
	}

	.slider-item[data-index='4'] {
		background-image: url('../images/slider-4.jpg');
	}



/**************************
	SIDEBAR
***************************/

	.sidebar {
		width: 530px;
		margin-right: calc(100% - 530px);
		background-color: #000000;
		color: #ffffff;
		padding: 30px 25px;
	}

	.logo {
		margin-bottom: 40px;
	}

	.opening {
		margin-bottom: 50px;	
	}

	.opening-1 {
		margin-bottom: 5px;
	}

	.opening-2 {
		margin-bottom: 10px;
	}

	.opening-3 {
		
	}

	.text-medium {
		font-size: 30px;
		font-size: 107%;
		font-weight: 700;
	}

	.text-big {
		font-size: 70px;
		font-size: 250%;
		font-weight: 700;
		line-height: 1;
	}

	.closeform {
		display: none;
	}

	.form-box {
		background-color: #ffffff;
		color: #000000;
		padding: 25px 35px;
	}

	.form-title {
		margin-bottom: 15px;
	}

	.form-title br {
		display: none;
	}

	.input-wrapper {
		position: relative;
		margin-bottom: 10px;
	}

	.input-wrapper input {
		width: 100%;
		border-bottom: 1px solid #707070;
		font-size: 16px;
		padding: 5px 0;
		transition: color 0.3s ease, border 0.3s ease;
	}

	.input-wrapper span {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		font-size: 11px;
		color: #e51d3b;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.input-wrapper.error input {
		border-color: #e51d3b;
		color: #e51d3b;
	}

	.input-wrapper.error span {
		opacity: 1;
	}

	.dropdown {
		position: relative;
		margin-bottom: 5px;
	}

	.dropdown-toggle {
		width: 100%;
		border-bottom: 1px solid #707070;
		font-size: 16px;
		padding: 5px 0;
		text-align: right;
		color: #797979;
	}

	.dropdown-toggle::after {
		content: "";
		border: 0;
		margin-left: 0;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		background-image: url('../images/dropdown.svg');
		background-repeat: no-repeat;
		-webkit-background-size: 100% 100%;
		background-size: 100% 100%;
		background-position: center center;
		width: 8px;
		height: 6px;
		transition: transform 0.3s ease;
	}

	.dropdown.show .dropdown-toggle::after {
		transform: translateY(-50%) rotate(180deg);
	}

	.dropdown-toggle .errors {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		font-size: 11px;
		color: #e51d3b;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.dropdown.error .dropdown-toggle {
		border-color: #e51d3b;
		color: #e51d3b;
	}

	.dropdown.error .errors {
		opacity: 1;
	}

	.dropdown-toggle.active {
		color: #000000;
	}

	.dropdown-menu {
		width: 100%;
		margin: 0;
		border-radius: 0;
		box-shadow: none;
		font-size: 16px;
		color: #242424;
		text-align: right;
		border: 1px solid #e5e5e5;
		padding: 0;
		max-height: 150px;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.dropdown-item {
		display: block;
		width: 100%;
		color: inherit;
		padding: 10px 15px;
		position: relative;
		transition: background 0.3s ease;
	}

	.dropdown-item:not(:last-of-type)::after {
		content: "";
		position: absolute;
		bottom: 0;
		right: 15px;
		left: 15px;
		height: 1px;
		background-color: #e5e5e5;
	}
	
	.dropdown-item:hover {
		background-color: rgba(0, 0, 0, 0.05);
		color: inherit;
	}
	
	.dropdown-item:active,
	.dropdown-item.active {
		background-color: rgba(0, 0, 0, 0.1);
		color: inherit;
	}

	.checkbox {
		text-align: right;
		margin-bottom: 10px;
	}

	.checkbox label {
		font-size: 14px;
		color: #797979;
		padding-right: 20px;
		position: relative;
		margin-bottom: 0;
		line-height: 1;
		cursor: pointer;
	}

	.checkbox label::before,
	.checkbox label::after {
		content: "";
		position: absolute;
	}

	.checkbox label::before {
		top: 1px;
		right: 0;
		width: 12px;
		height: 12px;
		border: 1px solid #707070;
	}

	.checkbox label::after {
		top: 3px;
		right: 2px;
		width: 8px;
		height: 8px;
		background-color: #707070;
		transform: scale(0);
		transition: transform 0.3s ease;
	}

	.checkbox input:checked + label::after {
		transform: scale(1);
	}

	.checkbox input {
		display: none;
	}

	.mainbutton {
		width: 100%;
		height: 50px;
		background-color: #e61d3b;
		color: #ffffff;
		position: relative;
	}

	.mainbutton img {
		position: absolute;
		top: 50%;
		left: 20px;
		transform: translateY(-50%);
	}

	.disclaimer {
		border-top: 1px solid #ffffff;
		padding: 10px 0;
		font-size: 15px;
		margin-top: 50px;
	}

	.openform {
		display: none;
	}

	.thank {
		display: none;
	}

	.thank-1 {
		margin-top: 130px;
		margin-bottom: 20px;
	}

	.thank-2 {
		margin-bottom: 120px;
	}

	.social {

	}

	.social a {
		margin: 0 25px;
	}

	.social a img {
		width: 30px;
	}




	
/**************************
	MEDIA QUERIES
***************************/

	/* GENERAL */
	@media (min-width: 992px) {
		.form {
			display: block !important;
		}
	}

	/* 1200 */
	@media (max-width: 1199px) {
		body {
			font-size: 24px;
		}
		.slider {
			left: 450px;
		}
		.sidebar {
			width: 450px;
			margin-right: calc(100% - 450px);
			padding: 20px 25px;
		}
		.logo {
			margin-bottom: 30px;
		}
		.logo img {
			width: 130px;
		}
		.opening {
			margin-bottom: 30px;
		}
		.text-big {
			font-size: 220%;
		}
		.form-box {
			padding: 20px 25px;
		}
		.dropdown {
			margin-bottom: 10px;
		}
		.submitbutton {
			height: 45px;
		}
		.disclaimer {
			margin-top: 30px;
			font-size: 14px;
		}
	}

	/* 992 */
	@media (max-width: 991px) {
		body {
			font-size: 28px;
		}
		.slider {
			position: relative;
			left: 0;
			height: 500px;
		}
		.sidebar {
			width: auto;
			margin-right: 0;
		}
		.form {	
			display: none;
			position: relative;
			z-index: 10;
		}
		.form-wrapper {
			position: fixed;
			top: 0;
			bottom: 0;
			right: 0;
			left: 0;
			background-color: rgba(0, 0, 0, 0.7);
		}
		.form-box-wrapper {
			max-width: 430px;
			margin: 0 auto;
		}
		.closeform {
			display: block;
			margin-bottom: 10px;
		}
		.closeform img {
			width: 25px;
		}
		.form-title br {
			display: block;
		}
		.checkbox {
			margin-bottom: 30px;
		}
		.input-wrapper input,
		.dropdown-toggle {
			font-size: 19px;
			padding: 7px 0;
		}
		.openform {
			margin-top: 30px;
			display: block;
		}
		.opening,
		.disclaimer {
			max-width: 500px;
			margin-right: auto;
			margin-left: auto;
		}
	}

	/* 768 */
	@media (max-width: 767px) {
		.slider {
			height: 65vw;
		}
	}

	/* 576 */
	@media (max-width: 575px) {
		body {
			font-size: 20px;
		}
		.slider {
			height: 70vw;
		}
		.logo {
			margin-bottom: 20px;
		}
		.logo img {
			width: 110px;
		}
		.text-big {
			font-size: 200%;
		}
		.opening {
			margin-bottom: 0;
		}
		.disclaimer {
			margin-top: 20px;
			font-size: 12px;
		}
		.openform {
			margin-top: 10px;
		}
		.mainbutton {
			height: 38px;
		}
		.mainbutton img {
			left: 15px;
			width: 15px;
		}
		.form-box-wrapper {
			width: auto;
			margin: 0 15px;
		}
		.dropdown-menu {
			max-height: 134px;
		}
		.dropdown-item {
			padding: 8px 10px;
		}
		.form-title {
			font-size: 125%;
		}
		.thank-1 {
			margin-top: 50px;
		}
		.thank-2 {
			margin-bottom: 70px;
		}
	}

	/* 480 */
	@media (max-width: 479px) {
		.slider {
			height: 65vw;
		}
	}

	/* 380 */
	@media (max-width: 379px) {
		body {
			font-size: 18px;
		}
		.slider {
			height: 60vw;
		}
		.logo {
			margin-bottom: 15px;
		}
		.logo img {
			width: 85px;
		}
		.text-big {
			font-size: 180%;
		}
		.opening-2 {
			margin-bottom: 5px;
		}
		.sidebar {
			padding: 15px 20px;
		}
		.openform {
			margin-top: 5px;
		}
		.mainbutton {
			height: 35px;
			font-size: 90%;
		}
		.disclaimer {
			margin-top: 15px;
			padding: 7px 0;
		}
		.form-box {
			padding: 15px 20px;
		}
		.form-title {
			margin-bottom: 10px;
		}
		.checkbox {
			margin-bottom: 20px;
		}
		.input-wrapper input,
		.dropdown-toggle {
			font-size: 17px;
			padding: 6px 0;
		}
		.thank-1 {
			margin-top: 40px;
			margin-bottom: 15px;
		}
		.thank-2 {
			margin-bottom: 50px;
		}
		.social a {
			margin: 0 15px;
		}
		.social a img {
			width: 25px;
		}
	}