/********** Template CSS **********/
:root {
    --primary: #064d74;
    --secondary: #ff5900 ;
    --light: #F4F7FE;
    --dark: #14183E;
    --contentSmallB: 500 14px 'Poppins';

}

body {
  font-family: 'Raleway', sans-serif !important;
}
.text-left{
  text-align: left;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
.text-secondaryy{
  color: #ff5900;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.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;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: rgba(255, 255, 255, .7);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "roboto";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@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;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -75px;
  background-color: #37517e;
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover {
  background-image: linear-gradient(to right, #ff5900, #ff8c4e );
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature {
    background: url(../img/feat-bg.png) center center no-repeat;
   
    background-size: cover;
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}
  
.case-item:hover img {
    transform: scale(1.2);
}
  
.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--white-color);
    background-color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

.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 {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.service-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    width: 80%; /* Adjust width as needed */
  }
  
  .service-card {
    background-color: #f1f1f1;
    color: black;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: 30%; /* Adjust width for responsiveness */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out; /* Smooth animation transitions */
  }
  
  .service-card i {
    font-size: 3em;
    margin-bottom: 10px;
    color: #333;
  }
  
  .service-card-content {
    padding: 0;
  }
  
  .service-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .animate {
    animation: move-up 3s infinite alternate ease-in-out; /* Animates upwards */
  }
  
  .animate-down {
    animation: move-down 3s infinite alternate ease-in-out; /* Animates downwards */
  }
  @keyframes move-up {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px); /* Move element 10px up */
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes move-down {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px); /* Move element 10px down */
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes move {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
  
  /* Media Queries for Responsiveness (adjust as needed) */
  
  @media screen and (min-width: 768px) {
    .service-card-container {
      justify-content: space-around;
    }
    .service-card {
      width: 45%;
    }
  }

  .service-card:hover{
    scale: 1px;
    color: white;
    background-color: #14183E;

  }
  
  .service-card:hover i {
    font-size: 3em;
    margin-bottom: 10px;
    color: white;
  }

  .service-card-content:hover h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .pricing-plan li {
    border-bottom: 1px dotted #ededed;
    font-size: 16px;
  }
  
  .pricing-plan {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 50px;
  }
  
  .pricing-plan .card-header {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
  }
  
  .card li {
    padding: 8px 0;
  }
  
  .set-price {
    background: #225b8b !important;
    color: #ffffff;
  }
  .starter {
    background: #2da2bc !important;
    color: #ffffff;
  }
  
  .advanced {
    background: #f79125 !important;
    color: #ffffff;
  }
  
  .business {
    background: #cc2836 !important;
    color: #ffffff;
  }
  

  


























/* Style the pricing plans container */
.pricing-plans {
  font-family: 'Roboto', sans-serif;
  position: relative;
  margin: 0 auto;
  max-width: 100%;

  /* Style each pricing plan */
  .plan {
 
    /* Style the element before the plan */
    &:before {
      position: relative;
      content: '';
      border: 1px solid transparent;
      width: 100%;
      display: block;
      padding: 0.5rem;
      height: 42px;
    }

    width: 90%;
    margin: 0 auto;

    /* Apply responsive styles for screens wider than 1200px */
  

    min-width: 0;
    box-shadow: 0 3px 0px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    padding: 2.25rem 0;
    position: relative;
    will-change: transform;
    text-align: center;

    /* Style the options plan */
    &.options {
      font-size: 0.75rem;

      .list-group {
        .list-group-item {}
      }
    }

    /* Style the popular plan */
    &.popular {
      &:before {
        background-color: $default;
        content: 'MOST POPULAR';
        border-color: $default;
      }
    }

    /* Style the plan header */
    .plan-header {
      border: 1px solid $default;
      border-right-color: transparent;
      border-bottom-color: transparent;
      background-color: rgba(221, 221, 221, 0.2);

      /* Style the first plan header */
      &.first {
        border-color: transparent;
        background-color: transparent;
      }

      /* Style the last plan header */
      &.last {
        border-right: 1px solid <span class="math-inline">default;
\}

display\: <0\>flex;
flex\-direction\: column;
align\-content\: center;
vertical\-align\: top;
position\: relative;
min\-height\: 185px;
padding\: 1\.5rem;
h3 \{
font\-size\: 2rem;
margin\: 0;
text\-align\: center;
\.label \{
display\: block;
font\-size\: 1rem;
letter\-spacing\: 1px;
margin\: 0 auto 0px;
text\-transform\: uppercase;
font\-weight\: 700;
\}
\.figure \{
padding\: 5px 0 5px;
position\: relative;
span \{
display\: inline\-block;
\}
\.amount \{
&\:before \{
content\: '</span>';
              font-size: 1.3rem;
              font-weight: 400;
              vertical-align: top;
              letter-spacing: normal;
            }

            &:after {
              position: relative;
              top: -6px;
              content: '/MO';
              letter-spacing: normal;
              font-weight: 400;
              vertical-align: bottom;
              font-size: 0.8rem;
              text-transform: uppercase;
            }

            font-size: 4rem;
            font-weight: 700;
            letter-spacing: -3px;
            line-height: 1;
          }
        }
        .foreword {
          display: block;
          font-size: .8rem;
          text-transform: uppercase;
          padding: 0;
        }
        .afterword {
          font-size: .7rem;
          text-transform: uppercase;
          padding: 0;
          white-space: nowrap;
          color: lighten($black, 30%);
          letter-spacing: 0px;
        }
        .text {
          font-size: 1rem;
          line-height: 1.5;
          margin: 0px;
          text-align: left;
        }
      }
      .button {
        margin-top: auto;
        display: block;
      }
    }
   
    .plan-info {
    
      .list-group {
        .list-group-item {
          border-radius: 0px;
          border-width: 1px;
          border-right-color: transparent;
          font-weight: 700;
        }
        &.first {
           @media only screen and (min-width: 1200px) {
             margin-top: 11.75rem;
          }
          .list-group-item {
            border-color: transparent;
            padding: .9rem 1rem;
          }
        }
        &.last {
          .list-group-item {
            border-right-color: $default;
          }
        }
      }
    }
  }
}





















/*** Service ***/
.service1 .nav .nav-link {
  transition: .5s;
}

.service1 .nav .nav-link.active {
  border-color: var(--primary) !important;
  background: var(--primary);
}

.service1 .nav .nav-link.active h5 {
  color: #FFFFFF !important;
}

.service1 .nav .nav-link.active h5 i {
  color: #FFFFFF !important;
}


  /* Add this style to your existing stylesheet or in the head section */
  .service1-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #002e47;
    transition: transform 0.3s ease-in-out;
}

.service1-card img {
    max-width: 100px; /* Adjust the max-width as needed */
    margin-bottom: 15px;
}

.service1-card:hover {
    transform: scale(1.05);
}

/* Add this style for the fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.service1-card {
    animation: fadeIn 1s ease-out;
}




















































:root {
  --white-color:                  #ffffff;
  --primary-color:                #1363C6;
  --secondary-color:              #ff5900 ;
 

 
}





/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}



.section-overlay {

  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}



/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}



/*---------------------------------------
  PAGINATION              
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active>.page-link, .page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  background-color: linear-gradient(to bottom right, #F6EBE0, #AFEEEE);


  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 85%;
  background-color: #ff823f;
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color:var(--primary);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0px;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color:  var(--dark);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--primary);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: #ff5900;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: #ff5900;
}


/*---------------------------------------
  FAQs              
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: #064d74;
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 40px;
}

/*---------------------------------------
  NEWSLETTER               
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}







/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  
    

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }

  .custom-block-topics-listing > .d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 85%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }
}


.circle-notification {
  position: relative;
  display: inline-block;
  width: 8px; /* Adjust width as needed */
  height: 8px; /* Adjust height as needed */
  background-color: cyan; /* Change color as desired */
  border-radius: 50%;
  margin-right: 5px; /* Adjust margin as needed */
  top: -3px; /* Adjust vertical position as needed */
  animation: blink 1s infinite; /* Add blink animation */
}

@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.gray{
  background-color: var(--primary);
 
  padding: 2px;
  padding-top: 2px;
  margin: 4px;
  border-radius: 10px;
}
.bg-primary1 {
  background:

      url(../img/bg-dot.png),
      url(../img/bg-dot.png),
      url(../img/bg-round.png),
      url(../img/marketing.png),
      url(../img/bg-bg.png);
  background-position:

      10px 10px,
      bottom 190px right 10px,
      left 55% top -1px,
      left 20% bottom -1px,
      center bottom -1px;
  background-repeat: no-repeat;
  
}
.bg-primary3 {
  background:
 
      url(../img/communication.png),
      
      url(../img/seo.png),
      url(../img/social.png),
      url(../img/marketing.png),
      url(../img/bg-dot.png),
      url(../img/bg-round.png),
      url(../img/bg-tree.png),
      url(../img/bg-bg.png);
  background-position:
  top 30% left 1% ,

     top 100px right 10px ,
     top 550px left 500px ,
     bottom 350px right 15px ,
      bottom 190px right 10px,
      left 1% top -1px,
      left 45% bottom -1px,
      center bottom -1px;
  background-repeat: no-repeat;
  
}
.bg-primary4 {
  background:
 
      url(../img/communication.png),
      
      url(../img/seo.png),
     
      url(../img/bg-bg.png);
  background-position:
  top 10% left 1% ,

     top 100px right 10px ,
  

      center bottom -20px;
  background-repeat: no-repeat;
  
}
.bg-primary2 {
  background:

      url(../img/bg-dot.png),
      url(../img/bg-dot.png),
      url(../img/bg-round.png),
      url(../img/bg-tree.png);
    
  background-position:

      10px 10px,
      bottom 190px right 10px,
      left 55% top -1px,
    
      center bottom -1px;
  background-repeat: no-repeat;
  
}
.bg-dark1{
  background-color: #14183e;
}

.btn1-outline-light:hover{
  color:white;
  background-color:#064d74;
  border-color:#f4f7fe
}

.btn1-outline-light{
  color:white;
background-color: #ff5900;
  border-color: #002e47;
}

.pillsection{

font-weight: bold; 
font-size: larger;
}
.text-blackk-50{
  font-weight: bold;
  color:#064d74 !important
} 
.text-blackk-50:hover{
  color:#ff5900 !important
}

.text-service{
  color: #ff5900;

}
.red-text {  
  font-weight: bold;
  color: #ff5900 !important
}
.blue-text{
  font-weight: bold;
  color: #002e47;
}

.logospace {
  max-width: 20%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .logospace {
    max-width: 10%;
  }
}
.main-font {
  color: var(--primary);
  font-family: 'Gill Sans', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
}
.main-font1 {
  color: #ff5900;
  font-family: 'Gill Sans', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
}


.feature-box{

  background-color: white ;
}
.red-text1{
  color: #ff8c4e;
}
.red-text2{
  color: navy;
}



  .tilt-right , .tilt-right p{
    transform: rotate(0deg); /* Rotate the element 30 degrees clockwise */
    -webkit-transform: rotate(0deg); /* For compatibility with older WebKit browsers */
    -moz-transform: rotate(0deg); /* For compatibility with older Mozilla browsers */
    transition: transform 0.3s ease-in-out; /* Add a smooth transition effect */
 color: black;

  
  }
  .tilt-right :hover, .tilt-right p :hover {
    transform: rotate(15deg); /* Rotate the element 30 degrees clockwise */
    -webkit-transform: rotate(15deg); /* For compatibility with older WebKit browsers */
    -moz-transform: rotate(15deg); /* For compatibility with older Mozilla browsers */
    transition: transform 0.3s ease-in-out; /* Add a smooth transition effect */
    color: white;
    background-color: none;
    background-image: linear-gradient(to right, #ff5900, #ff8c4e );

  }
 
  .tilt-right h4,.tilt-right a{
color: navy;
  transform: none !important; /* Prevent content from inheriting tilt */
}
.tilt-right p{

  transform: none !important; /* Prevent content from inheriting tilt */
}




.z-2{
  z-index: auto;
}
  
.display-font {
  color: var(--primary);
  font-size: 1.5rem; /* Not actually defined in pixels in Bootstrap */
}
.image-container {
  position: relative; /* Make the container relative for positioning */
}

.image-shade {
  position: absolute; /* Position the shade element absolutely on top of the image */
  top: 0;
  left: 0;
  width: 100%; /* Match the width and height of the image container */
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Set a semi-transparent black background */
  opacity: 1; /* Initially hide the shade */
  transition: opacity 0.3s ease-in-out; /* Add a smooth transition effect */
}

.image-container:hover .image-shade {
  opacity: 0; /* Reveal the shade on hover */
}


.section-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; /* Extend to the bottom */
  background-color: rgba(0, 0, 0, 0.2); /* Adjust opacity and color as needed */
  z-index: -1; /* Place the shadow behind the content */
}
.rounded-pill1 {
  border-radius: 50rem !important;
  border-color: #ff5900 !important;
  color: #ff5900 !important;
}
.rounded-pill11 {
  border-radius: 50rem !important;
  border-color: #ff5900 !important;
  color: white !important;
}
.rounded-pill2 {
  border-radius: 50rem !important;
  border-color:#ff5900 !important;
  color: white !important;
  background-color: #ff5900;
}
.rounded-pill3 {
  border-radius: 50rem !important;
  border-color: none !important;
  color: white !important;
  background-color: #ff5900;
}
.rounded-pill4 {
  border-radius: 50rem !important;
  border-color: none !important;
  color: white !important;
  background-image: linear-gradient(to right, #ff5900, #ff8c4e );
}
.rounded-pill5 {
  border-radius: 50rem !important;
  border-color: none !important;
  color: white !important;
  background-image: linear-gradient(to right, #0D87ca, #28adf5 );
}
.rounded-pill5:hover {
  border-radius: 50rem !important;
  border-color: none !important;
  color: black !important;
  background-image: linear-gradient(to right,white,white);
}
.rounded-pill4:hover {
  border-radius: 50rem !important;
  border-color: none !important;
  color: black !important;
  background-image: linear-gradient(to right,white,white);
}
.rounded-pill3:hover {
  border-radius: 50rem !important;
  border-color: none !important;
  color: white !important;
  background-color: #002e47;
}

.pillsection{
  border-color: navy;
}
.container-fluid1 {
  background-color: var(--dark);
}
.container-fluid2 {
  background-image: linear-gradient(to right, #064d74, orange );
}

.margin {
  margin-top: none; /* Assuming "none" means no margin */
}

@media (max-width: 991px) {
  .margin {
    margin-top: 1rem;
  }
}






.justify-text{
  text-align: justify;
}




























/* new css added externally */




.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 10px 0px 10px 0px;
  position: relative;
  overflow: hidden;
}

.main-banner:after {
  content: '';
  background-image: url(../img/slider-left-dec.jpg);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 10px;
  width: 262px;
  height: 625px;
  z-index: -1;
}

.main-banner:before {
  content: '';
  background-image: url(../img/slider-right-dec.jpg);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 10px;
  width: 1159px;
  height: 797px;
  z-index: -1;
}


.main-banner1 {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 10px 0px 10px 0px;
  position: relative;
  overflow: hidden;
  background-color: none;
}

.main-banner1:after {
  content: '';
  background-image: url(../img/slider-left-dec1.jpg);
  background-color: none;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 10px;
  width: 262px;
  height: 900px;
  z-index: -1;
}

.main-banner1:before {
  content: '';
  background-image: url(../img/slider-right-dec1.jpg);
  background-color: none;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 10px;
  width: 1159px;
  height: 797px;
  z-index: -1;
}









.main-banner .left-content {
  margin-right: 15px;
}

.main-banner .left-content h6 {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 700;
  color: #fe664e;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.main-banner .left-content h2 {
  z-index: 2;
  position: relative;
  font-weight: 700;
  font-size: 50px;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.main-banner .left-content p {
  margin-bottom: 30px;
  margin-right: 45px;
}

.main-banner .right-image {
  text-align: right;
  position: relative;
  z-index: 20;
}

















.home_bubble .bubble {
  position: absolute;
  border-radius: 50%
}

.home_bubble .bubble.b_five {
  width: 30px;
  height: 30px
}

.home_bubble .bubble.b_three,.home_bubble .bubble.b_six,.bubble.b_three1,.bubble.b_six1 {
  width: 14px;
  height: 14px
}

.home_bubble .bubble.b_three {
  border: 2px solid rgb(0, 136, 255);
  top: 85%;
  left: 255px;
  -webkit-animation: spin1 1s infinite alternate;
  animation: spin1 1s infinite alternate
}

.home_bubble .bubble.b_three1 {
  border: 2px solid rgb(144, 0, 255);
  top: 55%;
  left: 600px;
  -webkit-animation: spin1 1s infinite alternate;
  animation: spin1 1s infinite alternate
}

.home_bubble .bubble.b_six {
  border: 2px solid rgba(0, 255, 255, 0.6);
  top: 22%;
  right: 55px;
  -webkit-animation: spin2 2s infinite alternate;
  animation: spin2 2s infinite alternate
}
.home_bubble .bubble.b_six1 {
  border: 2px solid rgba(0, 255, 255, 0.6);
  bottom: 22%;
  left: 55px;
  -webkit-animation: spin2 2s infinite alternate;
  animation: spin2 2s infinite alternate
}

.square-shape1 {
  opacity: .5;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: rgb(0, 247, 255);
  position: absolute;
  top: 33%;
  right: 55%;
  animation: spin1 3s infinite alternate
}

.square-shape1:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: -10px;
  top: 10px;
  border: 10px solid transparent;
  border-top-color: rgb(0, 255, 242)
}
.square-shape10 {
  opacity: .5;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: rgb(0, 247, 255);
  position: absolute;
  bottom: 16%;
  right: 30%;
  animation: spin1 3s infinite alternate
}

.square-shape10:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: -10px;
  top: 10px;
  border: 10px solid transparent;
  border-top-color: rgb(0, 255, 242)
}

.square-shape2 {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 255, 72, 0.4);
  top: 15%;
  left: 85px;
  animation: spin2 2s infinite alternate
}
.square-shape3 {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 255, 72, 0.4);
  top: 75%;
  right: 85px;
  animation: spin2 2s infinite alternate
}
.square-shape4 {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgb(255, 0, 0);
  top: 50%;
  left: 45px;
  -webkit-animation: spin1 1s infinite alternate;
  animation: spin1 1s infinite alternate
}
.square-shape5 {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgb(255, 0, 0);
  top: 80%;
  right: 50%;
  -webkit-animation: spin1 1s infinite alternate;
  animation: spin1 1s infinite alternate
}

@media screen and (max-width: 575px) {
  .square-shape2 {
      left:20px
  }
}

@-webkit-keyframes spin1 {
  0% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9)
  }

  100% {
      -webkit-transform: scale(1.5);
      transform: scale(1.5)
  }
}

