/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- About
- Services
- Details
- Projects
- Works
- Testimonials
- Questions
- Contact
- Footer 
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds, navbar - black #24262a
- Backgrounds - light gray #f7f9fb
- Buttons, icons - blue #0b36a8
- Headings text - black #24262a
- Body text - dark gray #4d5055
******************************************/


/**************************/
/*     General Styles     */
/**************************/
body,
html {
    width: 100%;
	height: 100%;
}
@font-face {
	font-family: 'orbitronNormal';
	src:  url('../font/Orbitron-Regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
  } 
  @font-face {
	font-family: 'orbitronRegular';
	src:  url('../font/Orbitron-SemiBold.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
  } 
  @font-face {
	font-family: 'titilliumLight';
	src: url('../font/Titillium/TitilliumWeb-Light.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	 url('../font/Titillium/TitilliumWeb-Light.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
  }
  @font-face {
	font-family: 'regulion';
	src: url('../font/Reguilon.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	 url('../font/Reguilon.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
  }  
  
body, p {
	color: white; 
	font: 400 1rem/1.625rem "orbitronRegular";
}

h1 {
	color: white;
	font-weight: 700;
	font-size: 3rem;
	line-height: 3.25rem;
	font-family: "orbitronRegular"
}

h2 {
	color: white;
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.5rem;
	font-family: "orbitronRegular"
}

h3 {
	color: white;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-family: "orbitronRegular"
}

h4 {
	color: white;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2rem;
	font-family: "orbitronRegular"
}

h5 {
	color: white;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.625rem;
	font-family: "orbitronRegular"
}

h6 {
	color: white;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.375rem;
	font-family: "orbitronRegular"
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5rem;
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #4d5055;
	text-decoration: underline;
}

a:hover {
	color: #4d5055;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.blue {
	color: #2259ec;
}

.bg-gray {
	background-color: #f7f9fb;
}

.section-divider {
	display: block;
	height: 1px;
	margin: 0;
	border: none;
	background-color: #5e5e5e;
	

}
.section-divider2{
	display: block;
	height: 2px;
	margin: 0;
	border: none;
	background-color: #888888;
	max-width: 10rem;
	margin: auto;
	
}
.sectionContainer{
	max-width: 700px;
	margin:0 auto;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #0b36a8;
	background-color: #0b36a8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: #0b36a8; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #0b36a8;
	background-color: #0b36a8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: #0b36a8; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #24262a;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #24262a;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #24262a;
	color: #ffffff;
	text-decoration: none;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.label-control {
	position: absolute;
	top: 0.875rem;
	left: 1.5rem;
	color: #58a0e8;
	opacity: 1;
	font-size: 0.875rem;
	line-height: 1.375rem;
	cursor: text;
	transition: all 0.2s ease;
}

.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
	top: 0.125rem;
	color: #58a0e8;
	opacity: 1;
	font-size: 0.75rem;
	font-weight: 700;
}

.form-control-input,
.form-control-select {
	display: block; /* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: 1.125rem;
	padding-bottom: 0.125rem;
	padding-left: 1.5rem;
	border: 1px solid #cbcbd1;
	background-color: #ffffff;
	color: #4d5055;
	font-size: 0.875rem;
	line-height: 1.875rem;
	transition: all 0.2s;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 3.25rem;
	color: #7d838a;
}

select {
    /* you should keep these first rules in place to maintain cross-browser behavior */
    -webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('../images/down-arrow.png');
    background-position: 96% 50%;
    background-repeat: no-repeat;
    outline: none;
}

.form-control-textarea {
	display: block; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 14rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 1.5rem;
	padding-left: 1.3125rem;
	border: 1px solid #cbcbd1;
	background-color: #ffffff;
	color: #4d5055;
	font-size: 0.875rem;
	line-height: 1.5rem;
	transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.checkbox {
	font-size: 0.75rem;
	line-height: 1.25rem;
}

input[type='checkbox'] {
	vertical-align: -10%;
	margin-right: 0.5rem;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #0b36a8;
	border-radius: 32px;
	background-color: #0b36a8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	background-color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	padding: 1rem;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);

}


.navbar .navbar-brand {
	padding-top: 0.125rem;
	padding-bottom: 0.125rem;
}

.navbar .logo-image img {
   height: auto;
   width: 35%;
}

.navbar .logo-text {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.875rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 4.25rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #24262a;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 1rem;
	padding-bottom: 1rem;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.2s ease;
	padding-left: 1.5rem !important;
	
	
}


.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: #FFD04D;
	
	
	
}

.navbar .nav-item.dropdown.show .nav-link{
	
}



/* Dropdown Menu */

.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	border: 1px solid white;
	background-color: #24262a;

}

.navbar .dropdown-item {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	color: #ffffff;
	
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: transparent !important;
	color: #FFD04D;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #505050;
}
/* end of dropdown menu */

.navbar .fa-stack {
	width: 2em;
	margin-right: 0.25rem;
	font-size: 0.75rem;
}

.navbar .fa-stack-2x {
	color: #0b36a8;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
	color: #ffffff;
}

.navbar .fa-stack:hover .fa-stack-1x {
	color: #0b36a8;
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/******************/
/*     Header     */
/******************/
.header {
	
	height: 106%;
	background:url('../images/juiceFinal.png') center center no-repeat;
	background-size: cover;
	text-align: center;
	
}

.header .h1-large {
	margin-bottom: 1.75rem;
	color: #ffffff;
}

.header .btn-solid-lg:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
}

.header .btn-outline-lg {
	padding: 1.625rem 1.625rem 1.625rem 1.625rem;
	border: none;
	color: #ffffff;
}

.header .btn-outline-lg:hover {
	background: transparent;
	color: #9c9ead;
	text-decoration: none;
}

.header .btn-outline-lg .fas {
	margin-right: 0.375rem;
}


/*****************/
/*     About     */
/*****************/
.basic-1 {
	margin-top: -12rem;
	padding-top: 7.75rem;
	padding-bottom: 5.25rem;
	height: 100%;
	background:url('../images/juice-2.png') center center no-repeat;
	background-size: cover;
	text-align: center;

	
}

.basic-1 .text-container {
	margin-bottom: 3rem;
}

.basic-1 .time {
	margin-bottom: 0.5rem;
	color: #0b36a8;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.5rem;
	font-family: "orbitronRegular";
}

.basic-1 h6 {
	margin-bottom: 0.125rem;
}


/********************/
/*     Services     */
/********************/
.basic-2 {
	margin-top: -20rem;
	padding-top: 7.75rem;
	padding-bottom: 5.25rem;
	height: auto;
	width: 100%;
	background:url('../images/Juice-Pattern.png') center center no-repeat ,  #070707;
	background-size: cover;
	
	text-align: center;
	position: relative;
  	z-index: -2;
	
}
.basic-2 .container{
	max-width: 1250px;
}
.basic-3 .container{
	max-width: 1250px;
}

.basic-2 .h2-heading {
	margin-bottom: 0.75rem;
	text-align: center;
}

.basic-2 .p-heading {
	margin-bottom: 4rem;
	text-align: center;
}

.basic-2 .text-box {
	margin-bottom: 3rem;
	padding: 3.5rem 1rem 2.125rem 1rem;
	border: 1px solid #cfd7de;
}

.basic-2 .fas,
.basic-2 .far {
	margin-bottom: 1.75rem;
	color: #0b36a8;
	font-size: 3.5rem;
}

.basic-2 h4 {
	letter-spacing: 1px;
}


/*******************/
/*     Details     */
/*******************/
.split .area-1 {
	height: 430px;
	background: linear-gradient(to bottom right, rgba(25, 26, 29, 0.5), rgba(25, 26, 29, 0.5)), url('../images/details-background.jpg') center center no-repeat;
	background-size: cover;
}

.split .area-2 {
	padding-top: 7.75rem;
	padding-bottom: 7.75rem;
}

.split p {
	margin-bottom: 2.25rem;
}

.split .icons-container {
	margin-top: 3rem;
}

.split .icons-container img {
	width: 50px;
	margin-right: 0.625rem;
	margin-bottom: 0.75rem;
}


/********************/
/*     Projects     */
/********************/
.basic-3 {
	padding-top: 4.75rem;
	padding-bottom: 20rem;
	text-align: center;
background: #070707
}

.basic-3 .h2-heading {
	margin-bottom: 0.75rem;
	text-align: center;
}

.basic-3 .p-heading {
	margin-bottom: 4rem;
	text-align: center;
}

.basic-3 .text-container {
	margin-bottom: 4rem;
}

.basic-3 .image-container {
	margin-bottom: 1rem;
}

/* Hover Animation */
.basic-3 .image-container {
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
}

.basic-3 .image-container img {
	margin: 0;
	transition: all 0.2s;
}

.basic-3 .image-container:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
} 
/* end of hover animation */


/*****************/
/*     Works     */
/*****************/
.basic-4 {
	padding-top: 2.75rem;
	padding-bottom: 20rem;
	text-align: center;
	background: #101923;
	background: linear-gradient(180deg, rgba(17,26,36,1) 0%, rgba(28,72,117,1) 100%);
}

.basic-4 .text-container {
	margin-bottom: 4rem;
}

.basic-4 .image-container {
	margin-bottom: 1rem;
}

/* Hover Animation */
.basic-4 .image-container {
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
}

.basic-4 .image-container img {
	margin: 0;
	transition: all 0.2s;
}

.basic-4 .image-container:hover img {
	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
} 
/* end of hover animation */


/************************/
/*     Testimonials     */
/************************/
.cards-1 {
	padding-top: 3rem;
	padding-bottom: 3.875rem;
}

.cards-1 .h2-heading {
	margin-bottom: 3rem;
	text-align: center;
}

.cards-1 .card {
	margin-bottom: 4rem;
	border: none;
}

.cards-1 .card-body {
	padding: 0;
	text-align: center;
}

.cards-1 .testimonial-text {
	margin-bottom: 1.625rem;
}

.cards-1 img {
	display: inline-block;
	width: 60px;
	margin-bottom: 0.875rem;
	border-radius: 50%;
}

.cards-1 .text {
	margin-top: 0.375rem;
}

.cards-1 .testimonial-author {
	color: #24262a;
}

.cards-1 .testimonial-author,
.cards-1 .occupation {
	font-size: 0.875rem;
	line-height: 1.375rem;
}


/*********************/
/*     Questions     */
/*********************/
.accordion-1 {
	padding-top: 7.75rem;
	padding-bottom: 6.75rem;
}

.accordion-1 .h2-heading {
	margin-bottom: 2.5rem;
	text-align: center;
}

.accordion-1 .card {
	margin-bottom: 1.75rem;
	border: none;
}

.accordion-1 .card-header {
	padding: 0;
	border: none;
	background-color: transparent;
}

.accordion-1 .card button {
	padding: 0;
	color: #24262a;
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-family: 'orbitronRegular';
}

.accordion-1 .card button:hover {
	text-decoration: none;
}

.accordion-1 .card button:before {
	float: left;
	margin-right: 0.625rem;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f078";
	transition: all 0.2s;
}

.accordion-1 .card button.collapsed:before {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
} 

.accordion-1 .card-body {
	padding: 0.75rem 1.5rem 0.5rem 1.5rem;
}


/*******************/
/*     Contact     */
/*******************/
.form-1 {
	padding-top: 7.75rem;
	padding-bottom: 7rem;
	text-align: center;
}

.form-1 .h2-heading {
	margin-bottom: 0.75rem;
	text-align: center;
}

.form-1 .p-heading {
	margin-bottom: 4rem;
}


/******************/
/*     Footer     */
/******************/
.footer {
	

	background-color: #101316;
	text-align: center;
}

.footer a {
	text-decoration: none;
}

.footer .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.5rem;
}

.footer .fa-stack .fa-stack-1x {
    color: #ffffff;
	transition: all 0.2s ease;
}

.footer .fa-stack .fa-stack-2x {
	color: transparent;
	transition: all 0.2s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
	color: #FFD04D;
}

.footer .fa-stack:hover .fa-stack-2x {
    color: transparent;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: #24262a;
	text-align: center;
}

.copyright .p-small {
	color: #9da6ac;
	text-align: center;
}

.copyright a {
	color: #9da6ac;
}


/******************************/
/*     Back To Top Button     */
/******************************/
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 12px;
	bottom: 12px;
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 30px;
	background: #3a424d url("../images/up-arrow.png") no-repeat center 47%;
	background-size: 18px 18px;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: #0b36a8;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: #24262a;
}

