@charset "utf-8";
/* CSS Document */
html * {
	font-family: times;
}

body{
	cursor:url(cursor1.png), auto;
}

.tc1{
	color:#bf9000;
}

.tc2{
	color:#c5d0da;
}

.container {
	width: 85%;
	margin-left: auto;
	margin-right: auto;
	margin:top:-8px;
	margin-bottom;
	background-color: #343438;
	background-image: url('backgroundN.png');
}

@media screen and (max-width:1200px) {
	.container {
		width:95%;
	}
}

@media screen and (max-width:1000px) {
	.container {
		width:100%;
	}
}

.minwidth {
	background-color:#000000;
	margin-top:-10px;
}

.minwidthtext {
	color:#ffffff;
	font-size:4vw;
}

@media screen and (max-width:300px) {
	.minwidth {
		display: block !important;
	}
}

.no:hover {
	cursor: not-allowed;
}

.pointer:hover {
	cursor: pointer;
}

.gallery {
	clear: both;
	display: inline-block;
	width: 100%;
	padding-bottom: 35px;
	padding-top: 0px;
	margin-top: -5px;
	margin-bottom: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap:wrap;
	max-width:1240px;
	row-gap:70px;
}

@media screen and (max-width:570px) {
	.gallery {
		margin-bottom:-60px;
		row-gap:calc(100% / 50);
	}
	.thumbnail {
		width:25% !important;
		flex: 0 0 25% !important;
	}
}

.productmodal {
	display: ;
	position: fixed;
	z-index: 1;
	padding-top: 10%;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}

.productframe {
	width:90%;
	height:35%;
	max-height:300px;
	min-height:175px;
	max-width:1240px;
	border-style:solid;
	border-color:#bf9000;
	border-radius:2px;
}

@media screen and (max-width:600px) {
	.productframe {
	height: 30%;
	min-height:200px;
	}
}



.buttons {
	clear: both;
	display: inline-block;
	width: 60%;
	padding-bottom: 0px;
	padding-top: 0px;
	margin-top: 0px;
	margin-bottom: -8px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}

@media screen and (max-width:610px) {
	.buttons {
		width:100%;
	}
}

@media screen and (max-width:370px) {
	.buttons {
		width:176px;
	}
}


.break {
	flex-basis:100%;
	height:0;
}

.navigation {
	clear: both;
	display: block;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: -8px;
	margin-bottom: -40px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 10px;
	position:relative;
	background-color:#1f1f24;
	padding-top:5px;
	padding-bottom:5px;
}

.navigation a {
	font-weight:bold;
	font-size: 20px;
	border-style:solid;
	color:#bf9000;
	border-color:#bf9000;
	border-width:2px;
	padding-left:2px;
	padding-right:2px;

}

.navigation a:hover {
	cursor: pointer;
}

@media screen and (max-width:736px) {
	.navigation a {
		font-size:2.6vw;
		border-width:0px;
		text-decoration: underline;
	}
	.navigation {
		gap: 1%;
	}
}


	
.dropdown:hover .dropdowncontent{
	display:block !important;
}

.dropdown {
	margin-top:2px;
}

.hamburger {
	padding-top:1px;
}

.dropdowncontent {
	position:fixed;
	background-color:#1f1f24;
	width:150px;
	border-style:solid;
	border-color:#bf9000;
	border-width:2px;
	z-index:1;
}

.dropdowncontent a {
	border-style:none;
}

@media screen and (max-width:1000px) {
	.dropdowncontent {
	right:calc(5%);	
	}
}

@media (orientation: portrait) {
	.navigation a {
		display:none!important;
	}
	.navigation {
		justify-content:center;
		height:4vw;
	}
}

@media (orientation: landscape) {
	.navigationmobile {
		display:none!important;
	}
}

.navigationmobile {
	width:100%;
	display:flex;
	justify-content:flex-start;
	gap:2%;
}

