body {
  max-width: 1200px;
  padding: 0;
  margin: auto;
  font-family: Helvetica, Arial, Sans-serif;
}
a {
  outline: none;
  text-decoration: none;
}
a:link {
  border-bottom: none;
  color: grey;
}
a:hover {
  color: #e9662d; 
}


hr {
	width: 100%;
	color: #f1f1f1;
}

/* section 1 Grid */

#section1 .grid-container {
  display: grid;
  grid-template-columns: 200px 1000px;
  grid-template-rows: 80px 80px;
  padding: 0px;
}
#section1 .grid-container > div {
  background-color: white;
  text-align: center;
  padding: 0px 20px;
  font-size: 20px;
}

#section1 .item1 {
  grid-row-start: 1;
  grid-column-start: 1;
  grid-row-end: 3;
}
#section1 .item2 {
  grid-row-start: 1;
  grid-column-start: 2;
}
#section1 .item3 {
  grid-row-start: 2;
  grid-column-start: 2;
}

#section1 table.top_menu {
	table-layout: fixed;
	width: 800px;
	height: 80px;
	border: 0px;
	margin-left: 150px;
}
#section1 ul.top_menu{
	display: flex;
	margin: auto;
	justify-content: space-between;
	list-style-type: none;
	font-size: 13px;
	text-transform: uppercase;
}
#section1 li.top_menu {
	padding: 60px 5px 3px 5px;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-decoration-color: #f1f1f1;
	cursor: pointer;
	color: grey;
	transition: all 0.25s ease-in-out;
}
#section1 li.top_menu:hover, li.top_menu_current{
	padding: 60px 5px 0px 5px;
	text-decoration: underline;
	text-decoration-thickness: 3px;
	text-decoration-color: #e9662d; /*  */
	cursor: pointer;
	color: black;
	transition: all 0.25s ease-in-out;
}

/* end of section 1 Grid =====================================*/
/* ===========================================================*/
/* section 2 Grid ============================================*/

#section2 .mySlides {display: none;}
img {vertical-align: middle;}

#section2 .mySlides1 {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
#section2 .grid-container {
	display: grid;
	display: inline block;  
	grid-template-columns: 1200px;
	margin: auto;
}

#section2 .image {
  float: right;
  width: 800px;
  padding: 10px;
}

#section2 div.relative {
	position: relative; 
	left: 150px; 
	bottom: 40px
}
#section2 li.sub_menu {
	display: inline-block;
	list-style: none;
	padding: 0;
	font-size: 13px;
	line-height: 18px;
}
#section2 li.sub_menu:hover {
	display: inline-block;
	list-style: none;
	padding: 0;
	font-size: 13px;
	line-height: 18px;
	color: #e9662d;
	text-decoration: underline;
	text-decoration-thickness: 1px;	
}	
#section2 p {
  color: black;
  font-size: 14px;
  line-height: 21px;
  padding: 20px;
}

/* Number text (1/3 etc) */
#section2 .numbertext {
  color: black;
  font-size: 12px;
  padding: 8px 12px;
}

/* The dots/bullets/indicators */
#section2 .dot {
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
#section2 .dot1 {
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
#section2 .active {
  background-color: #717171;
}

#section2 .dot:hover {
  background-color: #717171;
}

/* Fading animation */
#section2 .fade {
  animation-name: fade;
  animation-duration: 1.5s;
}	
#section2 .fade1 {
  animation-name: fade;
  animation-duration: 1.5s;
} 

/* end of section 2 Slideshow ================================*/
/* ===========================================================*/
/* section 3 Grid ============================================*/

#section3 .grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
}
#section3 .grid-container > div {
  text-align: justify;
  padding: 20px;
  font-size: 30px;
}

#section3 .item1 {
  grid-column-start: 1;
}
#section3 .item2 {
  grid-column-start: 2;
}
#section3 .item3 {
  grid-column-start: 3;
}

#section3 h3{
	font-size: 13px;
	line-height: 21px;
	text-transform: uppercase;
	color: #e9662d;
}	
#section3 p {
	font-size: 12px;
	line-height: 20px;
	color: black;
}


footer {
  font-size: 12px;
  bottom: 0;
  width: 1200px;
  height: 60px;
  line-height: 60px;
  font-size: 14px;
  background-color: #f1f1f1;
  color: #000000;
  text-align: center;
  }