.ex-header h1 {
	color: #ffffff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .media-body {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fb;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #0b36a8;
}

.ex-cards-1 .card .fa-stack-1x {
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .media-body {
	margin-left: 0.75rem;
}

.ex-cards-1 .card .list-unstyled .media-body h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.375rem;
}


/*************************/
/*     Media Queries     */
/*************************/	

   
        /* Media Query for Mobile Devices */
        @media (max-width: 480px) {
            .juiceMedia{
				padding-top: 10rem;
			}
			.juiceHomeText{
				top: 60% !important;
				margin-left: 0 !important;
			}
			.joinText{
				
				text-align:center !important;
				
			  }
			  .socialPos{
				text-align: center !important;
			  }
			.gallery > ul > li {
				
				width: 140px !important;
				
			  }
			 .footer{
				margin-top: -8rem;
			 }
			 .mobileSocial{
				text-align: center !important;
			 }
			 .rightFooter{
				text-align: center !important;
			}
			 .header {
	
				
				background:url('../images/juice-bg2.png') center center no-repeat;
				
			}
			.paddingPtoG{
				
				padding-bottom: 8rem !important;
			}
			.gameHeader{
				font-size: 20px !important;
			}
			.video2{
				
				left: -0.5rem !important;
				top: -0.6rem !important;
				
			}
			#scroll-container {
				padding-left: 0 !important;
				padding-right: 0 !important;
			}
			.scroll-text {
				font-size: 7px !important;
			}
			.overlay{
				padding: 0.2rem 0.2rem 0.5rem 1rem !important;
			}
			.basic-2 .container{
				max-width: 300px !important;
			}
			.sectionContainer{
				max-width: 300px !important;
			}
			.section-divider2{
				display: block;
				height: 3px;
			
				margin: 0;
				border: none;
				background-color: #838361;
				max-width: 5rem;
				margin: auto;
				
			}
			.leaderText{
				font-size: 25px !important;
			}
			
			
        }
          
        /* Media Query for low resolution  Tablets, Ipads */
        @media (min-width: 481px) and (max-width: 767px) {
            .juiceMedia{
				padding-top: 10rem;
			}
			.juiceHomeText{
				top: 50% !important;
				margin-left: 0 !important;
			}
			.joinText{
				
				text-align:center !important;
			  }
			  .socialPos{
				text-align: center !important;
			  }
			.footer{
				margin-top: -8rem;
			 }
			 .mobileSocial{
				text-align: center !important;
			 }
			 .rightFooter{
				text-align: center !important;
			}
			 .header {
	
				
				background:url('../images/juice-bg2.png') center center no-repeat;
				
			}
			.paddingPtoG{
				
				padding-bottom: 8rem !important;
			}
			.navbar .container{
				max-width: 960px !important;
			}
			.leaderText{
				font-size: 35px !important;
			}
			
			
			
        }
          
        /* Media Query for Tablets Ipads portrait mode */
        @media (min-width: 768px) and (max-width: 1024px){
            .juiceMedia{
				padding-top: 10rem;
			}
			.juiceHomeText{
				top: 50% !important;
				margin-left: 0 !important;
			}
			.joinText{
				
				text-align:center !important;
			  }
			  .socialPos{
				text-align: center !important;
			  }
			.footer{
	
				margin-top: -8rem;
				clip-path: 
				polygon(
				  0% 0%,     /* top left */
				  0% 0%,     /* top left */
				  95% 0%,    /* top right */
				  100% 20%,   /* top right */
				  100% 100%,  /* bottom right */
				  100% 100%,  /* bottom right */
				  0% 100%,   /* bottom left */
				  0 100%      /* bottom left */
				);
			}
			.header {
	
				
				background:url('../images/juice-bg2.png') center center no-repeat;
				
			}
			.paddingPtoG{
				
				padding-bottom: 8rem !important;
			}
			
			.basic-2 .container{
				max-width: 960px !important;
			}
			.basic-3 .container{
				max-width: 960px !important;
			}

			
			
			
        }
          
        /* Media Query for Laptops and Desktops */
        @media (min-width: 1025px) and (max-width: 1280px){
            .juiceMedia{
				padding-top: 10rem;
			}
			.logo-image{
				padding-left: 2rem;
			}
			.basic-1{
				margin-top: -7rem;
			}
			.footer{
	
				margin-top: -8rem;
				clip-path: 
				polygon(
				  0% 0%,     /* top left */
				  0% 0%,     /* top left */
				  95% 0%,    /* top right */
				  100% 20%,   /* top right */
				  100% 100%,  /* bottom right */
				  100% 100%,  /* bottom right */
				  0% 100%,   /* bottom left */
				  0 100%      /* bottom left */
				);
			}
			.navbar{
				line-height: 1.5rem !important;
			}
			.navbar .nav-item .nav-link {
				padding-right: 1rem !important;
				padding-left: 1rem !important;
			}
			.dropdownText{
				font-size: 8px !important;
				padding: 0.5rem 0 0.5rem 0 !important;
			}
			.dropdown-menu{
				margin-left: 5rem !important;
			}
			
			.dcPlayHover{
				width: 60px !important;
				height: 60px !important;
			}
			.twPlayHover{
				width: 60px !important;
				height: 60px !important;
			}
			.ytPlayHover{
				width: 60px !important;
				height: 60px !important;
			}
			.socialBorder{
				width: 60px !important;
				height: 60px !important;
			}
			
			.navbar{
				line-height: 1.2rem !important;
				
			}
			.navbar .nav-item .nav-link.active .unskew {
				font-size: 8px !important;
			}
			.navbar .nav-item .nav-link {
				font-size: 8px !important;
			}
			
			.basic-2 .container{
				max-width: 800px !important;
			}
			.basic-3 .container{
				max-width: 960px !important;
			}
			.gameButton{
				font-size: 13px !important;
				margin-top: 1.5rem !important;
				padding: 0.5rem;
			}
			.scroll-text {
				font-size: 10px !important;
				line-height: 16px !important;
			}
			#scroll-container{
				padding-left: 0.5rem !important;
				padding-right: 0.5rem !important;
			}
			.footer{
				padding: 0 0 0 0 !important;
			}
			.footer .container-fluid{
				max-width: 1200px !important;
			}
			.footerSpacing{
				margin-top: -3rem;
			}
			.footerLogoDiv{
				margin-top: 1rem;
			}
			.footerLogo{
				margin-bottom: 1.5rem !important;
			}
			.leftFooter{
				margin-top: 2rem;
			}

			.footer .nav-link{
				font-size: 8px !important;
				padding: 0 0 0 0 !important;
				
			}
			.cropImg{
				width: 200px !important;
				height: auto !important;
			}
			.rightFooter{
				margin: 0 0 0 0 !important;
			}
			.footerRes{
				font-size: 8px !important;
				padding: 0 0 0 0 !important;

			}
			.video2{
				
				left: -0.8rem !important;
				top: -0.8rem !important;
				
			}
			h1{
				font-size: 1.8rem !important;
			}
			.creatorPadding{
				margin-top: -3rem !important;
			}
			.card-title{
				font-size: 14px !important;
			}
			.fa-sm{
				font-size: 15px !important;
				
			}
			.creatorSocia{
				margin-left: 2px !important;
			}
			.fa-youtube , .fa-discord, .fa-twitch{
				margin-left: -0.2rem !important;
			}
			
        }
          
        /* Media Query for Large screens */
        @media (min-width: 1281px) and (max-width: 1600px){
			.basic-1{
				margin-top: -9rem;
			}
            .juiceMedia{
				padding-top: 2rem;
			}
			.dcPlayHover{
				width: 70px !important;
				height: 70px !important;
			}
			.twPlayHover{
				width: 70px !important;
				height: 70px !important;
			}
			.ytPlayHover{
				width: 70px !important;
				height: 70px !important;
			}
			.socialBorder{
				width: 70px !important;
				height: 70px !important;
			}
			.footer{
	
				margin-top: -8rem;
				clip-path: 
				polygon(
				  0% 0%,     /* top left */
				  0% 0%,     /* top left */
				  95% 0%,    /* top right */
				  100% 20%,   /* top right */
				  100% 100%,  /* bottom right */
				  100% 100%,  /* bottom right */
				  0% 100%,   /* bottom left */
				  0 100%      /* bottom left */
				);
			}
			.footer{
				padding: 0 0 0 0 !important;
			}
			.footer .container-fluid{
				max-width: 1550px !important;
			}
			.footerSpacing{
				margin-top: -3rem;
			}
			.footerLogoDiv{
				margin-top: 1rem;
			}
			.footerLogo{
				margin-bottom: 1.5rem !important;
			}
			.leftFooter{
				margin-top: 2rem;
			}

			.footer .nav-link{
				font-size: 8px !important;
				padding: 0 0 0 0 !important;
				
			}
			.cropImg{
				width: 200px !important;
				height: auto !important;
			}
			.rightFooter{
				margin: 0 0 0 0 !important;
			}
			.footerRes{
				font-size: 8px !important;
				padding: 0 0 0 0 !important;

			}
			.container-fluid{
				padding-left: 7rem;
				padding-right: 7rem;
			}
			.video2{
				
				left:-1rem !important;
				top:-1.2rem !important;
				
			}
			.navbar{
				line-height: 1.5rem !important;
			}
			.navbar .nav-item .nav-link {
				padding-right: 1rem !important;
				padding-left: 1rem !important;
			}
			.navbar .nav-item .nav-link.active .unskew {
				font-size: 10px !important;
			}
			.navbar .nav-item .nav-link {
				font-size: 10px !important;
			}
			
			.basic-2 .container{
				max-width: 960px !important;
			}
			.basic-3 .container{
				max-width: 960px !important;
			}
			.video2{
				
				left: -0.8rem !important;
				top: -0.8rem !important;
				
			}
			h1{
				font-size: 2rem !important;
			}
        }
		@media (min-width: 1700px) and (max-width: 1800px){
			.basic-2 .container{
				max-width: 1100px !important;
			}
			.basic-3 .container{
				max-width: 1100px !important;
			}
			.video2{
				
				left: -0.8rem !important;
				top: -0.8rem !important;
				
			}
			.navbar .nav-item .nav-link.active .unskew {
				font-size: 12px !important;
			}
			.navbar .nav-item .nav-link {
				font-size: 12px !important;
			}
			.footer{
				padding: 0 0 2rem 0 !important;
			}
			.footer .container-fluid{
				max-width: 1750px !important;
			}
			.footerSpacing{
				margin-top: -2rem;
			}
			.footerLogoDiv{
				margin-top: 1rem;
			}
			.footerLogo{
				margin-bottom: 2rem !important;
			}
			.leftFooter{
				margin-top: 2rem;
			}

			.footer .nav-link{
				font-size: 12px !important;
				padding: 0 0 0 0 !important;
				
			}
			.cropImg{
				width: 200px !important;
				height: auto !important;
			}
			.rightFooter{
				margin: 0 0 0 0 !important;
			}
			.footerRes{
				font-size: 8px !important;
				padding: 0 0 0 0 !important;

			}
		}

		@media (min-width: 1601px) {
			.juiceMedia{
				padding-top: 2rem;
			}
			
			.footer{
	
				margin-top: -8rem;
				clip-path: 
				polygon(
				  0% 0%,     /* top left */
				  0% 0%,     /* top left */
				  95% 0%,    /* top right */
				  100% 20%,   /* top right */
				  100% 100%,  /* bottom right */
				  100% 100%,  /* bottom right */
				  0% 100%,   /* bottom left */
				  0 100%      /* bottom left */
				);
			}
			.container-fluid{
				padding-left: 7rem;
				padding-right: 7rem;
			}
			.gameCon{
				padding-left: 1rem !important;
				padding-right: 1rem !important;
			}
            .basic-1{
				margin-top: -12rem;
			}
			

        }
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header {
		
	}
	
	/* end of header */


	/* Services */
	.basic-2 .text-box {
		padding-right: 2.125rem;
		padding-left: 2.125rem;
	}
	/* end of services */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}
	/* end of extra pages */
}
/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {
	
	/* General Styles */
	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of general styles */

	
	
	.navbar .nav-item .nav-link.active {
		color: black;
		background-color: #FFD04D;
		transform: skew(40deg); /* sKEW */
	}
	
	
	.navbar .nav-item .nav-link.active .unskew {
		display: block;
		transform: skew(-40deg); /* sKEW */
	}
	
	/* Navigation */
	.navbar {
		
		background-color: rgba(2, 1, 1, 0.212);
		box-shadow: none;
		transition: all 0.2s;
		padding: 0 0 0 0;
		line-height: 3rem;
		border-bottom: 2px solid #FFD04D;

	}

	.navbar.top-nav-collapse {
		
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}
	

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
		padding-right: 10px;
	}
	
	.navbar .nav-item .nav-link {
		padding-right: 1rem;
		padding-left: 1rem;
	}

	.navbar .dropdown-menu {
		margin-top: 0.25rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}
	
	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
	/* end of navigation */


	/* Header */
	.header {
		
		text-align: left;
	}
	
	/* end of header */


	/* Details */
	.split {
		height: 760px;
	}
	
	.split .area-1 {
		height: 100%;
		width: 50%;
		display: inline-block;
	}
	
	.split .area-2 {
		height: 100%;
		width: 50%;
		display: inline-block;
		vertical-align: top;
	}

	.split .text-container {
		width: 400px;
		margin-left: 3rem;
	}
	/* end of details */


	/* Testimonials */
	.cards-1 .card {
		display: inline-block;
		width: 290px;
		vertical-align: top;
	}

	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1.5rem;
		margin-left: 1.5rem;
	}

	.cards-1 .card-body {
		text-align: left;
	}

	.cards-1 .details {
		display: flex;
		align-items: flex-start;
	}
	
	.cards-1 .details .text {
		flex-direction: column;
	}
	
	.cards-1 .details img {
		margin-right: 1.125rem;
	}
	/* end of testimonials */


	/* Accordion */
	.accordion-1 .accordion {
		width: 730px;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of accordion */


	/* Contact */
	.form-1 form {
		width: 790px;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of contact */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	.creatorPadding{
		padding-top: 18rem !important;
	}
	/* end of extra pages */
}
/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {

	/* General Styles */
	.h1-large {
		font-size: 3.75rem;
		line-height: 4.625rem;
	}
	/* end of general styles */


	/* Navigation */
	.navbar .container {
		
	}
	/* end of navigation */


	/* Header */
	.header {
		
	}
	/* end of header */


	/* About */
	.basic-1 .text-container.first {
		margin-right: 2rem;
	}

	.basic-1 .text-container.second {
		margin-right: 1rem;
		margin-left: 1rem;
	}

	.basic-1 .text-container.third {
		margin-left: 2rem;
	}
	/* end of about */


	/* Details */
	.split {
		height: 700px;
	}

	.split .text-container {
		width: 460px;
		margin-left: 5rem;
	}
	/* end of details */


	/* Testimonials */
	.cards-1 .card {
		width: 338px;
	}
	
	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.625rem;
		margin-left: 2.625rem;
	}
	/* end of testimonials */
	

	/* Extra Pages */
	.ex-cards-1 .card {
		width: 336px;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}
	.creatorPadding{
		padding-top: 18rem !important;
	}
	/* end of extra pages */
}
/* end of min-width 1200px */


