
/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #999999; }
input:-moz-placeholder { color: #999999; }
input::-moz-placeholder { color: #999999; }
input:-ms-input-placeholder { color: #999999; }

textarea::-webkit-input-placeholder { color: #999999; }
textarea:-moz-placeholder { color: #999999; }
textarea::-moz-placeholder { color: #999999; }
textarea:-ms-input-placeholder { color: #999999; }





/*//////////////////////////////////////////////////////////////////
[ Contact 2 ]*/
.bg-contact2 {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.container-contact2 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: rgba(219,21,99,0.8);
  background: -webkit-linear-gradient(45deg, rgba(213,0,125,0.8), rgba(229,57,53,0.8));
  background: -o-linear-gradient(45deg, rgba(213,0,125,0.8), rgba(229,57,53,0.8));
  background: -moz-linear-gradient(45deg, rgba(213,0,125,0.8), rgba(229,57,53,0.8));
  background: linear-gradient(45deg, rgba(213,0,125,0.8), rgba(229,57,53,0.8));
}

.wrap-contact2 {
  width: 790px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 72px 55px 90px 55px;
}


/*------------------------------------------------------------------
[  ]*/

.contact2-form {
  width: 100%;
}

.contact2-form-title {
  display: block;
  font-size: 39px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 90px;
}



/*------------------------------------------------------------------
[  ]*/

.wrap-input2 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #adadad;
  margin-bottom: 35px;
  text-align: left;
}
.wrap-input3 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #E6E8EC;
  margin-bottom: 35px;
  text-align: left;
}

input[type='text'].input2,input[type='email'].input2,input[type='password'].input2 {
	display: block;
	width: 100%;
	box-shadow:none;
	font-size: 15px;
	color: #555555;
	line-height: 1.2;
	border: 0;
	height: 45px;
	margin-bottom: 0;
	padding: 0;
}
input[type='text'].input3,input[type='email'].input3,input[type='password'].input3 {
	display: block;
	width: 100%;
	box-shadow:none;
	font-size: 15px;
	color: #fff;
	line-height: 1.2;
	border: 0;
	height: 45px;
	margin-bottom: 0;
	padding: 0;
	background: transparent;
}
input[type='text'].input2:focus,input[type='email'].input2:focus,input[type='password'].input2:focus,select.wpcf7-select:focus{
	box-shadow:none;
}
input[type='text'].input3:focus,input[type='email'].input3:focus,input[type='password'].input3:focus,select.wpcf7-select:focus{
	box-shadow:none;
	background: transparent;
	color:#fff;
}
.focus-input2 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input3 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input2::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #0047ba;
}
.focus-input3::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: #f9f9f9;
}

.focus-input2::after {
  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 13px;
  color: #081942;
  line-height: 1.2;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.focus-input3::after {
  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 13px;
  color: #fff;
  line-height: 1.2;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

/*---------------------------------------------*/
input.input2 {
  height: 45px;
}

input.input3 {
  height: 45px;
}

input.input2 + .focus-input2::after {
  top: 16px;
  left: 0;
}

input.input3 + .focus-input3::after {
  top: 16px;
  left: 0;
}

textarea.input2 {
  min-height: 115px;
  padding-top: 13px;
  padding-bottom: 13px;
  box-shadow: none;
  border: 0;
  padding:0;
}

textarea.input3 {
  min-height: 115px;
  padding-top: 13px;
  padding-bottom: 13px;
  box-shadow: none;
  border: 0;
  padding:0;
}


textarea.input2:focus{
	box-shadow: none;
}

textarea.input3:focus{
	box-shadow: none;
}

textarea.input2 + .focus-input2::after {
  top: 16px;
  left: 0;
}

.input2:focus + .focus-input2::after {
  top: -13px;
}

.input2:focus + .focus-input2::before {
  width: 100%;
}

.has-val.input2 + .focus-input2::after {
  top: -13px;
}

.has-val.input2 + .focus-input2::before {
  width: 100%;
}

.input3:focus + .focus-input3::after {
  top: -13px;
}

.input3:focus + .focus-input3::before {
  width: 100%;
}

.has-val.input3 + .focus-input3::after {
  top: -13px;
}

.has-val.input3 + .focus-input3::before {
  width: 100%;
}
input[type='submit'].wpcf7-submit{
	background-color: #0047ba !important;
	width: auto;
    padding: 10px 35px;
}
select.wpcf7-select{
	box-shadow: none;
	border: 0;
	font-size: 13px;
    padding: 0;
    color: #081942 !important;
	margin-bottom: 0;
    height: 45px;
}
.wrap-submit{
	margin-top: 50px;
}
/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-contact2 {
    padding: 72px 15px 90px 15px;
  }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}
.login_lost_password{
	text-align:right;
	margin-top: -30px;
}
.login_lost_password a{
	color:#fff;
    font-size: 15px;
}
.button.login_btn{
	margin-top: 35px;
    font-weight: 700;
    padding: 10px 60px;
}
@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/* LANDING PAGE */

.lp-header .col-inner {
  height: 790px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.header-logo-col .icon-box {
  height: 583px;
	width: 583px;
	padding: 0 83px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
  margin-right: -83px;
  margin-left: auto;
  z-index: 10;
	background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 86%, rgba(255,199,44,1) 86%, rgba(255,199,44,1) 100%);
}

.header-logo-col .icon-box .icon-box-img {
	margin: 0 0 0 -10px;
}

.header-form-col .col-inner h2 {
	margin-bottom: 0;
}

.header-form-col .col-inner h2,
.header-form-col .col-inner p strong {
	color: #ffc62c;
	font-weight: 500;
}

.header-form-col .col-inner h2,
.header-form-col p {
	font-size: 42px;
}

.header-form-col p {
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 30px;
}

.header-form-col .wpcf7 {
	max-width: 630px;
}

.header-form-col .wpcf7 form,
.lp-footer p {
	margin-bottom: 0
}

.header-form-col .wpcf7 .wrap-input2 {
	margin-bottom: 25px;
}

.header-form-col .wpcf7 input,
.header-form-col .wpcf7 select,
.header-form-col .wpcf7 input:hover,
.header-form-col .wpcf7 select:hover,
.header-form-col .wpcf7 input:focus,
.header-form-col .wpcf7 select:focus {
	background-color: transparent;
	color: #fff !important;
	font-size: 16px;
}

.header-form-col .wpcf7 select option {
	color: #000 !important;
}

.header-form-col .wpcf7 input + .focus-input2::after,
.header-form-col .wpcf7 select + .focus-input2::after {
	color: #fff;
	font-size: 16px;
}

body .header-form-col .wpcf7 input.has-val + span.focus-input2:after,
body .header-form-col .wpcf7 input:focus + span.focus-input2:after {
	font-size: 13px;
	top: -8px !important;
}

.lp-content h2 {
	font-size: 36px;
	margin-bottom: 50px;
}

.lp-content h2,
.lp-content h3 {
	color: #0047ba;
}

.lp-content h3 {
	text-transform: none;
	font-size: 18px;
	margin-bottom: 5px;
}

.lp-content p {
	font-size: 16px;
	color: #081942;
}

.lp-footer p,
.lp-footer a {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.lp-footer a {
	text-decoration: underline;
}

.lp-footer a:hover,
.lp-footer a:focus {
	color: #ffc62c;
}

@media (max-width: 999px) {

	.lp-header .col-inner {
		height: auto;
	}

	.header-logo-col .icon-box {
		height: 80vw;
		width: 80vw;
		padding: 0;
		padding-bottom: 14%;
		margin: 0 auto;
		background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 86%, rgba(255,199,44,1) 86%, rgba(255,199,44,1) 100%);
	}


}

@media (max-width: 480px) {

	.header-logo-col .icon-box h1 {
		font-size: 32px;
		text-align: center
	}

	.header-form-col .col-inner h2,
	.header-form-col p {
		font-size: 32px;
	}

	.header-form-col p br {
		display: none;
	}

}

@media (min-width: 849px) and (max-width: 999px) {

	.lp-header .col {
		max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
	}

}

@media (min-width: 768px) {

	.lp-header .col-inner {
		padding: 50px !important;
	}

}

@media (min-width: 1000px) and (max-width: 1439px) {

	.lp-header .col {
		max-width: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
	}

	.lp-header .col-inner {
		padding: 100px !important;
	}

	.header-logo-col .col-inner {
		padding-right: 0 !important;
	}

	.header-logo-col .icon-box {
	  height: 464px;
		width: 464px;
		margin-right: -65px;
		padding: 0 65px;
	}

	.header-form-col .col-inner h2,
	.header-form-col p {
		font-size: 32px;
	}

}

@media (min-width: 1440px) {

	.lp-header .col-inner {
		padding: 100px !important;
	}

	.header-form-col .col-inner {
		padding-left: 150px !important;
	}

	.header-logo-col .col-inner {
		padding-right: 0 !important;
	}

}

/* // LANDING PAGE */
