/* 
  Photoshop does not apply line height to the first row, which CSS does. This creates all kinds of havock. 
  To calculate the correct offset for the first line we need the font-size and the lineheight, i.e:
  
  @include line-height(22,30);
  
  in Photoshop points/px (but with no unit)
*/
/*

This version is much more elegant since it makes a good use of both min and max functions from Sass.

Literally means keep the minimum between $max and the maximum between $number and $min.

HOWTOUSE : 
            $min_width: 320px; // What is the min width responsive screen
            $max_width: 1200px; // What is the max width responsive screen
            $min_font: 15px; 
            $max_font: 24px;
            @include smartFont($min_width, $max_width, $min_font, $max_font);

*/
html {
  scroll-behavior: smooth;
  font-size: 10px; }

.bg-img-fit {
  background-repeat: no-repeat !important;
  background-size: cover !important; }

.relative {
  position: relative; }

.color-primary, .primary-title-bold {
  color: #ffc2ba; }

.color-white {
  color: #fff; }

.color-grey {
  color: #f9f9f9; }

.color-black {
  color: #000000; }

.fw-medium {
  font-weight: 500; }

.fw-bold, .primary-title-bold {
  font-weight: 700; }

.bg-primary {
  background-color: #ffc2ba; }

.bg-grey {
  background-color: #f9f9f9; }

.bg-white {
  background-color: #fff; }

.list-style-none {
  list-style: none; }

.bold-italic {
  font-weight: 700;
  font-style: italic; }

.no-gutter {
  padding: 0; }

.page-featured-banner {
  min-height: 38.3rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center; }
  .page-featured-banner .container {
    display: none; }

.page-id-12 #footer, .page-id-72 #footer {
  padding-top: 0;
  border: 0; }

.page-id-12 .footer-map, .page-id-12 .footer-inner, .page-id-72 .footer-map, .page-id-72 .footer-inner {
  display: none; }

.blog .page-header,
.single-post .page-header,
.category .page-header,
.archive .page-header {
  padding-bottom: 0px;
  margin: 0;
  border-bottom: none; }

@media (max-width: 991px) {
  .page-featured-banner {
    min-height: 100%; } }

.sr-l {
  display: block; }

.sr-s {
  display: none; }

@media (max-width: 991px) {
  .sr-l {
    display: none; }
  .sr-s {
    display: block; } }

.su-wrap {
  list-style: none;
  margin: 0;
  padding: 0; }

.su-icon {
  position: relative; }
  .su-icon::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 0.8rem;
    font-size: 1.8rem;
    position: relative;
    top: 50%; }

.su-icon--arrows::before {
  content: '\f0da' !important; }

.su-icon--yellow::before {
  color: yellow; }

*:focus, *:active, *:visited {
  outline: none !important; }

/* Spacing
**********/
.mg0 {
  margin: 0px; }

.mgt0 {
  margin-top: 0px; }

.mgb0 {
  margin-bottom: 0px; }

.mgv0 {
  margin-top: 0px;
  margin-bottom: 0px; }

.mgh0 {
  margin-left: 0px;
  margin-right: 0px; }

.mg10 {
  margin: 10px; }

.mgt10 {
  margin-top: 10px; }

.mgb10 {
  margin-bottom: 10px; }

.mgv10 {
  margin-top: 10px;
  margin-bottom: 10px; }

.mgh10 {
  margin-left: 10px;
  margin-right: 10px; }

.mg15 {
  margin: 15px; }

.mgt15 {
  margin-top: 15px; }

.mgb15 {
  margin-bottom: 15px; }

.mgv15 {
  margin-top: 15px;
  margin-bottom: 15px; }

.mgh15 {
  margin-left: 15px;
  margin-right: 15px; }

.mg20 {
  margin: 20px; }

.mgt20 {
  margin-top: 20px; }

.mgb20 {
  margin-bottom: 20px; }

.mgv20 {
  margin-top: 20px;
  margin-bottom: 20px; }

.mgh20 {
  margin-left: 20px;
  margin-right: 20px; }

.mg25 {
  margin: 25px; }

.mgt25 {
  margin-top: 25px; }

.mgb25 {
  margin-bottom: 25px; }

.mgv25 {
  margin-top: 25px;
  margin-bottom: 25px; }

.mgh25 {
  margin-left: 25px;
  margin-right: 25px; }

.mg30 {
  margin: 30px; }

.mgt30 {
  margin-top: 30px; }

.mgb30 {
  margin-bottom: 30px; }

.mgv30 {
  margin-top: 30px;
  margin-bottom: 30px; }

.mgh30 {
  margin-left: 30px;
  margin-right: 30px; }

.mg35 {
  margin: 35px; }

.mgt35 {
  margin-top: 35px; }

.mgb35 {
  margin-bottom: 35px; }

.mgv35 {
  margin-top: 35px;
  margin-bottom: 35px; }

.mgh35 {
  margin-left: 35px;
  margin-right: 35px; }

.mg40 {
  margin: 40px; }

.mgt40 {
  margin-top: 40px; }

.mgb40 {
  margin-bottom: 40px; }

.mgv40 {
  margin-top: 40px;
  margin-bottom: 40px; }

.mgh40 {
  margin-left: 40px;
  margin-right: 40px; }

.mg45 {
  margin: 45px; }

.mgt45 {
  margin-top: 45px; }

.mgb45 {
  margin-bottom: 45px; }

.mgv45 {
  margin-top: 45px;
  margin-bottom: 45px; }

.mgh45 {
  margin-left: 45px;
  margin-right: 45px; }

.mg50 {
  margin: 50px; }

.mgt50 {
  margin-top: 50px; }

.mgb50 {
  margin-bottom: 50px; }

.mgv50 {
  margin-top: 50px;
  margin-bottom: 50px; }

.mgh50 {
  margin-left: 50px;
  margin-right: 50px; }

.mg55 {
  margin: 55px; }

.mgt55 {
  margin-top: 55px; }

.mgb55 {
  margin-bottom: 55px; }

.mgv55 {
  margin-top: 55px;
  margin-bottom: 55px; }

.mgh55 {
  margin-left: 55px;
  margin-right: 55px; }

.mg60 {
  margin: 60px; }

.mgt60 {
  margin-top: 60px; }

.mgb60 {
  margin-bottom: 60px; }

.mgv60 {
  margin-top: 60px;
  margin-bottom: 60px; }

.mgh60 {
  margin-left: 60px;
  margin-right: 60px; }

.mg65 {
  margin: 65px; }

.mgt65 {
  margin-top: 65px; }

.mgb65 {
  margin-bottom: 65px; }

.mgv65 {
  margin-top: 65px;
  margin-bottom: 65px; }

.mgh65 {
  margin-left: 65px;
  margin-right: 65px; }

.mg70 {
  margin: 70px; }

.mgt70 {
  margin-top: 70px; }

.mgb70 {
  margin-bottom: 70px; }

.mgv70 {
  margin-top: 70px;
  margin-bottom: 70px; }

.mgh70 {
  margin-left: 70px;
  margin-right: 70px; }

.mg75 {
  margin: 75px; }

.mgt75 {
  margin-top: 75px; }

.mgb75 {
  margin-bottom: 75px; }

.mgv75 {
  margin-top: 75px;
  margin-bottom: 75px; }

.mgh75 {
  margin-left: 75px;
  margin-right: 75px; }

.mg80 {
  margin: 80px; }

.mgt80 {
  margin-top: 80px; }

.mgb80 {
  margin-bottom: 80px; }

.mgv80 {
  margin-top: 80px;
  margin-bottom: 80px; }

.mgh80 {
  margin-left: 80px;
  margin-right: 80px; }

.mg85 {
  margin: 85px; }

.mgt85 {
  margin-top: 85px; }

.mgb85 {
  margin-bottom: 85px; }

.mgv85 {
  margin-top: 85px;
  margin-bottom: 85px; }

.mgh85 {
  margin-left: 85px;
  margin-right: 85px; }

.mg90 {
  margin: 90px; }

.mgt90 {
  margin-top: 90px; }

.mgb90 {
  margin-bottom: 90px; }

.mgv90 {
  margin-top: 90px;
  margin-bottom: 90px; }

.mgh90 {
  margin-left: 90px;
  margin-right: 90px; }

.mg95 {
  margin: 95px; }

.mgt95 {
  margin-top: 95px; }

.mgb95 {
  margin-bottom: 95px; }

.mgv95 {
  margin-top: 95px;
  margin-bottom: 95px; }

.mgh95 {
  margin-left: 95px;
  margin-right: 95px; }

.mg100 {
  margin: 100px; }

.mgt100 {
  margin-top: 100px; }

.mgb100 {
  margin-bottom: 100px; }

.mgv100 {
  margin-top: 100px;
  margin-bottom: 100px; }

.mgh100 {
  margin-left: 100px;
  margin-right: 100px; }

.p0 {
  padding: 0px; }

.pt0 {
  padding-top: 0px; }

.pb0 {
  padding-bottom: 0px; }

.pv0 {
  padding-top: 0px;
  padding-bottom: 0px; }

.ph0 {
  padding-left: 0px;
  padding-right: 0px; }

.p10 {
  padding: 10px; }

.pt10 {
  padding-top: 10px; }

.pb10 {
  padding-bottom: 10px; }

.pv10 {
  padding-top: 10px;
  padding-bottom: 10px; }

.ph10 {
  padding-left: 10px;
  padding-right: 10px; }

.p15 {
  padding: 15px; }

.pt15 {
  padding-top: 15px; }

.pb15 {
  padding-bottom: 15px; }

.pv15 {
  padding-top: 15px;
  padding-bottom: 15px; }

.ph15 {
  padding-left: 15px;
  padding-right: 15px; }

.p20 {
  padding: 20px; }

.pt20 {
  padding-top: 20px; }

.pb20 {
  padding-bottom: 20px; }

.pv20 {
  padding-top: 20px;
  padding-bottom: 20px; }

.ph20 {
  padding-left: 20px;
  padding-right: 20px; }

.p25 {
  padding: 25px; }

.pt25 {
  padding-top: 25px; }

.pb25 {
  padding-bottom: 25px; }

.pv25 {
  padding-top: 25px;
  padding-bottom: 25px; }

.ph25 {
  padding-left: 25px;
  padding-right: 25px; }

.p30 {
  padding: 30px; }

.pt30 {
  padding-top: 30px; }

.pb30 {
  padding-bottom: 30px; }

.pv30 {
  padding-top: 30px;
  padding-bottom: 30px; }

.ph30 {
  padding-left: 30px;
  padding-right: 30px; }

.p35 {
  padding: 35px; }

.pt35 {
  padding-top: 35px; }

.pb35 {
  padding-bottom: 35px; }

.pv35 {
  padding-top: 35px;
  padding-bottom: 35px; }

.ph35 {
  padding-left: 35px;
  padding-right: 35px; }

.p40 {
  padding: 40px; }

.pt40 {
  padding-top: 40px; }

.pb40 {
  padding-bottom: 40px; }

.pv40 {
  padding-top: 40px;
  padding-bottom: 40px; }

.ph40 {
  padding-left: 40px;
  padding-right: 40px; }

.p45 {
  padding: 45px; }

.pt45 {
  padding-top: 45px; }

.pb45 {
  padding-bottom: 45px; }

.pv45 {
  padding-top: 45px;
  padding-bottom: 45px; }

.ph45 {
  padding-left: 45px;
  padding-right: 45px; }

.p50 {
  padding: 50px; }

.pt50 {
  padding-top: 50px; }

.pb50 {
  padding-bottom: 50px; }

.pv50 {
  padding-top: 50px;
  padding-bottom: 50px; }

.ph50 {
  padding-left: 50px;
  padding-right: 50px; }

.p55 {
  padding: 55px; }

.pt55 {
  padding-top: 55px; }

.pb55 {
  padding-bottom: 55px; }

.pv55 {
  padding-top: 55px;
  padding-bottom: 55px; }

.ph55 {
  padding-left: 55px;
  padding-right: 55px; }

.p60 {
  padding: 60px; }

.pt60 {
  padding-top: 60px; }

.pb60 {
  padding-bottom: 60px; }

.pv60 {
  padding-top: 60px;
  padding-bottom: 60px; }

.ph60 {
  padding-left: 60px;
  padding-right: 60px; }

.p65 {
  padding: 65px; }

.pt65 {
  padding-top: 65px; }

.pb65 {
  padding-bottom: 65px; }

.pv65 {
  padding-top: 65px;
  padding-bottom: 65px; }

.ph65 {
  padding-left: 65px;
  padding-right: 65px; }

.p70 {
  padding: 70px; }

.pt70 {
  padding-top: 70px; }

.pb70 {
  padding-bottom: 70px; }

.pv70 {
  padding-top: 70px;
  padding-bottom: 70px; }

.ph70 {
  padding-left: 70px;
  padding-right: 70px; }

.p75 {
  padding: 75px; }

.pt75 {
  padding-top: 75px; }

.pb75 {
  padding-bottom: 75px; }

.pv75 {
  padding-top: 75px;
  padding-bottom: 75px; }

.ph75 {
  padding-left: 75px;
  padding-right: 75px; }

.p80 {
  padding: 80px; }

.pt80 {
  padding-top: 80px; }

.pb80 {
  padding-bottom: 80px; }

.pv80 {
  padding-top: 80px;
  padding-bottom: 80px; }

.ph80 {
  padding-left: 80px;
  padding-right: 80px; }

.p85 {
  padding: 85px; }

.pt85 {
  padding-top: 85px; }

.pb85 {
  padding-bottom: 85px; }

.pv85 {
  padding-top: 85px;
  padding-bottom: 85px; }

.ph85 {
  padding-left: 85px;
  padding-right: 85px; }

.p90 {
  padding: 90px; }

.pt90 {
  padding-top: 90px; }

.pb90 {
  padding-bottom: 90px; }

.pv90 {
  padding-top: 90px;
  padding-bottom: 90px; }

.ph90 {
  padding-left: 90px;
  padding-right: 90px; }

.p95 {
  padding: 95px; }

.pt95 {
  padding-top: 95px; }

.pb95 {
  padding-bottom: 95px; }

.pv95 {
  padding-top: 95px;
  padding-bottom: 95px; }

.ph95 {
  padding-left: 95px;
  padding-right: 95px; }

.p100 {
  padding: 100px; }

.pt100 {
  padding-top: 100px; }

.pb100 {
  padding-bottom: 100px; }

.pv100 {
  padding-top: 100px;
  padding-bottom: 100px; }

.ph100 {
  padding-left: 100px;
  padding-right: 100px; }

/* Flex
***************/
.d-flex {
  display: block; }

.flex-center-vh {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.flex-center-h {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.flex-center-v {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.flex-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

@media (min-width: 992px) {
  .d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

.lineBorder .elementor-heading-title {
  padding: 0.6em 0;
  position: relative; }

.lineBorder .elementor-heading-title::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.lineBorder--yellow .elementor-heading-title::before {
  background: #ff8d0a; }

.lineBorder--top .elementor-heading-title::before {
  height: 5px;
  width: 30px;
  margin: 0 auto; }

.lineBorder--left .elementor-heading-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .lineBorder--left .elementor-heading-title::before {
    width: 30px;
    height: 5px;
    display: block;
    position: unset;
    margin-right: 20px; }

@media (max-width: 1024px) {
  .lineBorder--left .elementor-heading-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .lineBorder--left .elementor-heading-title::before {
      position: absolute;
      margin: 0 auto; } }

.breadcrumbs, .breadcrumbs a {
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 25px;
  font-family: "Montserrat", sans-serif; }

.breadcrumbs a {
  font-weight: 300 !important; }
  .breadcrumbs a:hover {
    color: var(--e-global-color-bbc49c4); }

/*=================== Nav Bar ========================*/
ul#menu-1-760f5524 .elementor-item-active {
  font-weight: 600; }

@media (max-width: 1153px) {
  #menu-1-760f5524 a {
    padding: 13px 14px; } }

@media (max-width: 1071px) {
  #menu-1-760f5524 a {
    padding: 13px 10px; } }

/*===================HOME ========================*/
.track-card {
  text-align: center; }
  .track-card .color-dark {
    background-color: #DA251D; }
    .track-card .color-dark h3 {
      color: #fff; }
  .track-card .color-light {
    background-color: #ffb818; }
    .track-card .color-light h3 {
      color: #000; }
  .track-card .track-card__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px; }
  .track-card .track-card__item {
    width: 145px;
    text-align: center; }
    .track-card .track-card__item .count {
      font-weight: bold;
      font-size: 24px;
      line-height: 1.2em;
      letter-spacing: 1.2px; }
    .track-card .track-card__item .count--order {
      color: #DA251D; }
    .track-card .track-card__item .count--trip {
      color: #ffb818; }
  .track-card .track-card__container {
    max-width: 145px;
    min-height: 184px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 10px; }
    .track-card .track-card__container img {
      margin: 0 auto; }
    .track-card .track-card__container h3 {
      font-size: 18px;
      font-weight: 600;
      margin-top: 15px; }
  .track-card .track-month {
    font-size: 20px;
    color: #000000;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.2em;
    text-transform: capitalize;
    margin: 10px 0 10px;
    display: block; }

.why-choose ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  text-align: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline; }

.why-choose li {
  margin: 0;
  padding: 0;
  max-width: 100%;
  width: 245px; }

.why-choose h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: var(--e-global-color-ad29000, #000);
  margin-top: 20px; }

.strenght-container {
  display: -ms-grid;
  display: grid;
  gap: 30px;
      grid-template-areas: "one two";
  justify-items: center; }
  .strenght-container figure {
    background: #fff;
    width: 100%;
    max-width: 430px;
    min-height: 276px;
    padding: 15px 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center; }
    .strenght-container figure img {
      margin-bottom: 20px; }
    .strenght-container figure:nth-child(1) {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
      grid-area: one; }
    .strenght-container figure:nth-child(2) {
      -ms-grid-row: 1;
      -ms-grid-column: 3;
      grid-area: two; }
    .strenght-container figure:nth-child(3) {
      grid-area: three; }
  .strenght-container figcaption h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--e-global-color-ad29000, #000); }
  .strenght-container figcaption a {
    color: var(--e-global-color-bbc49c4);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase; }
    .strenght-container figcaption a:hover {
      color: #000; }

@media (max-width: 991px) {
  .strenght-container {
        grid-template-areas: "one two " "three three"; }
  .strenght-container figure:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1; }
  .strenght-container figure:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2; }
  .strenght-container figure:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2; } }

@media (max-width: 781px) {
  .strenght-container {
        grid-template-areas: "one" "two " "three"; }
  .strenght-container figure:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1; }
  .strenght-container figure:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1; }
  .strenght-container figure:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1; } }

@media (max-width: 450px) {
  .strenght-container figure {
    padding: 15px 25px; } }

.service-tabs-widget .elementor-tab-title {
  color: var(--active-tabs-font, #ffb818);
  background-color: var(--active-tabs-background, #fff);
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  padding: 20px 15px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center; }

.service-tabs-widget .elementor-tab-title.elementor-active {
  --active-tabs-font:#000;
  --active-tabs-background:#ffb818;
  -webkit-box-shadow: none;
          box-shadow: none; }

.service-tabs-widget .elementor-tab-content {
  background: #002652;
  padding: 60px 50px !important;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5); }
  .service-tabs-widget .elementor-tab-content .service-tabs-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr); }

.service-tabs-widget .service-inner-col {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center; }

.service-tabs-widget .service-inner__contaner h3 {
  font-size: 25px;
  line-height: 1.2em;
  letter-spacing: 1.25px;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize; }

.service-tabs-widget .service-inner__contaner p {
  font-size: 17px;
  font-weight: 300;
  color: #fff;
  font-family: "Open Sans", Sans-serif; }
  .service-tabs-widget .service-inner__contaner p:last-child {
    margin-bottom: 0; }

@media (min-width: 768px) {
  .service-tabs-widget .elementor-tabs-wrapper {
    padding-top: 30px; }
  .service-tabs-widget .elementor-tab-title {
    min-height: 60px;
    max-width: 100%;
    width: 400px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: none !important; }
    .service-tabs-widget .elementor-tab-title:not(:last-child) {
      margin-right: 20px; }
  .service-tabs-widget .service-inner__contaner {
    padding-right: 50px; }
  .service-tabs-widget .service-inner__img img {
    max-width: 551px;
    min-height: 379px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; } }

@media (max-width: 1024px) {
  .service-tabs-widget .elementor-tab-content .service-tabs-container {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    text-align: center; }
  .service-tabs-widget .elementor-tab-content .service-inner__img {
    margin-top: 30px; } }

.keyin-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px; }
  .keyin-container figure {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
    .keyin-container figure a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .keyin-container figure:hover {
      background-color: #002173; }
      .keyin-container figure:hover h2, .keyin-container figure:hover p {
        color: #fff; }
      .keyin-container figure:hover .icon i {
        color: #fff; }
    .keyin-container figure h2 {
      font-size: 22px;
      font-weight: 700;
      line-height: 1.2em;
      text-transform: capitalize;
      margin-bottom: 0; }
  .keyin-container .img-wrap {
    max-width: 100px;
    min-height: 100px;
    background: white;
    padding: 17px; }
  .keyin-container figcaption {
    width: 83%;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 30px; }
    .keyin-container figcaption p {
      margin-bottom: 0;
      line-height: 1em;
      font-size: 15px;
      color: #444444; }
  .keyin-container .icon {
    margin: 0 auto;
    padding: 10px 17px; }
    .keyin-container .icon i {
      color: var(--e-global-color-bbc49c4);
      font-size: 30px; }

@media (max-width: 1024px) {
  .keyin-container {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr); } }

@media (max-width: 431px) {
  .keyin-container figure {
    padding: 15px;
    text-align: center; }
    .keyin-container figure a {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
  .keyin-container .img-wrap {
    margin-bottom: 10px; }
  .keyin-container .icon {
    display: none; } }

/*=================== ABOUT ========================*/
.milestone h2.timeline-main-title.center-block {
  display: none !important; }

.milestone .timeline-meta {
  display: none !important; }

.milestone .timeline-content {
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3); }

.ctl-bullets-container {
  display: none !important; }

/*=================== OUR Business ========================*/
.ob-tabs .elementor-tabs-wrapper {
  width: 21% !important; }

.ob-tabs .elementor-tab-title {
  background: #f5f5f5;
  text-align: center;
  border: none !important;
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .ob-tabs .elementor-tab-title {
    font-size: 14px; }
    @media screen and (min-width: 769px) {
      .ob-tabs .elementor-tab-title {
        font-size: calc(14px + 6 * ((100vw - 769px) / 256)) !important; } }
    @media screen and (min-width: 1025px) {
      .ob-tabs .elementor-tab-title {
        font-size: 20px !important; } }
  .ob-tabs .elementor-tab-title.elementor-active {
    background: #ffb818;
    color: #000 !important; }

.ob-tabs .elementor-tabs-content-wrapper {
  border: none !important;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2); }

.ob-tabs .elementor-tab-content {
  padding: 20px; }
  .ob-tabs .elementor-tab-content p:last-child {
    margin-bottom: 0; }

@media (min-width: 1025px) {
  .ob-tabs .elementor-tabs-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

.ob-tabs2 .elementor-tab-title {
  min-height: 60px; }

@media (min-width: 1025px) {
  .ob-tabs2 .elementor-tabs-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

/*=================== OUR NETWORK ========================*/
.ob-tabs .ECAdataTable caption, .ob-tabs .ECAdataTable h2 {
  border: none !important; }

.ob-tabs .cell-yellow {
  background-color: #FEDA15;
  color: #000; }

.ob-tabs .cell-green {
  background-color: #107869;
  color: #fff; }

.ob-tabs .cell-red {
  background-color: #AA1945;
  color: #fff; }

.ob-tabs .cell-purple {
  background-color: #6A4973;
  color: #fff; }

.ob-tabs .on-table-content:not(:last-child) {
  margin-bottom: 30px; }

.CAdataTable {
  display: block;
  width: 100%;
  margin: 1em 0; }
  .CAdataTable caption h2 {
    font-size: 30px;
    font-weight: bold; }

.CAdataTable thead, .CAdataTable tbody, .CAdataTable thead tr, .CAdataTable th {
  display: block; }

.CAdataTable thead {
  float: left; }

.CAdataTable tbody {
  width: auto;
  position: relative;
  overflow-x: auto; }

.CAdataTable td, .CAdataTable th {
  padding: .625em;
  line-height: 1.5em;
  border-bottom: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto; }

.CAdataTable th {
  text-align: left;
  background: rgba(0, 0, 0, 0.14);
  border-bottom: 1px solid #aaa; }

.CAdataTable tbody tr {
  display: table-cell; }

.CAdataTable tbody td {
  display: block; }

.CAdataTable tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.07); }

@media screen and (min-width: 767px) {
  .ob-tabs .elementor-tabs-content-wrapper > .elementor-tab-content {
    width: 100%; }
  .CAdataTable {
    display: table; }
    .CAdataTable caption, .CAdataTable h2 {
      border: none !important; }
    .CAdataTable thead th:nth-child(1) {
      max-width: 100%;
      width: 70rem; }
    .CAdataTable thead th:not(:first-child) {
      width: 20rem; }
    .CAdataTable * {
      border: 1px solid #ccc; }
  .CAdataTable thead {
    display: table-header-group;
    float: none; }
  .CAdataTable tbody {
    display: table-row-group; }
  .CAdataTable thead tr, .CAdataTable tbody tr {
    display: table-row; }
  .CAdataTable th, .CAdataTable tbody td {
    display: table-cell; }
  .CAdataTable td, .CAdataTable th {
    width: auto; } }

@media screen and (max-width: 766px) {
  .CAdataTable {
    text-align: center; }
    .CAdataTable th {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: center;
          align-content: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .CAdataTable tbody tr td {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: center;
          align-content: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .CAdataTable tbody tr td:not(:first-child) {
      min-height: 60px; }
    .CAdataTable tbody tr td:nth-child(1) {
      width: 200px;
      min-height: 150px; } }

/*=================== NEWS & EVENTS ========================*/
.post-sidebar h5 {
  background: #DA251D;
  padding: 16px 15px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0; }

.post-sidebar .elementor-widget-container {
  background: #f5f5f5; }

.post-sidebar ul {
  padding: 0;
  margin: 0;
  list-style: none; }
  .post-sidebar ul li.cat-item {
    margin-bottom: 0; }
    .post-sidebar ul li.cat-item a {
      display: block;
      padding: 10px 15px;
      color: #000;
      font-weight: 400;
      font-size: 16px; }
      .post-sidebar ul li.cat-item a:hover {
        background-color: #ffb818;
        color: #000; }
    .post-sidebar ul li.cat-item.current-cat {
      background-color: #ffb818; }
      .post-sidebar ul li.cat-item.current-cat a {
        color: #000; }

.post-content article {
  border: 1px solid #e7e7e7;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2); }

.post-content a.elementor-post__thumbnail__link {
  margin: 0 !important; }

.post-content .elementor-post__text {
  padding: 15px; }

.cus-pagination .elementor-pagination > * {
  padding: 5px 10px;
  border: 1px solid #000;
  margin: 0 !important; }

.cus-pagination .elementor-pagination .current {
  background-color: var(--e-global-color-bbc49c4);
  border: 1px solid var(--e-global-color-bbc49c4); }

.cus-pagination .elementor-pagination a:hover {
  background-color: var(--e-global-color-bbc49c4);
  border: 1px solid var(--e-global-color-bbc49c4); }

/*===================Contact us ======================*/
.branches .elementor-container {
  gap: 15px;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(4, 1fr); }

.branches .elementor-widget-wrap {
  background-color: #f5f5f5;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2); }

.branches .elementor-column {
  max-width: 320px;
  width: 100% !important;
  margin: 0 auto; }

@media (max-width: 1024px) {
  .branches .elementor-container {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 501px) {
  .branches .elementor-container {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr); } }

.contact_form {
  overflow: hidden; }
  .contact_form .inputForm {
    padding: 10px 15px !important;
    border: none !important; }
  .contact_form .row.submit-btn {
    text-align: center; }
  .contact_form button {
    font-family: "Montserrat", Sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    line-height: 1.1em !important;
    border-radius: 0px 0px 0px 0px !important;
    fill: var(--e-global-color-d3e3808) !important;
    color: var(--e-global-color-d3e3808) !important;
    background-color: var(--e-global-color-98dca3b) !important;
    padding: 10px 10px 10px 10px !important;
    border: none !important; }
    .contact_form button:hover {
      color: var(--e-global-color-f69a0e5) !important;
      background-color: var(--e-global-color-0e90350) !important;
      border: none !important; }
  .contact_form .input-control-hidden {
    visibility: hidden;
    position: absolute;
    top: 0; }

@media (min-width: 1025px) {
  .contact_form .row-3-1, .contact_form .row-4-1 {
    padding-right: 0 !important; } }

/*===================Foating========================*/
#floating-widget {
  right: 0px;
  bottom: 3%; }
  #floating-widget ul {
    margin: 0; }
    #floating-widget ul .floating-item {
      width: 45px;
      height: 45px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border-top-left-radius: 0px;
      border-bottom-left-radius: 0px;
      margin: 0; }
      #floating-widget ul .floating-item i {
        font-size: 22px;
        color: #fff; }
      #floating-widget ul .floating-item a {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: relative; }
        #floating-widget ul .floating-item a:hover::before {
          content: '';
          position: absolute;
          background: #2e3192;
          width: 100%;
          height: 100%;
          opacity: 0.5;
          border-top-left-radius: 0px;
          border-bottom-left-radius: 0px; }
      #floating-widget ul .floating-item.floating__facebook {
        background: #2e3192; }
      #floating-widget ul .floating-item.floating__call {
        background: #ff8d0a; }
      #floating-widget ul .floating-item.floating__email {
        background: #000000; }
      #floating-widget ul .floating-item.floating__whatsapp {
        background: #39b54a; }

@media (max-width: 1024px) {
  #floating-widget {
    right: 0;
    left: 0;
    bottom: 0%; }
    #floating-widget a:hover::before {
      border-radius: 0px !important; }
    #floating-widget ul {
      display: contents; }
    #floating-widget li.floating-item {
      border-radius: 0px;
      width: calc(100% / 4);
      float: left;
      border-radius: 0; }
      #floating-widget li.floating-item.floating__cart {
        margin-bottom: 0px; }
      #floating-widget li.floating-item.floating__whatsapp {
        margin-bottom: 0px; }
      #floating-widget li.floating-item.floating__call {
        margin-bottom: 0px; }
      #floating-widget li.floating-item.floating__cart {
        display: block; } }