.juiceHomeText {
	position: absolute;
	top: 75%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-left: 100px;
	letter-spacing: 10px;
	max-width: 60rem !important;
	overflow:hidden ;
	padding: 0 0 0 0 !important;
	
  }
  .joinText{
	font-size: 21px !important;
	text-align: right;
  }
  .socialPos{
	text-align: left;
  }
  .comBorder {

	text-align: center;
    display: block;
	border: 1px solid white;
	padding: 13px 6px 13px 8px;
	border-radius: 7px;
  }
  .leader{
	margin: auto;
	margin-top: 9%;
	text-align: center;
	
  }
  .leaderText{
	letter-spacing: 5px;
	font-size: 7vh;
	line-height: 1.2;
	letter-spacing: 8px;
  }
  .leaderColor{
	color: #124e93;
	-webkit-text-stroke: 0.5px white;
	
  }
  .glow {
	
	color: #124e93;
	-webkit-animation: glow 2s infinite alternate;
	animation-delay: 1s;

  	}
 
	@-webkit-keyframes glow {
    to {
		
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #32d4f9, 0 0 20px #32d4f9, 0 0 25px #32d4f9, 0 0 30px #32d4f9, 0 0 35px #32d4f9;
    }
	}
  @media screen and (max-width: 768px) {
    h1{
        font-size:25px;
    }
	h3{
		font-size: 20px;
	}
	.leader{
		margin-top: 5rem;
		letter-spacing: 5px;
	}
}
.juiceCreators{
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255,255,255,0.3);
	border-color: linear-gradient(78deg, rgba(246,246,246,1) 0%, rgba(255,255,255,1) 40%, rgba(207,207,208,1) 100%);
	margin-bottom: 30px;
	transition: transform .5s, box-shadow 1s;
	width: 30rem;
	height: auto;
	font-size:26px;letter-spacing: 5px;
	
}
.juiceCreators:hover{
	filter: drop-shadow(0 0 4rem rgba(35, 130, 222, 100));
	transition: transform .5s, filter 1s;
	z-index: 1;
	border-radius: 0 !important;
	
}
.card-title{
	color: white;
	text-underline-position: under;
	text-decoration-color: gray;
  	text-decoration-line: underline;
  	text-underline-offset: 0.5em;
	text-decoration-thickness: 1px;
	font-size:18px;
	letter-spacing: 5px;
	padding-left: 1rem;
	
	
}
.creatorSocial{
	
	color: #FFD04D !important;
	margin-left: 15px;
	
}
.creatorsHeader{
	margin-bottom:5rem;
	color:white !important;
	letter-spacing: 5px;
	z-index: 999;
	position: relative;
	
}
.partnersHeader{
	margin-bottom:2rem;
	color:white !important;
	letter-spacing: 5px;
}

