/* @import "../fonts/fonts.css"; */

:root {
  --orangeColor: #fd620f;
  --orangeColorAlt: #fa8c5c;
  --yellowColor: #ffff06;
  --blueColor: #000be3;
  --blueColorAlt: #026cb8;
  --fontJosefinSans: Josefin Sans,sans-serif;
  --fontOpenSans: Open Sans,sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  font-weight: 600!important;
  color: #283a5e;
  font-family: var(--fontJosefinSans) !important;
}

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fontOpenSans) !important;
  background-color: #ffff;
  position: relative;
  -webkit-overflow-scrolling: touch;
  font-size: 1rem;
  font-weight: 400;
  overflow-x: hidden;
}
body.bg_body {
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  z-index: 1;

}
body.bg_body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--orangeColor);
}
body::-webkit-scrollbar-thumb:window-inactive {
  background: var(--orangeColor);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a, a:hover {
  text-decoration: none;
  transition: .3s ease-in-out;
}
p {
  color: #666;
  line-height: 1.8em;
}

.w_5 {width: 5%;}
.w_10 {width: 10%;}
.w_15 {width: 15%;}
.w_20 {width: 20%;}
.w_25 {width: 25%;}
.w_30 {width: 30%;}
.w_35 {width: 35%;}
.w_40 {width: 40%;}
.w_45 {width: 45%;}
.w_50 {width: 50%;}
.w_55 {width: 55%;}
.w_60 {width: 60%;}
.w_65 {width: 65%;}
.w_70 {width: 70%;}
.w_75 {width: 75%;}
.w_80 {width: 80%;}
.w_85 {width: 85%;}
.w_90 {width: 90%;}
.w_95 {width: 95%;}
.w_100 {width: 100%;}


.loaders {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.restaurant-loader {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  padding: 1%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.restaurant-loader .restaurant-loader-inner {
  width: 100%;
  height: 100%;
  animation: restaurant-loader-spin .5s linear infinite;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border: 3px solid transparent;
  border-right-color: var(--orangeColor);
  border-left-color: var(--orangeColor);
  border-radius: 50%;
  content: '';
}
.restaurant-loader:before, .restaurant-loader:after {
  content: '';
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.restaurant-loader:before {
  height: 35%;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: restaurant-loader-pot;
}
.restaurant-loader:after {
  height: 65%;
}

@keyframes restaurant-loader-pot {
  from, 45%, 55%, 65%, 75%, 80%, 85%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: rotate(0);
  }
  45% {
    transform: translate3d(-4%, -13%, 0) rotate(-13deg);
  }
  55% {
    transform: translate3d(1%, -2%, 0) rotate(6deg);
  }
  65% {
    transform: translate3d(-2%, -4%, 0) rotate(-3deg);
  }
  75% {
    transform: translate3d(2%, 3%, 0) rotate(3deg);
  }
  80% {
    transform: translate3d(-2%, 1%, 0) rotate(-2deg);
  }
  to {
    transform: none;
  }
}
@keyframes restaurant-loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

.wow {
  visibility: hidden;
}

.icon-callus {
  position: fixed;
  right: 30px;
  bottom: 40px;
  z-index: 9999;
}
.icon-callus a {
  height: 50px;
  width: 50px;
  display: block;
  margin: 1rem auto;
  background-color: var(--orangeColorAlt);
  padding: 10px;
  border-radius: 50%;
}
.icon-callus a img {
  max-width: 100%;
}

.logo-groupon {
  fill: #53a318;
  width: 123px;
}

/* START => Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: 1s;
}
header.bg-sticky-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgb(0 0 0 / 20%);
}
header.sticky-header {
  transform: translateY(-100%);
}

header .col-lg-3,
header .col-lg-9 {
}
header.sticky-header .col-lg-3 {
}
header.sticky-header .col-lg-9 {
}
.brand-img {
  display: block;
  padding: .5rem;
  height: 150px;
  display: flex;
  align-items: center;
  /* transition: 0.5s; */
}
header.bg-sticky-header .brand-img {
  height: 92px;
}
.brand-img img {
  max-height: 100%;
  max-width: 100%;
}
.menu-header {}
.menu-header nav > ul {
  display: flex;
  align-items: center;
}
.menu-header nav > ul > li {
  display: inline-block;
  position: relative;
  padding: 35px 10px;
}
.main-menu nav ul li:first-child {
  padding-left: 0;
}
.menu-header nav > ul > li > a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #283a5e;
  letter-spacing: 0;
  text-transform: capitalize;
  position: relative;
  font-family: var(--fontJosefinSans);
}
.menu-header nav > ul > li > a::after {
  /* content: ""; */
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--orangeColor);
  transition: 0.6s;
  opacity: 0;
}
.menu-header nav > ul > li > a:hover::after {
  opacity: 1;
  height: 3px;
  bottom: 0;
  width: 100%;
}
.menu-header nav > ul > li > a:hover {
  color: var(--orangeColor);
}

