/********** Template CSS **********/
:root {
    --primary: #f7921e;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

body{        font-family: "Montserrat", sans-serif;color: #000000;  
  
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: .5rem;
        font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
  }

  /* .display-5 {
    font-size: 1.7rem;
  } */
h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;    font-family: "Montserrat", sans-serif;

}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;    font-family: "Montserrat", sans-serif;

}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;    font-family: "Montserrat", sans-serif;

}
.text-dark{color: #000!important;}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s ease-out, visibility 0s linear .9s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.9s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-border {
    display: inline-block;
    width: auto;
    height: auto;
    vertical-align: -.125em;
    border: none;
    border-right-color: transparent;
    border-radius: 50%;
    animation: 1.5s linear infinite spinner-border;
    background: url("/templates/Default/img/spin.png") center center no-repeat;
  }
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    text-align:center;
  }
.sidenav a {
    /* padding:1em; */
    text-decoration: none;
     color: #fff;
    display: block;
    /* width: 20%; */
  margin: auto;
    transition: 0.3s;
    text-align: left;
    font-size: 32px;
  
  }

  .sidenav a:hover{
    color: #f7921e;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
    
  }

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}
.btn-primary {
  color: #000;
  background-color: #55B949!important;
  border-color: #54B948!important;
}

.btn-primary, .btn-outline-primary:hover {
    color: #FFFFFF;
    border-radius: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
  }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    /* padding-right: 50px; */
    height: 75px;
    display: flex;
    align-items: center;
    /* background: var(--primary); */
}
/* 
.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: var(--primary);
} */

.navbar .navbar-nav .nav-link {
    margin-right: 26px;
    padding: 20px 0;
    color: #000;
    font-size: 14px;
    /* font-weight: 500; */  font-weight: bold;
    outline: none;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  font-weight: bold;
}
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
    height: 70px;
  }
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #f7921e;   }

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
        background: #fff;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    /* top: 0; */
    left: 0;
    right: 0;
    /* bottom: 0; */
    display: flex;
    align-items: center;
    /* background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 750px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    /* background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat; */
    background-size: cover!important;
    height:400px
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: #000;
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
/* .service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
} */
.service-item {
  position: relative;
  margin: 65px 0 25px 0;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
  min-height: 500px;
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 200px;
    height: 200px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #f7921e;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

p.service-text-height{  margin-top: 40%;}
.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 10px  0 10px 0;
    width: 100%;
    /* height: 100%; */
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    text-align: center;
    background: transparent;
    transition: .5s;
}

/* .service-item:hover .service-title {
    top: -100%;
} */

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding:1em;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: #000;
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: #000;
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
/* .testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
} */

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }


}

/* @media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
} */
/* 
.testimonial-carousel .owl-nav {
         position: absolute!important;
        width: 100px!important;
        bottom: 36%!important;
        left: 10%!important;
        transform: translateX(-50%)!important;
        display: flex!important;
        justify-content: space-between!important;
        opacity: 1!important;
        transition: .5s!important;
        z-index: 1!important;
      } */
      .testimonial-carousel .owl-nav {
        position: absolute !important;
        width: 100px !important;
        bottom: 0 !important;
        left: 5% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        justify-content: space-between !important;
        opacity: 1 !important;
        transition: .5s !important;
          /* transition-behavior: ; */
        z-index: 1 !important;
        top: 0% !important;
      }
.testimonial-carousel:hover .owl-nav {
    width:150px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: #fff;
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color:#ccc;
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}


.navigation{
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    z-index: 1050;
    color: #fff;
    padding: 0;
    background: #032240;
    height: 100%;
}
span.nav-lines{
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    top: 50%;
    left: 2%;

}