.navigationmobile img {
	max-width:27px;
	width:4%;
	height:100%;
	max-height:27px;
}

.mobilenavmodal {
	display: ;
	position: fixed;
	z-index: 1;
	padding-top: 10%;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}

.mobilenavside {
	position:fixed;
	z-index: 2;
	padding-top: 10%;
	left: 0;
	top: 0;
	width:75%;
	height: 100%;
	overflow: auto;
	background-color: #1f1f24;
	border-right-style:solid;
	border-color:#bf9000;
	animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-left {
  0% {
            transform: translateX(-1000px);
  }
  100% {
            transform: translateX(0);
  }
}

.mobilenavside a {
	color:#bf9000;
	font-size:5vw;
	font-weight: bold;
	position:relative!important;
	margin-left:10%;
}

a:visited {
	color: #bf9000;
}

a {
	color: #c5d0da;
	text-decoration: none;
}


.imgf {
	animation:imagefade ease 0.75s;
	animation-iteration-count:1;
	animation-fill-mode:forwards;
}

@keyframes imagefade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


.thumbnail {
	width: 256px;
	height: auto;
	max-height:256px;
	text-align: center;
	margin-top: 5px;
	padding-bottom: 5px;
	margin-left: 1%;
	margin-right: 1%;
	flex: 1 0 21%;
}

.cards {
	width: 100%;
	height: auto;
	max-width: 256px;
	max-height: 256px;
}

.welcome {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top:50px;
  margin-bottom:px;
  position:relative;
  width:40%;
  height:40%;
  max-width:294px;
  max-height:34px;
}

.sitelogo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom:-30px;
  width:100%;
  height:100%;
  max-width:440px;
  max-height:120xp;
}

.sitelogogulbert:hover {
	cursor:url(cursoreyes.png), auto;
}

.horsebar {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top:-10px;
  margin-bottom:-10px;
  width:80%;
  height:80%;
  max-width:465px;
  max-height:24px;
}

.horsey2 {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top:275px;
}

.last {
  color: #bf9000;
  font-size: 18px;
  font-style:italic;
  margin-top:-20px;
}

h1 {
	color:#bf9000;
	font-weight:bold;
	font-size: 32px;
}

h2,
p {
  color: #bf9000;
  font-size: 28px;
}

@media screen and (max-width:900px) {
	h2 {
		font-size:3vw;
	}
	h1 {
		font-size: 7vw;
	}
	.basictext {
		font-size:2.2vw;
	}
	.biggerbasic {
		font-size:3vw;
	}
}

p {
  color: #c5d0da;
  font-size: 18px;
}

.desc {
  color: #c5d0da;
  font-size: 18px;
  margin-top:-20px;
}

.listing {
  color: #bf9000;
  font-size: 18px;
  text-decoration: underline;
  margin-top:0px;
}

.listing a {
	color:#bf9000;
}

.title {
  color: #bf9000;
  text-decoration: underline overline;
  font-weight: bold;
  font-size: 72px;
  margin-top:20px;
}

.smalltitle {
	color:#bf9000;
	text-decoration:underline overline;
	font-weight: bold;
	font-size:48px;
	margin-top:20px;
}

.nav {
  color: #c5d0da;
  font-size: 28px;
  text-decoration: underline;
}

@media screen and (max-width:1002px) {
	.title {
		font-size:7vw;
	}
	.smalltitle {
		font-size:5vw;
	}
}
 
@media screen and (max-width:700px) {
	.desc {
		font-size: 3vw;
		margin-top:-20px;
	}
	.listing {
		font-size: 3vw;
	}
}


.pagegallery {
	clear: both;
	display: inline-block;
	width: 100%;
	padding-bottom: 35px;
	padding-top: 40px;
	margin-top: -55px;
	margin-bottom: 0px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap:125px;
}

.pagebutton {
	display:flex;
	flex-wrap:wrap;
	max-width:190px;
	width:190px;
	justify-content:center;
}

