/*
   ___                    _             _____                       _ ©
  |_ _|_ ____   __ ______| |_ ___  _ __|  __/      _ __  _ __   ___| |
   | || '_ \ \ / / _ / __| __/ _ \| '__| |_ | | | | '_ \| '_ \ / _ | |
   | || | | \ V |  __\__ | || (_) | |  |  _|| |_| | | | | | | |  __| |
  |___|_| |_|\_/ \___|___/\__\___/|_|  |_|   \__,_|_| |_|_| |_|\___|_|v1.0

*/

@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css");
@import url('https://fonts.googleapis.com/css2?family=Oooh+Baby&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,700;1,800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

/* -------------------- Global ------------------- */

:root {
	--black: rgb(5, 5, 5);
	--white: rgb(250, 250, 250);
	--gray: rgb(128, 128, 128);
	--gray-dark: rgb(45, 45, 45);
	--gray-light: rgb(192, 192, 192);
	--gray-lighter: rgb(206, 212, 218);
	--red: rgb(224, 71, 57);
	--green: rgb(102, 187, 106);
	--blue: rgb(0, 72, 186);
	--teal: rgb(66, 185, 159);
	--yellow: rgb(255, 227, 0);
	--orange: rgb(255, 87, 34);
	--brown: rgb(160, 82, 45);
	--purple: rgb(101, 0, 228);
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	background-color: var(--gray-dark);
}

.background {
	background: url(../../assets/image/bg.jpg) no-repeat scroll center center;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	padding-left: 0px;
	overflow-y: scroll;
	background-size: cover !important;
	background-repeat: no-repeat;
}

p {
	font-size: 1.125em;
	text-rendering: optimizeLegibility;
	text-align: left;
}
h1 {
	font-size: 2.875em;
	font-weight: 600;
	letter-spacing: -2px;
	text-rendering: geometricPrecision;
	text-align: center;
}
h2 {
	font-size: 1.75em;
	font-weight: 300;
	letter-spacing: -2px;
	text-rendering: geometricPrecision;
	text-align: center;
}
h3 {
	font-size: 1.25em;
	text-rendering: geometricPrecision;
	text-align: center;
}
h4 {
	font-family: 'Oooh Baby', cursive;
	font-size: 3em;
	text-rendering: optimizeLegibility;
}
h5 {
	font-family: 'Oooh Baby', cursive;
	font-size: 2em;
	text-rendering: optimizeLegibility;
}
h6 {
	font-family: 'Oooh Baby', cursive;
	font-size: 1.75em;
	text-rendering: optimizeLegibility;
}
li {
	text-align: left;
}
a {
	text-decoration: none;
}
a:hover {
	transition: 0.5s;
 -moz-transition: 0.5s;
 -o-transition: 0.5s;
 -webkit-transition: 0.5s;
	color: var(--gray-dark);
	text-decoration: underline;
}
a i:hover {
	transition: 0.5s;
 -moz-transition: 0.5s;
 -o-transition: 0.5s;
 -webkit-transition: 0.5s;
	color: var(--gray);
}
hr {
	margin-top: 25px;
	margin-bottom: 25px;
	border: 0;
	border-top: 1px dotted var(--gray-dark);
}
.indent-first-line{
	 text-indent: 2em;
}
.bold {
	font-weight: 600;
}
.bolder {
	font-weight: 700;
}
.black {
	color: var(--black);
}
.white {
	color: var(--white);
}
.gray {
	color: var(--gray);
}
.gray-dark {
	color: var(--gray-dark);
}
.gray-light {
	color: var(--gray-light);
}
.red {
	color: var(--red);
}
.blue {
	color: var(--blue);
}
.yellow {
	color: var(--yellow);
}
.green {
	color: var(--green);
}
.teal {
	color: var(--teal);
}
.orange {
	color: var(--orange);
}
.brown {
	color: var(--brown);
}
.purple {
	color: var(--purple);
}
.overlay-black {
	width: 100%;
	height: 100%;
	background: rgba(45, 45, 45, 0.95);
	position: fixed;
	z-index: -2;
}
.overlay-gray {
	width: 100%;
	height: 100%;
	background: rgba(45, 45, 45, 0.90);
	position: fixed;
	z-index: -2;
}
.overlay-white {
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.90);
	position: fixed;
	z-index: -2;
}
.overlay-red {
	width: 100%;
	height: 100%;
	background: rgba(224, 71, 57, 0.90);
	position: fixed;
	z-index: -2;
}
.overlay-blue {
	width: 100%;
	height: 100%;
	background: rgba(0, 72, 186, .95);
	position: fixed;
	z-index: -2;
}
.overlay-green {
	width: 100%;
	height: 100%;
	background: rgba(102, 187, 106, 0.85);
	position: fixed;
	z-index: -2;
}
.overlay-yellow {
	width: 100%;
	height: 100%;
	background: rgba(255, 227, 0, 0.90);
	position: fixed;
	z-index: -2;
}
.overlay-teal {
	width: 100%;
	height: 100%;
	background: rgba(66, 185, 159, 0.90);
	position: fixed;
	z-index: -2;
}
.overlay-orange {
	width: 100%;
	height: 100%;
	background: rgba(255, 87, 34, 0.90);
	position: fixed;
	z-index: -2;
}
.overlay-purple {
	width: 100%;
	height: 100%;
	background: rgba(101, 0, 228, 0.90);
	position: fixed;
	z-index: -2;
}
.overlay-brown {
	width: 100%;
	height: 100%;
	background: rgba(160, 82, 45, .90);
	position: fixed;
	z-index: -2;
}