.btn-primary:hover {
    color: #000;
    background-color: #41b131;
    border-color: #41b131;
  }
  .example_f {
    border-radius: 4px;
    color: #000;
    border: none;
    /* text-align: center; */
    /* text-transform: uppercase; */
    /* font-size: 16px; */
    font-weight: 600 !important;
    /* padding: 20px; */
    width: 400px;
    transition: all 0.4s;
    cursor: pointer;
    /* margin: 5px; */
  }
  /* a.example_f{
    font-size:18px;
  } */
  .example_f span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.4s;
    font-weight: bold;
  }
  .example_f span:before {
 
    transition: 0.5s;
    margin-right: 0.5em;





    opacity: 0;


    background: url("/templates/Default/img/bullet.png") no-repeat;
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
  content: "";
  width: 26px;
  height: 35px;
  padding: 10px;
  background-position: center;
  background-size: contain;}
   .example_f:hover span {
    padding-left: 50px;
    color: #f7921e ;
  }
  .example_f:hover span:before {
    opacity: 1;
    right: 0;
  }
  

  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 1;
  }
  


/* 
  
li.dropdown{
    padding: .5rem 1rem;
}
 */

#wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 80em;
}

#container {
    /* float: left;
    padding: 1em;
    width: 100%; */
}

ol.organizational-chart,
ol.organizational-chart ol,
ol.organizational-chart li,
ol.organizational-chart li > div {
    position: relative;
}

ol.organizational-chart,
ol.organizational-chart ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol.organizational-chart {
    text-align: center;
}

ol.organizational-chart ol {
    padding-top: 1em;
}

ol.organizational-chart ol:before,
ol.organizational-chart ol:after,
ol.organizational-chart li:before,
ol.organizational-chart li:after,
ol.organizational-chart > li > div:before,
ol.organizational-chart > li > div:after {
    background-color: #fff;
    content: '';
    position: absolute;
}

ol.organizational-chart ol > li {
    padding: 1em 0 0 1em;
}

ol.organizational-chart > li ol:before {
    height: 1em;
    left: 50%;
    top: 0;
    width: 3px;
}

ol.organizational-chart > li ol:after {
    height: 3px;
    left: 3px;
    top: 1em;
    width: 50%;
}

ol.organizational-chart > li ol > li:not(:last-of-type):before {
    height: 3px;
    left: 0;
    top: 2em;
    width: 1em;
}

ol.organizational-chart > li ol > li:not(:last-of-type):after {
    height: 100%;
    left: 0;
    top: 0;
    width: 3px;
}

ol.organizational-chart > li ol > li:last-of-type:before {
    height: 3px;
    left: 0;
    top: 2em;
    width: 1em;
}

ol.organizational-chart > li ol > li:last-of-type:after {
    height: 2em;
    left: 0;
    top: 0;
    width: 3px;
}

ol.organizational-chart li > div {
    background-color: #fff;
    border-radius: 3px;
    min-height: 2em;
    padding: 0.5em;
}

/*** PRIMARY ***/
ol.organizational-chart > li > div {
    background-color: transparent;
    margin-right: 1em;
    border: 3px solid #fff;
  }

ol.organizational-chart > li > div:before {
    bottom: 2em;
    height: 3px;
    right: -1em;
    width: 1em;
}

ol.organizational-chart > li > div:first-of-type:after {
    bottom: 0;
    height: 2em;
    right: -1em;
    width: 3px;
}

ol.organizational-chart > li > div + div {
    margin-top: 1em;
}

ol.organizational-chart > li > div + div:after {
    height: calc(100% + 1em);
    right: -1em;
    top: -1em;
    width: 3px;
}

/*** SECONDARY ***/
ol.organizational-chart > li > ol:before {
    left: inherit;
    right: 0;
}

ol.organizational-chart > li > ol:after {
    left: 0;
    width: 100%;
}

ol.organizational-chart > li > ol > li > div {
    background-color:transparent;
}

/*** TERTIARY ***/
ol.organizational-chart > li > ol > li > ol > li > div {
    background-color: #fd6470;
}

/*** QUATERNARY ***/
ol.organizational-chart > li > ol > li > ol > li > ol > li > div {
    background-color: #fca858;
}

/*** QUINARY ***/
ol.organizational-chart > li > ol > li > ol > li > ol > li > ol > li > div {
    background-color: #fddc32;
}