.gameHeader{
	margin-bottom:5rem;
	color:white !important;
	letter-spacing: 5px;
	z-index: 999;
	position: relative;
}
.small {
	font-size: 11px;
	color: #999;
	display: block;
	margin-top: -10px
  }
  
  .cont {
	text-align: center;
  }
  
  
  .btn {
	-moz-user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 2px;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.42857;
	margin-bottom: 0;
	padding: 6px 12px;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	text-decoration: none;
  }
  
  .btn-lg {
	border-radius: 2px;
	font-size: 18px;
	line-height: 1.33333;
	padding: 10px 16px;
  }
  
  .btn-primary:hover {
	background-color: #fff;
	color: #152836;
  }
  
  .btn-primary {
	background-color: #152836;
	border-color: #0e1a24;
	color: #ffffff;
  }
  
  .btn-primary {
	border-color: #eeeeee;
	color: #eeeeee;
	transition: color 0.1s ease 0s, background-color 0.15s ease 0s;
  }
  
  
  
  .gallery > ul {
	margin-bottom: 0;
	padding-left: 15px;
  }
  
  .gallery > ul > li {
	margin-bottom: 15px;
	width: 200px;
	display: inline-block;
	margin-right: 15px;
	list-style: outside none none;
  }
  
  .gallery > ul > li a {
	
	border-radius: 3px;
	display: block;
	overflow: hidden;
	position: relative;
	float: left;
	transition: transform .5s, box-shadow 1s;
  }
  
  .gallery > ul > li a > img {
	-webkit-transition: -webkit-transform 0.15s ease 0s;
	-moz-transition: -moz-transform 0.15s ease 0s;
	-o-transition: -o-transform 0.15s ease 0s;
	transition: transform 0.15s ease 0s;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	height: 100%;
	width: 100%;
	
  }
  
  .gallery > ul > li a:hover > img {
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
	transform: scale3d(1.1, 1.1, 1.1);
  }
  
  .gallery > ul > li a:hover .gallery-poster > p {
	opacity: 1;
  }
  
  .gallery > ul > li a .gallery-poster {
	background-color: rgba(0, 0, 0, 0.1);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: background-color 0.15s ease 0s;
	-o-transition: background-color 0.15s ease 0s;
	transition: background-color 0.15s ease 0s;
  }
  
  .gallery > ul > li a .gallery-poster > p {
	left: 0; 
	right: 0; 
	margin-left: auto; 
	margin-right: auto; 
	opacity: 0;
	position: absolute;
	top: 30%;
	-webkit-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
  }
  
  .gallery > ul > li a:hover .gallery-poster {
	background-color: rgba(0, 0, 0, 0.5);
  }
  
  .gallery .justified-gallery > a > img {
	-webkit-transition: -webkit-transform 0.15s ease 0s;
	-moz-transition: -moz-transform 0.15s ease 0s;
	-o-transition: -o-transform 0.15s ease 0s;
	transition: transform 0.15s ease 0s;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	height: 100%;
	width: 100%;
  }
  
  .gallery .justified-gallery > a:hover > img {
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
	transform: scale3d(1.1, 1.1, 1.1);
  }
  
  .gallery .justified-gallery > a:hover .gallery-poster > img {
	opacity: 1;
  }
  
  .gallery .justified-gallery > a .gallery-poster {
	background-color: rgba(0, 0, 0, 0.1);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: background-color 0.15s ease 0s;
	-o-transition: background-color 0.15s ease 0s;
	transition: background-color 0.15s ease 0s;
  }
  
  .gallery .justified-gallery > a .gallery-poster > img {
	left: 50%;
	margin-left: -10px;
	margin-top: -10px;
	opacity: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
  }
  
  .gallery .justified-gallery > a:hover .gallery-poster {
	background-color: rgba(0, 0, 0, 0.5);
  }
  
  .gallery .video .gallery-poster img {
	height: 48px;
	margin-left: -24px;
	margin-top: -24px;
	opacity: 0.8;
	width: 48px;
  }
  
  .gallery.dark > ul > li a {
	border: 3px solid #04070a;
  }
  
