/* menu style.css */

/* Background Images */
	body.bg_image1 {
    background-image: url("graphics/bg1.jpg");
	background-color: black;
	background-repeat: no-repeat;
    background-size: 110% 110%;
	background-attachment:fixed;
	}
	
	body.bg_image2 {
    background-image: url("graphics/bg2.jpg");
	background-color: black;
	background-repeat: no-repeat;
    background-size: 110% 110%;
	background-attachment:fixed;
	}
	
	body.bg_image3 {
    background-image: url("graphics/bg3.jpg");
	background-color: black;
	background-repeat: no-repeat;
    background-size: 110% 110%;
	background-attachment:fixed;
	}
	
	body.bg_image4 {
    background-image: url("graphics/bg4.jpg");
	background-color: black;
	background-repeat: no-repeat;
    background-size: 110% 110%;
	background-attachment:fixed;
	}
	
	/* semi-transparent box over background image */
	.outer {
	background-image: url("graphics/trans.png");
	background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 80%;
    text-align: center;
	}
	
	/* parchment image */
	.interior-textbox {
	background-image: url("graphics/parchment.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	max-width: 95%; 
    max-height: 100%; 
	margin:auto;
	}
	
	.home_text {
	font: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-size: 14px;
	padding-left:20px;
	padding-right:20px;
	text-align: center;
	}

.home_text_left {
	font: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-size: 14px;
	padding-left:20px;
	padding-right:20px;
	text-align: left;
	}
	
	.copyright {
	font-size: 12px;
	color: #FFF;
	}
	
	.title {
		font-family:"Times New Roman", Times, serif;
	font-size: 36px;
	font-style: italic;
	padding-left:10px;	
	}
	
		.home_text_left {
	font: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-size: 14px;
	padding-left:30px;
	margin-left:30px;
	text-align: left;
	}
	
		.home_text_right {
	font: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-size: 14px;
	margin-right:30px;
	padding-right:30px;
	text-align: left;
	}
	
	.shadow {
	-webkit-box-shadow: 0px 3px 16px 1px rgba(0,0,0,0.65);
	-moz-box-shadow: 0px 3px 16px 1px rgba(0,0,0,0.65);
	box-shadow: 0px 3px 16px 1px rgba(0,0,0,0.65);
	}

/* UTILITIES */
html {
    min-height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: arial;
}


html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #222;
  cursor: auto;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  position: relative; }




a {
  text-decoration: none;
}

li {
  list-style: none;
}

/* NAVBAR STYLING STARTS */
.navbar {
  position:relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: #4e7645;
  color: #fff;
}

.nav-links a {
  color: #fff;
}

/* LOGO */
.logo {
  font-size: 32px;
}

/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  font-size: 16px;
}

.menu li:hover {
  background-color: #123524;
  border-radius: 5px;
  transition: 0.3s ease;
}

.menu li {
  padding: 5px 14px;
}

/* DROPDOWN MENU */
.services {
  position: relative; 
}

.dropdown {
  background-color: #719e67;
  padding: 1em 0;
  position: absolute; /*WITH RESPECT TO PARENT*/
  display: none;
  border-radius: 8px;
  top: 34px;
}

.dropdown li + li {
  margin-top: 10px;
}

.dropdown li {
  padding: 0.5em 1em;
  width: 170px;
  text-align: center;
}

.dropdown li:hover {
  background-color: #123524;
}

.services:hover .dropdown {
  display: block;
}

/* RESPONSIVE NAVBAR MENU STARTS */

/* CHECKBOX HACK */

input[type=checkbox] {
  display: none;
} 

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 1050px) {
 .menu {
    display:none;
    position: absolute;
    background-color:#4e7645;
    right: 0;
    left: 0;
    text-align: left;
    padding: 16px 0;
	width: 200px;
  }

  .menu li:hover {
    display: inline-block;
    background-color:#123524;
    transition: 0.3s ease;
	width: 200px;
  }

  .menu li + li {
    margin-top: 12px;
	width: 200px;
  }

  input[type=checkbox]:checked ~ .menu {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .dropdown {
    left: 65%;
    top: 0px;
    transform: translateX(35%);
	width: 200px;
	text-align:center;
  }

  .dropdown li:hover {
    background-color: #123524;
	width: 200px;
  }
}

/* Foundation */
.row {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }
  .row.collapse > .column,
  .row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row.collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .row .row {
    margin: 0 -0.9375rem;
    max-width: none;
    width: auto; }
    .row .row:before, .row .row:after {
      content: " ";
      display: table; }
    .row .row:after {
      clear: both; }
    .row .row.collapse {
      margin: 0;
      max-width: none;
      width: auto; }
      .row .row.collapse:before, .row .row.collapse:after {
        content: " ";
        display: table; }
      .row .row.collapse:after {
        clear: both; }

  .title {
  width: 93%;
  max-width: 93% !important;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle; }

img {
  max-width: 100%;
  height: auto; 
  display: inline-block;
  vertical-align: middle;
  }

img {
  -ms-interpolation-mode: bicubic; }

center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