/*** MEDIA QUERIES ***/
@media only screen and ( min-width: 64em ) {

    ol.organizational-chart {
        margin-left: -1em;
        margin-right: -1em;
    }

    /* PRIMARY */
    ol.organizational-chart > li > div {
        display: inline-block;
        float: none;
        margin: 0 1em 1em 1em;
        vertical-align: bottom;
    }

    ol.organizational-chart > li > div:only-of-type {
        margin-bottom: 0;
        width: calc((100% / 1) - 2em - 4px);
    }

    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(2),
    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(2) ~ div {
        width: calc((100% / 2) - 2em - 4px);
    }

    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(3),
    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(3) ~ div {
        width: calc((100% / 3) - 2em - 4px);
    }

    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(4),
    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(4) ~ div {
        width: calc((100% / 4) - 2em - 4px);
    }

    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(5),
    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(5) ~ div {
        width: calc((100% / 5) - 2em - 4px);
    }

    ol.organizational-chart > li > div:before,
    ol.organizational-chart > li > div:after {
        bottom: -1em!important;
        top: inherit!important;
    }

    ol.organizational-chart > li > div:before {
        height: 1em!important;
        left: 50%!important;
        width: 3px!important;
    }

    ol.organizational-chart > li > div:only-of-type:after {
        display: none;
    }

    ol.organizational-chart > li > div:first-of-type:not(:only-of-type):after,
    ol.organizational-chart > li > div:last-of-type:not(:only-of-type):after {
        bottom: -1em;
        height: 3px;
        width: calc(50% + 1em + 3px);
    }

    ol.organizational-chart > li > div:first-of-type:not(:only-of-type):after {
        left: calc(50% + 3px);
    }

    ol.organizational-chart > li > div:last-of-type:not(:only-of-type):after {
        left: calc(-1em - 3px);
    }

    ol.organizational-chart > li > div + div:not(:last-of-type):after {
        height: 3px;
        left: -2em;
        width: calc(100% + 4em);
    }

    /* SECONDARY */
    ol.organizational-chart > li > ol {
        display: flex;
        flex-wrap: nowrap;
    }

    ol.organizational-chart > li > ol:before,
    ol.organizational-chart > li > ol > li:before {
        height: 1em!important;
        left: 50%!important;
        top: 0!important;
        width: 3px!important;
    }

    ol.organizational-chart > li > ol:after {
        display: none;
    }

    ol.organizational-chart > li > ol > li {
        flex-grow: 1;
        padding-left: 1em;
        padding-right: 1em;
        padding-top: 1em;
    }

    ol.organizational-chart > li > ol > li:only-of-type {
        padding-top: 0;
    }

    ol.organizational-chart > li > ol > li:only-of-type:before,
    ol.organizational-chart > li > ol > li:only-of-type:after {
        display: none;
    }

    ol.organizational-chart > li > ol > li:first-of-type:not(:only-of-type):after,
    ol.organizational-chart > li > ol > li:last-of-type:not(:only-of-type):after {
        height: 3px;
        top: 0;
        width: 50%;
    }

    ol.organizational-chart > li > ol > li:first-of-type:not(:only-of-type):after {
        left: 50%;
    }

    ol.organizational-chart > li > ol > li:last-of-type:not(:only-of-type):after {
        left: 0;
    }

    ol.organizational-chart > li > ol > li + li:not(:last-of-type):after {
        height: 3px;
        left: 0;
        top: 0;
        width: 100%;
    }

}


