html{
    font-family: "SCoreDream";
      font-weight: 400;
      color: #444;
  }
  .menu {
    padding-top:10%;
    margin: 0px auto;
    width: 80%;
    max-width: 1280px;
    position: relative;
    border: 0px solid red;
  }

  #nav ul li:nth-child(5) a, #nav ul li a:hover{
    font-weight: bold;
    border: 0px solid thistle;
  
  }
  fieldset{
    border: 0px;
  }


  #sub_contact_form{
     width: 100%;
     margin: 0 auto;
  }

.formType{
    width: 100%;
}

.formType fieldset{
    margin-top: 50px;
    padding-top: 50px;
    border-top:1px solid #ccc;

}
.formType fieldset:first-child{
    margin-top: 50px;
    padding-top: 50px;
    border: 0px;
}
.formType h4{
    font-size: 1.7em;
    font-weight: 700;
    color: #f91237;
    margin-bottom: 20px;
    border: 0px solid goldenrod;
}
.formType .text_type{
    width: 100%;
    text-indent: 20px;
    line-height: 50px;
    border-radius:5px;
    border: 1px solid #777;
}
textarea{font-family: "SCoreDream";}
.text_type:focus{outline: none; border: 1px solid #f91237;}
.text_Area:focus{outline: none; border: 1px solid #f91237;}

.formType .text_Area{
    width: 100%;
    padding: 10px 20px;
    min-height: 150px;
    line-height: 1.5;
    border-radius:5px;
    border: 1px solid #777;
    font-family: "SCoreDream";
}
textarea::placeholder {
    color: #ccc;
    font-family: "SCoreDream";
  }
input::placeholder {
    color: #ccc;
    font-family: "SCoreDream";
  }
  input:focus{outline: none; font-family: "SCoreDream";}


  .labelList{margin: -20px;}
  .labelList li{padding: 20px;display: inline-block;vertical-align: middle;font-size: 16px;}
  .container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1.2em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #f91237;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  

  
.tableType{
    width: 100%;
    border-top:2px solid #777;
}
.tableType th{
    width:15% ;
    border-left:0;
    font-size: 1.2em;
    padding: 20px 20px;
    text-align: left;
    border: 0px solid red;
}
.tableType th strong{
    color: #f91237;
    font-size: .5em;
}
.tableType td{
    font-size: 1.2em;
    line-height: 24px;
    padding: 15px;
    border: 0px solid coral;
}
.tableType th,
.tableType td{border-bottom:1px solid #ddd;}
.tableType th:first-child,
.tableType td:first-child{border-left:0;}
.tableType :focus{outline: none;}




@media (max-width:1024px) {


  .tableType th{
    width: 20% ;

}
}



