.slider_img {
            height: 460px;
        }

        /* On screens that are 992px or less, set the background color to blue */
        @media screen and (max-width: 992px) {
            .slider_img {
                background-color: blue;
                height: 100px;

            }
        }

        /* On screens that are 600px or less, set the background color to olive */
        @media screen and (max-width: 600px) {
            .slider_img {
                background-color: olive;
                height: 100px;
            }
        }




.loader-container{
        display:none;
    }
    .loader-ajax{
            display: flex;
        text-align: center;
        vertical-align: middle;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 999;
        background: rgba(255, 255, 255, 0.65);
    }
        #q {
            display: block;
            font-weight: bold;
            margin-bottom: 1em;
        }
        .ui-autocomplete {
            z-index: 100 !important;
        }
        .autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div strong {
  font-weight:bold !important;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}
.container{
    padding-right: 0px !important;
    padding-left: 0px !important;
}


.floating_btn a{
  text-decoration:none;
}
.floating_btn {
  position: fixed;
  bottom: 15px;
  right : 15px;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@media (max-width:767px){
  .floating_btn{
    bottom: 100px;
  }
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 20px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 50px;
  height: 50px;
  font-size:25px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 2.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #ffffff;
  font-size: 13px;
  /* font-weight: 500; */
  letter-spacing: 1px;
  background: #ff0000;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 2px;
  border-radius: 2px;
  padding-bottom: 2px;
}