#btn--yp {
    box-sizing: content-box;
    position: fixed;
    z-index: 9;
    bottom: 1em;
    right: 1em;
    border: solid 1em transparent;
    width: 4.625em;
    height: 3.25em;
    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/2017/icon-yp.svg) 50%/cover content-box;
    font: 16px/ 1.25 trebuchet ms, sans-serif;
    text-indent: 200vw;
    text-shadow: none;
    filter: grayscale(1) drop-shadow(0 0 1px #e8e0e0);
    transition: .5s;
    white-space: nowrap;
  }
  #btn--yp:before {
    box-sizing: inherit;
    position: absolute;
    left: 0;
    bottom: 100%;
    margin: 1em -.5em;
    padding: .5em;
    width: 100%;
    border-radius: 5px;
    background: #e8e0e0;
    color: #000;
    text-align: center;
    text-decoration: none;
    text-indent: 0vw;
    white-space: normal;
    animation: float 1s ease-in-out infinite alternate;
    content: attr(data-txt);
  }
  #btn--yp:hover, #btn--yp:focus {
    outline: none;
    filter: grayscale(0) drop-shadow(0 0 1px crimson);
  }
  
  @keyframes float {
    to {
      transform: translateY(0.75em);
    }
  }
  /* body {
    display: grid;
    overflow: hidden;
    margin: 0;
    height: 100vh;
    background: repeating-linear-gradient(45deg, #262626 0 2.82843px, #313131 0 7.07107px);
    filter: drop-shadow(4px 4px 13px rgba(0, 0, 0, 0.65));
  }
   */
  /* .img {
    place-self: center;
    width: Min(20em, 90vw);
    border: solid 1.25em transparent;
    padding: 0.75em;
    border-radius: 50%;
    background: radial-Gradient(circle at calc(50% + (50% - 0.625em)*1) calc(50% + (50% - 0.625em)*0), #f03355 calc(0.625em - 1px), transparent 0.625em), radial-Gradient(circle at calc(50% + (50% - 0.625em)*0) calc(50% + (50% - 0.625em)*1), #514b82 calc(0.625em - 1px), transparent 0.625em), radial-Gradient(circle at calc(50% + (50% - 0.625em)*-1) calc(50% + (50% - 0.625em)*0), #ffa516 calc(0.625em - 1px), transparent 0.625em), radial-Gradient(circle at calc(50% + (50% - 0.625em)*0) calc(50% + (50% - 0.625em)*-1), #25b09b calc(0.625em - 1px), transparent 0.625em), conic-Gradient(#f03355 0% 90deg, #514b82 0% 180deg, #ffa516 0% 270deg, #25b09b 0% 360deg);
    background-origin: border-box;
    --mask: radial-Gradient(closest-side, red calc(100% - 1.25em - 0.75em - 1px), transparent calc(100% - 1.25em - 0.75em) calc(100% - 1.25em), red calc(100% - 1.25em + 1px) calc(100% - 1px), transparent);
    -webkit-mask: var(--mask);
    mask: var(--mask);
  }
   */

   .dropbtn {
    /* background-color: #04AA6D; */
    color: white;
    /* padding: 16px; */
    /* font-size: 16px; */
    border: none;
  }
  
  .dropdown {
    position: relative;
    display: block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    /* left: 44%; */

  }
  
  .dropdown-content a {
    color: black;
    /* padding: 12px 16px; */
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {background-color: green;}
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .dropdown:hover .dropbtn {background-color: transparent;}.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  @media screen and (max-width: 768px) {

  .display-1 {
    font-size: 22px !important;    font-weight: 700;
    line-height: 1.2;
  }
}

.bg-dark {
    background-color: #000 !important;
  }

  hr {
    margin: 1rem 0;
    color:rgb(255, 94, 20);
    background-color: currentColor;
    border: 0;
    opacity: 1;
    position: absolute;
  }
  ul.list{
    list-style-type: none;
    }
    
    ul.list li {
        display: flex;
        font-size: 24px;        color: #000;
        font-weight: bold;
        margin-bottom: 1em;
      }
    ul.list li strong {
      display: contents;
    
    }
    ul.list li.green::before {
      background: url("/templates/Default/img/bullet.png") no-repeat;
      background-position-x: 0%;
      background-position-y: 0%;
      background-size: auto;
    content: "";
    width: 20px;
height: 30px;
    padding: 10px;
    background-position: center;
    background-size: contain;}

    ul.list li.orange::before {
      background: url("/templates/Default/img/orange.png") no-repeat;
      background-position-x: 0%;
      background-position-y: 0%;
      background-size: auto;
    content: "";
    width: 20px;
height: 30px;
    padding: 10px;
    background-position: center;
    background-size: contain;}




    ul.list1{
    list-style-type: none;  padding-top: 1em;  padding-left: 0;
    }
    
    ul.list1 li {
        display: flex;     color: #000;
        font-weight: bold;
        margin-bottom: 1em;
      }
    ul.list1 li strong {
      display: contents;
    
    }
    ul.list1 li.green::before {
      background: url("/templates/Default/img/bullet.png") no-repeat;
      background-position-x: 0%;
      background-position-y: 0%;
      background-size: auto;
    content: "";
    width: 20px;
height: 25px;
    padding: 10px;
    background-position: center;  margin-right: 0.5em;
    background-size: contain;}

    ul.list1 li.orange::before {
      background: url("/templates/Default/img/orange.png") no-repeat;
      background-position-x: 0%;
      background-position-y: 0%;
      background-size: auto;
    content: "";
    width: 20px;
height: 25px;
    padding: 10px;
    background-position: center;  margin-right: 0.5em;
    background-size: contain;}



      .service-title h3{

      }  
      
      @media screen and (max-width: 768px) {

        .service-title h3{

        }  
        .display-5 {
          font-size: 1.3rem!important;
        }
        ul.list li {
            display: flex;
            font-size: 20px;
            color: #000;
            font-weight: bold;
            margin-bottom: 1em;
          }
      }
      .display-1 {
        font-size: 26pt;
      }     .display-16 {
        font-size: 16pt;
      }     .display-12 {
        font-size: 12pt;
      }     .display-14 {
        font-size: 14pt;
      }     .display-11 {
        font-size:11pt;
      }.display-34 {
        font-size:34pt;
      }

      .carousel-caption {
        position: absolute;
        right: 15%;
        bottom: 0;
        /* left: 15%; */
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        color: #fff;
        text-align: center;
        top: 0
      }

      .hover-underline-animation {
        display: block;
        position: relative;
       }
      
      .hover-underline-animation:after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 4px;
        bottom: 0;
        left: 0;
        background-color: #000;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
        top:1.5em
      }
      
      .hover-underline-animation:hover:after {
        transform: scaleX(1);
        transform-origin: bottom left;
      }
