body {
  font-family: "Poppins";
  overflow-X: hidden;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

html {
  overflow-X: hidden;
}

.top_head {
  padding: 15px 0;
}

.top_head_left {
  width: 100%;
  margin: auto 0;
}

.top_head_left a {
  color: #505050;
  margin-right: 20px;
}

.top_head_left a i {
  color: #06237f;
}

.top_head_mdl {
  width: 100%;
  margin: auto 0;
  text-align: center;
}

.top_head_right {
  width: 100%;
  margin: auto 0;
  text-align: right;
  display: flex;
  justify-content: end;
}

.top_head_right a {
  position: relative;
  background: #06237f;
  color: #fff;
  padding: 18px 48px;
  text-transform: uppercase;
  font-weight: bold;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  height: 60px;
  border-radius: 6px;
}
.dropdown-item:hover, .dropdown-item:focus{
    background: #ff7f02 !important;
    color: #fff !important;
}

.top_head_right a::before {
  content: "";
  height: 300px;
  width: 300px;
  background: #ff7f02;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: .5s cubic-bezier(.25, .46, .45, .94);
  z-index: -1;
}

.top_head_right a:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.menu_fixed {
  position: relative;
  z-index: 10;
}

.menu_fixed .navbar-collapse {
  background: #06237f;
  justify-content: center;
}

.menu_fixed .navbar-collapse ul li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  transition: all 0.5s;
}

.menu_fixed .navbar-collapse ul li a::before {
  color: transparent;
  content: "";
  left: 50%;
  pointer-events: none;
  position: absolute;
  bottom: 10px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #ff7f02;
  transition: all 0.5s;
}

.menu_fixed .navbar-collapse ul li a:hover {
  color: #ff7f02;
}

.menu_fixed .navbar-collapse ul li a:hover::before {
  width: 50px;
}

.menu_fixed .navbar-collapse .nav-link {
  padding: 20px 30px;
}

.menu_fixed nav {
  padding: 0;
}

.hamburger {
  display: none;
}

.sticky_menu {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.sticky_menu .navbar .container {
  max-width: 100%;
  padding: 0;
}

.sticky_menu.head_nav .dropdown-menu li a,
.head_nav .dropdown-menu li a {
  line-height: 30px;
  font-size: 14px;
  color: #000 !important;
}

.sticky_menu.head_nav .dropdown-menu li a:before,
.head_nav .dropdown-menu li a:before {
  display: none;
}

.slider_area {
  margin-top: -32px;
}

.slide {
  position: relative;
  padding: 230px 0;
}

.slide .slide_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.slide:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.slide p {
  font-size: 18px;
  margin-top: 20px;
  line-height: 28px;
}

.cont_center {
  position: relative;
  z-index: 1;
}

.slide .slide_img img {
  max-width: 100%;
  height: 100%;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
  width: 100%;
  object-fit: cover;
}

.slide .slide_content--headings {
  text-align: center;
}

.slide .slide_content--headings h2 {
  font-size: 66px;
  margin: 0;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.slide .slide_content--headings .animated {
  transition: all 0.5s ease;
}

.slider_area [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
}

.slider_area .slick-arrow {
  border: none;
  background: transparent;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  width: 45px;
  z-index: 1;
}

.slider_area .slick-arrow.slick-next {
  right: 0;
  left: auto;
  transition: ease-in-out 0.3s;
  z-index: 0;
}

.slider_area .slick-arrow i {
  font-size: 35px;
  transition: all 0.3s;
  background: #06237f;
  padding: 5px 10px;
  color: #fff !important;
}

.slider_area .slick-arrow i:hover {
  background: #ff7f02;
}

.slider_area .slick-arrow:before {
  display: none;
}

@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}

@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}

.zoomInImage {
  -webkit-animation-name: zoomInImage;
  animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
  animation-name: zoomOutImage;
}

.slider_area .btn_area {
  margin-top: 30px;
}

