﻿* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;

}

:root {
	--bgc: goldenrod;
	--1f: black;
	--2f: blue;
	--3f: red;
	--4f: yellow;
}

#myBtn {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Fixed/sticky position */
	bottom: 20px;
	/* Place the button at the bottom of the page */
	right: 30px;
	/* Place the button 30px from the right */
	z-index: 99;
	/* Make sure it does not overlap */
	border: none;
	/* Remove borders */
	outline: none;
	/* Remove outline */
	background-color: red;
	/* Set a background color */
	color: white;
	/* Text color */
	cursor: pointer;
	/* Add a mouse pointer on hover */
	padding: 5px;
	/* Some padding */
	border-radius: 10px;
	/* Rounded corners */
	font-size: 18px;
	/* Increase font size */
}

#myBtn:hover {
	background-color: #555;
	/* Add a dark-grey background on hover */
}

html {
	/*background-image: url('Background28.jpg');*/
	margin: 0px;

}

/*     this is the start of the new 2023 addition  */
body {
	min-height: 100vh;
	/*background: url(img/img1.jpg) no-repeat;*/
	background-size: cover;
	background-position: center;
	background-color: black;
	margin-top: 3rem;

}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1.3rem 10%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
}

.header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	backdrop-filter: blur(50px);
	z-index: -1;
}

.header::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: .5s;
}

.header:hover::after {
	left: 100%;
}

.logo {
	font-size: 2rem;
	color: white;
	text-decoration: none;
	font-weight: 700;
	margin-top: 18px;
}

h3 .logo {
	font-style: italic;
	font-family: "Comic Sans MS";
	font-size: xx-large;
}

h3 .logo .design {
	/*font-family: Malgun Gothic Bold;*/

	font-family: Chiller;
}


.logo a {
	text-decoration: none;
	color: yellow;
	text-transform: uppercase;
	font-family: Cooper Black;
	transition: all .2s ease-out;

}

.logo a:hover {
	color: red;
	border-radius: 5px;
	border-style: solid;
	background: yellow;
	padding-top: 10px;
	padding-bottom: 10px;

}

.navbar a {
	font-size: 1.15rem;
	color: yellow;
	text-decoration: none;
	font-weight: 500;
	margin-left: 2.5rem;
}

.navbar a:hover {
	color: red;

}

#check {
	display: none;
}

.icons {
	position: absolute;
	right: 5%;
	font-size: 2.8rem;
	color: white;
	cursor: pointer;
	display: none;

}

/*-- Start header breakpoints --*/
@media (max0width: 992px) {
	.header {
		padding: 1.3rem 5%;
	}
}

@media (max-width: 768px) {
	.icons {
		display: inline-flex;
	}

	#check:checked~.icons #menu-icon {
		display: none;
	}

	.icons #close-icon {
		display: none;
	}

	#check:checked~.icons #close-icon {
		display: block;
	}

	.navbar {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: 0;
		background: rbga(0, 0, 0, .1);
		backdrop-filter: blur(50px);
		box-shadow: 0.5rem 1rem rgba(0, 0, 0, .1);
		overflow: hidden;
		transition: .3s ease;

	}

	#check:checked~.navbar {
		height: 17.7rem;
	}

	.navbar a {
		display: block;
		font-size: 1.1rem;
		margin: 1.5rem 0;
		text-align: center;
		transform: translateY(-50px);
		opacity: 0;
		transition: .3s ease;
	}

	#check:checked~.navbar a {
		transform: translateY(0);
		opacity: 1;
		transition-delay: calc(.15s * var(--i));
	}
}

/*-- End header breakpoints --*/

/*     this is the end of the new 2023 addition  */



h2 {
	text-align: center;
	color: lightgrey;
	padding-top: 6rem;

}

#h2 {
	padding-top:0rem;
	margin: 0px;
}

h1 {
	text-align: center;
	color: white;
}

h3 {
	text-align: center;
	color: white;
}

p {
	color: yellow;
	font-size: large;
}


a {
	font-size: xx-large;
}


img {
	float: left;
	margin: 5px;
	height: 500px;
	width: 300px;
	padding: 10px;
	border: 4px double black;
}

a:hover img {

	border-style: solid;
	background: red;
}

/*  ------------Containers  ------------------*/
.indexcontainer {
	display: flex;
	flex-wrap: wrap;
	max-width: 100%;
	padding: 0px;
	margin: 0px;	
	justify-content: center;
	
}

.indexrow {
	display: flex;
	width: 100%;	
	justify-content: center;
	
}