li.has_down ul {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 14rem;
  z-index: 999;
  position: absolute;
  top: 120%;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all .3s ease-in-out,visibility .2s linear;
  -moz-transition: all .3s ease-in-out,visibility .2s linear;
  -o-transition: all .3s ease-in-out,visibility .2s linear;
  transition: all .3s ease-in-out,visibility .2s linear;
  background-color: #fff;
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}
li.has_down:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: 100%;
}
li.has_down li a {
  color: #333;
  display: block;
  padding: 0.6rem;
  font-size: 1rem;
  border-bottom: 1px solid #ddd;
}
li.has_down li:last-child a {
  border-bottom: 0;
}
li.has_down li a:hover {
  background-color: var(--orangeColor);
  color: #fff;
}

.langs a {
  color: #fd620f;
  font-size: 1rem;
}

.toggle-menu {
  display: none;
}
/* START => Header */

/* START => Home Sliders */
.home-banner {
  height: 800px;
  overflow: hidden;
}
.home-banner > .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
}
.home-banner:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1000px;
  height: 900px;
  background: url(../images/hero-shape-1.fcff5e8e.png) 50%/100% no-repeat local;
  z-index: -1;
}
@media screen and (min-width: 1366px) and (max-width: 1919px) {
  .home-banner:before {
    width: 938px;
    height: 875px;
  }
}

.banner-txt {}
.banner-txt h1 {
  font-size: 3rem;
  line-height: 1.3em;
  margin: 0 0 .63em;
  color: #2f333e;
}
.banner-txt p {}

.banner-image {
    background: 50%/100% no-repeat local;
    width: 860px;
    height: 640px;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}
@media screen and (min-width: 1366px) and (max-width: 1919px) {
  .banner-image {
    width: 700px;
    height: 580px;
    right: -100px;
  }
}
/* //END => Home Sliders */

