.textfield{
	border-radius: 0px;
	border: 0px solid var(--redColor);
	border-bottom: 5px solid var(--menuFootMenuBg);
	font-family: var(--formControlFont);
	color: var(--blackColor);
	font-size: 14px;
}
.textfield:focus{
	border-bottom: 5px solid var(--textFldBrder);
	color: var(--menuFootMenuBg);
	font-family: var(--headFont);
	outline: 0px;

}
.textfield::-webkit-input-placeholder
{
	color: var(--menuFootMenuBg);
	font-family: var(--headFont);
}
.textfield_enq{
	height: 50px;
	border-radius: 0px;
	border: 0px solid var(--redColor);
	font-family: var(--formControlFont);
	color: var(--blackColor);
	font-size: 14px;
}
.textfield_enq:focus{
	color: var(--menuFootMenuBg);
	font-family: var(--headFont);
	outline: 0px;

}
.textfield_enq::-webkit-input-placeholder
{
	color: var(--menuFootMenuBg);
	font-family: var(--headFont);
}

.col-md-1 > label,
.col-md-2 > label,
.col-md-3 > label,
.col-md-4 > label,
.col-md-5 > label,
.col-md-6 > label,
.col-md-7 > label,
.col-md-8 > label,
.col-md-9 > label,
.col-md-10 > label,
.col-md-11 > label,
.col-md-12 > label{
	color: var(--darkGrayColor);
	padding-top: 8px;
}

.textfield2{
	border-radius: 0px;
	border: 0px solid var(--redColor);
	border-bottom: 3px solid var(--textFldBrderTwo);
	font-family: var(--formControlFont);
	color: var(--textFldBrderTwo);
	font-size: 14px;
}
.textfield2:focus{
	border-bottom: 3px solid var(--lightPlsGrayColor);
	color: var(--vDarkGrayColor);
	font-family: var(--formControlFont)
	outline: 0px;

}
.textfield2::-webkit-input-placeholder
{
	color: var(--textFldBrderTwo);
	font-family: var(--formControlFont);
}

.btn {
  border-radius: 4px;
  background-color: var(--textFldBrderTwo);
  border: none;
  color: var(--whiteColor);
  text-align: center;
  font-size: 14px;
  padding: 10px;
  width: auto;
  transition: all 0.5s;
  cursor: pointer;
  font-family: Montserrat , arial;
}
.btn-danger {
    color: #ffffff;
    background-color: #FF6100;
    border-color: #973900;
    box-shadow: 0 4px 0 0 #973900;
}
.btn-danger::after {
    background-color: #D35203;
}
.btn-danger:hover,
.btn-danger:focus{
  background-color: #FF9D61;
  outline:0px;
  border: 0px;
}

.btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btn span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.btn:hover span {
  padding-right: 25px;
}

.btn:hover span:after {
  opacity: 1;
  right: 0;
}