.container {
	display: flex;
	padding: 0px;
	overflow: hidden;
	max-width: 93%;
	margin-left: 0px;
}



.newimage img {
	display: flex;
	height:auto;
	width:auto;
	justify-content: center;
	
	
}

.newimage img a {
	display: flex;
	justify-content: center;
}



/* ------------------------Start of the Insert ------------------*/
.row {
	display: flex;
	flex-wrap: wrap;
}

.pagecontainer {
	max-width: 1170px;
	margin: auto;


}

.portfolio {

	padding: 60px 15px;
}

.portfolio .portfolio-items {
	flex-basis: 100%;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;

}

.portfolio .portfolio-items .item {
	flex-basis: calc(33.33% - 30px);
	max-width: calc(33.33% - 30px);
	margin-bottom: 30px;
	position: relative;

}

.portfolio .portfolio-items .item img {
	width: 100%;
	display: block;
}

.portfolio .portfolio-items .item .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 115%;
	height: 105%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transform: scale(0.5);
	opacity: 0;
	transition: all .5s ease;

}

.portfolio .portfolio-items .item:hover .overlay {
	transform: scale(0.9);
	opacity: 1;
	margin-top: -15px;
	margin-left: -5px;
	margin-right: -10px;

}

.portfolio .portfolio-items .item .overlay h2 {
	font-size: 24px;
	color: #fff;
	margin: 30px 0;
	font-weight: 400;
}

.portfolio .portfolio-items .item .overlay h3 {
	display: none;
}

.portfolio .portfolio-items .item .overlay .fas {
	display: inline-block;
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 60px;
	border-radius: 5px;
	font-size: 30px;
	color: #000;
	background-color: #fff;
	cursor: pointer;
}



/*This is the start of the grid code.*/
.gridcontainer {
	display: grid;
	max-width: 95%;
	margin-left: 4em;
	margin-top: 8em;
	margin-bottom: 1em;
	border: yellow;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	align-content: center;
	justify-content: center;
	grid-gap: 1rem;

}

.grid img {
	width: 300px;
	height: 500px;
	cursor: pointer;
	margin-left: 50px;
	
}

/*This is the end of the grid code.*/

/*This is the start of the grid code2.*/
.gridcontainer2 {
	display: grid;
	max-width: 95%;
	margin-left: 4em;
	margin-top: 8em;
	margin-bottom: 1em;
	border: yellow;
}

.grid2 {
	display: grid;
	/*grid-template-columns: (auto-fit, minmax(350px, 1fr));*/
	grid-template-columns: 0fr;
	align-content: center;
	justify-content: center;
	grid-gap: 1rem;

}

.grid2 img {
	width: 300px;
	height: 500px;
	cursor: pointer;
	margin-left: -70px;
	
}

/*This is the end of the grid code2.*/

/*This is the start of the grid code2.*/
.gridcontainer3 {
	display: grid;
	max-width: 95%;
	margin-left: 4em;
	margin-top: 8em;
	margin-bottom: 1em;
	border: yellow;
}

.grid3 {
	display: grid;
	/*grid-template-columns: (auto-fit, minmax(350px, 1fr));*/
	grid-template-columns: 0fr;
	margin-left: 4em;
	align-content: center;
	justify-content: center;
	grid-gap: 1rem;

}

.grid3 img {
	width: 300px;
	height: 500px;
	cursor: pointer;
	margin-left: -70px;
	
}

/*This is the end of the grid code3.*/

/* ---------This is the start for the cams code   --------*/
.camgridcontainer {
	display: grid;
	max-width: 95%;
	margin-left: 3em;
	margin-top: 1em;
	margin-bottom: 1em;

}

.camgrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	align-content: center;
	justify-content: center;
	margin-left: 9.5em;
}

.camrow {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 2rem;
	margin-top: 1em;
}

.cams {}

img.livecam {
	border-style: none;
}


img.livecam {
	width: 320px;
	height: 250px;
	border-style: solid;
}

@media screen and (max-width: 600px) {
	.camgrid {
		max-width: auto;
		margin-left: 0;
	}


}

/* ---------This is the end for the cams code   --------*/

/*-------- This is the Start for toy code --------*/
.toygridcontainer {
	display: grid;
	max-width: 95%;
	margin-left: 3em;
	margin-top: 1em;
	margin-bottom: 1em;
	
}

.toygrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	align-content: center;
	align-items: center;
	justify-content: center;
    margin-left: 9.5em;
}

.toyitem {
	display: grid;
	align-content: center;
	justify-content: center;
	align-items: center;
	margin-left: 9.5em;
}

