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;
  background: #ffffff;
}

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

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

.top_head_left a i {
  color: #ef1926;
  margin-right: 15px;
}

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

.top_head_mdl img {
  width: 80%;
}

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

.top_head_right a {
  position: relative;
  background: #00adef;
  color: #141414;
  padding: 18px 48px;
  text-transform: uppercase;
  font-weight: bold;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  height: 60px;
  border-radius: 6px;
}
.top_head_right a:hover {
  color: #fff;
}

.top_head_right a::before {
  content: "";
  height: 300px;
  width: 300px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
  background: #ca1c21;
}

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

.head_nav {
  background: #ef1926;
}

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

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

.menu_fixed .navbar-collapse ul li a {
  color: #ffffff;
  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: #ffffff;
  transition: all 0.5s;
}

/* .menu_fixed .navbar-collapse ul li a:hover {
  color: #00adef;
} */

.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:hover,
.head_nav .dropdown-menu li a:hover {
  background-color: #00adef;
  color: #060606 !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: #00adef;
  padding: 5px 10px;
  color: #ffffff !important;
}

/* .slider_area .slick-arrow i:hover{background:#535353;} */
.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: #00adef;
  color: #181818;
}
.slider_area .btn_area a:hover {
  color: #fff;
}

.slider_area .btn_area a:before {
  background: #ef1926;
}

/* .service-btn {
    background: #535353 !important;
}

.service-btn:before {
    background: #000 !important;
} */

.btn_area {
  height: 60px;
}

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

.btn_area a:hover {
  color: #fff;
}

.btn_area a::before {
  content: "";
  height: 300px;
  width: 300px;
  background: #535353;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.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 #092b6a;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.head i:after {
  content: "";
  width: 45%;
  height: 1px;
  border: 1px dotted #092b6a;
  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(13%) sepia(100%) saturate(3862%)
    hue-rotate(350deg) brightness(88%) contrast(86%);
}

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

.head span:before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #ef1926;
  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: #00adef;
  border: 2px solid #181818;
  position: relative;
}

.abt_icon i {
  color: #ffffff;
  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: #00adef;
}

.abt_left .btn_area a:first-child:before {
  background: #ef1926;
}
.abt_left .btn_area a.call-btn {
  background: #ef1926;
}

.abt_left .btn_area a.call-btn:before {
  background: #00adef;
}

.abt_right {
  width: 100%;
  margin-left: 50px;
  background: url(https://iproroofingandmasonry.ca/wp-content/uploads/2024/09/roof-repairs-1.jpg)
    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: #ef1926;
  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%;
  background: #ef1926;
}

.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: #ef1926;
}

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

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

.serv_cont .btn_area {
  margin-top: 15px;
}
.service_area .serv_cont .btn_area a {
  background: #00adef;
}
.service_area .serv_cont .btn_area a:hover {
  color: #181818;
}
.service_area .serv_cont .btn_area a:before {
  background: #ffffff;
}

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

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

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

.gallery_area .head span {
  color: #00adef;
}

.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;
  border-radius: 6px;
}

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

.lightimg_box a .overlay {
  background: url(../images/zoom_img.webp) no-repeat center #00abef48;
  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: #00adef;
  color: #ffffff;
}
.gallery_area .btn_area a:first-child:hover {
  color: #fff;
}

.gallery_area .btn_area a:first-child:before {
  background: #ef1926;
}
.gallery_area.inner-gallery {
  background: #fff;
}
.gallery_area.inner-gallery .head {
  color: #000;
}

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

.process_area .head {
  text-align: center;
}
.entry-header h1 {
  text-align: center;
}

.process_box {
  background: #ef1926;
  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 #00adef;
  color: #181818;
  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: #ef1926;
  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: #ef1926;
}

.footer_area {
  background: #181818;
  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: #00adef;
  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: #9e9e9e;
}

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

.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: #00adef;
}

.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: #3a559f;
  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: #000;
  padding: 30px 0;
}