@keyframes spin1 {
  0% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9)
  }

  100% {
      -webkit-transform: scale(1.5);
      transform: scale(1.5)
  }
}

@-webkit-keyframes spin2 {
  0% {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }

  100% {
      -webkit-transform: translateY(40px);
      transform: translateY(40px)
  }
}

@keyframes spin2 {
  0% {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }

  100% {
      -webkit-transform: translateY(40px);
      transform: translateY(40px)
  }
}

.form-group {
  margin-bottom: 1rem
}

.form-group label {
  margin-bottom: .5rem
}

.form-control:focus {
  border-color: #0c5adb
}

.form-check-input:checked {
  border-color: #0c5adb;
  background-color: #0c5adb
}

.quform-input {
  position: relative
}

.quform-input .quform-errors-wrap {
  position: absolute;
  right: 8px;
  top: 0;
  line-height: normal;
  z-index: 1
}

.quform-element>label {
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 15px
}

.quform-element>label .quform-required {
  color: #cc0101;
  font-size: 10px
}

.quform-inner input {
  width: 100%
}

.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top
}

.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px
}

.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal
}

.quform-errors>.quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal
}

.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal
}

.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-has-error input,.quform-has-error textarea,.quform-has-error select,.quform-has-error input[type=file],.quform-has-error .custom-file-label {
  border-color: #f5543f
}