.slider_area .btn_area a {
  background: #ff7f02;
}

.slider_area .btn_area a:before {
  background: #06237f;
}
.slider_area .btn_area a.call-btn{
    margin-left: 10px;
}

/* .btn_area {
  height: 60px;
} */

.btn_area a {
  position: relative;
  background: #06237f;
  color: #fff;
  padding: 18px 48px;
  text-transform: uppercase;
  font-weight: bold;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  border-radius: 6px;
}
.slider_area .btn_area a{
    border: 2px solid #fff;
}
.btn_area a.call-btn {
    background: #06237f;
    color: #fff;
    z-index: 1;
}

.btn_area a.call-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: #ff7f02;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: .5s cubic-bezier(.25, .46, .45, .94);
    z-index: -1;
  }

.btn_area a::before {
  content: "";
  height: 300px;
  width: 300px;
  background: #ff7f02;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: .5s cubic-bezier(.25, .46, .45, .94);
  z-index: -1;
}

.btn_area a:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.head {
  font-size: 42px;
  font-weight: bold;
  color: #000;
  margin: 0 0 45px;
}

.head i {
  position: relative;
  position: relative;
  display: block;
  margin-top: 20px;
}

.head i:before {
  content: "";
  width: 45%;
  height: 1px;
  border: 1px dotted #06237f;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.head i:after {
  content: "";
  width: 45%;
  height: 1px;
  border: 1px dotted #06237f;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.head i img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0) saturate(100%) invert(57%) sepia(14%) saturate(6882%) hue-rotate(356deg) brightness(100%) contrast(110%);
}

.head span {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: #ff7f02;
  display: block;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.head span:before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #06237f;
  display: inline-block;
  position: relative;
  top: 2px;
  margin-right: 10px;
}

.abt_area {
  padding: 70px 0;
}

.abt_left {
  width: 100%;
}

.abt_box {
  margin: 15px 0;
  display: flex;
}

.abt_icon {
  width: 100%;
  max-width: 100px;
  height: 100px;
  background: #06237f;
  position: relative;
}