/* START => About Us */
.section-about {
  overflow: hidden;
}
.img-about {
  /* width: calc(50% - 150px); */
}
.sec-title span {
  font-size: 16px;
  font-size: 1rem;
  color: #ed5217;
  text-transform: capitalize;
  display: block;
  margin-top: -.6em;
}
.sec-title strong {
  font-size: 36px;
  font-weight: 700;
  color: #444;
  padding-bottom: 20px;
  margin-bottom: 30px;
  margin-top: 10px;
  position: relative;
}
.sec-title strong:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #ed5217;
  border-radius: 20px;
}
.sec-title.center-title strong:before {
  left: 50%!important;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.btn-more {
  margin-top: 2rem;
  color: #fdf0eb;
  font-weight: 700;
  padding: 13px 38px;
  border-radius: 50px;
  display: inline-block;
  border: none;

  background: -webkit-linear-gradient(left, #ffc600, #ff4200 50%, #ffc600);
  background-size: 300%, 1px;
  background-position: 0;
  transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s
}
.btn-more:active,
.btn-more:focus,
.btn-more:hover {
  background-position: 100% !important;
  color: #fff
}
/* //END => About Us */

/* START => Services */
.section-services {
  background-color: #f8f8f8;
  padding: 6rem 0;
}
.item-service {
  display: block;
  padding: 2rem 0;
  color: #333;
  text-align: center;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 40px 18px 30px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
}
.item-service:hover {
  color: var(--orangeColor);
  box-shadow: 0 2px 10px rgb(0 0 0 / 20%);
}
.item-service .icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.item-service .icon:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 10px solid #fee4da;
  border-radius: 50%;
  z-index: -11;
}
.item-service .icon img {
  max-width: 100%;
  max-height: 100%;
}
.item-service .title {
  margin-top: 1rem;
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

/*************************************************/

.tabs-sectors-services {}
.tabs-sectors-services .nav-tabs {
  border-bottom: 0;
}
.tabs-sectors-services .nav-tabs .nav-item {
  width: calc(100% / 10);
  text-align: center;
}
.tabs-sectors-services .nav-tabs .nav-item a {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.tabs-sectors-services .nav-tabs .nav-item a:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border: 10px solid #fee4da;
  border-radius: 50%;
  transition: border 0.4s;
}
.tabs-sectors-services .nav-tabs .nav-item a.nav-link.active:before {
  border: 10px solid var(--orangeColor);
}
.tabs-sectors-services .nav-tabs .nav-item a img {
  max-width: 100%;
  max-height: 100%;
}
.tabs-sectors-services .tab-content>.tab-pane {
  opacity: 1 !important;
  /* transition: unset; */
  padding: 3rem 2rem;
}
.tabs-sectors-services .tab-content>.tab-pane > .row > div:last-child {
  animation: slide-down 2s ease-out;
}
@keyframes slide-down {
  0% { opacity: 0; transform: translateX(100%); }
  100% { opacity: 1; transform: translateX(0); }
}

.block-sector {
  
}
.block-sector .prices-card {
  background-color: var(--orangeColorAlt);
  padding: 2rem 1rem;
}
.block-sector .prices-card .price {
  color: #fff;
}
.block-sector .prices-card h4 a {
  color: #fff;
}
.block-sector .prices-card p {
  color: #fff;
}
.block-sector .img-car-sector > div {
  position: relative;
}
.sector-dot {
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #fee4da;
  border-radius: 50%;
}
.sector-dot.sector-1 { top: 50%; left: 20%; }
.sector-dot.sector-2 { top: 45%; left: 10%; }
.sector-dot.sector-3 { top: 50%; left: 45%; }
.sector-dot.sector-4 { top: 15%; left: 45%; }
.sector-dot.sector-5 { top: 30%; left: 80%; }
.sector-dot.sector-6 { top: 20%; left: 90%; }
.sector-dot.sector-7 { top: 65%; left: 90%; }
.sector-dot.sector-8 { top: 75%; left: 70%; }
.sector-dot.sector-9 { top: 30%; left: 72%; }
.sector-dot.sector-10 { top: 70%; left: 74%; }
.sector-dot:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: var(--orangeColor);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite
}
@-webkit-keyframes spineer {
  0% {
    -webkit-box-shadow: 0 0 0 0 #fff
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px hsla(0, 0%, 100%, 0)
  }
  to {
    -webkit-box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0)
  }
}
@keyframes spineer {
  0% {
    box-shadow: 0 0 0 0 #fff
  }
  70% {
    box-shadow: 0 0 0 20px hsla(0, 0%, 100%, 0)
  }
  to {
    box-shadow: 0 0 0 0 rgbargba(255, 255, 255, 0)
  }
}
.block-sector .img-car-sector img {
  width: 100%;
}
/* //END => Services */

