@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto/Roboto-Regular.woff2') format('woff2'),
    url('fonts/Roboto/Roboto-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto/Roboto-Bold.woff2') format('woff2'),
    url('fonts/Roboto/Roboto-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

.bg-green {
  background: linear-gradient(rgba(0, 150, 70, 0.5), rgba(0, 150, 70, 0.5)), url(imgfiles/bg-img.jpeg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.page-container {
  display: block;
  background-color: rgba(255,255,255,.66);
  opacity: 1;
  margin: 25px 5%;
  padding: 50px 2%;
  min-height: 500px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6), 0 12px 40px 0 rgba(0, 0, 0, 0.59);
  overflow: none;
}

.header-image {
  min-width: 100%;
  max-width: 100%;
}

.footer {
    text-align: center;
}

.center {
  text-align: center;
}

.light {
  font-weight: 400;
}

.bold {
  font-weight: 600;
}

.line {
  margin-top: 15px;
  margin-bottom: 25px;
}

.line-divider {
  margin: 10px 20% 15px 0;
  width: 80%;
  height: 1px;
  opacity: .5;
}

.btn {
  height: 40px;
  border-radius: 5px;
  background: darkgreen;
  color: white;
}

/* 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 */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* 5% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  height: 80%;
  overflow: auto;
}

/* The Close Button */
.close-line {
  width: 100%;
  margin-bottom: 50px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 600px) {
  .page-container {
    margin: 30px 5%;
  }
}

@media (min-width: 1400px) {
  .page-container {
    margin: 30px 10%;
  }
}

/* Style inputs, select elements and textareas */
input[type=text], input[type=tel], input[type=email], select, textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

input[type=checkbox] {
    margin-top: 16px;
}

/* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

/* Style the submit button */
button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1em;
  width: 100%;
}

/* Style the container */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.col-20 {
  float: left;
  width: 20%;
  margin-top: 6px;
}

/* Floating column for labels: 25% width */
.col-33 {
  float: left;
  width: 33%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-66 {
  float: left;
  width: 66%;
  margin-top: 6px;
}

.col-80 {
  float: left;
  width: 80%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-20, .col-33, .col-66, .col-80, button {
    width: 100%;
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .responsive-div {
    width: 66%;
  }
}

@media (max-width: 1023px) {
  .responsive-div {
    width: 100%;
  }
}