/* -------------------- Header -------------------- */

.header {
	padding-top: 8px;
	padding-bottom: 8px;
	background-color: var(--gray-dark);
	color: var(--white);
}
.header p {
	margin-bottom: 0;
	font-size: 0.875em;
	font-weight: 400;
	color: var(--white);
}

/* ------------------- Survey Form ----------------= */

.content-body {
	position: relative;
	width: 100%;
	padding: 30px;
	border-radius: 0 0 3px 3px;
	background-color: rgba(255, 255, 255, 0.9);
}
.form,
.legal {
	padding: 70px 0px 90px;
}
.form-wrap {
	max-width: 740px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.form-control {
	font-size: 0.875em;
	font-weight: 500;
	color: var(--black);
	letter-spacing: 1px;
}
.form-control:focus {
 box-shadow: none;
	box-shadow: 0 0 0 0.25rem rgba(206, 212, 218, 0.20);
	border-color: var(--gray-lighter);
	font-weight: 700;
}
.form-control:focus::placeholder {
  color: transparent;
}
.formtitle {
	padding: 15px 10px;
	border-radius: 3px 3px 0 0;
	background-color: var(--gray-dark);
	width: 100%;
}
.form h1 {
	margin: 0;
	color: var(--white);
	text-align: center;
}
.form-sign-up h1 {
	margin-bottom: 30px;
	text-align: left;
}
.form-sign-up h3 {
	font-size: 1.375em;
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: -1px;
	text-align: left;
}
.label-class {
	margin-bottom: 4px;
	padding-left: 2px;
	font-size: 0.875em;
	font-weight: 700;
	color: var(--gray-dark);
}
.text-input {
	height: 44px;
	border-radius: 5px !important;
	background-color: rgba(250, 250, 250, .98);
}
.textareaheight {
	height: 80px !important;
}
.radio,
.checkbox {
	position: relative;
	display: inline-block;
	margin: 2px 0 6px 6px;
}
.checkbox label {
	margin-top: 0px;
	display: flex;
	cursor: pointer;
	font-size: 0.875em;
	color: var(--gray-dark);
	align-items: center;
}
.checkbox label input {
	margin-top: 0px;
	margin-right: 6px;
}
.form-check-input:checked {
	background-color: var(--gray-dark);
	border-color: var(--gray-dark);
}
.form-check-input:focus {
	box-shadow: 0 0 0 0.25rem rgb(45, 45, 45, 0.25);
}
.btn {
	margin-bottom: 15px;
	padding: 20px 25px;
	/*border-radius: 3px;*/
	font-size: 1.625em;
	font-weight: 700;
	letter-spacing: 3px;
	background-color: var(--gray-dark);
	color: var(--white);
}
.btn:hover,
.btn:focus {
	transition: 0.5s;
 -moz-transition: 0.5s;
 -o-transition: 0.5s;
 -webkit-transition: 0.5s;
	background-color: var(--black);
	color: var(--white);
}

.form-sign-up {
	height: 100%;
	display: flex;
	align-items: center;
}

/* ----------------- Subscribe box ----------------- */

.subscribe-wrap {
	position: relative;
	margin-left: 30px;
	padding: 30px;
	background-color: rgb(255, 255, 255, 0.9);
}
.subscribe-wrap::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	z-index: 1;
}
.subscribe-wrap>div {
	position: relative;
	z-index: 2;
}
.form-sign-up {
	height: auto;
}
.subscribe-logo {
	display: flex;
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	margin-left: 20px;
	align-items: center;
	justify-content: center;
}
.subscribe-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.subscribe-title {
	font-size: 1.3em;
}
.subscribe-wrap-text {
	font-size: 0.875em;
	font-weight: 500;
}
.form-subscribe {
	display: flex;
	flex-direction: column;
}
.form-subscribe .text-input {
	height: 50px;
}
.form-subscribe .btn {
	padding: 12px 16px;
	font-size: 1.375em;
	letter-spacing: 2px;
}
.w-80 {
	width: 80%!important;
}
.w-85 {
	width: 85%!important;
}
.w-90 {
	width: 90%!important;
}

/* -------------------- Reviews -------------------- */

