/*All forms Styles*/

.application-form-section .application-form-box {
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.application-form-section .application-form-box .input-box {
	margin-bottom: 20px;
}
.application-form-section .application-form-box ::placeholder {
	color: #404040;
	font-weight: 400;
	font-size: 18px;
}
.application-form-section select,
.application-form-section textarea,
.application-form-section input,
.sign-up-section  input {
	width: 100%;
	padding: 10px;
	border: 1px #9c9c9c solid;
	color: #404040;
	font-weight: 400;
	background: #fbfbfb;
	border-radius: 2px;
}
.application-form-section .application-form-box .title {
	font-weight: 600;
	color: #000;
	font-size: 18px;
	padding: 10px 0;
}
.application-form-section .application-form-box span {
	display: block;
}
.application-form-section .application-form-box select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 99%;
  background-position-y: 50%;
}
.application-form-section .application-form-box .btn-theme input[type="submit"],
.application-form-section .application-form-box .btn-theme button,
.sign-up-section  .btn-theme input[type="submit"],
.sign-up-section  .btn-theme button {
    background: #6592d7;
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border: 1px #6592d7 solid;
    cursor: pointer;
}
.application-form-section .application-form-box .btn-theme input[type="submit"]:hover,
.application-form-section .application-form-box .btn-theme button:hover,
.sign-up-section .btn-theme input[type="submit"]:hover,
.sign-up-section .btn-theme button:hover {
    background: transparent;
    color: #6592d7;
}
.sign-up-section .sign-up-box {
	max-width: 500px;
}
.sign-up-section .input-box {
    margin: 10px 0;
}

/*contact-form-section*/
.contact-form-section.application-form-section .application-form-box {
    text-align: left;
}
.contact-form-section .address-box {
	padding-left: 20%;
}

@media screen and (max-width: 1200px) {
	.contact-form-section .address-box {
		padding-left: 10%;

	}
}

@media screen and (max-width: 480px) {
	.application-form-section .application-form-box .title {
	    font-size: 16px;
	}
	.contact-form-section .address-box {
		padding-left: 0;
		margin-top: 40px;
	}

}