.pagebutton img {
	max-width:128px;
	max-height:128px;
	width:100%;
	margin-bottom:-10px;
	overflow:hidden;
	padding-left:20px;
	padding-right:20px;
}

.pagebutton h2 {
	font-size:20px;
	text-decoration:underline;
}

@media screen and (max-width:1000px) {
	.pagegallery {
		gap:80px;
	}
	.pagebutton {
		width:20%;
	}
	.pagebutton img {
		padding-left:0px;
		padding-right:0px;
	}
	.pagebutton h2 {
		font-size:2.7vw;
	}
}

@media screen and (max-width:660px) {
	.pagegallery {
		gap:15%;
	}
}

.promotion {
}

.viewbutton {
	color: #bf9000;
	border: solid;
	border-radius: 2px;
	border-width: thin;
	padding:5px;
	font-size:28px;
	font-weight:bold;
}


/* About */
.abouttext {
	font-weight:normal;
}

.abouttextsm {
	max-width:640px;
	text-align:left;
	font-weight:normal;
}

.aboutimgsm {
	max-width:642px;
}

@media screen and (max-width:1244px) {
	.abouttext,
	.aboutimg {
		display: none !important;
	}
}

@media screen and (min-width:1245px) {
	.abouttextsm,
	.aboutimgsm {
		display: none !important;
	}
}

@media screen and (max-width:700px) {
	.abouttextsm {
		font-size:3vw;
		max-width:90%;
	}
	.aboutimgsm {
		max-width: 95%;
	}
}

.horsebio {
	display:flex;
	flex-direction:row;
	width:90%;
	max-width:920px;
	gap:40px;
	margin-top:80px;
}

.horsebio p {
	margin-bottom: -27px;
}

.biotxt {
	font-size: 18px;
}

.bioimg {
	
	max-width:270px;
	max-height:270px;
}


@media screen and (max-width:1000px) {
	.bioimg {
		max-width:100%;
		max-height:100%;
	}
	.horsebiotxt {
		max-width:40vw;
		min-width:40vw;
	}
}

@media screen and (max-width:600px) {
	.biotxt {
		font-size: 3vw;
	}
}

@media screen and (max-width:440px) {
	.biotxt {
		margin-top:18px;
	}
}

.biodivider {
	border-top:3px dotted #c5d0da;
	margin-top:50px;
	width:90%;
	max-width:920px;
}

.morklisting {
	color: #bf9000;
    font-size: 14px;
    text-decoration: underline;
    margin-top:0px;
}

.morklisting a {
	color: #bf9000;
}

@media screen and (max-width:880px) {
	.morklisting {
		font-size: 1.5vw !important;
		width: 100%;
		height: auto;
		max-width: 256px;
		max-height: 256px;
	}
}


/* FAQ */


.faqquestion {
	font-size: 22px;
	text-align:left;
	max-width:90%;
}

.faqanswer {
	margin-top:-25px;
	text-align:left;
	max-width:90%;
}

@media screen and (max-width:700px) {
	.faqquestion,
	.faqanswer {
		width:80%;
		font-size:3vw;
		margin-top:0px;
	}
}






/* Contact */










/* Product Page */
.productinfo {
	display:flex;
	flex-direction:row;
	justify-content:center;
	margin-top:20px;
	gap:30px;
}

@media screen and (max-width:960px) {
	.productinfo {
		gap:10px;
		max-width:90%;
	}
	.producttag {
		padding-top:12px;
	}
}

.productinfosides {
	display:flex;
	flex-direction:column;
	gap:15%;
}

.productimage {
	width:40%;
	max-width:640px;
}

.producttag {
	font-size:16px;
	color:#bf9000;
	font-style:italic;
	margin-top:5px;
}

.productdesc {
	color:#c5d0da;
	font-size:24px;
	width:50%;
	max-width:640px;
}