/* START => Our Awesome Team */
.sections-team {
  padding: 6rem 0;
}
.item-team {
  position: relative;
  overflow: hidden;
  transition: .5s;
  z-index: 1;
}
.item-team::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: rgba(253, 98, 15, 0.9);
  transition: .5s;
  z-index: 1;
}
.item-team:hover::before {
  height: 100%;
}
.item-team .img-team img {
  transition: 1s;
}
.item-team:hover .img-team img {
  transform: scale(1.2);
}
.item-team .social-team {
  position: absolute;
  left: 5px;
  top: 5px;
  transition: 0.4s;
  transform: rotateY(90deg);
  transform-origin: bottom center 0;
  z-index: 2;
}
.item-team:hover .social-team {
  transform: rotateY(0deg);
  transform-origin: bottom center 0;
}
.item-team .social-team a {
  display: block;
}
.item-team .social-team a i {
  display: block;
  background-color: #fff;
  padding: .6rem .7rem;
  margin-bottom: .3rem;
  color: #333;
  transition: 0.4s;
}
.item-team .social-team a:hover i.fa-facebook-f {
  background-color: #3b5998
}
.item-team .social-team a:hover i.fa-twitter {
  background-color: #55acee
}
.item-team .social-team a:hover i.fa-instagram {
  background-color: #e95950
}
.item-team .social-team a:hover i.fa-whatsapp {
  background-color: #4dc247
}
.item-team .social-team a:hover i.fa-linkedin-in {
  background-color: #007bb5
}
.item-team .social-team a:hover i.fa-youtube {
  background-color: #e95950
}
.item-team .social-team a:hover i.fa-telegram-plane {
  background-color: #0088cc;
}
.item-team .social-team a:hover i.fa-pinterest-p {
  background-color: #cb2027;
}
.item-team .social-team a:hover i {
  color: #fff;
}
.item-team .title-team {
  text-align: center;
  background: #fff none repeat scroll 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  margin: 0 auto;
  width: 80%;
  transition: all .35s ease;
  opacity: 0;
  box-shadow: 0 0.75rem 1.5rem rgb(18 38 63 / 3%);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateX(90deg);
  transform-origin: bottom center 0;
  z-index: 2;
}
.item-team:hover .title-team {
  opacity: 1;
  bottom: 0;
  -webkit-transform: rotatex(0deg);
  transform: rotatex(0deg);
}
.item-team:hover .title-team strong {
  font-size: 20px;
  margin: 15px 0;
}
/* //END => Our Awesome Team */

/* START => Our Blogs */
.sections-blog {
  background-color: #f8f8f8;
  padding: 6rem 0;
}
.item-blog {
  margin-bottom: 1.8rem;
}
.item-blog .img-blog {}
.blog-details .title-blog,
.item-blog .title-blog {
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.4em;
  margin: 0 0 .7em;
  font-weight: 600;
  font-family: Open Sans,sans-serif;
  color: #283a5e;
}
.item-blog .title-blog:hover {
  color: var(--orangeColor);
}
.item-blog .blog-inf {
  padding: 35px 30px;
  box-shadow: 0 5px 9px 1px rgb(0 0 0 / 6%);
}
.blog-details .blog-footer span,
.item-blog .blog-footer span {
  font-size: .875rem;
}
.blog-details .blog-footer .userby,
.item-blog .blog-footer .userby {
  padding-right: .5rem;
}
.blog-details .blog-footer .userby img,
.item-blog .userby img {
  max-height: 35px;
  padding-right: .5rem;
}
.blog-details .date-blog,
.item-blog .date-blog {
  border-left: 1px solid #aaa;
  padding-left: .5rem;
}

.author {
  margin: auto;
  margin-top: 3rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-radius: 6px;
  max-width: 80%;
}
.author-img {
  height: 100px;
}
.author-img img {
  max-height: 100%;
  max-width: 100%;
}
.author .author-txt {
  padding: 0 2rem;
}
.author-socials {
  margin-top: 1rem;
}
.author-socials li {
  margin: auto .5rem
}
.author-socials a {
  color: #333;
}
.author-socials a:hover {
  color: var(--orangeColor);
}
/* //END => Our Blogs */

/* START => Book An Appointment */
.section-bookappointment {
  padding: 6rem 0;
  overflow: hidden;
}
.section-bookappointment strong.title {
  font-size: 36px;
  font-weight: 600;
  color: #444;
  margin-bottom: 50px;
  margin-top: 0;
}
form input,
form select,
form textarea {
  height: 50px;
  padding: 6px 15px;
  border: 2px solid #454545;
  border-radius: 0;
  box-shadow: none;
  background: hsla(0,0%,80%,.2);
  border: 1px solid hsla(0,0%,80%,.2);
  color: #666;
  width: 100%;
}
form textarea {
  height: 100px;
  padding: 15px;
}
/* //END => Book An Appointment */