.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-submit-inner {
  float: none
}

.quform-loading-wrap {
  float: none
}

.quform-loading-wrap .quform-loading {
  display: inline-block
}

.quform-element {
  margin-bottom: 1rem
}

.newsletter-footer .quform-elements {
  position: relative
}

.newsletter-footer .quform-submit-inner {
  position: absolute;
  right: 10px;
  top: 1px;
  width: auto
}

.newsletter-footer .quform-loading-wrap {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0
}

.newsletter-footer input {
  border: 1px solid rgba(255,255,255,0.1);
  height: 50px;
  padding: 0.5rem 4rem 0.5rem 1.5rem
}

.newsletter-footer .quform-has-error input {
  border-color: #f5543f
}

.newsletter-rounded .quform-has-error textarea,.newsletter-rounded .quform-has-error select {
  border-color: #f5543f
}

.newsletter-footer .quform-input .quform-errors-wrap {
  right: 15px
}

.newsletter-footer i {
  font-size: 1.5rem;
  line-height: 2rem
}
.whatsapp-icon {
  position: fixed;
  width: 3rem;
  height: 3rem;
 left: 45px;
  bottom: 45px;
  z-index: 99;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  color: #fff;  /* WhatsApp green color */
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease-in-out;
 
}

.whatsapp-icon:hover {
  opacity: 0.8;
  color: #ff5900;

}