@media screen and (max-width:660px) {
	.productdesc {
		font-size:4vw;
		width:80%;
	}
	.downloadtext {
		font-size:4vw !important;
	}
	.dwnldnow {
		max-width:30vw;
		margin-top:5px;
		margin-bottom:5px;
	}
}

.productheader {
	color:#c5d0da;
	font-size:32px;
	font-weight:bold;
	text-decoration: underline;
}

.downloadbutton {
	margin-bottom:-20px;
}

.downloadtext {
	color:#c5d0da;
	font-size:24px;
	font-weight:bold;
	margin-bottom:-30px;
	margin-top:-10px;
}

#modImg0,
#modImg1,
#modImg2,
#modImg3,
#modImg4 {
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

#modImg0:hover,
#modImg1:hover,
#modImg2:hover,
#modImg3:hover,
#modImg4:hover, {
	opacity: 0.7;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 10%;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.9);
}

.modal-content {
	margin: auto;
	display: block;
	width: 100%;
	max-width: 960px;
}

.modal-content {
	animation-name: zoom;
	animation-duration: 0.6s;
}

@keyframes zoom {
	from {transform:scale(0)}
	to {transform:scale(1)}
}

.close,
.closesmall {
	position: absolute;
	top:15px;
	right:45px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.close:hover,
.close:focus,
.closesmall:hover,
.closesmall:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}


/* Header */
.loginmodal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}

.loginmodal-content {
	background-color: #343438;
	margin: auto;
	padding:20px;
	border: 3px solid #46423f;
	width: 80%;
	height: 240px;
	max-width: 640px;
}

.loginmodal-content form {
	color: #c5d0da;
}

.loginclose {
	float:right;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.loginclose:hover,
.loginclose:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

.loginflex {
	display: flex;
	flex-direction: row;
	gap: 10%;
	justify-content: center;
}

.loginform {
	width: 40%;
	height:40%;
	max-width: 150px;
}

.logintext {
}

@media screen and (max-width:550px) {
	.logintext {
		font-size:3.5vw;
	}
}

.headerlogo {
	display:flex;
	flex-direction:row;
	flex-flow:center;
	margin-bottom:-80px;
	gap:0px;
	align-content:flex-start;
	flex-wrap:nowrap;
	max-width:1320px;
	width:90%;
}

.headerbox {
	width:50%;
	max-width:440px;
	margin:auto;
}

.musicplayer {
	width:auto;
	max-width:100%;
}

.musicplayer:hover {
	cursor: pointer;
}

.sitelogosmall {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom:50px;
}

.smallheader {
	font-size:2vw;
}


.headerhorse {
	width:auto;
	max-width:50%;
}

.affiliateforminput {
	width:auto;
	height:auto;
	max-height:15px;
	max-width:40%;
}

.affiliateformsubmit {
	width:auto;
	height:auto;
	max-width:30%;
}

.affiliateformsubmitsmall {
	width:auto;
	height:auto;
	max-width:30%;
	display:none;
}

.affiliatetext {
	font-size: 14px;
}

.headerboxaffil{
}

.affilsubmitsmall {
	display: none;
}

@media screen and (max-width:900px) {
	.headerlog {
		margin-bottom:30px;
	}
	.sitelogo {
		margin-bottom:68px;
		width:60%;
		height:60%;
	}
	.affiliatetext {
		font-size: 2vw;
	}
	.headerbox {
		max-width: 20%;
		position:relative;
		margin-top:-2%;
	}
	.headerboxaffil {
		margin-top:-5%;
	}
	.affiliateformsubmit {
		display:none;
	}
	.affiliateformsubmitsmall {
		display:inline-block;
	}
	.affiliateforminput {
		max-height:10px;
	}
}

@media screen and (max-width:500px) {
	.headerboxaffil {
		margin-top:-9%;
	}
}

@media screen and (max-width:400px) {
	.headerboxaffil {
		margin-top:-12%;
	}
}

@media screen and (max-width:370px) {
	.headerboxaffil {
		margin-top:-15%;
	}
	.affiliateforminput {
		max-height:7px;
	}
}

@media screen and (max-width:340px) {
	.headerboxaffil {
		margin-top:-18%;
	}
	.affiliateformsubmitsmall {
		width:1px;
	}
}

@media screen and (max-width:310px) {
	.headerboxaffil {
		margin-top:-23%;
	}
}


.angelmodal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 10%;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.75);
	animation-name:angelanim;
	animation-duration:1s;
	z-index:99;
}