/* START => Our Partners */
.slides-partner.owl-carousel .owl-item .item {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slides-partner.owl-carousel .owl-item .item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
}
.slides-partner.owl-theme .owl-nav {}
.slides-partner.owl-theme .owl-nav [class*=owl-] {
  all: unset;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  opacity: .6;
  cursor: pointer;
}
.slides-partner.owl-theme .owl-nav [class*=owl-]:hover {
  opacity: 1;
  background-color: var(--mainColor);
}
.slides-partner.owl-theme .owl-nav button.owl-prev {left: 0;}
.slides-partner.owl-theme .owl-nav button.owl-next {right: 0;}
/* //END => Our Partners */

/* START => Footer */
footer {
  background: #fdf3ed;
}
.footer {
  background: #fdf3ed;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.logo-footer {
  margin-bottom: 1rem;
}
.logo-footer img {
  max-height: 130px;
}
.footer p {
  color: #777;
  margin-bottom: 0;
}
.footer .social {
  margin-top: 2rem;
}
.footer .social li {
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
}
.footer .social li a {
  color: #444;
}
.footer .social li a:hover {
  color: var(--orangeColor);
}

.footer h3 {
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 15px;
  margin-bottom: 50px;
  position: relative;
  font-size: 25px;
  color: #444;
  font-family: Josefin Sans,sans-serif;
}
.footer h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #ed5217;
  border-radius: 20px;
}

.post {
  margin-bottom: 1.5rem;
}
.post .img-holder {
  max-width: 40%;
  flex: 0 0 40%;
}
.post .img-holder a {
  display: block;
  width: 104px;
}
.post .img-holder a .img {
  max-width: 100%;
  max-height: 100%;
}
.post .details {
  max-width: 60%;
  flex: 0 0 60%;
  padding-left: .5rem;
}
.post .details a {
  color: #333;
  font-size: 14px;
  display: block;
}
.post .details span {
  display: block;
  color: var(--orangeColor);
  margin-top: .5rem;
}

.adress-footer ul li {
  color: #666;
  margin-bottom: 15px;
}
.adress-footer .ad span {
  color: #ed5217;
}

.service-footer ul li {
  color: #666;
  padding-left: 20px;
  padding-bottom: 10px;
  position: relative;
}
.service-footer ul li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  top: 8px;
  background: #ed5217;
  border-radius: 50%;
}
.service-footer ul li a {
  color: #666;
}
footer a:hover {
  color: var(--orangeColor) !important;
}
.footer-bottom {
  padding-top: 4rem;
  border-top: 1px solid #feddd3;
  background: #fdf3ed;
  padding: 30px 0;
}

/* //END => Footer */

/***************************************************************/
/***************************************************************/
/***************************************************************/
/***************************************************************/
/***************************************************************/
/***************************************************************/
/***************************************************************/

/* START => Breadcrumb */
.breadcrumb-pages {
  padding: 5rem 0 5rem 0;
  background-color: var(--orangeColorAlt);
  background: 50%/cover no-repeat local;
  text-align: center;
  width: 100%;
  height: 300px;
  /* background: rgb(230,126,34);
  background: -moz-linear-gradient(87deg, rgba(230,126,34,1) 10%, rgba(44,62,80,1) 100%);
  background: -webkit-linear-gradient(87deg, rgba(230,126,34,1) 10%, rgba(44,62,80,1) 100%);
  background: linear-gradient(87deg, rgba(230,126,34,1) 10%, rgba(44,62,80,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e67e22",endColorstr="#2c3e50",GradientType=1); */
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumb-pages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(62,62,62,.7);
  z-index: -1;
}
.breadcrumb-pages strong {
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-family: var(--fontJosefinSans);
}
.breadcrumb-pages ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumb-pages ul li {
  color: var(--orangeColor);
  margin: auto .2rem;
}
.breadcrumb-pages ul li span {
  padding: 0 1rem;
}
.breadcrumb-pages ul li a {
  color: #fff;
}
.breadcrumb-pages ul li a:hover {
  color: var(--orangeColor);
}
/* START => Breadcrumb */

/* Header Pages */
.header-pages {
  padding-top: 0;
  position: relative;
  background-color: #fdf3ed;
}
.header-pages > div > .row {
  align-items: center;
}
.header-pages .brand-img {
  padding: 0rem;
  padding-bottom: .5rem;
  height: 92px;
}
/* // Header Pages */

