/* Google Fonts
font-family: 'Arvo', serif;
font-family: 'Creepster', cursive;
font-family: 'Source Sans Pro', sans-serif;
font-family: 'Trade Winds', cursive;
*/

/* Adobe Fonts
font-family: ccmonstermashworn, sans-serif;
font-weight: 400;
font-style: normal;

font-family: ccmonstermash, sans-serif;
font-style: normal;
font-weight: 400;

font-family: herencia, sans-serif;
font-weight: 400;
font-style: normal;

font-family: six-hands-chalk,sans-serif;
font-weight: 400;
font-style: normal;

font-family: six-hands-brush,sans-serif;
font-weight: 400;
font-style: normal;
*/

* {
	margin: 0px;
	padding: 0px;
	text-decoration: none;
	font-family: 'Arvo', 'Source Sans Pro', sans-serif;
	font-weight: 300;
	font-style: normal;
	box-sizing: border-box;
	quotes: "\201C""\201D""\2018""\2019" !important;
}

html {
	scroll-behavior: smooth;
}

::selection {
	background-color: #8C1BED;
}

.navbar {
	position: fixed;
	background-color: transparent;
	width: 100%;
	padding: 8px 0;
	top: 0;
	z-index: 999;
	transition: .3s linear;
}

.inner-width {
	max-width: 1300px;
	margin: auto;
	padding: 0 40px;
}

.navbar .inner-width {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/*LOGO*/
.logo {
	/*width: 44px;*/
	height: 25px;
	background-image: url(images/logo.png)  no-repeat center;
	background-size: contain;
}

.menu-toggle {
	background: none;
	width: 30px;
	border: none;
	cursor: pointer;
	position: relative;
	outline: none;
	z-index: 999;
	display: none;
}

.menu-toggle span {
	display: block;
	height: 3px;
	background-color: darkgrey;
	margin: 6px 0;
	position: relative;
	transition: .3s linear;

}

.navbar-menu a{
	color: lightgrey;
	font-family: ccmonstermash, 'Creepster', sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 34px;
	margin-left: 30px;
	transition: .2s linear;
}

.navbar-menu a:hover {
	color: black !important;
	text-shadow: 0px 0px 21px #8C1BED, 0px 0px 2px #F8F8FF;
}

.sticky {
	background-color: #000000; /*rgba(0, 0, 0, 0.7);*/
	padding: 18px 0;
}

.sticky .navbar-menu a {
	color: #7CED1B;
}

.sticky .menu-toggle span {
	background-color: #F3F9FF;
}

#home {
	height: 100vh;
	min-height: 500px;
	background: 
	linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0.7)
		),
	url(images/ra-bg-1.jpeg) no-repeat center;
	background-size: cover;
}

#home .inner-width {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
}

#home .content {
	width: 100%;
	color: ghostwhite;
}


#home .content h1 {
	font-family: ccmonstermashworn, 'Creepster', cursive;
	font-weight: 400;
	font-style: normal;
	/*font-size: 233px;*/
	font-size: 16.18vw;
}

#home .content h2 {
	color: ghostwhite;
	font-family: six-hands-chalk, 'Trade Winds', sans-serif;
	font-weight: 400;
	font-style: normal;
	/*font-size: 89px;*/
	font-size: calc(16.18vw / 2.62);
	/*text-transform: ;*/
	margin-bottom: 37px;
}

#home .content h2::after {
	content: "Plague of Fuzz and Distortion!";
}

section {
	padding: 100px 0;
	background-color: ghostwhite;
}

.section-title {
	text-align: center;
	font-family: six-hands-chalk, 'Trade Winds', sans-serif;
	font-weight: 400;
	font-style: normal;
	margin-bottom: 40px;
	position: relative;
	font-size: 55px;
	padding-bottom: 10px;
	color: black;
}

.section-title::before {
	content: "";
	position: absolute;
	width: 80px;
	height: 3px;
	background-color: black;
	bottom: 0;
	left: calc(50% - 40px);
}

/*Ornament*/
/*.section-title::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 10px;
	background-color: dodgerblue;
	border: 4px solid black;
	left: calc(50% - 12px);
	bottom: -7px;
}*/

section.dark {
	background-color: #021B4E;
}

section.dark .section-title {
	color: #F8F8FF;
}

section.dark .section-title::before {
	background-color: #F8F8FF;
}

.about-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.about-pic {
	width: 66%;
	object-fit: cover;
    object-position: 50% 0%;
}

.about-text {
	flex: 1;
	padding: 20px;
}

.about-text h3 {
	/*display: inline-block;
	margin: 10px 0;
	color: black;*/
	font-family: ccmonstermash, 'Creepster', cursive;
	font-size: 34px;
}


.about-text em {
	font-weight: 700;
	font-style: italic;
}

.about-text p {
	font-size: 13px;
	text-align: justify;
	line-height: 26px;
	margin-top: 20px;
}

.about-text p strong {
	font-weight: 700;
}

/*.tag {
	background: rgba(0, 14, 29, 0.2);
	border-left: 10px solid #021B4E;
	margin: 1.5em 10px;
	padding: 0.5em 10px;
	/*quotes: "\201C""\201D""\2018""\2019";
}

.tag i {
	align-content: center;
}*/