.openBtn {
    background: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
  }
  
  .openBtn:hover {
    background: #f1f1f1;
  }
  
  .overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
  }
  
  .overlay-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
  }
  
  .overlay .closebtn:hover {
    background: transparent;  }
  
  .overlay input[type=text] {
    padding: 15px;
  font-size: 17px;
  border-bottom: 1px solid #fff !important;
  float: left;
  width: 80%;
  background: transparent;
  border: navajowhite;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: navajowhite;
    color:#fff;
}
  
  .overlay input[type=text]:hover {
    background: transparent;
    box-shadow: 2px 0px 11px 2px #fff;
  }
  
  .overlay button {
    float: left;
    width: 10%;
    padding: 15px;
    background: transparent;
    font-size: 17px;
    border: none;
    cursor: pointer;
    color: #fff;
  }
  
  .overlay button:hover {
    background: transparent;  }
    .text-grey{
        color: #666;
    }

    /*  */

    


    .accordion-item {
        background-color: transparent;
        border-top: 1px solid #fff !important;
        color: #fff !important;
      }
      .accordion-button {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
       padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #000;
  text-align: left;
  background-color: #e1e0e0;
        border: 0;
        border-radius: 0;
        overflow-anchor: none;
        transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
      }
      .accordion-button:not(.collapsed) {
color: #000;
  background-color: #e1e0e0;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.125);
      }
      .accordion-button:focus {
        z-index: 3;
        border-color: none;
        outline: 0;
        box-shadow: none;
      }

      .accordion-body {
  padding: 1rem 1.25rem;
  color: #000;
}
      .top-insert{  margin-top: -15%;}
      .border-top-number{  border-top: 3px solid #000;}



      @media screen and (max-width: 768px) {
        .top-insert{  margin-top: 0%;}}

 
  
  /* FOOTER STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .page-footer {
    position: fixed;
    right: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    padding: 5px;
    color: black;
    background: rgba(255, 255, 255, 0.65);
  }
  
  .page-footer a {
    display: flex;
    margin-left: 4px;
  }


  .display-5 {
    font-size: 2.3rem;
  }#overlay {
    position: absolute; /* Sit on top of the page content */
    display: block; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 1; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
  }

  .btn-yellow {
    text-transform: uppercase;
    font-weight: 900;
    border-radius: 28px;
    letter-spacing: 1px;
    padding: 1em 3em;    background: #f7921e;
    transition: background .2s linear;
    color: #000;
    font-size: 13PX;
  }
  .btn-yellow:hover {

     background: #141618;
     color: #fff;
  }
  .btn-yellow-outline {
 text-transform: uppercase;
  font-weight: 900;
  border-radius: 28px;
  letter-spacing: 1px;
  padding: 1em 3em;
  background: #54b948;
  transition: background .2s linear;
  color: #fff;
  font-size: 13PX;
  border: 3px solid #54b948;}
  .btn-yellow-outline:hover {

     background: #54b948;
     color: #000;
  }

  .carousel-caption {
    color: #000!important;
    text-align: center;
  }
  .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #5F656F;
    background-color: #f4f4f4;
    background-clip: padding-box;
    border: none;
    appearance: none;
    border-radius: 0px;
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
  }  