/* START => Section Counter */
.section-counter .sec-title {}
.section-counter .sec-title strong {
  color: #fff;
}
.section-counter {
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.item-counter {
  padding: 1rem;
  text-align: center;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  margin: auto;
}
.item-counter .icon-img {
}
.item-counter .icon-img img {
}
.item-counter .numscroller {
  font-size: 30px;
  font-weight: 600;
  color: #444;
  line-height: 10px;
  padding-bottom: 10px;
  position: relative;
  margin: 8px 0 10px;
}
.item-counter .numscroller:before {
  content: "";
  position: absolute;
  left: 39%;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #ed5217;
  border-radius: 20px;
}
.item-counter .title {
  font-size: 18px;
  font-weight: 700;
  color: #666;
  padding-top: 0;
  font-family: Josefin Sans,sans-serif;
}
.section-counter > .container > .row > div:first-child .item-counter{
  background: #e3f3fc;
}
.section-counter > .container > .row > div:nth-child(2) .item-counter {
  background: #fdf4e3;
}
.section-counter > .container > .row > div:nth-child(3) .item-counter {
  background: #f1e7fd;
}
.section-counter > .container > .row > div:nth-child(4) .item-counter {
  background: #f9e8e2;
}
.item-counter .fi {
  color: #999;
}
@font-face {
  font-family: Flaticon;
  src: url(/static/media/Flaticon.614fcab0.eot);
  src: url(/static/media/Flaticon.614fcab0.eot?#iefix)
      format("embedded-opentype"), url(../fonts/flaticon.176ee5b1.woff)
      format("woff"), url(/static/media/Flaticon.7a42b345.ttf) format("truetype"),
      url(/static/media/Flaticon.d6e74f6d.svg#Flaticon) format("svg");
  font-weight: 400;
  font-style: normal
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: Flaticon;
    src: url(/static/media/Flaticon.d6e74f6d.svg#Flaticon) format("svg")
  }
}
[class*=" flaticon-"]:after,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class^=flaticon-]:before {
  font-family: Flaticon;
  font-size: 40px;
  font-style: normal
}
.flaticon-clock:before {
  content: "\f100"
}
.flaticon-alarm-clock:before {
  content: "\f101"
}
.flaticon-hand:before {
  content: "\f102"
}
.flaticon-piggy-bank:before {
  content: "\f103"
}
.flaticon-money-bag:before {
  content: "\f104"
}
.flaticon-worker:before {
  content: "\f105"
}
.flaticon-employee:before {
  content: "\f106"
}
.flaticon-business-and-finance:before {
  content: "\f107"
}
.flaticon-car:before {
  content: "\f108"
}
.flaticon-writer:before {
  content: "\f109"
}
.flaticon-play-button:before {
  content: "\f10a"
}
.flaticon-turbo:before {
  content: "\f10b"
}
.flaticon-tyre:before {
  content: "\f10c"
}
.flaticon-car-1:before {
  content: "\f10d"
}
.flaticon-car-2:before {
  content: "\f10e"
}
.flaticon-car-repair:before {
  content: "\f10f"
}
.flaticon-battery:before {
  content: "\f110"
}
.flaticon-electricity:before {
  content: "\f111"
}
.flaticon-message:before {
  content: "\f112"
}
.flaticon-call:before {
  content: "\f113"
}
.flaticon-placeholder:before {
  content: "\f114"
}
.item-counter .fi:before {
  margin: 0;
  font-size: 50px;
}
/* START => Section Counter */

/* START => Service Details */
.services-categories {
  background-color: #f8f8f8;
  padding: 45px 35px;
}
.services-categories .title {
  position: relative;
  display: inline-block;
  margin-top: 0;
}
.services-categories .title:before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: 12px;
  width: 50px;
  height: 2px;
  background: #ed5217;
  border-radius: 50px;
}
.services-categories ul {}
.services-categories ul li {}
.services-categories ul li a {
  color: #666;
  display: block;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.services-categories ul li a:hover {
  color: #ed5217;
}

.sec-adons {
  margin-top: 30px;
  position: relative;
}
.adons-img {
  position: relative;
}
.adons-img img {
  width: 100%;
}
.adons-content {
  position: absolute;
  left: 10%;
  top: 0;
}
.adons-content h3 {
  font-size: 30px;
  color: #555;
  font-weight: 400;
  line-height: 55px;
  margin-top: 30px;
}
.adons-content h3 span {
  font-size: 60px;
  padding: 0 10px;
  font-weight: 700;
  color: #ed5217;
}
.adons-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #444;
  margin-bottom: 0;
  margin-top: 0;
}

.service-icon,
.service-icon-2,
.service-icon-3,
.service-icon-4,
.service-icon-5,
.service-icon-6 {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #ed5217;
  border-radius: 50%;
  color: #fff;
  margin-bottom: 23px;
  position: relative;
  z-index: 11;
}
.service-icon-2 {
  background: #19d78b;
}
.service-icon-3 {
  background: #b471ff;
}
.service-icon-2:before,
.service-icon-3:before,
.service-icon-4:before,
.service-icon-5:before,
.service-icon-6:before,
.service-icon:before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  width: 100px;
  height: 100px;
  border: 10px solid #fee4da;
  border-radius: 50%;
  z-index: -11;
}
.service-icon-2:before {
  border: 10px solid #d1ffec;
}
.service-icon-3:before {
  border: 10px solid #efe0ff;
}
.howwork .item-service .title {
  margin-top: 1rem;
  display: block;
  font-size: 24px;
  font-weight: 600;
}
/* //END => Service Details */