.toyad img {
	display: grid;
	justify-content: center;
	align-items: center;
	align-content: center;
	height: 90px;
	width: 720px;
	margin-left: 9.5em;
}

.toyad2 img {
	display: grid;
	justify-content:left;
	align-items: left;
	align-content: left;
	height: 330px;
	width: 1600px;
	margin-left: 0em;
}

.toyrow {
	display: inline-flex;
	flex-wrap: wrap;
	grid-gap: 2rem;
    margin-top: 1em;
}

.toyitem img {
	height: 320px;
	width: 240px;
	border-style: solid;
}

#iframe_501, #iframe_654, #iframe_608 {
	display: grid;
	justify-content: center;
	align-items: center;
	align-content: center;
	height: 250px;
	width: 900px;
	margin-left: 9.5em;
}

@media screen and (max-width: 600px){
	.toygridcontainer, .toygrid, .toyrow {
		max-width: auto;
		margin-left: 0;
	}

	.toyad img {
		margin-left: 0;
	}
}


/*-------- This is the End for toy code --------*/





.links {
	position: static;
	text-align: center;
	border: medium white solid;
	margin: 20px;
	padding: 0px;
	background-color: black;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;

}

.links p {
	padding: 10px;
}

.links h2 {
	text-align: center;
	border: thin yellow solid;
	border-radius: 10px;
	margin-left: 55px;
	margin-right: 55px;
	overflow: hidden;
}

.links a {
	text-decoration: none;

}

.links h2:hover {
	background-color: red;

}

.links1 {
	position: relative;
	text-align: center;
	border: medium white solid;
	margin: 20px;
	padding: 0px;
	background-color: black;
	border-radius: 10px;
	overflow: auto;
	text-decoration: none;

}

.links1 h2 {
	text-align: center;
	border: thin yellow solid;
	border-radius: 10px;
	overflow: visible;
	margin-left: 55px;
	margin-right: 55px;
	transition: width 2s;

}

.links1 a {
	text-decoration: none;
}

.links1 h2:hover {
	background-color: red;
}

/*New Button Start        */
.links2container {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-top: black solid thick;
	border-bottom: black solid thick;
	margin-top: 10rem;
	margin-left: 280px;
	padding: 0px;
	background-color: black;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	background-repeat: no-repeat;
	width: 1310px;
	height: auto;

	/*495px;*/
}

.links2 h3 {
	color: white;

	padding: 5px;
	margin: 0px;
	font-size: xx-large;
}

.links2image {
	width: 98%;
	height: 21em;
	object-fit: fill;
	object-position: center;
	border-radius: 20px;
	border: none;
}

.links2 a {
	border: thick red ridge;
	position: inherit;
	border-radius: 10px;
	color: blue;
	padding: 10px;
	margin: 0px;
	text-decoration: none;
}

a.links2button {
	background: black;
	color: #fff;
	font-weight: bold;
	border-width: 4px;
	border-style: solid;
	border-radius: 5px;
	border-top-color: #dfdfdf;
	border-right-color: #666;
	border-bottom-color: #333;
	border-left-color: #858585;
	text-decoration: none;
}

a.links2button:hover {
	background: red;
}

@media screen and (max-width: 600px) {

	.links2container {
		margin-left: 0px;
		height: 300px;
		width: auto;
	}

	.links2container img {
		display: none;
	}

	.links2 {
		margin: 0px;
		border: medium white solid;
		display: block;
	}

	.links2 a {
		border: white thin solid;
		background-color: red;

	}

	.links2 a:hover {
		background-color: black;
	}
}

/* -------------This is for larger screens that ---------*/

@media screen and (max-width: 1200px) {
	.links2container {
		margin-left: 0px;
		width: auto;
	}
}

/* -------------This is for large screens that ---------*/

@media screen (min-width: 601px) and (max-width: 1199px) {
	.links2container {
		margin-left: 0px;
		margin-right: 5px;
		justify-content: center;
		width: auto;
	}

	.links2container img {
		height: 300px;
		width: 250px;
	}

	.img {
		width: 100%;
	}

}

/* -------------This is for screens that are Tablet size---------*/
@media screen and (min-width: 801px) and (max-width: 950px) {
	.pagecontainer {
		margin: 0px;
		padding: 0px;
	}

	.portfolio {
		margin: 0px;
		padding: 0px;
	}

	.indexcontainer,
	.indexrow {
		margin-left: auto;
	}

}

