*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Helvetica;
}

body{
	width:100%;
	margin: 0 auto;
}

.navbar {
  overflow: hidden;
  background-color: #black;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.navbar a {
  float: left;
  font-size: 27px;
  color: #FFAC1C;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 27px;
  font-weight: bold;
  border: none;
  outline: none;
  color: #FFAC1C;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
  background-color: black;
  color: orange;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

.navbar-right{
  float: right;
}

.container {
  position: relative;
  text-align: center;
  color: white;
  background-color: rgb(255, 172, 28 / 50%);
}

.top-left {
  position: absolute;
  top: 20%;
  right: 5%;
  font-family: Helvetica;
}

.top-left h1{
	font-weight: bold;
	font-size: 68px;
}

.top-left p{
	font-size: 28px;
	font-style: italic;
}

/*animations for fading and out of front page*/
  .fade-in-out {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .fade-in-out.active {
    opacity: 1;
  }

.blurb{
  position: absolute;
  top: 30%;
  left: 28%;
  font-family: Helvetica;
  font-size: 24px;
  font-style: italic;
}

#homeBtn{
	border: none;
	cursor: pointer;
}

.imij{
	padding-top: 0;
	height: 60px;
	width: 300px;
	object-fit: contain;
}

.hero-image{
	width:100%;
}

/*Homepage*/

.container {
  position: relative;
  text-align: center;
  height: 100%;
  color: white;
  background-color: rgb(255, 172, 28 / 50%);
}

.top-left {
  position: absolute;
  top: 20%;
  left: 5%;
  font-family: Helvetica;
  font-size: 72px;
  font-style: italic;	
}

.blurb{
  position: absolute;
  top: 30%;
  left: 28%;
  font-family: Helvetica;
  font-size: 24px;
  font-style: italic;
}

.tasmanian{
	padding-top: 1%;
	font-family: Helvetica;
	font-size: 72px;
	color: #FFAC1C;
	text-align: center;
}

.the_state{
	padding-top: 1%;
	padding-left: 8%;
	padding-right: 8%;
	font-family: Helvetica;
	font-size: 24px;
	color: #000;
	text-align: center;
}

/*Products*/

.product-hero-banner{
	/*background-color: rgb(0 0 0 / 0.5);*/
	background-color: rgb(255 172 28 / 0.25);
}

.other-banner{
	background-color: rgb(255 172 28 / 0.05);
}
.box{
	padding-left: 15%;
	padding-right: 15%;
}
.column {
  float: left;
  width: 33.33%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.notice{
	color:red;
	font-size: 24px;
}

.products-heading{
	color:#FFAC1C;
	font-family: Lucida Console;
	font-size: 72px;
	padding-top: 1%;
	padding-bottom: 1%;
}

.existing{
	font-size: 28px;
	color: black;
	padding-top: 1%;
	font-family: Helvetica;
	text-transform: uppercase;
	text-align: center;
	/*margin-left: 10%;*/
}

.existing-text{
	font-size: 24px;
	color: black;
	text-align: left;
	padding-top: 1%;
	margin-left: 10%;
	margin-right:10%;
}

.existing_about{
	color: purple;
	font-size: 22px;
	text-align: center;
	padding-top: 1%;
	margin-left: 10%;
	margin-right: 10%;
}

.seven-page-existing-text{
	text-align: center;
	color: black;
}

.products-imij{
	padding-top:1%;
	width:10%;
}

.row-imij{
	width: 30%;
}

h3{
	font-size:40px;
	color: black;
}

.subheading{
	color:black;
}

/* PRODUCTS POP-UP BOXES*/

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

button{
	background-color: white;
}

.pop-up-header{
	padding-top:1%;
	padding-bottom: 1%;
	font-size: 90px;
}

.pop-up-header2{
	color: white;
	padding-top:1%;
	padding-bottom: 1%;
	font-size: 90px;
}

.pop-up-header3{
	color: red;
	padding-top:1%;
	padding-bottom: 1%;
	font-size: 90px;
}

.pop-up-text{
	color: black;
	font-size: 50px;
}

.pop-up-text2{
	padding-top: 3%;
	padding-bottom: 3%;
	margin-left: 5%;
	margin-right: 5%;
	text-align: left;
	font-size: 30px;
	color: black;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* The Second Close Button */
.close2 {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close2:hover,
.close2:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* The Third Close Button */
.close3 {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close3:hover,
.close3:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.close4 {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close4:hover,
.close4:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.close5 {
  color: orange;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close5:hover,
.close5:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.close6 {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close6:hover,
.close6:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.modal-header2 {
  padding: 2px 16px;
  background-color: #27B1E8;
  color: white;
}

.modal-footer2 {
  padding: 2px 16px;
  background-color: #27B1E8;
  color: white;
}

.modal-header3 {
  padding: 2px 16px;
  background-color: #F8C8DC;
  color: white;
}

.modal-footer3 {
  padding: 2px 16px;
  background-color: #F8C8DC;
  color: white;
}

.modal-header4 {
  padding: 2px 16px;
  background-color: #F8C8DC;
  color: white;
}

.modal-footer4 {
  padding: 2px 16px;
  background-color: #F8C8DC;
  color: white;
}

.modal-header5 {
  padding: 2px 16px;
  background-color: black;
  color: white;
}

.modal-footer5 {
  padding: 2px 16px;
  background-color: black;
  color: white;
}

.modal-header6 {
  padding: 2px 16px;
  background-color: white;
  color: white;
}

.wix-footer{
	color: white;
}

.laravel-footer{
	color: red;
}

.modal-footer6 {
  padding: 2px 16px;
  background-color: white;
  color: white;
}

.modal-body {padding: 2px 16px;}

.modal-body2 {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}


/*Existing Website main image*/
.eximij{
	float: left;
	margin-left: 100px;
}

/*About Me*/

.img-left{
	margin-left: 10%;
	margin-right: 1%;
	width: 220px;
	float:left;
	padding-top:1%;
}

.about-hero-banner{
	background-color: rgb(255 172 28 / 0.25);
}

.about-other-banner{
	background-color: rgb(255 172 28 / 0.05);
}

/*contact*/
.column {
  float: left;
  width: 33.33%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/*footer*/
.footer{
	position: absolute;
	width:100%;
	height:100px;
	background-color: #FFAC1C;
}

.copyright{
	padding-top: 2%;
	padding-bottom: 2%;
	font-family: Helvetica;
	font-size: 14px;
	color: #000;
	text-align: center;
}