@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

@font-face {
	font-family: 'Colus';
	src: url('../assets/fonts/Colus.otf') format('opentype');
	font-style: normal;
}

@font-face {
	font-family: 'Evolventa';
	src: url('../assets/fonts/Evolventa.ttf') format('truetype');
	font-style: normal;
}

@font-face {
	font-family: 'Evolventa Bold';
	src: url('../assets/fonts/Evolventa-Bold.ttf') format('truetype');
}

@font-face {
	font-family: 'Jost';
	src: url('../assets/fonts/Jost.ttf') format('truetype');
	font-style: normal;
}


:root {
	--grey-20: #F5F5F5;
	--grey-30: #EDEDED;
	--grey-40: #E0E0E0;
	--grey-50: #C2C2C2;
	--grey-60: #9E9E9E;
	--grey-70: #757575;
	--grey-80: #616161;
	--grey-90: #424242;
	--primary-black: #080808;
	--primary-red: #FF3B00;
	--primary-white: #FFFFFF;
	--primary-pressed: #962300;
	--secondary-aquamarine: #34FCA6;
	--secondary-blue: #0D4DFF;
	--secondary-pink: #FF6CE0;
	--secondary-yellow: #FFC200;
	--secondary-green: #3D8D15;
	--spacing-1: 1px;
	--spacing-2: 2px;
	--spacing-xxs: 4px;
	--spacing-xs: 8px;
	--spacing-sm: 16px;
	--spacing-md: 32px;
	--spacing-lg: 40px;
	--spacing-xl: 64px;
	--spacing-xxl: 112px;
	--dark-mode-bg: #0f0f0f;
	--dark-mode-fg: #eee;
}

body.dark {
	background: url(../assets/back_dark.jpg) !important;
	color: var(--dark-mode-fg);
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}

