@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;600;700;900&display=swap');

html,
body {
	margin: 0;
	padding: 0;
	max-width: 100%;
	height: 100vh;
	background: #000;
}

body.active,
body.active .header2,
body.active footer {
	background: #f8f8f8;
}

body.active h1,
body.active h6,
body.active footer p {
	color: #000;
}


/* add a thumb */
body::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	background-color: rgba(0,0,0,0.9);
	z-index: 99;
}

body::-webkit-scrollbar-thumb {
	background: rgba(250,250,250,0.5);
	z-index: 100;
}


/* loader */
.loader {
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #000;
	z-index: 10;
	overflow: hidden;
}

.loader marquee {
	opacity: 0.2;
	text-transform: uppercase;
	line-height: 180px;
	margin: 0;
	padding: 0;
	color: #959595;
	font-size: 200px;
	font-family: "Cinzel";
}

.loader .intro {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.loader .intro h1 {
	font-size: 96px;
	text-transform: uppercase;
	font-weight: 200;
	color: rgba(200, 200, 200, 0.8);
	font-family: "Cinzel";
}

.intro-title .letter {
	display: inline-block;
	line-height: 1em;
}


/* header */
.header2 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

#toggle {
  position: absolute;
  display: block;
	top: 25px;
	right: 60px;
  width: 32px;
  height: 16px;
  border-radius: 16px;
  background: #222;
  transition: 0.5s;
  cursor: pointer;
  box-shadow: inset 0 8px 60px rgba(0, 0, 0, 0.1),
    inset 0 8px 8px rgba(0, 0, 0, 0.1),
    inset 0 -4px 4px rgba(0, 0, 0, 0.1);
}

#toggle.active {
  background: #fff;
  box-shadow: inset 0 2px 60px rgba(0, 0, 0, 0.1),
    inset 0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 -4px 4px rgba(0, 0, 0, 0.05), ;
}

#toggle .indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(to bottom, #444, #222);
  border-radius: 50%;
  transform: scale(0.9);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5),
    inset 0 4px 4px rgba(255, 255, 255, 0.2),
    inset 0 -4px 4px rgba(255, 255, 255, 0.2);
  transition: 0.5s;
}

#toggle.active .indicator {
  left: 16px;
  background: linear-gradient(to bottom, #eaeaea, #f9f9f9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1),
    inset 0 4px 4px rgba(255, 255, 255, 1),
    inset 0 -4px 4px rgba(255, 255, 255, 1);
}


.header2 h1 {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
	object-fit: cover;
	-webkit-box-reflect: below 2px linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.7));
	transition: all 0.5s ease;
	transition-delay: 5.5s;
}

.header2 h1 span {
	font-family: 'Dancing Script', cursive;
	color: hsl(36, 92%, 63%);
	font-size: 3rem;
	font-weight: 900;
}