.accordion-style .card {
  background: transparent;
  box-shadow: none;
  margin-bottom: 15px;
  margin-top: 0 !important;
  border: none
}

.accordion-style .card:last-child {
  margin-bottom: 0
}

.accordion-style .card-header {
  border: 0;
  background: none;
  padding: 0;
  border-bottom: none
}

.accordion-style .btn-link {
  color: #ffffff;
  position: relative;
  background: #040c61;
  border: 1px solid #040c61;
  display: block;
  width: 100%;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  text-align: left;
  white-space: normal;
  box-shadow: none;
  padding: 15px;
  text-decoration: none
}

.accordion-style .btn-link:hover {
  text-decoration: none
}

.accordion-style .btn-link.collapsed {
  background: #ffffff;
  border: 1px solid #040c61;
  color: #1e2022;
  border-radius: 4px
}

.accordion-style .btn-link.collapsed:after {
  background: none;
  border-radius: 4px;
  content: "+";
  right: 16px;
  left: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  height: 26px;
  transform: none;
  width: 26px;
  top: 15px;
  text-align: center;
  border: 1px solid #040c61;
  color: #040c61
}

.accordion-style .btn-link:after {
  background: none;
  border: 1px solid #ffffff;
  border-radius: 4px;
  content: "-";
  right: 16px;
  left: inherit;
  font-size: 20px;
  font-weight: 600;
  height: 26px;
  line-height: 20px;
  transform: none;
  width: 26px;
  top: 15px;
  position: absolute;
  color: #ffffff;
  text-align: center
}