.media {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.video-wrapper {
  width: calc(50% - 10px);
  --aspect-ratio: 16 / 9;
  border-radius: 6px;
  margin: 10px 0;
  cursor: pointer;
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
}

.controls {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.control {
	width: calc(50% - 20px);
	text-align: center;
	background: #F8F8FF;
	border: 1px solid black;
	border-radius: 5px;
	margin: 20px 0;
	padding: 40px 20px;
	box-shadow: 0 0px 8px 2px #7CED1B;
	transition: 0.3s;
}

.control i {
	margin-bottom: 7px; 
}

.control h4 {
	font-family: ccmonstermash, 'Trade Winds', sans-serif;
	font-style: normal;
	font-size: 21px;
	margin-bottom: 6px;
}

.control h5 {
	font-style: italic;
}

.control p {
	font-size: 13px;
	text-align: justify;
	line-height: 26px;
	margin-top: 20px;
}

.control li {
	font-size: 13px;
	text-align: justify;
	line-height: 13px;
	margin-top: 20px;
}

.img-div {
	width: 50%;
	text-align: center;
	background: transparent;
	padding: 20px;
}

.contact-info {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.contact-info .item {
	width: calc(33% - 20px);
	height: 180px;
	background-color: #F8F8FF;
	text-align: center;
	border-radius: 4px;
	cursor: pointer;
	transition: .3s linear;
}

.contact-info i {
	display: block;
	font-size: 40px;
	line-height: 120px;
	height: 100px;
}

.contact-info .item:hover {
	background-color: #8C1BED;
	box-shadow: 0 0 21px #7CED1B;
}

.contact-form {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contact-form input, .contact-form textarea {
	width: 100%;
	height: 50px;
	margin: 10px 0;
	background-color: #F8F8FF;
	border: none;
	outline: none;
	padding: 20px;
	border-radius: 4px;
}

.nameZone, .emailZone {
	max-width: calc(50% - 10px);
}

.messageZone {
	min-height: 200px;
	resize: vertical;
}

.contact-form .btn {
	width: 180px;
	background-color: transparent;
	color: #F8F8FF;
	font-family: ccmonstermash, 'Trade Winds', sans-serif;
	font-size: 21px;
	border: 2px solid #7CED1B;
	padding: 0;
	margin-left: auto;
	cursor: pointer;
	transition: .3s linear;
}

.contact-form .btn:hover {
	background-color: #7CED1B;
	color: #000;
}

footer {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.8),
		rgba(0, 0, 0, 0.8)
		), url(images/ra-bg-1.jpeg) no-repeat center; /*#850c24;*/
	color: #F3F9FF;
	padding: 80px 0;
	text-align: center;
}

.copyright {
	margin-bottom: 20px;
	font-size: 15px;
}

.copyright a {
	font-size: 16px;
	color: #ED231B;
	font-family: 'Arvo', 'Source Sans Pro', sans-serif;
	font-weight: 700;
}

.sm a {
	color: #F3F9FF;
	font-size: 22px;
	margin: 0 10px;
	transition: .2s linear;
}

.sm a:hover {
	color: crimson;
}

.sm-f {
	display: flex;
	align-items: center;
	justify-content: space-around;
	text-align: center;
}

.sm-f a {
	color: #000e1D;
	font-size: 22px;
	/* margin: 0 10px; */
	transition: .2s linear;
}

.sm-f a:hover {
	color: crimson;
}

.goTop {
	position: fixed;
	z-index: 999;
	bottom: 40px;
	right: 40px;
	width: 40px;
	height: 40px;
	background-color: #8C1BED;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	color: #F8F8FF;
	outline: none;
	display: none;
}

/*Media Queries*/

@media screen and (max-width: 980px) {
	.menu-toggle {
		display: block;
	}

	.navbar-menu {
		position: fixed;
		height: 100vh;
		width: 100%;
		background-color: #000;
		top: 0;
		right: -100%;
		max-width: 400px;
		padding: 80px 50px;
		transition: .3s linear;
	}

	.navbar-menu a{
		display: block;
		font-size: 30px;
		margin: 30px 0;
	}

	.sticky .navbar-menu {
		background-color: black;
	}

	.navbar-menu.active {
		background-color: black;
		right: 0;
	}

	.menu-toggle.active span:nth-child(1) {
		transform: rotate(-45deg);
		top: 4px;
	}

	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active span:nth-child(3) {
		transform: rotate(45deg);
		bottom: 14px;
	}

	.inner-width {
		max-width: 800px;
	}

	.img-div {
		width: 100%;
		/* max-width: 800px !important; */
		/*margin: 0 auto 60px;*/
	}

	.img-div img {
		max-width: 500px;
	}

	.about-text {
		flex: 100%;
		text-align: center;
	}

	.control {
		width: calc(50% - 20px);
	}

	.video-wrapper {
		width: calc(100% - 20px);
		margin-left: auto;
	}

	.contact-info .item {
		width: 100%;
		margin: 10px 0;
	}
}

@media screen and (max-width: 600px) {
	.inner-width {
		padding: 0 20px;
	}

	.control {
		width: 100%;
	}

	.nameZone .emailZone {
		max-width: 100%;
	}
}