@charset "utf-8";
/*------------------------------------------------------------
Contact
------------------------------------------------------------*/
#contact {
  text-align: center;
  padding: 90px 0 120px;
}
#contact h3 {
  font-size: 2.0rem;
  line-height: 1;
  margin-bottom: 110px;
  position: relative;
  margin-top: 100px;
}
#contact h3:first-child {
  margin-top: 0;
}
#contact h3 strong {
  font-size: 2.6rem;
}
#contact h3:before {
  display: block;
  content: '';
  width: 60px;
  height: 5px;
  background: #0B318F;
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -30px;
}

#contact .text {
  text-align: left;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
}

#contact .form-group {
	margin-bottom: 20px;
}
#contact label {
	display: block;
	text-align: left;
	font-size: 16px;
  line-height: 26px;
	margin-bottom: 8px;
	color: #666;
	font-weight: bold;
}
#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 16px;
	outline: none;
}
#contact input:focus,
#contact textarea:focus {
	border-color: #7c96ef;
	box-shadow: 0 0 8px rgba(0, 123, 255, 0.1);
}
#contact textarea {
	resize: vertical;
	min-height: 120px;
}
#contact button {
	width: 100%;
	padding: 14px;
	background-color: #fff;
	color: #0B318F;
	border: 2px solid #0B318F;
	border-radius: 30px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.2s;
}
#contact button:hover {
	background-color: #0B318F;
	color: #fff;
}
#contact button:active {
	transform: scale(0.98);
}
#contact .required::after {
	content: " *";
	color: #e74c3c;
}

#thanks-message {
	display: none;
	padding: 20px 0;
}
#thanks-message h2 {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 10px;
}
#thanks-message .thanks-icon {
	font-size: 50px;
	color: #2ecc71;
	margin-bottom: 15px;
}

#thanks-message p { color: #666; line-height: 1.6; }

@media screen and (max-width: 667px) {
  #contact {
    padding: 40px 15px 50px;
  }
  #contact h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    margin-top: 60px;
  }
  #contact h3 strong {
    font-size: 1.6rem;
  }
  #contact h3:before {
    width: 30px;
    bottom: -15px;
    margin-left: -15px;
  }
  #contact .text {
    font-size: 14px;
    line-height: 24px;
  }
	#thanks-message h2 {
		font-size: 1.2rem;
		color: #333;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 320px) {
  #contact .box_table table thead tr th {
    font-size: 10px;
  }
}