@keyframes angelanim {
	from {opacity:0.5;}
	to {opacity:1}
}

.angelimg {
	width:80%;
	max-width:800px;
}







.jenuinelisting {
	display:flex;
	flex-direction:row;
	width:90%;
	max-width:1200px;
	gap:20px;
	margin-top:0px;
}

.jenuinelisting p {
	margin-bottom: -27px;
}

.jenuineimg {
	float:left;
	width:100%;
	max-width:218px;
	min-width:128px;
	max-height:218xp;
}


@media screen and (max-width:900px) {
	.jenuineheader{
		font-size:5vw;
	}
}

@media screen and (max-width:700px) {
	.jenuinetxt {
		font-size:2vw;
	}
}

@media screen and (max-width:600px) {
	.jenuinetxt {
		margin-top:5%;
		font-size:3vw;
	}
}

@media screen and (max-width:500px) {
	.jenuinetxt {
		margin-top:6%;
	}
	.jenuineheader{
		margin-bottom:-20px !important;
	}
}

@media screen and (max-width:400px) {
	.jenuinetxt {
		margin-top:15%;
	}
}




.clearlyinput {
	position: relative;
	animation-name:clrly;
	animation-duration:2s;
	animation-iteration-count:1;
	animation-timing-function: linear;
	animation-play-state: paused;
	z-index:99;
}

@keyframes clrly {
  from {width:256px;}
  to {width:100%;}
}

.modalclearly {
	display: noe;
	position: fixed;
	z-index: 1;
	padding-top: 0%;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	display:none;
}

.fourohfourcontent {
	display: block !important;
}

.fourohfour {
	display: none !important;
}



/* Tournaments */

.tourneyinfo {
	display:flex;
	flex-direction:row;
	width:90%;
	max-width:1280px;
	gap:80px;
	margin-top:80px;
}


.tourneytitle {
	color: #bf9000;
	text-decoration: underline overline;
	font-weight: bold;
	font-size: 36px;
	margin-top:20px;
	text-align:center;
}

@media screen and (max-width:1480px) {
	.tourneytitle {
		font-size: 2.2vw;
	}
}

.tourneydesc {
	width:40vw;
	display:inline-block;
}

.tourneydesc a {
	color: #bf9000;
	text-decoration: underline;
}

.tourneylisting p {
	max-width:340px;
}

.tourneyevents {
	display:flex;
	max-width:640px;
	flex-wrap: wrap;
	gap: 10px;
	justify-content:flex-start;
}

.tourneyevent {
	color: #bf9000;
	border: solid;
	border-radius: 5px;
	border-width: thin;
	padding:4px;
	font-size:20px;
	font-weight:bold;
}

@media screen and (max-width:1280px) {
	.tourneydesc {
		font-size: 2.2vw;
	}
}

.rhplist {
	text-align:left;
	color:#c5d0da;
	font-size:22px;
}

.rhplist a {
	color:#bf9000;
	text-decoration:underline;
	font-weight:bold;
}

@media screen and (max-width:800px) {
	.rhplist {
		font-size: 3vw;
	}
	.tourneyevent {
		font-size: 3vw;
		padding: 1px;
	}
	.tourneyevents {
		gap:5px;
	}
}


/* Affiliates */
.entropygif {
	position:fixed;
	bottom:0px;
	right:0px;
}