/*==============================================floating form=========================================*/

.sidebar-contact{
    position: fixed;
    top: 60%;
    left: -350px;
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    /*padding: 40px 20px 40px 20px;*/
    box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
    box-sizing: border-box;
    transition: 0.5s;
    z-index: 999;
    background: url(../img/banner.jpg);
    background-repeat: no-repeat;
    object-fit: cover;
    background-position: center top;
}
.sideback_color
{
    padding: 50px 20px 50px 20px;
    width: 100%;
    height: 1000%;
    background: #0000008f;
}
.formheadingenquiry
{
  color: #444;
  font-size: 27px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}
.sidebar-contact.active{
  left:0;
}
.toggle{
    position: absolute;
    height: 60px;
    width: 170px;
    text-align: center;
    cursor: pointer;
    top: 55px;
    right: -115px;
    background-image: linear-gradient(90deg, #442a75, #442a75);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    color: #FFF;
    font-size: 17px;
    font-weight: 700;
    line-height: 50px;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}
/*.toggle:before{
  content:'\f15b';
  font-family:fontAwesome;
  font-size:18px;
  color:#fff;
}*/
/*.toggle.active:before{
  content:'\f00d';
}*/
@media(max-width:768px)
{
  .group input
  {
	width: 100% !important;
  }
  .sidebar-contact{
    width:100%;
    height:100%;
    left:-100%;
  }
  .sidebar-contact .toggle{
    top:50%;
    /*transform:translateY(-50%);*/
    -webkit-transform: rotate(-90deg);
    transition:0.5s;
    font-size: 15px;
  }
  .sidebar-contact.active .toggle
  {
    top:0;
    right:0;
    transform:translateY(0);
  }
  .scroll{
    width:100%;
    height:100%;
    overflow-y:auto;
  }
  .content{
    padding:50px 50px;
  }
}

.group 			  
{ 
    position: relative;
    width: 47%;
    float: left;
    margin: 0px 15px 15px 4px;
}
.group input 				
{
  font-size: 15px;
  font-weight: 500px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 300px;
  border: none;
  border-bottom: 1px solid #ffffff;
  background: transparent;
  color: #222c4d;
  cursor: pointer;
}
.group input:focus 		{ outline:none; }

/* LABEL ======================================= */
.group label 				 {
  color:#146736; 
  font-size:16px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

/* active state */
.group  input:focus ~ label, input:valid ~ label 	{
  top:-15px;
  font-size:16px;
  color:#790a0a;
  font-weight: 500px;
}

/* BOTTOM BARS ================================= */
.group .bar 	
{   
	position:relative; 
	display:block; width:300px; 
}
.group .bar:before, .bar:after 	{
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  /*background:#5264AE; */
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.group .bar:before {
  left:50%;
}
.group .bar:after {
  right:50%; 
}

/* active state */
.group input:focus ~ .bar:before, input:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.group .highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.group input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
/*==============================================floating form=========================================*/

.button2:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
  }

  .button2 {
    background-color: #04AA6D; /* Green */
    border: none;
    color: white;
    padding: 11px 52px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    border-radius: 10px;
  }
  .form-btn{
    text-align: center;
  }


  @media(max-width: 767px)
  {
    .group
    {
        width:90%;
        float: none;
    }
  }