.accordion-style .card-body {
  padding: 20px;
  border-top: none;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 1px solid #040c61;
  border-right: 1px solid #040c61;
  border-bottom: 1px solid #040c61
}

@media screen and (max-width: 1199px) {
  .accordion-style .btn-link {
      padding:12px 45px 12px 12px
  }

  .accordion-style .btn-link:after {
      top: 12px;
      right: 18px;
      height: 22px;
      line-height: 20px;
      width: 22px;
      padding-left: 0px;
      font-size: 18px
  }

  .accordion-style .card-body {
      padding: 15px
  }

  .accordion-style .btn-link.collapsed:after {
      top: 12px;
      right: 18px;
      height: 22px;
      line-height: 20px;
      width: 22px;
      padding-left: 0px;
      font-size: 18px
  }
}

@media screen and (max-width: 767px) {
  .accordion-style .card {
      margin-bottom:10px
  }
}

.counter span:after {
  content: '+'
}

.progress-text {
  font-size: 15px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 5px;
  position: relative
}

.progress-medium {
  height: 8px;
  border-radius: 50px;
  box-shadow: none
}

.progress-bar {
  background-color: #040c61
}

.history-wrapper {
  position: relative
}

.history-wrapper .row [class*='col-'] {
  padding-left: 50px;
  padding-right: 50px
}

.history-wrapper .history-line {
  display: block;
  position: absolute;
  top: -50px;
  bottom: -20px;
  left: 50%;
  z-index: 0;
  width: 1px;
  margin-left: -1px;
  background-color: #ededed
}

.history-wrapper .history-dot {
  display: block;
  position: absolute;
  top: 72px;
  left: 50%;
  z-index: 1;
  content: " ";
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-width: 5px;
  border-style: solid;
  border-radius: 50%
}

.history-wrapper .history-dot.pink {
  background-color: #e94794;
  border-color: #fdc5d3
}

.history-wrapper .history-dot.purple {
  background-color: #7778fa;
  border-color: #e4e4fe
}

.history-wrapper .history-dot.yellow {
  background-color: #ff9322;
  border-color: #ffe9d3
}

.history-wrapper .history-dot.blue {
  background-color: #73b4fe;
  border-color: #e3f0ff
}

.history-wrapper .history-content {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 40px
}

.history-wrapper .history-content.border-dark-pink:hover {
  background-color: #e94794;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  transition: background-color 0.32s
}

.history-wrapper .history-content:hover h3,.history-wrapper .history-content:hover p {
  color: #ffffff !important
}

.history-wrapper .history-content.border-purple:hover {
  background-color: #7778fa;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  transition: background-color 0.32s
}

.history-wrapper .history-content.border-yellow:hover {
  background-color: #ff9322;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  transition: background-color 0.32s
}

.history-wrapper .history-content.border-blue:hover {
  background-color: #73b4fe;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  transition: background-color 0.32s
}

@media screen and (max-width: 991px) {
  .history-wrapper .row [class*='col-'] {
      padding-left:40px;
      padding-right: 40px
  }

  .history-wrapper .history-content {
      padding: 30px
  }
}

@media screen and (max-width: 767px) {
  .history-wrapper .row [class*='col-'] {
      padding-left:50px;
      padding-right: 0
  }

  .history-wrapper .history-line {
      top: -30px;
      left: 0
  }

  .history-wrapper .history-dot {
      top: 60px;
      left: 0;
      width: 18px;
      height: 18px
  }
}