.bg-orange  {background-color: #f7921e !important;}
.bg-orange-hover  {background-color: #f7f7f7 !important;}
.bg-orange-hover:hover {background-color: #f7921e !important;}
  .form-floating textarea:focus ,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: rgba(126, 239, 104, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6);
  outline: 0 none;
}
.onmap{position: absolute;
  z-index: 9;
  
  width: 100%;
  bottom: 5%;}
  .map{         filter: grayscale(100%);         }


 

  /************************** Blog styles *********************/
.fables-blog-cat-block { 
    position: relative;
}
.fables-cat-blog-btn{
    font-size: 16px;
    padding: 0;
    text-decoration: underline;
}
.fables-blog-cat-submit {
    color: #fff;
    margin-left: 15px;
}
.fables-blog-category{
    margin-top: 30px;
}
.fables-blog-category-head { 
    line-height: 37px;
}
.fables-blog-category-head::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: inherit;
}
.fables-blog-cat-list li{
    width: 100%;
    margin-bottom: 12px;
}
.fables-blog-cat-list a {
    color: inherit;
    text-decoration: underline;
    padding: 8px 0 8px 40px;
    display: block;
    position: relative;
    background-color: #F9F9F9;
    margin-bottom: 0;
}
.fables-blog-cat-list a:hover {
    text-decoration: underline;
}
.fables-blog-cat-list a::before {
    background-color: inherit;
    content: "";
    position: absolute;
    left: 20px; 
    top: 17px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 10px solid #E54D42;
    border-bottom: 5px solid transparent;
}
.fables-blog-recent-post{
    margin-top: 30px;
}
.fables-recent-blog-btn {
    font-size: 14px;
    text-decoration: underline; 
}
.fables-blog-cat-tags li {
    width: auto;
    margin-right: 12px;
}
.fables-blog-cat-tags li a{
    padding: 8px 25px;
}
.fables-blog-cat-tags a::before{
    display: none;
}
 
.fables-blog-date-cat span {
    margin-right: 7px; 
}
.fables-blog-date span , .fables-blog-date i{
    margin-right: 6px;
}
.fables-cat-blog-more {
    font-size: 14px;
    padding: 0;
}
.fables-cat-blog-more i{
    font-size: 11px;
}
#blog-slider .owl-dots .owl-dot span {
    width: 11px;
    height: 11px;
    margin: 0 5px;
    background: #C3C3C3; 
}
#blog-slider .owl-nav.disabled+.owl-dots {
    margin-top: 0;
}
.fables-blog-overlay { 
    /* position: absolute; */
    bottom: 0; 
    left: 0;
    right: 0;
      background: #000000bf;
    
}
.fables-blog-overlay:hover:after {
    opacity: 1
}
.fables-blog-overlay:after {
    content: "";
    position: absolute;
    width: 100%;
    /* background: -moz-linear-gradient(top, rgba(125,185,232,0) 0%, rgba(30,87,153,1) 100%);
    background: -webkit-linear-gradient(top, rgba(125,185,232,0) 0%,rgba(30,87,153,1) 100%);
    background: linear-gradient(to bottom, rgba(125,185,232,0) 0%,rgba(30,87,153,1) 100%); */
    /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007db9e8', endColorstr='#1e5799',GradientType=0 ); */
    height: 100%;
    bottom: 0;
    left: 0;
    opacity: .8;
    -o-transition:all ease-in-out .3s; 
   -webkit-transition:all ease-in-out .3s; 
   -moz-transition:all ease-in-out .3s; 
   transition:all ease-in-out .3s;
}
.fables-blog-overlay .fables-blog-head a {
    border-width: 1px;
    border-style: solid;
    border-top: 0;
    border-right: 0;
    border-left: 0; 
}

