@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
	font-family: 'Bebas Neue';
	color:white;
}

h5 {
	font-size: 30px ;
	padding: 0px ;
	margin: 0px ;
}

.header {
  background: url("bg4.jpg") no-repeat top;
	background-size: cover;
  padding: 20px;
  text-align: center;
	color: aliceblue;
	height: 800px;
}

.head_text{
	width: 80%;
	margin:0 auto;
	position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-size: 72px ;
	text-shadow: 5px 5px 5px #504F4F;
}

.topnav ul {
	list-style: none;
	text-align: center;
	margin: 0;
	padding: 0;
}

.topnav li {
	align-content: center;
	display: inline-block;
}
.topnav a {
  display: block;
  color: white;
  text-align: center;
  padding: 0px 50px;
  text-decoration: none;
  font-size: 20px ;
}

.topnav a1 {
  display: block;
  color: #F3F0B6;
  text-align: center;
  padding: 0px 50px;
  text-decoration: none;
  font-size: 20px ;
}

.topnav {
  overflow: auto;
	padding: 20px;
}


.topnav a:hover {
  color:#F3F0B6;
	text-decoration: none;
}

a.active {
	color:#5D5E61;
}

.fa:hover {
    opacity: 0.7;
}

.button {
  border-radius: 4px;
  background-color: #0A308B;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 10px;
  width: 230px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 0px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}


img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.cont {
	width: 80%;
	margin: 0 auto;
	padding:30px;
	overflow: auto;
}

.top, .row {
	text-align: center;
	padding: 60px 60px 35px 60px;
	color: black ;
	font-size: 20px ;
}

.wrapper {
	display: flex;
}

.wrapper > div {
	flex: 1;
}

.box1 {
	background: #ffffff;
		padding: 10px;
		margin: 85px ;
	    box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
		color: black ;
}

.header1 {
  text-align: center;
  padding: 22px;
}

@media screen and (max-width:800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

.fa {
  padding: 6px;
  font-size: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 52px;
  border-radius: 50%;
}

.fa-facebook {
  background: black;
  color: white;
}

.fa-youtube {
  background: black;
  color: white;
}

.fa-instagram {
  background: black;
  color: white;
}

.container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding: 10px;
}

.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 100% ;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 28px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
	left: 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* 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);
}

/* 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, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}