/************ GENERAL ************/

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

body {
	font-family: 'Fredoka', sans-serif;
}

a {
	color: #040404;
	text-decoration: none;
}

a:hover {
	color: #EA9247;
}

button:where(.swal2-styled):where(.swal2-confirm) {
	background-color: #EA9247 !important;
	color: #FFFFFF !important;
}

button:where(.swal2-styled):where(.swal2-confirm):hover {
	background-color: #CF6D17 !important;
}

h1 {
	font-weight: 600;
	text-transform: uppercase;
}

.invalid-form-input {
	border-color: #FF4D4D !important;
}

.logo {
	max-width: 250px;
}

.row-bg {
	background-color: #FFFFFF;
	color: #040404;
	border-radius: 20px;
	box-shadow: 7px 7px 20px -5px #040404;
	overflow: hidden;
	padding: 0 2em;
}

.section-bg {
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(135deg,rgba(255, 255, 255, 1) 0%, rgba(247, 215, 186, 1) 10%, rgba(234, 146, 71, 1) 55%, rgba(207, 109, 23, 1) 100%);
}

.side-image {
	max-height: 400px;
	width: auto;
}



/************ CARDS ************/

.card {
	box-shadow: 1px 1px 31px #e6e6e6;
	border: none;
	border-radius: 10px;
	width: 90%;
	margin: auto;
	margin-bottom: 80px;
}

.card .feature-icon{
	display: inline-block;
	position: absolute;
	top: -37.5px;
	left: 50%;
	transform: translateX(-50%);
}

.card .feature-icon i {
	display: block;
	font-size: 75px;
	color: #EA9247;
	transition: .5s ease;
}

.card:hover .feature-icon i {
	transform: translateY(-10px);
}

.card-body {
	padding: 50px 25px 25px 25px;
}

.card-text {
	font-size: 22px;
	font-weight: 500;
}

.features-cards>div:last-child .card, .features-cards>div:nth-last-child(2) .card {
	margin-bottom: 0;
}



/************ FORM ************/

.kit-code-form {
	width: 100%;
	margin-top: 25px;
}

.kit-code-form form {
	margin: 0 auto;
	position: relative;
}

.kit-code-form form .form-input {
	border-radius: 40px;
	border: none;
	outline: none !important;
	box-shadow: none !important;
	padding: 26px;
	margin-bottom: 0;
	background-color: transparent;
	width: 100%;
	font-size: 16px;
	font-weight: 100;
	color: inherit;
	text-align: left;
}

.kit-code-form form .form-wrapping {
	background: transparent;
	width: 100%;
	border: 1px solid #040404;
	border-radius: 40px;
	display: flex;
}

.kit-code-form form .button {
	transition: all linear 300ms;
	margin: 5px 5px 5px 2px;
}

.button {
	position: relative;
	display: inline-block;
	font-size: 15px;
	padding: .8rem 2.25rem;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
	font-weight: 500;
	z-index: 1;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	background-color: #EA9247;
	border: 1px solid #EA9247;
	color: #FFFFFF !important;
}

.button:hover {
	background-color: #CF6D17;
}



/************ LOADER ************/

.loader {
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 111111;
	background: linear-gradient(135deg,rgba(255, 255, 255, 1) 0%, rgba(247, 215, 186, 1) 10%, rgba(234, 146, 71, 1) 55%, rgba(207, 109, 23, 1) 100%);
	overflow: hidden !important;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loader-box {
	position: relative;
	display: grid;
	grid-template-columns: 33% 33% 33%;
	grid-gap: 2px;
	height: 90px;
	/*margin: 0 50px 100px 0;*/
	width: 90px;
	overflow: hidden;
}

.loader-box li {
	position: relative;
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	transform: scale(0);
	transform-origin: center center;
	animation: loader-box-fade 1.5s infinite ease-in-out;
	list-style-type: none;
}

.loader-box li:nth-child(1), .loader-box li:nth-child(5), .loader-box li:nth-child(9) {
	animation-delay: 0.4s;
}

.loader-box li:nth-child(4), .loader-box li:nth-child(8) {
	animation-delay: 0.2s;
}

.loader-box li:nth-child(2), .loader-box li:nth-child(6) {
	animation-delay: 0.6s;
}

.loader-box li:nth-child(3) {
	animation-delay: 0.8s;
}

@keyframes loader-box-fade {

	0% {
		transform: scale(0);
		opacity: 0.2;
	}

	40% {
		transform: scale(1);
		opacity: 1;
	}

	80% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(0);
		opacity: 0.2;
	}

}

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

@media screen and (max-width:767px) {

	.features-cards>div:nth-last-child(2) .card {
		margin-bottom: 80px;
	}

}

@media screen and (max-width: 991px) {

	.right-panel {
		z-index: 1;
		text-align: center;
	}

	.left-panel {
		display: none;
		visibility: hidden;
	}

}

@media screen and (max-width: 1199px) {

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

	.row-bg {
		padding: 0;
		margin: 25px 10px;
	}

}