body {
	background: url(../assets/back.jpg) !important;
	font-family: Montserrat;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

pre {
	font-size: 12px;
	background-color: var(--grey-20);
	padding: var(--spacing-lg);
}

hr {
	margin: 32px 0;
	border: 1px solid var(--grey-30);
	background: transparent;
}

body.dark hr {
	border-color: var(--grey-70);
}

h1 {
	font-size: 64px;
	font-weight: 700;
	letter-spacing: -1.2px;
	line-height: 80px;
}

h2 {
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 60px;
}

h3 {
	font-size: 36px;
	font-weight: 600;
	letter-spacing: -0.8px;
	line-height: 44px;
}

h4 {
	font-size: 28px;
	font-weight: 600;
	letter-spacing: -0.2px;
	line-height: 36px;
}

h5 {
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
}

a {
	text-decoration: none;
	color: inherit;
}

img,
video {
	max-width: 100%;
	display: block;
	margin-bottom: 0;
}

h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
p img,
ul img {
	display: inline;
}

p img,
li img {
	vertical-align: -33%;
}

h4,
h5,
p {
	margin-bottom: 16px;
}

.caption {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.1px;
	line-height: 20px;
}

ul {
	padding-left: 24px;
}

nav {
	width: 100%;
}

nav>ul {
	list-style: none;
	padding-left: 0 !important;
	display: flex;
	flex-direction: row;
}

nav>ul>li {
	margin-right: 32px;
}

nav>ul>li:last-child {
	margin-right: 0;
}

nav>ul>li>a {
	padding: var(--spacing-sm) var(--spacing-sm) 13px var(--spacing-sm);
	color: var(--primary-black);
	text-decoration: none;
	display: flex;
	transition: .2s linear;
}

body.dark nav>ul>li>a {
	color: var(--primary-white);
}

nav>ul>li>a:hover {
	border-bottom-color: #ff000000 !important;
}

nav>ul>li>a:hover:active {
	color: var(--primary-red);
	border-bottom-color: #ff000000 !important;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

div[class^="justify-"],
div[class^="align-"] {
	display: flex;
	flex-direction: row;
	width: 100%;
}

.justify-content-left {
	justify-content: flex-start;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-right {
	justify-content: flex-end;
}


.align-items-center {
	align-items: center;
}

.align-items-right {
	align-items: flex-end !important;
}

.logo {
	width: 100%;
	max-width: 191px;
	height: 57px;
	background-image: url(../images/logo.png?2);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	display: inline-block;
}

body.dark .logo,
.logo-white {
	background-image: url(../images/logo-white.png?3);
}

button {
	background: transparent;
}

.butstyle {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	font-family: Colus;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	text-align: center;
	background-color: inherit;
	cursor: pointer;
	min-height: 52px;
	height: 77px;
	position: relative;
	transform-style: flat;
	transition: all 250ms ease-out;
	filter: drop-shadow(0px 2px 2px #0000004D);
	background-image: url(../assets/redmain.png);
	width: 439px;
	color: var(--grey-20);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	z-index: 4;
}

.btn {
	width: 290px !important;
	height: 49px;
	font-size: 18px !important;
	line-height: 24px !important;
	text-transform: uppercase;
	font-family: Colus !important;
}

.submit-email,
.drop_shadow {
	filter: drop-shadow(0px 2px 2px #0000004D);
}

.submit-email,
.white_form_but {
	background-image: url(../assets/white3.png);
	width: 252px !important;
	min-width: 252px !important;
	color: var(--primary-black) !important;
	display: block !important;
	padding: 15px 0 !important;
	font-size: 16px !important;
	line-height: 24px !important;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	font-family: Colus;
	text-align: center;
	background-color: inherit;
	cursor: pointer;
	min-height: 52px;
	height: 52px;
	transition: all 250ms ease-out;
	position: relative;

	transform-style: flat;

	&:before,
	&:after {
		content: "";
		position: absolute;
		z-index: -2;
		transition: all 250ms ease-out;
	}
}

body.dark .submit-email,
body.dark .white_form_but {
	background-image: url(../assets/black3.png);
	color: #F5F5F5 !important;
}

.submit-email:hover,
.white_form_but:hover {
	color: #AA0909 !important
}

body.dark .submit-email:hover,
body.dark .white_form_but:hover {
	color: #BD9C49 !important;
}

.white-flatten {

	&:before,
	&:after {
		bottom: 15px;
		width: 50%;
		height: 20%;
		max-width: 300px;
		max-height: 100px;
		box-shadow: 0 15px 12px rgba(31, 31, 31, 0.7);
	}

	&:before {
		left: 10px;
		transform: rotate(-3deg);
	}

	&:after {
		right: 10px;
		transform: rotate(3deg);
	}

	&:hover {

		&:before,
		&:after {
			transition: box-shadow 600ms ease-out, left 200ms, right 200ms;
			box-shadow: 0 8px 8px rgba(31, 31, 31, 0.5);
		}

		&:before {
			left: 5px;
		}

		&:after {
			right: 5px;
		}
	}
}

.btn:hover {
	box-shadow: none !important;
}

.btn:active {
	background-color: inherit !important;
}

.btn-black:hover {
	box-shadow: 0px 0px 10px 0px rgba(8, 8, 8, 0.60);
}

.btn-black {
	background-color: inherit !important;
}

.form-group {
	position: relative;
	width: 100%;
	margin-bottom: 32px;
}

.form-group:last-child {
	margin-bottom: 0;
}

.checkbox {
	padding-left: 28px;
	font-size: 14px;
}

.checkbox:hover input::after {
	border-color: var(--primary-red);
}

input[type="radio"] {
	width: 0px !important;
	height: 0px !important;
	position: relative;
	top: 6px;
	left: -28px;
}

input[type="checkbox"]::after,
input[type="radio"]::after {
	display: inline-block;
	content: "";
	width: 20px !important;
	height: 20px !important;
	border: 1px solid var(--grey-50);
	background: var(--primary-white);
	transition: .2s linear;
}

input[type="checkbox"]::after:hover,
input[type="radio"]::after:hover {
	border-color: var(--primary-red);
}

input[type="checkbox"]:checked::after,
input[type="radio"]:checked::after {
	background: var(--primary-red);
}

input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
	position: absolute;
	top: 3px;
	left: 3px;
	display: inline-block;
	content: "";
	width: 12px;
	height: 12px;
	border: var(--primary-white) solid 2px;
	background: var(--primary-red);
}

input[type="checkbox"]::after {
	border-radius: 3px;
}

input[type="radio"]::after {
	border-radius: 20px;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
select,
textarea {
	background-color: var(--primary-white);
	padding: var(--spacing-sm) var(--spacing-md);
	color: var(--grey-70);
	border-radius: 5px;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	transition: .2s linear;
	border: transparent solid 1px;
	height: 56px;
}

textarea {
	width: 100%;
	min-height: 400px;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.select {
	position: relative;
}

.select::after {
	position: absolute;
	right: 32px;
	top: 16px;
	font-family: FontAwesome;
	content: '\f107';
	font-size: 20px;
	pointer-events: none;
	color: var(--grey-70);
}

.select:hover::after {
	color: var(--primary-black);
}

input[type="text"]:hover,
input[type="password"]:hover,
input[type="number"]:hover,
input[type="email"]:hover {
	color: var(--grey-90);
}

input.is-invalid {
	border-color: var(--primary-red);
	margin-bottom: 16px;
}

.input-group {
	display: flex;
	position: relative;
}

.input-group .width-auto {
	margin-right: 4px;
	width: auto;
	min-width: 120px;
}

.input-button~input {
	padding-right: 64px;
}

.input-button {
	position: absolute;
	right: 32px;
	top: 16px;
	font-size: 20px;
	cursor: pointer;
	color: var(--grey-70);
	transition: .2s linear;
}

.form-group:hover .input-button {
	color: var(--grey-90);
}

.invalid-feedback {
	position: absolute;
	bottom: -8px;
	font-size: 14px;
	color: var(--primary-red);
}

.dropdown {
	position: relative;
}

.dropdown-content {
	padding: 4px !important;
	position: absolute;
	top: 50px;
	left: -10px;
	z-index: 12;
	display: none;
	background: url(../assets/paper.jpg) !important;
	white-space: nowrap;
	border-radius: 12px;
}

.dropdown-content ul {
	border: 2px solid #997759 !important;
	border-radius: 10px;
	padding: 8px 4px !important;
}

body.dark .dropdown-content ul {
	border: 1px solid #6c5c33;
}

body.dark .dropdown-content {
	background: url(../assets/paper_head.jpg) !important;
}

.dropdown-content ul {
	display: block !important;
	list-style: none;
	padding-left: 0;
}

.dropdown-content ul li {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.dropdown-content ul li a {
	padding: 8px 0;
	text-decoration: none;
}

.dropdown-content ul li a:hover {
	color: var(--primary-red);
}

#page-title {
	margin-top: 64px;
	margin-bottom: 40px;
}

@media (max-width: 1440px) {
	.btn {
		width: 250px !important;
		height: 44px;
		min-height: 44px;
	}
}

@media (max-width: 1280px) {
	:root {
		--spacing-1: 1px;
		--spacing-2: 2px;
		--spacing-xxs: 4px;
		--spacing-xs: 8px;
		--spacing-sm: 16px;
		--spacing-md: 24px;
		--spacing-lg: 32px;
		--spacing-xl: 40px;
		--spacing-xxl: 112px;
	}

	h1 {
		font-size: 48px;
		font-weight: 700;
		letter-spacing: -1.2px;
		line-height: 60px;
	}

	h2 {
		font-size: 36px;
		font-weight: 700;
		letter-spacing: -1px;
		line-height: 44px;
	}

	h3 {
		font-size: 28px;
		font-weight: 600;
		letter-spacing: -0.8px;
		line-height: 36px;
	}

	h4 {
		font-size: 24px;
		font-weight: 600;
		letter-spacing: -0.2px;
		line-height: 32px;
	}

	h5 {
		font-size: 18px;
		font-weight: 600;
		line-height: 24px;
	}

	#page-title {
		margin-top: 40px;
		margin-bottom: 24px;
	}

	.text-center-md {
		text-align: center;
	}
}

@media (max-width: 640px) {
	:root {
		--spacing-1: 1px;
		--spacing-2: 2px;
		--spacing-xxs: 2px;
		--spacing-xs: 4px;
		--spacing-sm: 8px;
		--spacing-md: 16px;
		--spacing-lg: 20px;
		--spacing-xl: 24px;
		--spacing-xxl: 64px;
	}

	body {
		font-size: 16px;
	}

	h1 {
		font-size: 32px;
		font-weight: 700;
		letter-spacing: -1.2px;
		line-height: 36px;
	}

	h2 {
		font-size: 30px;
		font-weight: 700;
		letter-spacing: -1px;
		line-height: 36px;
	}

	h3 {
		font-size: 24px;
		font-weight: 600;
		letter-spacing: -0.8px;
		line-height: 32px;
	}

	h4 {
		font-size: 20px;
		font-weight: 600;
		letter-spacing: -0.2px;
		line-height: 24px;
	}

	h5 {
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}

	.input-group .width-auto {
		min-width: 80px;
	}

	#page-title {
		margin-top: 24px;
		margin-bottom: 16px;
	}

	.text-center-xs {
		text-align: center;
	}

	.invalid-feedback {
		font-size: 12px;
	}

	.input-group .invalid-feedback {
		left: -80px;
	}
}