/* START => Location */
.img-location {
  height: 260px;
  overflow: hidden;
}
.img-location img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* //END => Location */

/* START => Reviews */
.boxes-clients-happy {
}
.box-client {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 1rem;
}
.box-client .date {
  position: absolute;
  top: 20px;
  right: 20px;
}
.fa-star.active {
  color: var(--orangeColor);
}
/* //END => Reviews */

/* START => Page Employment */
.item-career {
  box-shadow: 0 2px 10px rgba(54, 113, 184, 0.3);
  padding: 1rem;
}
.item-career a {
  color: #333;
  font-weight: 500;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.item-career a:hover {
  color: var(--orangeColor);
}
.item-career p {
  color: #333;
  height: 110px;
  overflow: hidden;
}
.item-career .btns {
  display: flex;
  justify-content: space-between;
}
.item-career .btns a {
  display: block;
  padding: .7rem;
  text-align: center;
  border: 1px solid var(--orangeColor);
  color: #333;
  border-radius: 5px;
  max-width: 45%;
  flex: 0 0 45%;
}
.item-career .btns a:hover {
  background-color: var(--orangeColor);
  color: #fff;
}

.item-career .btns a.btn-submit {
  background-color: var(--blueColorAlt);
  color: #fff;
} 
.item-career .btns a.btn-submit:hover {
  background-color: transparent;
  color: var(--secondColor);
}

.modal-carrer-submit form textarea.form-control {
  height: 150px;
  resize: none;
}
.modal-carrer-submit .form-control {
  height: calc(3.5rem + 2px);
  padding: 1rem .75rem;
}

.modal-carrer a {
  color: var(--orangeColor);
  font-weight: 500;
}
.modal-carrer p {
  color: var(--orangeColorAlt);
}
/* START => Page Employment */

/* START => Community */
.img-community {
  height: 150px;
  overflow: hidden;
}
.img-community img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
}
/* //END => Community */

/* START =>  */
.maps {
  line-height: 0;
}
.maps iframe {
  width: 100% !important;
  height: 300px !important;
}

.call-info {}
.call-info .item {
  background-color: #f8f8f8;
  padding: 1rem;
  display: flex;
  align-items: center;
  height: 120px;
}
.call-info .item .icon {
}
.call-info .item .icon i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #ffece5;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  color: #ed5217;
}
.call-info .item .txt {
  padding-left: .5rem;
}
.call-info .item .txt strong {
  font-size: 20px;
  font-weight: 600;
  color: #151a30;
}
.call-info .item .txt p {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0;
}
/* //END =>  */

/* START =>  */
/* //END =>  */

/* START =>  */
/* //END =>  */

