@charset "utf-8";
/* CSS Document */

* {
	margin:auto;
	padding: 0;
	box-sizing: border-box;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

html {
	height: 100vh;
}

body{
    font-weight: 700;
    font-style: normal;
}

#canvas1 {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background: url("img/background2.png");
	background-repeat: no-repeat; 
    background-size: cover;
	background-position: center;
	z-index: -1;
    animation-timing-function: ease;
}

nav{
	position: fixed;
	width: 100%;
	background-color: rgba(255,255,255,.7); /*#999999*/
	display: flex;
	justify-content: space-between;
	align-items:stretch;
	text-transform: uppercase;
	transition: .5s ease-out;
	max-height: 45px;
	z-index: 99;
	border-bottom: 1px solid black;
}

nav:hover {
	background-color: rgba(255,255,255,1);
	transition: .5s ease-in;
}

.nav-links li {
	list-style: none;
	height: auto;
	transition: 1s;
	line-height: 44px;
	text-align: center;
	background-color: #BEBEBE;
}

.nav-links a {
	padding: 14px 50px;
	color: #000000;
	text-decoration: none;
	letter-spacing: 1px;
	transition: .5s;
	line-height: 44px;
}

.nav-links a:hover {
	background: rgba(130,190,255,1.00);
	transition: .5s;
}

.nav-links .contact a {
	color: #F4F4F4;
}

.nav-links .active {
	background-color: rgba(130,190,255,.60);
}

.burger {
	display: none;
	cursor: pointer;
}

.burger div {
	width: 25px;
	height: 2px;
	background-color: #000000;
	margin: 5px;
	transition: all 1s ease;
}

@media screen and (max-width: 800px) {
	
	body {
		overflow-x: hidden;
	}
	
	.nav-links {
		position: absolute;
		right: 0px;
		height: 95vh;
		top: 33px;
		background-color: rgba(255,255,255,.7);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		z-index: -1;
		width: 40%;
		transform: translateX(100%);
		transition: transform .5s ease-in;
	}
	
	.nav-links li {
		opacity: 0;
		border: none;
		line-height: 15vh;
		width: 100%;
		background: transparent;
	}
	
	.nav-links a {
		display: flex;
		justify-content: center;
		padding: 6vw 5vw;
		width: 100%;
	}
	
	.burger {
		display: block;
		padding: 3px;
	}
}

.burger:hover {
	background-color: rgba(130,190,255,1.00);
	transition: 1s;
	border-radius: 10px;
}

.burger:hover .line1 {
	background-color: #FFFFFF;
}

.burger:hover .line2 {
	background-color: #FFFFFF;
}

.burger:hover .line3 {
	background-color: #FFFFFF;
}

.nav-active {
	transform: translateX(0%);
}

@keyframes navLinkFade {
	from{
		opacity: 0;
		transform: translateX(50px);
	}
	to{
		opacity: 1;
		transform: translateX(0px);
	}
}

.toggle .line1{
	transform: rotate(-45deg) translate(-5px,5px);
}

.toggle .line2{
	opacity: 0;
}

.toggle .line3{
	transform: rotate(45deg) translate(-5px,-5px);
}




main {
	display: inline-block;

	min-height: 80vh;
	padding: 8px;
	width: 100%;
   overflow: hidden;
	
}

.content, .content2 {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
    width:100%;
	height: 50vh;
    padding: 20px 50px;
	font-size: 60px;
	text-transform: uppercase;
	font-weight: 900;
	border-radius: 20px;
	min-height: 200px;
	white-space: wrap;
	color: #FFF;
	opacity: 90%;
	-webkit-text-stroke: 3px black;
}

.content2 {
	font-size: 80px;
	z-index: 99;
	opacity: 100%;
}

.content3 {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
    width:100%;
	
    /*float:left;*/
    padding: 20px 5px;
    /*background: #696969;*/
    color: #000000;
	text-transform: none;
	font-weight: 900;
	border-radius: 20px;
	margin-right: 4px;
}

header {
	background: #696969;
	
	padding: 10px;
}

.imgH {
	height: 44px;
	border-radius: 3px;
}

.img {
	float: left;
	display: flex;
	vertical-align: center;
	margin: auto 10px;
	border-radius: 25px;
}

.img2 {
	float: right;
	display: flex;
	vertical-align: center;
		margin: auto 10px;
	border-radius: 25px;
	height: 275px;
}

.borderz {
	
	display: block;
	width: 90%;
}



.leftz {
  width: 50%;
}

.rightz {
  width: 50%;
}

/* Clear floats after the columns */
.rowz:after {
  content: "";
  display: table;
  clear: both;
}


.flexbox {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
	width: 80%;
	max-height: 700px;
}

.flexbox .col {
  flex: 1;
	margin: 1px;
	padding: 20px;
	width: 50%;
	border: solid 1px;
	text-align: center;	
	background: rgba(255,255,255,.7);
	transition: 1s ease;
}

