body{
  background-color: #d9d9d9;
  background-image: url(images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;

}
#navbar{
  width: auto;
  height: auto;
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  overflow: hidden;
}
#navbar ul {
  list-style-type: none;
  margin: 5;
  padding: 0;
  overflow: hidden;
}
#navbar li{
  float:left;
}
#navbar li a{
  font-style: italic;
  text-align: center;
  padding: 10px;
}
.nav-button{
  transition: 0.3s;
  color: #000000;
  font-size: 20px;
  text-decoration: none;
  padding: 10px;
  margin: 20px;
}
.nav-button:hover{
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 24px 10px;
  margin-right: 50px;
  border-radius: 50px;
}
.navbar-logo{
  float: left;
  vertical-align: top;
  width: 160px;
  height: 170px;
  margin-right: 20px;
  border-radius: 20px;
}
.photo{
  float:right;
  width: 300px;
  margin-right: 20px;
  border-radius: 20px;
  padding: 10px
}
.photoPort{
  float:right;
  width: 200px;
  margin-right: 20px;
  border-radius: 20px;
  padding: 10px
}
#text{
  margin-right: 20px;
  text-align:justify;
  line-height: 1.3;
}
.column {
  float: left;
  width: 33.33%;
  padding: 30px;
}
.column2 {
  float: right;
  position: relative;
  left: -13.5%;
  width: 33.33%;
  padding: 30px;
}
.row::after {
  content: "";
  clear: both;
  display: table;
} 
#myBtn {
  display: none; 
  position: fixed; 
  bottom: 55px; 
  right: 30px; 
  z-index: 99; 
  border: none; 
  outline: none; 
  background-color: red; 
  color: white;
  cursor: pointer; 
  padding: 15px; 
  border-radius: 10px; 
  font-size: 18px; 
}

#myBtn:hover {
  background-color: #555; 
}
h1{
  color: black;
  font-style: italic;
  font-family: "Times New Roman";
}
h2{
  color: white;
  text-align: center;
  font-style: italic;
  font-family: "Times New Roman";
}
#heading{
  color: black;
  text-align: lest;
}
#textMain{
  margin-right: 50px;
  margin-left:50px;
  text-align:center;
  line-height: 1.4;
  width: 90%;
  font-family: "Times New Roman";
}
#textSlide{
  color: #d1d0d0;
  margin-right: 50px;
  margin-left:50px;
  text-align:center;
  line-height: 1.4;
  width: 90%;
  font-family: "Times New Roman";
}
.footer {
  font-weight: bold;
  position: fixed;
  height:55px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #d9d9d9;
  color: rgb(0, 0, 0);
  text-align: center;
}
.slideshow{
  overflow: hidden;
  height: 350px;
  background-image: url("images/slideshowbg.jpg");
}

.slideshow figure div{
	width: 20%;
  float: left;
}
.slideshow figure img{
  vertical-align: middle;
	float: right;
}

.slideshow figure{
	position: relative;
	width: 500%;
	margin: 0;
	left: 0;
	animation: 120s slide infinite;
}
@keyframes slide{
	0%{
		left: 0%
	}
	10%{
		left: 0%;
	}
	12%{
		left: -100%;
	}
	22%{
		left: -100%;
	}
	24%{
		left: -200%;
	}
	34%{
		left: -200%;
	}
	36%{
		left: -300%;
	}
	46%{
		left: -300%;
	}
	48%{
		left: -400%;
  }
	58%{
		left: -400%;
	}
	60%{
		left: -300%;
	}
	70%{
		left: -300%;
	}
	72%{
		left: -200%;
	}
	82%{
		left: -200%;
	}
	84%{
		left: -100%;
	}
	94%{
		left: -100%;
	}
	96%{
		left: 0%;
  }
	100%{
		left: 0%;
	}
}