.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: #ef1926;
  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: #ef1926;
  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: #00adef;
  padding: 20px;
  margin: 70px 0;
}
.form-area h3 {
  font-size: 36px;
  color: #232222;
}

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

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

/* .form-area .foot_address p{
  display: inline-flex;
} */
.form-area .foot_address i {
  padding-right: 10px;
  color: #ef1926;
  font-size: 16px;
}

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

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

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

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

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

.phone-icon {
  position: fixed;
  background-color: #00adef;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  bottom: 80px;
  right: 15px;
  box-shadow: 0 0 5px #555;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.phone-icon i {
  color: #000000;
  font-size: 24px;
}

/*===============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: flex;
    margin: 2px 0;
    font-size: 12px;
  }

  .top_head_right {
    margin-top: 10px;
  }

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

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

  .sticky_menu {
    background: #fff;
    height: auto;
    box-shadow: 0 0.5rem 0.7rem #0000001d;
    transition: 0.5s;
  }
  .sticky_menu .hamburger {
    top: 32px;
  }
  .sticky_menu .mobile-logo {
    display: block;
    width: 300px;
    text-align: center;
    padding-left: 10px;
    transition: 0.5s;
    margin: auto;
  }
  .lightimg_box a {
    height: 200px;
  }
  .top_head_mdl.mobile-logo img {
    width: 60%;
    transition: 0.5s;
  }

  .menu_fixed ul li {
    display: inline;
  }
  .navbar-nav .dropdown-menu {
    position: absolute !important;
  }
  .menu_fixed .navbar-collapse ul li a {
    text-align: left;
  }

  .menu_fixed ul {
    flex-direction: row;
    text-align: center;
    justify-content: center;
  }

  .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;
    display: none;
  }
  .form-area h3 {
    font-size: 32px;
  }

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

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

  /* .sticky_menu {
    position: relative;
  } */
  .abt_area {
    padding-bottom: 20px;
  }
  .menu_fixed .navbar-collapse {
    background: #fff;
  }
  .menu_fixed .navbar-collapse ul li a {
    color: #000;
  }

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

  .sticky_menu {
    background: #fff;
    height: auto;
    box-shadow: 0 0.5rem 0.7rem #0000001d;
    transition: 0.5s;
  }
  .sticky_menu .hamburger {
    top: 32px;
  }
  .sticky_menu .mobile-logo {
    display: block;
    width: 200px;
    text-align: start;
    padding-left: 10px;
    transition: 0.5s;
  }
  .top_head_mdl.mobile-logo img {
    width: 60%;
    transition: 0.5s;
  }

  .hamburger .line {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    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 10px;
  }

  .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 40px;
  }

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

  .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;
  }

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

  .abt_left .btn_area a {
    margin: 0 2px;
    padding: 10px 8px;
  }
  .btn_area a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
  }
  .lightimg_box {
    margin: 7px 0;
  }
  .lightimg_box a {
    height: 140px;
  }

  .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;
  }

  .top_head_mdl img {
    width: 35%;
  }
}

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

.review_box .checked {
  color: #ffbf00;
}

.review_box {
  padding: 15px;
  background: #f1f1f1;
  width: 70%;
  margin: 0 auto 30px;
}

.single_service .btn-primary {
  display: inline-block;
  width: auto;
  height: auto;
}

.review_btn {
  text-align: right;
  width: 72%;
  margin: 0 auto 20px;
}

.reviewtop_sec {
  width: 70%;
  margin: 0 auto 30px;
}

.reviewtop_sec h4 {
  font-size: 14px;
}

.reviewtop_sec .checked {
  color: #d59f06;
  font-size: 24px;
}

.filter-bar button.active,
.filter-bar button:hover {
  cursor: pointer;
  background: #f5f5f5;
  border: 1px solid #a5a5a5;
}

.active .checked {
  font-size: 14px;
}

.reviewtop_sec h3 {
  color: #ff1717;
  margin: 20px 0 30px;
  font-size: 24px;
}

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

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

.glsr-summary-percentages {
  display: none;
}

.glsr-review-author {
  display: none !important;
}
