* {
  box-sizing: border-box;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: none;
  font-family: Arial, Tahoma;
  font-size: 18px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

input[type=submit]:hover {
  background-color: #45a049;
  
}

.jcontainer {
  border-radius: 5px;
  background-color: #f15a24;
  padding: 20px;
  color: white;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.col-25 {
  float: left;
  width: 10%;
  margin-top: 6px;
  text-align: left;
}

.col-75 {
  float: left;
  width: 90%;
  margin-top: 6px;
}


.jrow {
 margin-top: 6px;
} 

/* Clear floats after the columns */
.jrow: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-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}


/*social media*/
.socials {
  padding: 10px;
  text-align: center;  
  /* width: 200px;
  float: center; */
}

.fa {
  padding: 10px;
  font-size: 24px;
  width: 40px;
  text-align: center;
  text-decoration: none;
  margin: 2px 2px;
  border-radius: 50%;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #FFAC1C;
  color: white;
}

.fa-home {
  background: green;
  color: white;
}