/* contact */
.contact {
	position: relative;
	max-width: 100%;
	height: 100% auto;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.box {
	background-position: center;
	object-fit: fill;
	min-width: 100vw;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	z-index: 0;
}

.box video {
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translate(-50% -50%);
	min-width: 100vw;
	height: 100%;
}

.contact .box h1,
.contact .box h2 {
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	margin: 0;
}

.contact .box h1 {
	position: relative;
	padding: 4rem 0 1rem 0;
}

.contact .box h2 {
	font-size: 1.2rem;
	font-weight: 600;
	padding: 1rem 0;
}

.contact .box .row p {
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 1.3rem;
	margin: 0 7%;
	padding: 0 1rem 1rem 1rem;
}

.contact-col {
	width: 85%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto;
}

.contact-col-left,
.contact-col-right {
	line-height: 1.2rem;
	display: flex;
	flex-direction: column;
}

.contact-col-right {
	padding-bottom: 4rem;
}

.contact-col-right .social-links {
	display: inline-block;
	flex-direction: row;
	text-align: center;
	margin: 0;
	padding: 0 0 0 2rem;
	z-index: 2;
}

.contact-col-left .left,
.contact-col-right .social-links {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.row p .far {
	margin-bottom: 1rem;
}

.contact-col-left .left .far,
.contact-col-left .left .fas,
.contact-col-left .social-links .fab,
.contact-col-right .social-links .fab,
.row p .far {
	font-size: 2.2rem;
	margin: 0.3rem 2rem;
}

.row p .far {
  color: rgb(190, 190, 190);
}

.contact-col-left .left .fa-envelope {
	color: rgb(248, 36, 78);
}

.contact-col-left .left .fa-mobile-alt {
	font-size: 2.5rem;
	padding-left: 0.3rem;
	color: rgb(250, 250, 250);
}

.contact-col .left h5,
.contact-col .left p,
.contact-col .social-links h5 {
	color: #fff;
	font-size: 1.2rem;
}

.contact-col .contact-col-left .social-links a img,
.contact-col .contact-col-right .social-links a img {
	max-width: 40px;
	max-height: 40px;
	border-radius: 8px;
}

.contact-col .contact-col-left .social-links a:hover,
.contact-col .contact-col-right .social-links a:hover {
	cursor: pointer;
}


/* footer */
footer {
	width: 100%;
	height: 10rem;
	padding: 0;
	margin: 2rem 0 0 0;
	background: #000;
}

footer p {
	text-align: center;
	color: rgba(248, 245, 245, 0.986);
	font-weight: 300;
	font-size: 0.5rem;
	padding-top: 0.5rem;
}

footer span {
	color: hsl(36, 92%, 63%);
}

footer p a {
	text-decoration: none;
}

footer p a:hover {
	cursor: pointer;
}


/* media query*/
@media (max-width: 1024px) {
	.loader .intro h1 {
		font-size: 72px;
	}
}

@media (max-width: 770px) {
	.loader .intro h1 {
		font-size: 48px;
	}

	.contact-col-right .social-links {
		padding: 0;
	}
}

@media (max-width: 600px) {
	.loader .intro h1 {
		font-size: 40px;
	}

	.header2 h1 {
		font-size: 1.5rem;
	}

	.header2 h1 a span {
		font-size: 1.8rem;
	}

	.contact h1 {
		font-size: 1.5rem;
		padding: 3rem 0 1rem 0;
	}

	.contact h2 {
		font-size: 1rem;
		padding: 1rem;
	}

	.contact .box .row p {
		color: #fff;
		font-size: 1rem;
		margin: 0;
		padding: 0;
	}

	.contact-col .left h5,
	.contact-col .left p,
	.contact-col .social-links h5 {
		font-size: 1rem;
	}

	.contact-col-left {
		padding-top: 2rem;
		padding-left: 2rem;
	}

	.contact-col-right {
		padding-bottom: 1.5rem;
	}

	.contact-col-right a {
		text-decoration: none;
	}

	.social-links {
		display: flex;
		flex-direction: row;
		float: left;
	}

	.box {
		padding: 0;
	}

	footer {
		height: 5rem;
	}

	footer p {
		font-size: 0.1rem;
		padding-top: 0.3rem;
	}
}

@media (max-width: 500px) {
	.loader .intro h1 {
		font-size: 30px;
	}

	.contact-col {
		width: 95%;
	}

	.contact-col-left {
		padding: 2rem 0 0 0;
	}
}

@media (max-width: 400px) {
	.loader .intro h1 {
		font-size: 24px;
	}

	.header2 h1 {
		font-size: 1.2rem;
	}

	.header2 h1 a span {
		font-size: 1.3rem;
	}

	.contact .box h1 {
		font-size: 1.1rem;
		padding: 2rem 0 0 0;
	}

	.contact .box h2 {
		font-size: 0.9rem;
		padding: 1rem 0 0 0;
	}

	.contact .box .row p {
		font-size: 0.9rem;
		padding: 1rem 0 2rem 0;
	}

	.contact-col-left,
	.contact-col-right {
		margin-bottom: 0;
	}

	.contact-col-left .left .fa,
	.contact-col-right .social-links .fa,
	.row p .fa {
		font-size: 1.5rem;
		margin: 0 1rem;
	}

	.contact-col-left .left span h5,
	.contact-col-left .left span p,
	.contact-col-right .social-links span h5 {
		font-size: 0.8rem;
	}

	.single-box {
		height: 200%;
	}

	footer p {
		font-size: 0.05rem;
		padding-top: 0.3rem;
	}
}

@media (max-width: 350px) {
	.contact .box .row p {
		color: #fff;
		font-size: 0.5rem;
		margin: 0;
		padding: 0.8rem;
	}
}