@media screen (min-width: 600px) and (max-width: 1205px) {
	.logo a {
		/*font-size: 20px;*/
	}

	.indexcontainer,
	.indexrow {
		margin-left: 0px;
	}

	.pagecontainer {
		margin-left: 0px;
		padding: 0px;
	}

	.pagecontainer .row .item img {
		margin-left: 0px;
		padding: 0px;
	}

	.portfolio {
		margin-left: 0px;
		padding: 0px;
	}

	.portfolio item img {
		margin-left: 0px;
		padding: 0px;
	}

}


/* --------- This is the start of links3 ---------  */
.links3 {
	display: flex;
	flex-flow: column wrap;

}

.links3 p {
	font-size: 24px;
	text-align: center;
	padding: 5px;
}

.links3 a {
	align-self: center;
}

.links3 a img {
	height: 200px;
	width: 200px;

}

/* --------- This is the End of links3 ---------  */

/* --------- This is the start of links4 ---------  */
.links4 {
	display: flex;
	flex-flow: column wrap;

}

.links4 p {
	font-size: 24px;
	text-align: center;
	padding: 5px;
}

.links4 a {
	align-self: center;
}

.links4 a img {
	height: 76px;
	width: 450px;

}

/* --------- This is the End of links4 ---------  */



/* New Button End    */

.aff1ban {
	max-width: 100%;
	width: 900px;
	height: 250px;

}

.aff1ban img {
	width: 900px;
	height: 250px;
	margin-left: 450px;
}

.aff2ban,
.aff3ban {
	width: 100%;
	width: 300px;
	height: 250px;
	padding-top: 1em;
	padding-bottom: 2em;

}

.aff2ban,
.aff3ban {
	border-top: black solid thin;
	border-bottom: black solid thin;
	width: 100vw;
}

.aff2ban img,
.aff3ban img {
	width: 300px;
	height: 250px;
	border: none;
	margin-left: 780px;

}

@media screen and (max-width: 1200px) {

	.aff1ban img,
	.aff2ban img,
	.aff3ban img {
		margin-left: 0px;
	}
}

/*-----------This is the start for the individual page banners  -----------------*/

.affbanpage {
	display: flex;
	flex-direction: row wrap;
	justify-content: center;
	margin: 1rem;
	padding: 1rem;
}

.banner-item {
	display: flex;
	flex-direction: row wrap;
	padding: .5rem;
}

.affbanpage2 {
	display: flex;
	flex-direction: row nowrap;
	justify-content: center;

}

.affbanpage2 a img {
	height: 60px;
	width: 450px;
}

.affbanpage3 {
	display: flex;
	flex-direction: row nowrap;
	justify-content: center;

}


.affbanpage3 a img {
	height: 328px;
	width: 492px;
}

.affbanpage4 {
	display: flex;
	flex-direction: row nowrap;
	justify-content: center;

}


.affbanpage4 a img {
	height: 120px;
	width: 489px;
}



/*-----------This is the start for the AdultForce page banners  -----------------*/

.adultforce {
	display: flex;
	flex-direction: row wrap;
	justify-content: center;
	margin: 1rem;
	padding: 1rem;
	border-style: none;


}

.adultforce iframe {
	border-style: none;
}


/*-----------This is the start for the Contact page  -----------------*/
#contact,
#privacypolicy,
#statement {
	padding: 10px;
	margin: 10px;
}

#contact h2,
#privacypolicy h2,
#statement h2 {
	font-size: 34px;
	padding: 20px;
}

#contact p,
#privacypolicy p,
#statement p {
	font-size: 20px;
	padding: 10px;
	color: white !important;
	line-height: 16px;
}

#submit,
#first,
#last,
#email,
#phonenumber {
	color: black;
}

.statement h3 {
	text-align: center;
	padding: 20px;
	margin: 10px;
	color: white;
}

.statement h3 a {
	color: white;
	text-decoration: none;
}

.statement a:hover {
	color: red;
}

.providerbutton {
	font-size: 2rem;
	color: white;
	background-color: black;
	padding: 5px;
	font-weight: bold;
	border-width: 4px;
	border-style: solid;
	border-radius: 5px;
	border-top-color: #dfdfdf;
	border-right-color: #666;
	border-bottom-color: #333;
	border-left-color: #858585;
	text-decoration: none;
	cursor: pointer;

}

.providerbutton:hover {
	background-color: red;
}

/*-----------This is the End for the Contact page  -----------------*/


/*---------This is the start of the footer --------*/
footer {
	position: static;
	text-align: center;
	font-size: xx-large;
	margin-top: 1em;
	border-top: solid white thick;
	padding-top: 1em;

}