.review-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.review-stars {
	gap: 2px;
	display: flex;
}
.avatar-align {
	display: flex;
	align-items: center;
}
.avatar-note {
	margin-top: 12px;
	margin-bottom: 24px;
	font-size: 1.125em;
	font-weight: 600;
	color: var(--white);
}
.avatar-img {
	display: flex;
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	margin-right: 16px;
	padding: 5px 5px 9px;
	box-shadow: 0 3px 6px rgba(5, 5, 5, 0.25);
	align-items: center;
	justify-content: center;
	background-color: var(--white);
}
.avatar-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border: 1px solid var(--gray-light);
}
.tilt-l {
	transform: rotate(-4deg);
}
.tilt-r {
	transform: rotate(4deg);
}
.avatar-name {
	font-size: 1.25em;
	line-height: 1.1em;
	font-weight: 600;
	color: var(--white);
}
.avatar-city {
	font-weight: 500;
	font-size: 0.875em;
	color: var(--white);
}

/* -------------------- Footer -------------------- */

.footer {
	padding-top: 40px;
	padding-bottom: 40px;
	font-size: 0.875em;
	background-color: var(--gray-dark);
	color: var(--white);
}
.footer a {
	color: var(--white);
}
.footer a:hover {
	color: var(--gray);
}
.footer-wrap {
	display: flex;
	font-size: 0.9375em;
	align-items: center;
	justify-content: center;
}
.footer-wrap .bi-c-circle {
	font-size: 0.6875em;
	margin-top: 2px;
	display: flex;
}
.footer-wrap div:first-child {
	margin-right: 8px;
}
.footer-wrap div:nth-child(2) {
	line-height: 26.4px;
}
.footer-wrap div:nth-child(2) span {
	margin-left: 8px;
	margin-right: 8px;
}

/* --------------- Thank you --------------- */

.thankyou {
	position: relative;
	width: 60%;
	max-width: 540px;
	margin: 90px auto;
	padding: 1.875rem;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.9);
	color: var(--gray-dark);
	text-align: center;
}
.thankyou a {
	display: inline-block;
	margin: 0px 15px;
	font-size: 1em;
	font-weight: 700;
	color: var(--gray-dark);
}

/* ------------------ Responsive ------------------- */

/* ----- XS (mobile, 479px-) ----- */
@media only screen and (max-width: 479px) {
	.subscribe-wrap {
		padding: 2.5rem;
	}
	.subscribe-title {
		font-size: 1.5em!important;
	}
	.form-sign-up {
		height: auto;
	}
	.form h1 {
		font-size: 1.625em;
	}
	.form-sign-up h1,
	.form-sign-up h3 {
		text-align: center;
	}
	.text-input {
		height: 38px;
	}
	.btn {
		font-size: 1em;
		letter-spacing: 2px;
		padding: 8px;
	}
	.footer-wrap {
		flex-direction: column;
	}
	.footer-wrap div:first-child {
		margin-bottom: 8px;
		margin-right: 0px;
	}
}

/* ----- SM (wide Mobile, 480px-767px) -----  */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	.subscribe-wrap {
		max-width: 480px;
		margin: auto;
	}
	.subscribe-title {
		font-size: 1.5em!important;
	}
	.form-sign-up {
		height: auto;
	}
	.form-sign-up h1,
	.form-sign-up h3 {
		text-align: center;
	}
	.form-sign-up h3 {
		font-size: 1.25em;
	}
	.subscribe-title {
		font-size: 1.25em;
	}
	.form-subscribe .btn {
		padding: 15px;
		font-size: 1.125em;
	}
	.review-col {
		padding-bottom: 30px;
	}
	.btn {
		font-size: 1.125em;
	}
	.content-body {
		padding: 30px 15px;
	}
	.subscribe-wrap {
		margin-top: 30px;
		margin-bottom: 0px;
		padding: 30px 15px;
	}
}

/* ----- MD (tablet, 768px-991px) ----- */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.subscribe-wrap {
		max-width: 500px;
		margin: 15px auto;
	}
	.subscribe-title {
		font-size: 1.5em;
	}
	.form-sign-up {
		height: auto;
	}
	.form-sign-up h1,
	.form-sign-up h3 {
		text-align: center;
	}
	.review-col {
		padding-bottom: 50px;
	}
}

/* ----- LG (laptop, 992px-1199px) ----- */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.subscribe-wrap {
		max-width: 500px;
		margin: 15px auto;
	}
	.form-sign-up h1 {
		font-size: 2.75em;
	}
	.form-sign-up h3 {
		font-size: 1.5em;
	}
	.subscribe-title {
		font-size: 1.25em;
	}
}

/* ----- XL (desktop, 1200px+) ----- */
@media only screen and (min-width: 1200px) {
	.subscribe-wrap {
		max-width: 500px;
		margin: 15px auto;
	}
	.form-sign-up h1 {
		font-size: 3.375em;
	}
	.subscribe-title {
		font-size: 1.5em;
	}
}

/* ---------------- End ---------------- */