.gallery > ul > li a:hover {
	z-index: 999;
	box-shadow: 0 0 0 75px rgba(0, 0, 0, 0.5);
  }
  .gameTitle{
	color: white;
  }
  
.gameButton{
	background: white;
	color: #1c4574;
	letter-spacing: 3.2px;
	margin-top: 1.5rem;
	padding: 0.8rem;
	border-radius: 20px !important;
	color: black !important;
}

.contactHero{
	
	
	height: auto;
	width: 100%;
	background:url('../images/Juice-Pattern.png') center center no-repeat , linear-gradient(180deg, rgba(5,29,53,1) 26%, rgba(20,62,124,1) 76%, rgba(35,130,222,1) 100%);
	background-size: cover;
	background-color: #124e93;
	text-align: center;
  	z-index: 0;
}
.contactUs{
	margin-bottom:2rem;
	color:white !important;
	letter-spacing: 5px;
	font-family: 'regulion';
	
}
.fixIt{
	width: 100% !important;
	
	
}
.clipTextbox{
	--mask: linear-gradient(-135deg,#0000 14.14px,#000 0);	
	-webkit-mask: var(--mask);
			mask: var(--mask);
}
.clipRichbox{
	--mask: linear-gradient(-135deg,#0000 14.14px,#000 0);	
	-webkit-mask: var(--mask);
			mask: var(--mask);
}
input.largerradio {
	width: 20px;
	height: 20px;
	margin-top: 5px;
	
}
.radioClass{
	text-align: left;
}

.navDisable{
	color: gray !important;
	cursor: url('../images/lock.cur'), auto !important;
}
.footer .container{
	max-width: 1530px;
	
}
.leftFooter{
	text-align: left;
}
.rightFooter{
	text-align: right;
	margin-top: 4rem;
}
.footerLogo{
	width: 23.8px;
	height: 35px;
	margin-bottom: 3rem;
	
}
.footerRes{
	color: #959996;
	letter-spacing: 2px;
	font-family: 'orbitronNormal';
	font-size: 10px;
}
.homeDropdown{
	border: 1px white;
	background-color: rgba(0, 0, 0, 0.7) !important;
	text-align: center;
}
.headerSpacing{
	letter-spacing: 3px;
	font-size: 13px !important;
}
.footerSpacing{
	letter-spacing: 3px;
	font-size: 13px !important;

}

.dropdownText{
	font-size: 12px ;
	letter-spacing: 3px ;
}
.creatorPadding{
	padding-top: 10rem;
}
.footerJuice{
	margin-top: 2rem;
}
.dcPlayHover{
	background: url('../images/social/dc.png');
	width: 100px;
	height: 100px;
	display: inline-block;
	background-size: cover;
	margin-right: 0.5rem;
	
	
}
.dcPlayHover:hover{
	background: url('../images/social/dcForGif.png');
	background-size: cover;
	
	
}
.twPlayHover{
	background: url('../images/social/tw.png');
	width: 100px;
	height: 100px;
	display: inline-block;
	background-size: cover;
	margin-left: -30px;
	margin-right: 0.5rem;
}
.twPlayHover:hover{
	background: url('../images/social/twForGif.png');
	background-size: cover;
	
}
.ytPlayHover{
	background: url('../images/social/yt.png');
	width: 100px;
	height: 100px;
	display: inline-block;
	background-size: cover;
	margin-left: -30px;
	
	
}
.ytPlayHover:hover{
	background: url('../images/social/ytForGif.png');
	background-size: cover;
	
}
.paddingPtoG{
	padding-top:2rem;
	padding-bottom: 7.5rem;
}
.juiceWax{
	margin-bottom: 40px;
	margin-top: 20px;
	max-height: 400px;
}

.carnagePlayHover{
	position: relative;
	z-index: 0;
	
	
}
.carnagePlayHover:hover{
	
	position: relative;
	background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
	z-index: 2;
	filter: drop-shadow(0 0 4rem rgba(35, 130, 222, 100));
	transition: transform .5s, filter 1s;
	
	
}
.carnagePlayHover:hover img{
	-webkit-filter: brightness(50%);
}

.overlay {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	position: absolute;
	padding: 2.5rem 1.5rem 1.5rem 1.5rem;
	
  }
  .carnagePlayHover:hover .overlay {
	opacity: 1;
	animation-play-state: unset;
  }
  
  #scroll-container {
	
	padding-left: 1.5rem ;
	padding-right: 1.5rem ;
	overflow: hidden;
	text-align: left;
	height: 100%;
	
	
  }
  
  .scroll-text {

	font-family: 'orbitronNormal';
	font-size: 12px ;
	letter-spacing: 2px;
	color: white ;
	/* animation properties */
	-moz-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	animation: my-animation 30s linear infinite;
	
  }
  
  /* for Firefox */
  @-moz-keyframes my-animation {
	from { -moz-transform: translateX(10%); }
	to { -moz-transform: translateX(-100%); }
  }
  
  /* for Chrome */
  @-webkit-keyframes my-animation {
	from { -webkit-transform: translateX(10%); }
	to { -webkit-transform: translateX(-100%); }
  }
  
  @keyframes my-animation {
	from {
	  -moz-transform: translateY(20%);
	  -webkit-transform: translateX(20%);
	  transform: translateY(20%);
	}
	to {
	  -moz-transform: translateX(-100%);
	  -webkit-transform: translateX(-100%);
	  transform: translateY(-100%);
	}

  }
.video2{
	position:absolute;
	left:-1rem;
	top:-1rem;
	
}
.s{
	max-width: 111%;
	height: auto;
	overflow: hidden;
	margin: auto;
	overflow: hidden !important;
}

.socialBorder{
	
	width: 100px;
	height: 100px;
	
}
.socialPos{
	display: inline-block;
}

.cropImg{
	width: 300px;
	height: auto;
}
#preloader{
	background-color: #1e2022;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1;
	margin-top: 0px;
	top: 0px;
	z-index: 99;
}
#loading-center{
	width: 100%;
	height: 100%;
	position: relative;
}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.footerLogoDiv{
	padding-top: 2rem;
}
.sizeForm{
	max-width: 75%;
}
.label-control{
 font-family: 'titilliumLight';
 color: #58a0e8;
 font-size: 15px;
 letter-spacing: 3px;
 font-weight: bold;
}
.form-control-textarea,.form-control-input{
	font-family: 'titilliumLight';
	color: black;
	font-size: 20px;
	letter-spacing: 3px;
	font-weight: bold;
	}
