* {
	box-sizing: border-box;
	margin: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: #fafffb; 
  min-height: 100vh;
  display: flex;
  flex-direction: column; 
}

.mySlides {display: none}
img {vertical-align: middle;}


/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;  
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute; 
  color: white;
  font-weight: bold;
  font-size: 8px;
  transition: 0.2s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: green;  
}

/* Position the "next button" to the right */
.next {
  right: 0px;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 10px;
  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);
}

/* Caption text */
.text {
  color: #fff;
  font-size: 14px;
  padding: 12px 16px;
  position: absolute;
  bottom: 8px;
  width: 19%;
  left: 0;
  right: 0;
  text-align: center;
  background-color: #08578b;
  opacity: 0.7;
  margin: 0 auto;
  border-radius: 5px;
  border-bottom: 1px solid #fff;
 }

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 1px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  position: relative;
  top: -10px;  
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

menu {
  padding: 15px;
  text-align: center;
  background-color: #0e2165;
}

menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

menu a {
  text-decoration: none;
  background-color: #0e2165;
  padding: 9px;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
}

menu a:hover {
  background-color: red;
  color: white;
  transition: 0.3s ease;
}

.menu-active:hover{
  background-color: #0e2165;
  color: #fff;
}

main {
  padding: 30px;
  width: 1300px;
  margin-left: auto;
  margin-right: auto; 
  flex-grow: 1;
}

.intro {
	padding: 10px;
	text-align: center;
	font-size: 14px;
	line-height: 24px;
}

.intro-pro {
	text-align: center;
}

.wel-rtbm {
	font-size: 20px;
	font-weight: 400;
}

.in-page {
	font-size: 18px;
	font-weight: 400;
	text-align: center;
  margin-bottom: 10px;		
}

span.in-page {
	background-color: #0e2165;
	padding: 5px;
	border-radius: 5px;
	color: #fff;	
}

.our-pro-in {
	text-align: center;
}

.our-pro {	
	padding: 10px;		
	border-radius: 4px;
	margin: 10px 0px 0px 10px;
	background-color: #0e2165;
	display: inline-block;
	color: white;
	font-weight: 400;
	border-bottom: 2px dotted  #fff;
	text-transform: uppercase;
	font-size: 16px;	
}

.row:after{
	content: "";
	clear: both;
	display: block;
}

.row-in {
	padding: 7px;
	background-color: #e1f0d3;
	border-radius: 7px;
	display: inline-block;
	margin: 10px 0 0 0;
	box-shadow: 0px 0px 4px 0px #6e9748;
}

.row-in h2 {
	text-align: center;
	background-color: green;
	padding: 10px;
	border-radius: 5px;
	margin: 0 10px 0 10px;
	color: #fff;
}
.column {
	width: 25%;	
	float: left;
	padding: 10px;
}

.column-staff{
	width: 50%;
	float: left;
	padding: 10px;
}

.column-pro {
  width: 50%;
  float: left;
  padding: 10px;
}

.details {
	background-color: #0e2165;
	border-radius: 4px;
	margin: 2px 0 0 0;
	padding: 10px;
	color: white;	
  font-size: 16px;	
}

footer {
	background-color: #0e2165;
	text-align: center;
	padding: 10px;
	color: #fff;
	height: 100%;
}


/** Responsive **/
@media (max-width: 1000px){
	.column, .column-staff, .column-pro {
      width: 50%;
  } 

  main {
  	width: 100%;
  }

  .in-page {
    text-align: center;
  }  	
}


@media (max-width: 600px){
	.header, .column, .column-staff, .column-pro, main  {
		width: 100%;
	}

	menu a {
		display: block;
	}

	menu a {
		border-bottom: 1px solid white;
	}

  .in-page {
    text-align: center;
  }

  .text {
    width: 35%;
  }
}