.fables-blog-overlay .fables-blog-date {
    font-size: 14px;
    z-index: 2;
    position: relative;
}
.blog-teaser .owl-nav.disabled+.owl-dots {
    margin-top: 0;
    position: absolute;
    bottom: 10px;
    width: 100%;
}
.blog-teaser  .owl-dots .owl-dot span { 
    margin: 5px 3px;
    background: #D6D6D6; 
}
.latest-news-img-block {
    position: relative;
}
.latest-news-text {
    line-height: 25px;  
}
.img-contain {
    position: relative;
}
.img-contain:hover .fables-blog-details-overlay{
    opacity: 1;
}
.fables-blog-details-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; 
    top: 0; 
    opacity: 0;
    transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
}
.latest-news-text::before { 
    left: 30px;
    top: 35px;   
    font-size: 23px;
}
.latest-news-text::after { 
    right: 30px;
    bottom: 35px; 
    font-size: 23px;
}
.fables-text-overlay {
    text-decoration: underline;
    padding: 30px 25px 30px 100px;
    text-align: left; 
}
.fables-text-overlay::before {
    position: absolute;
    left: 6px;
    top: -45px;
    content: "\f10d";
    font-weight: 700;
    font-family: Font Awesome\ 5 Free;
    background-color: #fff;
    color: #E54D42;
    width: 90px;
    border-radius: 50%;
    font-size: 31px;
    height: 90px;
    text-align: center;
    line-height: 120px;
}
.fables-blog-comment-submit {
    color: #fff;
    border-radius: 0;
    padding: 12px 30px;
    font-size: 15px;
}
.fables-single-blog::first-letter { 
    font-size: 73px; 
    margin-right: 10px;  
    color: #5C6A77;
    float: left;     
}
.single-blog .owl-dots{
    margin-top: 30px;
}
.share-head {
    font-size: 18px;
    display: inline-block;
}
.blog-share-side{
    margin-top: 8px;
}
.fables-comment-user:hover{
    text-decoration: underline;
    color: inherit;
}
.fables-comment { 
    padding-bottom: 5px; 
}
.fables-comments .fables-comment:last-child{
    border: 0;
}
.lightgallery {
    position: relative;
}
.demo-gallery-poster {
    position: absolute;
    text-align: center;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.lightgallery::after {
    position: absolute;
    content: "";
    background-color: rgba(0,0,0,.59);
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}
.demo-gallery-poster img{
    opacity: .6;
}
.demo-gallery-poster:hover img{
    opacity: 1;
}
.blog-detail-head{
    font-size: 20px;
    font-weight: 600;
}
.blog-detail-data{
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;
}
.fables-blog-quote .fables-iconquote-left-light{
    margin-left: -20px;
    float: left;
    margin-top: -7px;
}
.fables-blog-quote .fables-iconquote-right-light{
    margin-right: -20px;
    float: right; 
}
.grid-item {  
    width: 50%;
}
.blog-large-head::before{
    content: "";
    position: absolute;
    background-color: inherit;
    left: 0;
    bottom: 35px;
    width: 10px;
    height: 10px;
}
.fables-masonry-img{
    width: 100%;
}
.underlined-head{
    display: inline-block;
}
.underlined-head::before {
    color: inherit;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
    bottom: -5px;
}
.inside-text-carousel{
    width: 50%; 
    float: left;
}

#cd-timeline{
    overflow: hidden;
}
.white-color{
    color: #fff;
}
.white-color-hover:hover{
    color: #fff;
}
.load-more{
    padding: 9px 32px;
}
.load-more:hover{
   color: #fff;
} 
.nav-slider .owl-dots .owl-dot span{ 
    margin: 5px 3px;
    background: #D6D6D6; 
}
.nav-slider .owl-nav [class*=owl-] {
    color: #989898;
    background-color: transparent;
    margin: 0;
    padding: 0;
    display: none;
}
.nav-slider .owl-nav [class*=owl-]:hover {
    color: #E54D42 ;
    background-color: transparent;
}
.nav-slider .owl-prev {
    left: -8%; 
    bottom: -20px;
    position: relative;
}
.nav-slider .owl-next {
    right: -8%; 
    bottom: -20px;
    position: relative;
}
/************************** /Blog styles *********************/
.navbar-light .navbar-toggler {
  color: #000;
  border: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}