.radioText{
font-family: 'titilliumLight';
 color: white;
 font-size: 20px;
 letter-spacing: 3px;
 font-weight: bold;
 margin: 8px 8px 8px 20px;
}

input[type=radio] {
	margin-top: 0.7rem;
	-webkit-appearance: none;
	outline: 0.3em solid white;
	border-radius: 4px;
	background-color: white;
  }
  
  input[type=radio]:checked {
	display: inline-block;
	background-color: #58a0e8;
  }
  .addressJuice p{
	color:white;
	margin-top:-1rem;
	font-family: 'titilliumLight' !important;
  }
  .juiceContact{
	margin-bottom: 10px;
	
	max-height: 400px;
  }

  .cookie-consent {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 45px;
    color: #fff;
    line-height: 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    background: #292929;
    z-index: 120;
    cursor: pointer;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center
}

.allow-button {
    height: 20px;
    width: 104px;
    color: #fff;
    font-size: 12px;
    line-height: 10px;
    border-radius: 3px;
    border: 1px solid green;
    background-color: green;
	font-family: 'titilliumLight';
}
.cookieText{
	font-family: 'titilliumLight';
}
.privacyText{
	color: #1696e7;
    outline: medium;
}
.card-body{
	padding: 0.5rem 0 1rem 0.5rem  !important;
}