@charset "utf-8";
/* CSS Document */

* {
	margin:auto;
	padding: 0;
	box-sizing: border-box;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	scroll-behavior: smooth;
}

html {
	height: 100%;
}

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;
}

img {
	display: block;
	max-width: 100%;
}

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;
	color: #fff;
}

.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: 96vh;
		top: 44px;
		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: #FF0000;
	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;
	padding: 8px;
	width: 100%;
    overflow: hidden;
}

.homemain {
	padding-bottom: 20vh;
}

.content, .content2 {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
    width:100%;
	height: 40vh;
    padding: 40px 50px 20px 50px;
	font-size: 60px;
	text-transform: uppercase;
	font-weight: 900;
	border-radius: 20px;
	min-height: 200px;
	white-space: wrap;
	color: #FFFFFF;
	opacity: 90%;
	-webkit-text-stroke: 3px black;
}

.content2 {
	font-size: 80px;
	z-index: 99;
	opacity: 100%;
}

header {
	background: #696969;
	padding: 10px;
}

.imgH {
	height: 44px;
	border-radius: 3px;
}

.indeximg {
	border: 1px solid black;
}



.img {
	float: left;
	display: flex;
	vertical-align: center;
	margin: auto 10px;
	border-radius: 25px;
	max-width: 100%;
}

.img2 {
	float: right;
	display: flex;
	vertical-align: center;
	margin: auto 10px;
	border-radius: 25px;
	height: 275px;
}

.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: rgb(255,255,255,.7);
	transition: 1s ease;
}

.flexbox .col a {
	text-decoration: none;
}

.col:hover {
	background: rgb(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;
}

.flexbox2 {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
	width: 80%;
	max-height: 700px;
}

.flexbox2 .col2 {
    flex: 1;
	margin: 1px;
	padding: 20px;
	width: 50%;
	border: solid 1px;
	text-align: center;	
	background: rgb(255,255,255,.7);
	transition: 1s ease;
}

.col2:hover {
	background: rgb(255,255,255,1);
	transition: 1s ease-in;
}

.flexbox2 .col2:nth-child(1) {
	padding: auto;
    order: 0;
}

.flexbox2 .col2:nth-child(2) {
    order: 1;
	padding: auto;
}

.f830 {
	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);
	bottom: 0;
	position: fixed;
	left: 0;
	right: 0;
	border-top: 1px solid black;
	opacity: .8;
	transition: .5s ease-out;
}

footer:hover {
	opacity: 1;
	transition: .5s ease-in;
	background-color: 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 {
    position: relative;
	padding-top: 70px;	
}

.mySlides {
    display: none;
	padding:40px;
}

.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;
	background: rgba(96,96,96,1.0)
}

.prev {
	left:3px;
}

.next {
    right:3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
	color: #FFFFFF;
}

.text {
    font-size: 15px;
    padding: 8px 12px;
    position: relative;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext {
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.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;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .2}
  to {opacity: 1}
}

img {
	display: block;
	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;
	}
	
	.f830 {
		display: flex;
	}
	
	.img, .img2 {
		margin: 10px;
	}
}

@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;
	}
	
	h4 {
		font-size: 16px;
	}
}

@media screen and (max-width: 650px) {
	
	h3 {
		font-size: 15px;
	}
	
	p {
		font-size: 12px;
		font-weight: 600;
	}
	
	.col, .col2 {
		display: grid;
		place-items: center;
	}
	
	.col, .col2 > * {
		display: grid;
		place-items: center;
	}
	
	.img, .img2 {
		height: 60px;
		width: 90px;
	}
}

@media screen and (max-width: 500px)  {
	
	.nav-links a{
		padding: 5px;
		font-size: 80%;
	}
}

@media screen and (max-width: 450px) {
	.flexbox, .flexbox2 {
		width: 100%;
	}
	.col{
		width: 100%;
		padding: 5px;
	}
	
}