.abt_icon i {
  color: #fff;
  font-size: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.abt_cont {
  margin-left: 20px;
}

.abt_cont h3 {
  color: #000;
  font-size: 18px;
  margin: 0;
  font-weight: bold;
}

.abt_cont p {
  color: #505050;
  text-align: justify;
  line-height: 28px;
  margin: 0;
}

.abt_left .btn_area {
  margin-top: 30px;
}

.abt_left .btn_area a {
  margin-right: 20px;
}

.abt_left .btn_area a:first-child {
  background: #ff7f02;
}

.abt_left .btn_area a:first-child:before {
  background: #06237f;
}

.abt_right {
  width: 100%;
  margin-left: 50px;
  background: url(../images/abt_back.webp) no-repeat center;
  background-size: cover;
  position: relative;
}

.abt_right_btm {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.counter_section {
  text-align: center;
  background: #06237f;
  padding: 60px 0;
  border-top: 10px solid #fff;
  width: 100%;
  margin: auto 0 0 0;
}

.counter_section span {
  color: #fff;
  font-weight: 800;
  font-size: 36px;
}

.counter_section span:after {
  content: "+";
  display: inline-block;
  margin-left: 5px;
}

.counter_section h4 {
  font-weight: bold;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-size: 16px;
}

.abt_right_img {
  height: 350px;
  border-left: 10px solid #fff;
  border-top: 10px solid #fff;
}

.abt_right_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pad_right_0 {
  padding-right: 0;
}

.pad_left_0 {
  padding-left: 0;
}

.service_area {
  padding: 70px 0;
  background: #f2f7ff;
}

.service_area .head {
  text-align: center;
}

.serv_box {
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  border: 1px solid #d6d6d6;
  overflow: hidden;
  margin: 15px 0;
  width: 100%;
}

.serv_img {
  height: 250px;
  overflow: hidden;
}

.serv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.serv_box:hover img {
  transform: scale(1.1);
}

.serv_cont {
  padding: 20px 25px;
  text-align: center;
  background: #fff;
  height: 100%;
}

.serv_cont h3 {
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 5px;
  font-weight: bold;
}

.serv_cont p {
  color: #505050;
  line-height: 28px;
  margin: 0;
}

.serv_cont .btn_area {
  margin-top: 15px;
}

.serv_cont .btn_area a {
  padding: 12px 34px;
}

.gallery_area {
  padding: 70px 0;
  background: #011555;
}

.gallery_area .head {
  text-align: center;
  color: #fff;
}

.gallery_area .head span {
  color: #fff;
}

.gallery_area .head span:before {
  background: #fff;
}

.gallery_area .head i:before,
.gallery_area .head i:after {
  background: #fff;
}

.lightimg_box {
  margin: 15px 0;
  position: relative;
}

.lightimg_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.lightimg_box a {
  position: relative;
  display: block;
  overflow: hidden;
  height: 300px;
  border-radius: 6px;
}

.lightimg_box a .overlay {
  background: url(../images/gallery_zoom.png) no-repeat center #0000005a;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.lightimg_box a:hover .overlay {
  display: block;
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.lightimg_box a:hover img {
  transform: scale(1.15);
}

.gallery_area .btn_area {
  margin-top: 20px;
  text-align: center;
}

.gallery_area .btn_area a:first-child {
  background: #ff7f02;
}

.gallery_area .btn_area a:first-child:before {
  background: #ffffff;
}
.gallery_area .btn_area a:hover{
    color: #000;
}

.process_area {
  padding: 70px 0;
  overflow: hidden;
}

.process_area .head {
  text-align: center;
}

.process_box {
  background: #06237f;
  border-radius: 8px;
  padding: 35px 10px;
  margin: 10px 0;
  transition: all 0.3s;
  width: 100%;
}

.process_box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.process_box h3 {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  margin: 0 0 15px;
  text-align: center;
}

.process_img {
  width: 78px;
  height: 78px;
  background: #fff;
  border-radius: 100%;
  text-align: center;
  position: relative;
  margin: auto;
  border: 3px solid #06237f;
  box-shadow: 0 0 0 3px #fff;
}

.process_img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.process_box p {
  color: #dedede;
  text-align: center;
  font-weight: 400;
  line-height: 24px;
  margin: 15px 0 0;
}

.testimonial_area {
  background: #f2f7ff;
  padding: 70px 0;
}

.testimonial_area .head {
  text-align: center;
}

.test_box {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #d6d6d6;
}

.test_box p {
  padding: 40px 20px;
  color: #505050;
  line-height: 28px;
  margin: 0;
  text-align: justify;
}

.test_slider .item {
  padding: 20px;
}

.test_slider .slick-list {
  margin: 0 -20px;
}

.test_name {
  padding: 20px;
  background: #06237f;
  display: flex;
}

.test_name h3 {
  margin: auto 0;
  padding-left: 20px;
}

.test_name h3 span {
  display: block;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
  margin-bottom: -5px;
}

.test_name h3 i {
  color: #fc9e1a;
  font-size: 16px;
}

.test_slider .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  left: 0;
}

.test_slider .slick-dots li {
  border-color: white;
}

.test_slider .slick-dots li {
  width: 15px;
  height: 15px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin: 10px 3px 0;
  border-radius: 50%;
  background: #b8b8b8;
  color: transparent;
  border: none;
}

.test_slider .slick-dots li button {
  padding: 0;
  width: 15px;
  height: 15px;
  border-radius: 100%;
}

.test_slider .slick-dots li button:before {
  display: none;
}

.test_slider .slick-dots li.slick-active button {
  background: #06237f;
}

.footer_area {
  background: #001453;
  padding: 70px 0;
}

.footer_area h3 {
  font-weight: bold;
  font-size: 22px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 10px;
  color: #fff;
}

.footer_area h3:after {
  content: "";
  width: 80px;
  height: 3px;
  background: #ff7f02;
  position: absolute;
  left: 0;
  bottom: 0;
}

.foot_left p {
  line-height: 28px;
  color: #d2d2d2;
  text-align: justify;
  margin: 0;
}

.foot_menu ul li {
  list-style: none;
  margin: 5px 0;
  position: relative;
  padding-left: 25px;
}

.foot_menu ul li a {
  color: #d2d2d2;
  transition: all 0.3s;
}

.foot_menu ul li a:hover {
  color: #ff7f02;
}

.foot_menu ul li:before {
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #ff7f02;
}

.foot_menu_pad {
  padding-left: 30px;
}

.foot_address p {
  color: #d2d2d2;
  display: flex;
}

.foot_address p i {
  max-width: 35px;
  margin-top: 3px;
  width: 100%;
  color: #ff7f02;
}

.foot_address p span {
  display: block;
}

.foot_address p span a {
  color: #d2d2d2;
  text-decoration: none;
}

.foot_social ul li {
  margin: 10px 0;
  list-style: none;
}

.foot_social ul li i {
  width: 25px;
  height: 25px;
  background: #1365ef;
  color: #fff;
  text-align: center;
  display: inline-block;
  margin: 0 5px 0 0;
  font-size: 14px;
  line-height: 25px;
  border-radius: 100%;
}

.foot_social ul li a span {
  color: #d2d2d2;
  transition: all 0.3s;
  position: relative;
  left: 0;
  font-size: 16px;
}

.foot_social ul li:nth-child(2) a i {
  background: #ff0000;
}

.copy_area {
  background: #00003a;
  padding: 30px 0;
  border-top: 1px solid #333361;
}

.copy_area p {
  margin: 0;
  color: #fff;
}

.copy_right {
  text-align: right;
}





.inner_banner_caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  width: 100%;
  padding: 0 10px;
}

.inner_banner {
  position: relative;
  z-index: 1;
}

.inner_banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.inner_banner:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.inner_banner h1 {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: #fff;
}

.single_service {
  padding: 70px 0;
}

.single_service img {
  float: right;
  width: 40%;
  height: auto;
  margin: 0 0 20px 20px;
}

.single_service p {
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  line-height: 28px;
  margin: 20px 0;
  color: #505050;
}

.single_service p a {
  color: #06237f;
  font-weight: bold;
}

.single_service ul li {
  list-style: none;
  color: #505050;
  margin: 5px 0;
  font-weight: 400;
  padding-left: 20px;
  position: relative;
}

.single_service ul li:before {
  content: "\f00c";
  color: #06237f;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  position: absolute;
  left: 0;
}

.single_service .clearfix {
  display: contents;
}

.single_service ul {
  padding: 0;
}

.wpcf7-form-control-wrap {
  position: relative;
  width: 100%;
}

.schema-how-to-steps {
  padding-left: 0 !important;
}

.singale_service {
  display: inline-block;
  width: 100%;
  padding: 60px 0;
}

.form-control {
  line-height: 2;
  border-radius: 0;
}

.dropdown-menu {
  min-width: 16rem;
}

.navbar-light .navbar-brand img {
  width: 110px;
}

.form-area {
  width: 100%;
  height: auto;
  background: #0047af;
  padding: 20px;
  margin: 70px 0;
}

.form-area .foot_address span {
  color: #000;
  display: block;
}

.form-area .foot_address span a {
  color: #000;
}

.form-area .foot_address p {
  display: flex;
}

.form-area .foot_address i {
  padding-top: 2px;
  padding-right: 10px;
  color: #ff7f02;
}

.form-bg-img {
  height: 100%;
  width: 100%;
  background: #fff;
  padding: 10px;
}

.form-bg-img img {
  height: 100%;
}

.form-area textarea {
  height: 156px;
}

.form-btn {
  position: relative;
  background: #ff7f02;
  color: #fff;
  padding: 18px 48px;
  text-transform: uppercase;
  font-weight: bold;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  border-radius: 6px !important;
}

form {
  padding-top: 20px;
}

form h3 {
  color: #fff;

}


.head_nav .navbar-brand img{
    display: none;
      }
  .sticky_menu .navbar-brand img{
display: block;
width: 72%;
padding-left: 10px;
  }
  .sticky_menu{
    background: #fff;
    box-shadow: 0 0.5rem 0.5rem #00000029;
  }
  .menu_fixed .sticky_menu  .navbar-collapse .nav-link{
    color: #000;
  }
  .menu_fixed .sticky_menu .navbar-collapse{
    background: transparent;
  }





/*===============Responsive Starts===============*/
@media all and (min-width: 800px) {}

@media (min-width:981px) and (max-width:1399px) {
  .foot_menu_pad {
    padding: 0;
  }

  .footer_area h3 {
    font-size: 18px;
  }

  .head {
    font-size: 28px;
  }

  .abt_left .btn_area a {
    margin-right: 5px;
  }
}

@media (min-width:768px) and (max-width:980px) {
  .top_head_left a {
    display: block;
    margin: 2px 0;
    font-size: 12px;
  }
  
  
  .sticky_menu {
    position: fixed;
    background: #fff;
    padding: 10px 0;
    transition: 0.5s;
    box-shadow: 0 0.5rem 0.5rem #00000038;
  }
  .menu_fixed .navbar-collapse .nav-link{
    padding: 20px 18px;
  }
  .navbar{
    background: #06237f;
  }
  .sticky_menu .hamburger{
    top: 28px;
  }
  .head_nav .navbar-brand img{
    display: none;
      }
  .sticky_menu .navbar-brand img{
display: block;
width: 72%;
padding-left: 10px;
  }
  .top_head_mdl{
    width: 160px;
  }
  .top_head_mdl img{
    width: 100%;
  }

  .top_head_right {
    margin-top: 10px;
  }

  .top_head_right a {
    padding: 18px 12px;
  }

  .collapse:not(.show) {
    display: block;
  }

  .menu_fixed ul li {
    display: inline-block;
  }
  .lightimg_box{
    margin: 6px 0;
  }
  .lightimg_box a{
    height: 170px;
  }

  .menu_fixed ul {
    /* display: block; */
    flex-direction: row;
    text-align: center;
    justify-content: center;
  }
  .head-nav

  .menu_fixed .navbar-collapse .nav-link {
    padding: 20px 15px;
  }

  .menu_fixed .dropdown-menu li {
    display: block;
  }

  .slide {
    padding: 100px 0;
  }

  .slide .slide_content--headings h2 {
    font-size: 20px;
  }

  .slide .slide_content--headings {
    padding: 0 40px;
  }

  .btn_area a {
    padding: 10px 20px;
  }

  .head {
    font-size: 22px;
  }

  .abt_icon i {
    font-size: 32px;
  }

  .abt_icon {
    max-width: 70px;
    height: 70px;
  }

  .abt_left .btn_area a {
    margin-right: 5px;
  }

  .abt_right {
    margin-left: 0;
  }

  .foot_menu_pad {
    padding: 0;
  }

  .footer_area h3 {
    margin: 15px 0;
  }
}

@media (max-width:767px) {
  .top_head_left {
    text-align: center;
  }

  .top_head_left a {
    display: block;
    margin: 2px 0;
  }

  .top_head_right {
    justify-content: start;
    margin-top: 10px;
  }

  .sticky_menu {
    position: fixed;
    background: #fff;
    padding: 10px 0;
    transition: 0.5s;
    box-shadow: 0 0.5rem 0.5rem #00000038;
  }
  .sticky_menu .hamburger{
    top: 28px;
  }
  .head_nav .navbar-brand img{
    display: none;
      }
  .sticky_menu .navbar-brand img{
display: block;
width: 72%;
padding-left: 10px;
  }




  .slider_area .slick-arrow{
    top: 35%;
  }
  .slider_area .slick-arrow i{
    font-size: 14px;
    background: #ff7f02;
  }
  .lightimg_box{
    margin: 5px 0;
  }
  .lightimg_box a{
    height: 135px;
  }

  .hamburger {
    background: #ff7f02;
    padding: 10px;
    border: none;
    display: block;
    position: absolute;
    top: -75px;
    right: 12px;
    height: 60px;
    border-radius: 3px;
  }

  .hamburger .line {
    width: 30px;
    height: 3px;
    background-color: #fff;
    display: block;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  #hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }

  #hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }

  #hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
  }

  .menu_fixed .navbar-collapse .nav-link {
    padding: 10px 17px;
  }

  .menu_fixed .navbar-collapse .nav-link:before {
    display: none;
  }

  .slide {
    padding: 100px 0;
  }

  .slide .slide_content--headings h2 {
    font-size: 20px;
  }

  .slide .slide_content--headings {
    padding: 0 20px;
  }

  .btn_area a {
    padding: 10px 17px;
    font-size: 14px;
  }
  .slider_area .btn_area a{
    width: 140px;
  }

  .top_head_right a {
    width: 100%;
    text-align: left;
  }

  .abt_area,
  .service_area,
  .gallery_area,
  .process_area,
  .testimonial_area {
    padding: 40px 0;
  }

  .head span {
    font-size: 16px;
  }

  .head span:before {
    width: 14px;
    height: 14px;
  }

  .head {
    font-size: 20px;
  }

  .single_service .head {
    margin: 0 0 20px;
  }

  .abt_cont h3 {
    font-size: 16px;
  }

  .abt_icon i {
    font-size: 26px;
  }

  .abt_icon {
    max-width: 50px;
    height: 50px;
  }

  .abt_cont p {
    font-size: 14px;
    line-height: 24px;
  }

  .abt_right {
    margin: 0;
    height: 600px;
	  margin-top: 30px;
  }

  .abt_left .btn_area {
    text-align: center;
  }

  .abt_left .btn_area a {
    margin: 0 2px;
    padding: 10px 18px;
  }
	.slider_area .btn_area{
		display: flex;
	}
	.slider_area {
    margin-top: -24px;
}

  .abt_right_img {
    height: 200px;
    border: none;
  }

  .counter_section {
    padding: 30px 0;
    border: none;
  }

  .pad_right_0 {
    padding-right: 12px;
  }

  .pad_left_0 {
    padding-left: 12px;
  }

  .serv_cont {
    padding: 15px;
  }

  .serv_cont p,
  .test_box p {
    font-size: 14px;
    line-height: 24px;
  }

  .serv_cont h3 {
    font-size: 16px;
  }

  .test_box p {
    padding: 15px 20px;
  }

  .footer_area {
    padding: 40px 0;
  }

  .footer_area h3 {
    margin: 15px 0;
  }

  .foot_menu_pad {
    padding: 0;
  }

  .foot_left p {
    font-size: 14px;
    line-height: 22px;
  }

  .foot_menu ul li,
  .foot_address p {
    font-size: 14px;
    line-height: 22px;
  }

  .copy_area {
    text-align: center;
    padding: 15px 0;
  }

  .copy_area p {
    font-size: 14px;
  }

  .copy_right {
    text-align: center;
  }

  .inner_banner h1 {
    font-size: 20px;
  }

  .inner_page img,
  .single_service img {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }

  .inner_banner img {
    height: 200px;
  }

  .single_service p,
  .single_service ul li {
    font-size: 14px;
    line-height: 24px;
  }
}

/*===============Responsive Ends===============*/



.call_float {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 9999;
}
.call_float a i {
    width: 50px;
    height: 50px;
    background: #fcb900;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.5s;
}