@media screen and (max-width: 768px) {

.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
  color: #f7921e!important;
 }
.page-header {
  position: relative;
  height: 300px;
}
.display-34 {
  font-size: 23px;  position: absolute;
    top: 50%;
}
.testimonial-carousel .owl-nav {
  position: absolute !important;
  width: 100px !important;
  bottom: 0 !important;
  left: 18% !important;
}
}



/*  */
.owl-carousel .owl-nav {
  position: absolute;
  width: 100px;
  top: -4em;
  left: 12%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 1;
  transition: .5s;
  z-index: 1;}

.owl-carousel:hover .owl-nav {
    width:150px;
    opacity: 1;
}

 
.owl-carousel .owl-nav .owl-next{
  position: relative;
  font-size: 45px; 
 
   transition: .5s;
 
} 
.owl-carousel .owl-nav .owl-prev {
  position: relative;
  font-size: 45px; 
 
  transition: .5s;
 
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
    color:#ccc;
}

.owl-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.owl-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.owl-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.owl-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

#more {display: none; }

.bottom-right {
  position: absolute;
  /* bottom: -100px; */
  right: 16px;
}
.top{  margin-top: 3.5em;}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  background-color: #f7921e;
  margin-bottom: 0;
  padding: 0.5em 1em;
  color: #fff;
}
.breadcrumb-item.active {
  color: #fff;
}
.form-floating > .form-select {
padding-top: 1em;
  padding-bottom: 1em;
  background: #f4f4f4;
  border: none;
  color: #000;
}

@media (max-width: 991.98px) {

.form-floating > .form-control, .form-floating > .form-select {
  height: 41px;
  padding: 0;
}
} .img-apart{display: block;
   width: 35%!important;
   margin-left: auto;
   margin-right: auto;
     margin-bottom: 2em;
  }

  .margin-top{margin-top: -100px;
  min-height: 500px;  z-index: 999;}


  @media (max-width: 991.98px) {
  .margin-top{margin-top: 0!important; }
.service-item {
  position: relative;
  margin: 65px 0 25px 0;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
  min-height: 400px;
}
iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 200px;
}
thead, tbody, tfoot, tr, td, th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  padding: 10px;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  color: #000 !important;
  font-size: 13px;
}
}
  

.z-index{  z-index: 99999!important;}



/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #555;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.container1 {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container1::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: white;
  border: 4px solid #555;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 20px;
  position: absolute;
  top: 22px;
  width: 20px;
  z-index: 1;
  right: 20px;
  background: url("/templates/Default/img/orange.png") no-repeat;
    background-size: auto;
  background-size: contain;transform: scaleX(-1);
}
/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 20px;
  position: absolute;
  top: 22px;
  width: 20px;
  z-index: 1;
  left: 20px;
  background: url("/templates/Default/img/bullet.png") no-repeat;
    background-size: auto;
  background-size: contain;
   

}

/* Fix the circle for containers on the right side */
.right::after {
  left: -13px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: #f7f7f7;
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .timeline::after {
  left: 31px;
  }
  .display-16 {
  font-size: 11pt;
}
  
  /* Full-width containers */
  .container1 {
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .container1::before {
  left: 60px;
    transform: none;
  }

  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
  left: 15px;
  }
  
  /* Make all right containers behave like the left ones */
  .right {
  left: 0%;
  }
}
.text-left{text-align: left!important;}

a:hover {
  color: #f7921e;
}

span.help-block{color: red;}