.col:hover {
	background: rgba(255,255,255,1);
	transition: 1s ease;
}

.flexbox .col:nth-child(1) {
	padding: auto;
    order: 0;
}
.flexbox .col:nth-child(2) {
    order: 1;
	padding: auto;
	/*display: grid;
	place-items: center;*/
}

.flexbox2 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
	width: 80%;
	max-height: 700px;
}

.flexbox2 .col {
  flex: 1;
	margin: 1px;
	padding: 20px;
	width: 50%;
	border: solid 1px;
	text-align: center;
	height: 400px;
	border-radius: 0px 0px 25px 25px;
	
}

.flexbox2 .col:nth-child(1) {
	padding: auto;
  order: 0;
	
}
.flexbox2 .col:nth-child(2) {
  order: 1;
	padding: auto;
	/*display: grid;
	place-items: center;*/
}

#flexbox830 {
	display: none;
}

#flexbox650 {
	display: none;
}

.contwrap {
	height: 300px;
	display: flex;
}

.contwrap2 {
	height: 300px;
	display: flex;
	flex-direction: column;
}

.coltext {
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.pagewrap {
	position: relative;
  min-height: 100vh;
}

.contentwrap {
	padding-bottom: 2.5rem; 
}

.footer {
	 position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;  
}

footer {
	text-align: center;
	display: flex;
	padding: 5px;
	background-color: rgba(255,255,255,.7);
	opacity: .8;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	border-top: 1px solid black;
	transition: .5s ease-out;
}

footer:hover {
	opacity: 1;
	transition: .5s ease-in;
	background: rgba(255,255,255,1);
}

.footercontent {
	max-height: 38px;
	text-align: center;
}

.black {
	color: #000000;
}

.red {
	color: #FF0000;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 60px;
}

h3 {
	
	color: #000000;
	display: flex;
	font-size: 35px;
	justify-content: space-around;
}

h4 {
	
	color: #000000;
	display: flex;
	text-align: center;
}

.fade-in-section, .fade-in-section2, .fade-in-section3, .fade-in-section4 {
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.fade-in-section2 {
	 animation: fadeInAnimation2 ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
		z-index: 1;
     }
}

@keyframes fadeInAnimation2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
		z-index: 1;
     }
}

.slidewrap {
	width: 80%;
	background: rgb(190, 190, 190, .8);
	padding-bottom: 10px;
	margin-bottom: 1px;
	border: solid 1px;
	border-radius: 25px 25px 0px 0px;
}


/* Slideshow container */
.slideshow-container {
	display: flex;
  position: relative;
  
	padding-top: 70px;

	
	
}



/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  z-index: 999;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 3px;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
 
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
	color: #FFFFFF;
}

/* Caption text */
.text {
  font-size: 15px;
  padding: 8px 12px;
  position: relative;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dotdiv {
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
	background-color: #252525;
}

 .dot:hover {
  background-color: #FFFFFF;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .2}
  to {opacity: 1}
}

img {
opacity: 1;
}

@media screen and (max-width: 1650px) {
	.img, .img2 {
		width: 50%;
		height: 50%;
	}
}



@media screen and (max-width: 1250px) {
	.slideshow-container{
		padding-top: 35px;
	}
}

@media screen and (max-width: 1050px) {	
	h3 {
		font-size: 25px;
	}
}

@media screen and (max-width: 900px) {	
	p {
		font-size: 12px;
	}
	
}

@media screen and (max-width: 830px) {
	.flexbox .col:nth-child(2) {
		display: none;
	}
	
	#flexbox830 {
		display: flex;
	}
}

@media screen and (max-width: 750px) {
	.content, .content2 {
		-webkit-text-stroke: 1px black;
	}
	
	.content  {
		height: 15vh;
	}
	
	.content2 {
		height: 15vh;
	}
	
	h1 {
		font-size: 40px;
	}
	
	h2 {
		font-size: 35px;
	}
	
	h3 {
		font-size: 20px;
	}
	
	
}

@media screen and (max-width: 650px) {
	
	#flexbox830 {
		display: none;
	}
	
	#flexbox650 {
		display: flex;
	}
	
	h3 {
		font-size: 15px;
	}
	
	p {
		font-size: 12px;
		font-weight: 600;
	}
	
	.col {
		display: grid;
		place-items: center;
	}
	
	.col > * {
		display: grid;
		place-items: center;
	}
	
	.img {
		height: 60px;
		width: 90px;
	}
	
	.img2 {
		height: 60px;
		width:45px;
	}
}

@media screen and (max-width: 500px)  {
	.nav-links a{
		padding: 5px;
		font-size: 80%;
	}
}



@media screen and (max-width: 400px) {
	h3 {
		font-size: 14px;		
	}
}