@media screen and (max-width: 575px) {
  .history-wrapper .row [class*='col-'] {
      padding-left:15px;
      padding-right: 15px
  }

  .history-wrapper .history-line,.history-wrapper .history-dot {
      display: none
  }
}

.faq-form .quform-element>label {
  color: #fff
}

.clients-wrapper {
  padding: 30px 60px;
  width: 100%;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  text-align: center
}

.clients-wrapper a {
  position: relative;
  transition: all 0.4s;
  text-decoration: none;
  z-index: 1;
  display: inline-block
}

.clients-wrapper .hover-image {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0;
  text-align: center
}

.clients-wrapper:hover .main-image {
  opacity: 0
}

.clients-wrapper:hover .hover-image {
  opacity: 1
}

@media screen and (max-width: 991px) {
  .clients-wrapper {
      padding:25px 65px
  }
}

@media screen and (max-width: 767px) {
  .clients-wrapper {
      padding:25px
  }
}

@media screen and (max-width: 575px) {
  .clients-wrapper {
      padding:20px 50px
  }
}

.contact-wrapper {
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  padding: 40px
}

.map-wrapper {
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  padding: 15px
}

@media screen and (max-width: 1199px) {
  .contact-wrapper {
      padding:30px
  }
}

.countdown {
  list-style: none;
  padding-left: 0
}

.countdown li {
  border-right: 1px solid rgba(225,225,225,0.13);
  display: inline-block;
  padding: 0 30px;
  text-align: center;
  color: #232323
}

.countdown li:first-child {
  padding-left: 0
}

.countdown li:last-child {
  padding-right: 0;
  border-right: none
}

.countdown li span {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  position: relative
}

.countdown li span:before {
  content: "";
  height: 1px;
  position: absolute;
  width: 100%
}

.countdown li p.timeRefDays,.countdown li p.timeRefHours,.countdown li p.timeRefMinutes,.countdown li p.timeRefSeconds {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  color: #fff;
  padding: 0;
  text-transform: uppercase
}

.coming-soon .social-icon {
  margin-bottom: 0;
  text-align: center
}

.coming-soon .social-icon li {
  text-align: center;
  margin-right: 5px;
  display: inline-block
}

.coming-soon .social-icon li:last-child {
  margin-right: 0
}

.coming-soon .social-icon li a {
  color: #1c1c25;
  border-radius: 4px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: inline-block;
  font-size: 15px;
  background: #ffffff;
  border: 2px solid #ededed
}

.coming-soon .social-icon li a:hover {
  background: #040c61;
  color: #ffffff;
  border: 2px solid #040c61
}

@media screen and (max-width: 1199px) {
  .coming-soon .countdown li span {
      font-size:44px
  }
}

@media screen and (max-width: 767px) {
  .coming-soon-wrapper {
      min-height:600px
  }

  .countdown li {
      padding: 0 20px
  }

  .coming-soon .countdown li span {
      font-size: 40px
  }

  .coming-soon .social-icon li a {
      height: 32px;
      width: 32px;
      line-height: 34px;
      font-size: 14px
  }
}

@media screen and (max-width: 575px) {
  .countdown li {
      padding:0 10px
  }

  .coming-soon .countdown li span {
      font-size: 32px
  }

  .countdown li p.timeRefDays,.countdown li p.timeRefHours,.countdown li p.timeRefMinutes,.countdown li p.timeRefSeconds {
      font-size: 10px
  }

  .coming-soon .social-icon li a {
      height: 30px;
      width: 30px;
      line-height: 30px;
      font-size: 12px
  }
}

.search-form_input {
  color: #040c61
}

.search-frame h4 a:hover {
  color: #040c61
}

.search-frame .search_list .match {
  color: #040c61
}

.search-frame .search_list li:before {
  color: #040c61
}

.search-frame .search_list li+li {
  border-top: 3px solid #040c61
}

.search-frame .search {
  color: #040c61
}

.side-bar .widget {
  margin-bottom: 30px;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  border-radius: 4px
}

.side-bar .widget:last-child {
  margin-bottom: 0
}

.widget-title {
  position: relative;
  font-size: 20px;
  padding-bottom: 20px;
  margin-bottom: 30px
}

.widget-title:before {
  background: #040c61;
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  height: 2px;
  width: 38px
}

.widget-title:after {
  position: absolute;
  content: '';
  left: 46px;
  bottom: -3px;
  height: 8px;
  width: 8px;
  border-radius: 50px;
  background-color: #040c61
}

.search-bar {
  position: relative
}

.side-bar .search-bar input[type="search"] {
  display: block;
  width: 100%;
  padding: 10px 40px 10px 25px;
  font-size: 15px;
  color: #4b4342;
  border: 1px solid #ededed;
  background: none;
  border-radius: 4px;
  background: #ffffff;
  margin-bottom: 0
}

.side-bar .search-bar .btn-newsletter {
  position: absolute;
  color: #040c61;
  right: 18px;
  top: 10px;
  padding: 0px;
  font-size: 18px;
  z-index: 3;
  outline: none
}

.side-bar .search form button:hover:before {
  border-radius: 0;
  padding: 0
}

.cat-list,.archive-list {
  margin: -15px 0 0 0;
  padding: 0;
  margin-bottom: 0
}