footer a {
	text-decoration: none;
	color: yellow;

}

footer p {
	padding: 5px;
	color: white;
	text-transform: capitalize;
	font-weight: bold;
}

footer a:hover {
	color: red;
}

.backtotop a:hover {
	color: black;
}

#backtotop {
	float: right;
	margin-right: 50px;
	padding: 0px;
	color: yellow;
	border: thin red solid;
	border-radius: 5px;
}

#backtotop a {
	text-decoration: none;
	color: yellow;
	margin-left: 10px;
	margin-right: 10px;

}

#backtotop a:hover {
	background-color: black;
	border-radius: 5px;
	color: red;
}

.rta img {
	width: 120px;
	height: 80px;
	border: none;
}

#changeYear {
	color: white;
}

#com {
	text-transform: none;
	color: white;
}

/*-------- This is the end of the footer----------*/




@media screen and (max-width: 600px) {
	.gridcontainer {
		max-width: auto;
		margin-left: 0;
	}


}



/*This is the start of MTF code */

.mtfgrid {
	display: grid;
	max-width: 95%;
	margin-left: 4rem;
	padding-top: 0rem;
}

.mtfrow {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	justify-content: center;
	align-content: center;
	grid-gap: 1rem;

}

.mtfad {
	display: flex;
	justify-content: center;
	align-items: center;
}

.mtf-item1 img {
	height: 250px;
	width: 970px;
}

.mtf-item2 img {
	height: 600px;
	width: 220px;
}

.mtf-item3 img {
	height: 148px;
	width: 298px;
	background-color: white;
}

.mtf-item4 img {
	height: 150px;
	width: 150px;
}

.mtf-item5 img {
	height: 250px;
	width: 300px;
}

.mtf-item5ad img {
	height: 250px;
	width: 300px;
	background-color: white;
}

/*This is the End of MTF code */

/*----- Start of Banner -----*/
.bannercontainer {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 0px;
	margin-left: 0px;
	padding: 0px;
	background-color: black;
	overflow: hidden;
	text-decoration: none;
	background-repeat: no-repeat;
	width: 100%;
	height: auto;
	border-top: solid black thick;
	border-bottom: solid black thick;

	/*495px;*/
	/*border-top: medium white solid;
	border-bottom: medium white solid;*/

}

.banner {

	margin: 10px;
	text-align: center;
	background: black;
	border-radius: 10px;
	max-width: 100%;
	color: white;
	padding: 1em;
}

.banner h3 {
	margin: 2px;
	padding: 2px;
	font-size: 4em;
}

.banner a {
	border: thick red ridge;
	position: inherit;
	border-radius: 10px;
	color: blue;
	padding: 10px;
	margin: 0px;
	text-decoration: none;

}

.banner a:hover {
	background-color: red;
}

.bannerimage {
	/*width: 100%;
	height: 22em;
	object-fit: fill;
	border-radius: 20px;
	border: none;--*/
	width: 98%;
	height: 21em;
	object-fit: fill;
	object-position: center;
	border-radius: 20px;
	border: none;
}

a.banner2button {
	background: black;
	color: #fff;
	font-weight: bold;
	border-width: 4px;
	border-style: solid;
	border-radius: 5px;
	border-top-color: #dfdfdf;
	border-right-color: #666;
	border-bottom-color: #333;
	border-left-color: #858585;
	text-decoration: none;

}

a.banner2button:hover {
	background: red;
}

@media screen and (max-width: 600px) {

	.bannercontainer {
		margin-left: 0px;
		padding: 0px;
		height: 300px;
		width: auto;
	}

	.bannercontainer img {
		display: none;
	}

	.banner {
		margin: 0px;
		border: medium white solid;
		display: block;
	}

	.banner h3 {
		font-size: 1.5em;
	}

	.banner a {
		border: solid white thin;
		background-color: red;

	}

	.banner a:hover {
		background-color: black;
	}
}

/* -------------This is for larger screens that ---------*/

@media screen and (max-width: 1200px) {
	.bannercontainer {
		margin-left: 0px;
		width: auto;
	}
}

/* -------------This is for large screens that ---------*/

@media screen (min-width:601px) and (max-width: 1199px) {
	.bannercontainer {
		margin-left: 0px;
		margin-right: 5px;
		justify-content: center;
		width: auto;
		font-size: small;
	}

	.bannercontainer img {
		height: 300px;
		width: 250px;
	}

	.img {
		width: 100%;
	}

}

/*----- End of Banner -----*/