.cat-list li,.archive-list li {
  font-size: 15px;
  color: #000;
  text-align: left;
  font-weight: 600;
  list-style: none;
  padding: 12px 0 12px 0;
  border-bottom: 1px dashed #dddddd;
  position: relative
}

.cat-list li:last-child,.archive-list li:last-child {
  border: none;
  padding-bottom: 0
}

.cat-list li a,.archive-list li a {
  color: #1e2022;
  text-transform: capitalize;
  width: 100%;
  padding-left: 0;
  display: inline-block
}

.cat-list li span,.archive-list li span {
  position: absolute;
  right: 0;
  top: 13px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 4px;
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #040c61
}

.cat-list li a i,.archive-list li a i {
  color: #1c1c25;
  font-size: 15px;
  display: inline-block;
  margin: 0 10px 0 0
}

.social-icons {
  margin-bottom: 0
}

.social-icons li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
  text-align: center;
  font-size: 16px
}

.social-icons li:last-child {
  margin-right: 0
}

.social-icons li a {
  color: #1c1c25;
  border-radius: 4px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  display: inline-block;
  font-size: 14px;
  border: 2px solid #ededed;
  background: #ffffff
}

.social-icons li a:hover {
  background: #040c61;
  color: #ffffff;
  border: 2px solid #040c61
}

.blog-tags {
  margin-bottom: 0
}

.blog-tags li {
  display: inline-block
}

.blog-tags li a {
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  padding: 8px 12px;
  margin: 5px 5px 5px 0;
  display: inline-block;
  border: 1px solid #ededed
}

.blog-tags li a:hover {
  background: #040c61;
  color: #ffffff !important;
  border: 1px solid #040c61
}

@media screen and (max-width: 1199px) {
  .side-bar .widget {
      padding:25px 20px
  }
}

@media screen and (max-width: 991px) {
  .widget-title {
      margin-bottom:25px
  }
}

@media screen and (max-width: 767px) {
  .widget-title {
      font-size:18px
  }

  .social-icons li a {
      height: 32px;
      width: 32px;
      line-height: 30px;
      font-size: 13px
  }

  .cat-list li,.archive-list li {
      font-size: 14px
  }

  .cat-list li span,.archive-list li span {
      width: 20px;
      height: 20px;
      line-height: 20px;
      font-size: 13px
  }

  .blog-tags li a {
      font-size: 13px;
      padding: 6px 10px
  }
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 15px;
  position: relative
}

.meta-list li {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  color: #777;
  font-weight: 600;
  margin-right: 20px
}

.post-content {
  padding: 25px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  border-top: none;
  margin-bottom: 70px
}

.post-content blockquote {
  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin: 0 auto;
  color: #232323;
  line-height: 40px;
  margin-bottom: 20px
}

.post-content blockquote:before {
  content: '\f10d';
  font-family: Font Awesome\ 5 Free;
  font-weight: 600;
  font-size: 36px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-style: bold;
  background-color: #ffffff;
  display: block;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  color: #040c61;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px
}

.post-content blockquote:after {
  position: absolute;
  content: "";
  right: 0;
  left: 0;
  text-align: center;
  margin: 0 auto;
  background-color: transparent
}

.post-content blockquote cite {
  display: block;
  position: relative;
  margin-top: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize
}

.post-content .separator {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed #ddd;
  text-align: left
}

.post-content .blog-detail-list {
  list-style: none;
  margin: 0
}

.post-content .blog-detail-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500
}

.post-content .blog-detail-list li:last-child {
  margin-bottom: 0
}

.post-content .blog-detail-list li:after {
  content: '\f058';
  font-family: Font Awesome\ 5 Free;
  position: absolute;
  left: 0px;
  top: 1px;
  z-index: 1;
  font-weight: 600;
  color: #0063dd
}

.post-content .blog-post-tag {
  margin-bottom: 0
}

.post-content .blog-post-tag li {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 10px;
  margin-right: 6px;
  border: 1px solid #ededed;
  line-height: 1
}

.post-content .blog-post-tag li:last-child {
  margin-right: 0
}

.post-content .share-post {
  text-align: right
}

.post-content .share-post ul li {
  display: inline-block;
  margin: 0 10px;
  font-size: 16px
}

.post-content .share-post ul li:last-child {
  margin-right: 0
}

.post-content .share-post ul li a {
  color: #2b303b
}

.author-info-wrapper {
  position: relative;
  z-index: 0;
  margin: 30px 0 46px;
  border: 0;
  border-radius: 4px;
  background-position: center;
  background-color: #f8f9fa;
  text-align: center;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1)
}

.author-info-avatar img {
  border-radius: 4px;
  margin-top: -28px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1)
}

.author-info-content {
  flex-grow: 1;
  padding: 20px
}

.author-info-content .social-icons {
  margin-bottom: 0
}

.author-info-content .social-icons li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
  text-align: center;
  font-size: 16px
}

.author-info-content .social-icons li:last-child {
  margin-right: 0
}

.author-info-content .social-icons li a {
  color: #1c1c25;
  border-radius: 4px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  display: inline-block;
  font-size: 14px;
  border: 2px solid #ededed;
  background: #ffffff
}

.author-info-content .social-icons li a:hover {
  background: #040c61;
  color: #ffffff;
  border: 2px solid #040c61
}

.blogs .posts-wrapper .comments-area {
  padding: 25px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.1)
}

@media screen and (max-width: 1199px) {
  .blogs .posts-wrapper .post-content blockquote {
      line-height:35px
  }

  .blogs .posts-wrapper .post-content blockquote:before {
      font-size: 30px;
      width: 55px;
      height: 55px;
      line-height: 55px;
      margin-bottom: 15px
  }
}

@media screen and (max-width: 991px) {
  .blogs .posts-wrapper .post-content blockquote {
      line-height:30px
  }

  .blogs .posts-wrapper .post-content blockquote:before {
      font-size: 26px;
      width: 50px;
      height: 50px;
      line-height: 50px
  }
}

@media screen and (max-width: 767px) {
  .blogs .posts-wrapper .post-content blockquote:before {
      font-size:22px;
      width: 45px;
      height: 45px;
      line-height: 45px
  }

  .blogs .posts-wrapper .post-content .blog-detail-list li {
      font-size: 14px
  }

  .blogs .posts-wrapper .post-content .share-post {
      text-align: unset
  }

  .blogs .posts-wrapper .meta-list li {
      margin-right: 15px
  }

  .blogs .posts-wrapper .post-content .separator {
      margin-top: 20px
  }

  .blogs .posts-wrapper .post-content .share-post ul li {
      font-size: 15px;
      margin: 0 8px
  }

  .blogs .posts-wrapper .post-content .share-post ul li:first-child {
      margin-left: 0
  }

  .blogs .posts-wrapper .post-content .share-post ul li:last-child {
      margin-right: 0
  }

  .author-info-wrapper {
      margin: 70px 0 45px
  }

  .author-info-content .social-icons li a {
      height: 32px;
      width: 32px;
      line-height: 30px;
      font-size: 13px
  }
}

@media screen and (max-width: 575px) {
  .blogs .posts-wrapper .post-content,.blogs .posts-wrapper .comments-area {
      padding:20px
  }

  .blogs .posts-wrapper .post-content blockquote {
      line-height: 25px
  }
}

footer {
  padding: 80px 0 0
}

@media screen and (max-width: 767px) {
  footer {
      padding-top:60px
  }
}

.footer-style1 {
  margin-top: -100px
}

.footer-bar {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 80px;
  text-align: center
}

@media screen and (max-width: 767px) {
  .footer-bar {
      margin-top:50px
  }
}

.footer-title {
  position: relative;
  font-size: 20px;
  padding-bottom: 20px;
  margin-bottom: 40px;
  color: #ffffff
}

.footer-title:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  height: 2px;
  width: 38px;
  background-color: #ffffff
}

.footer-title:after {
  position: absolute;
  content: '';
  left: 46px;
  bottom: -3px;
  height: 8px;
  width: 8px;
  border-radius: 50px;
  background-color: #ffffff
}

@media screen and (max-width: 1199px) {
  .footer-title {
      margin-bottom:30px;
      padding-bottom: 15px
  }
}

@media screen and (max-width: 991px) {
  .footer-title {
      font-size:18px;
      margin-bottom: 25px
  }
}

.footer-list {
  list-style: none;
  margin-bottom: 0
}

.footer-list li {
  position: relative;
  margin-bottom: 15px
}

.footer-list li:last-child {
  margin-bottom: 0
}

.footer-list li a {
  position: relative;
  color: #ffffff;
  font-size: 15px;
  padding-left: 30px;
  transition: all 300ms ease
}

.footer-list li a:before {
  position: absolute;
  content: '...';
  left: 0px;
  top: -26px;
  font-size: 32px;
  letter-spacing: 0
}

.footer-social-icon {
  margin-bottom: 0
}

.footer-social-icon li {
  text-align: center;
  margin-right: 5px;
  display: inline-block
}

.footer-social-icon li:last-child {
  margin-right: 0
}

.footer-social-icon li a {
  color: #ffffff;
  border-radius: 4px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  display: inline-block;
  font-size: 14px;
  border: 1px solid #ffffff
}

.footer-social-icon li a:hover {
  background: #ff9322;
  color: #ffffff;
  border: 1px solid #ff9322
}

@media screen and (max-width: 767px) {
  .footer-social-icon li a {
      height:32px;
      width: 32px;
      line-height: 30px;
      font-size: 13px
  }
}

.buy-theme {
  transition-timing-function: ease-in-out;
  transition-duration: .2s;
  position: fixed;
  top: 130px;
  right: -89px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 9999
}

.buy-theme i {
  font-size: 16px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: #6f6f6f
}

.all-demo i {
  font-size: 15px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: #6f6f6f
}

.buy-theme:hover,.all-demo:hover {
  transition-timing-function: ease-in-out;
  transition-duration: .2s;
  right: 0px;
  background: #232323
}

.buy-theme span,.all-demo span {
  padding: 0 9px;
  position: relative;
  top: 0;
  opacity: 0
}

.buy-theme:hover span,.all-demo:hover span {
  opacity: 1;
  color: #fff
}

.buy-theme:hover i,.all-demo:hover i {
  color: #fff
}

.buy-theme a,.all-demo a {
  color: #232323;
  font-size: 10px;
  text-transform: uppercase;
  padding: 5px 10px;
  display: block;
  text-decoration: none;
  font-weight: 500
}

.all-demo {
  transition-timing-function: ease-in-out;
  transition-duration: .2s;
  position: fixed;
  top: 172px;
  right: -105px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 9999
}

















