@font-face {
    font-family: 'Work Sans';
    src: url('WorkSans-Black.woff2') format('woff2'),
        url('WorkSans-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans Medium';
    src: url('WorkSans-Medium.woff2') format('woff2'),
        url('WorkSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans Light';
    src: url('WorkSans-Light.woff2') format('woff2'),
        url('WorkSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('WorkSans-ExtraBold.woff2') format('woff2'),
        url('WorkSans-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('WorkSans-ExtraLight.woff2') format('woff2'),
        url('WorkSans-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans Bold';
    src: url('WorkSans-Bold.woff2') format('woff2'),
        url('WorkSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('WorkSans-SemiBold.woff2') format('woff2'),
        url('WorkSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans Regular';
    src: url('WorkSans-Regular.woff2') format('woff2'),
        url('WorkSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.button-21 {
  font-size: 15px !important;
  padding: 5px 16px !important;
}

body { font-family: 'Work Sans Regular', "Open Sans";
  color: #444444;font-size: 1em;
}

a {
  color: inherit;
  text-decoration: none!important;
}

a:hover {
  color: #0f497f;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Work Sans Medium';
}

.h1, h1{font-size: 3rem;}
.h2, h2 {
    font-size: 2rem;
}
.h3, h3 {
    font-size: 2rem;
}
.h4, h4 {
    font-size: 2rem;
}
.h5, h5 {
    font-size: 1.3rem;
}
.border-primary {
    border-color: #0060be !important;
}
strong{font-family: 'Work Sans Bold';}
.text-lightfont{font-family: 'Work Sans Light';}
.text-Mediumfont{font-family: 'Work Sans Medium';}

.text-primary, .nav-link, .accordion-button:not(.collapsed){color:#002673!important;}
.bg-primary, .btn-primary{background:#2e4392!important;}
.bg-primary-lgt{background: #f1f9ff;}
.bg-warning-lgt{background: #fff6ea;}

.bg-primary a:hover{color:#84f5ff;}

.text-warning{color: #ec9a25!important;}

.text-danger, .nav-pills .nav-link.active{color: #c02121!important}

.banner{min-height: 200px;  background-size: cover!important; background-repeat:no-repeat!important;}

.modal-content {
	background-color: #e0f5ff!important;}

.standard-content .standard-main-content .post-entry.standard-post-entry.classic-post-entry .col-md-8, .post-entry .inner-post-entry .col-md-8{width: 100%!important}

.variants-dd{}
.variants-dd {
  /* Reset Select */
  appearance: none;
  outline: 0;
  border: 0;
  box-shadow: none;
  /* Personalize */
  flex: 1;
  padding: 0 1em;
  color: #fff;
  background-color:#1A1A1A;
  background-image: none;
  cursor: pointer;
}
/* Remove IE arrow */
.variants-dd::-ms-expand {
  display: none;
}
/* Custom Select wrapper */
.variants-dd {
  position: relative;
  display: flex;
  width: 20em;
  height: 3em;
  border-radius: .25em;
  overflow: hidden;
}
/* Arrow */
.variants-dd::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  background-color: #34495e;
  transition: .25s all ease;
  pointer-events: none;
}
/* Transition */
.variants-dd:hover::after {
  color: #f39c12;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #006180;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f58220;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {display:none;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0060be;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #848484;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0px !important;
  border-bottom: 3px solid #f58220;
}

#header.header-scrolled,
#header.header-inner-pages {
  background:#fff;
}
#header.header-scrolled{position: fixed; width: 100%; box-shadow:0px -10px 11px 13px #0000001c;}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
 
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px  15px;
  font-size: 18px;
  font-weight: bold;
  color: #024d87;
  white-space: nowrap;
  transition: 0.3s;
  font-family: 'Work Sans Bold';
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #000000;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #218F3D;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #006180;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #44454A;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background:#2b4470b8;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #218F3D;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #32C156;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #218F3D;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Page Section
--------------------------------------------------------------*/
.faqsbanner{background: url("../img/faqs-banner.html");}
.aboutbanner{background: url("../img/about-banner.html");}
.contactbanner{background: url("../img/contact-banner.jpg");}

.headerlst{background: url("../img/header-lft.html") no-repeat bottom right;}
.headerlst span{position: absolute; top:50%; transform: translateY(-50%)}

.hombnr2 span{bottom: 30px; left:10%; right: 10%; font-size: 1rem;}

.gallery-content .col-md-4 img {
  width: 100%;

}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: #32C156;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #218F3D;
}

#hero .btn-get-started:hover {
  background: #218F3D;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #218F3D;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #c8a264;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #c8a264;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #218F3D;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #218F3D;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #218F3D;
}

.about .content .btn-learn-more:hover {
  background: #218F3D;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #32C156;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #218F3D;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #218F3D;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #32C156;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #218F3D;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #32C156;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #218F3D;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #32C156;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #218F3D;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.html") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #218F3D;
  border: 2px solid #218F3D;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #218F3D;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #218F3D;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #218F3D;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #218F3D;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #32C156;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #32C156;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #218F3D;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #32C156;
}

.pricing h4 {
  font-size: 48px;
  color: #32C156;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #218F3D;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #218F3D;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #218F3D;
}

.pricing .buy-btn:hover {
  background: #218F3D;
  color: #fff;
}

.pricing .featured {
  border-top-color: #218F3D;
}

.pricing .featured .buy-btn {
  background: #218F3D;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #218F3D;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #32C156;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #218F3D;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #218F3D;
  border-bottom: 3px solid #218F3D;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #218F3D;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #32C156;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #218F3D;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #218F3D;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #218F3D;
  border-bottom: 3px solid #218F3D;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #218F3D;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #218F3D;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #218F3D;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #32C156;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #e9f6ff;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #32C156;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #218F3D;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #218F3D;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #32C156;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  /* padding-bottom: 12px; */
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #192359;
  font-size: 18px;
  line-height: 1;
  display:none;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul a {
  color: #212121;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #f58220;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #006180;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #f58220;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

.bg-secondary{background: #F7F7F7!important}
.rounded-4{border-radius: 20px;}
.text-success{color:#218F3D!important}
.bg-success{background:#218F3D!important}

::-moz-selection { /* Code for Firefox */
  color: #007718;
  background: #72FF85;
}

::selection {
  color: #007718;
  background: #72FF85;
}

.owl-stage, .owl-item{display: flex;}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{    background: #ffffff00;
    padding: 0px 0px 7px!important;
    color: #ccc;
    font-weight: bold;
    font-size: 32px;
    line-height: 28px;
    border: none;
margin: 3px;}
.owl-theme .owl-nav{text-align: left!important}
.choose-us-carousel .owl-item img{width: 80px!important;}

input:focus-visible, textarea:focus-visible {outline: 0px;}
.services.formtop{background-color: rgba(0, 97, 128, 0.31); border: 2px solid #f58220;}
.services.formtop *{color:#000;}
.formtop {color: #000;font-size: 15px;}
.formlftbg {
    background: url(../img/formlft-bg.png) #32C156 right bottom no-repeat;
}
.form-top-mobile {
  z-index: 11;
  position: absolute;
  top: 4%; 
  right: 8%;
  font-size: 20px;
  font-weight: bold;
  background-color: rgb(244, 130, 32) !important;
  width: 25%;
}
.formtop input, .formtop select, .formtop textarea {
	width: 100%;
    margin:0 0 4px 0;
    background: #186983;
    border: none;
    border: 1px solid #006180; 
    padding: 3px 4px;
    font-size: 15px;
    color: #fff;
}
.formtop input::-webkit-input-placeholder, .formtop textarea::-webkit-input-placeholder{ color:#ccc!important}
.formtop select option{ color: #000000;}
.formtop select option:hover{ background: #0081AF}
.formtop input[type="submit"]{background: white!important; color:#000; font-weight: bold}
.formtop input:focus {
	border-bottom: 2px solid #fff;
}

.formtop input[type="submit"] {
	background: #0E1257;
    border: none;
    color: white!important;
    font-weight: bold;
    padding: 10px 0;
    font-size: 19px;
}
.formtop a {position: absolute;
    right: 11px;
    padding: 3px 6px 1px;
    font-size: 15px;}
.formtop button, a.fbutton {font-weight: bold;}

.topservicename, .formhead{z-index: 11; top:50%; position: absolute; transform: translateY(-50%);}

.topservicename{left: 8%;}
.topservicename h1{text-shadow: 0 0 15px #00000054, 0 0 3px #0000006b;}

.formhead{right: 8%;}
.formhead input::-webkit-input-placeholder, .formhead textarea::-webkit-input-placeholder{ color:#39393973;}
.formhead .text-success {
    color: #000000 !important;
    font-size: 16px;
}
.formtop .btn:hover {
    background-color:#B7DEFF!important;
}

input.error, select.error{border-bottom: 2px solid #d60000;}
label.error {
    color: #ff4646;
    font-size: 10px;
    position: absolute;
    left:0.9rem;
    top: -2px;
}
.fixed-form{bottom: 13px;
    right: 9px;
    width: 400px;
    z-index: 11; 
    border-radius: 0 0 30px;}
.accordion-button::after {
      content: '\25BC' !important; background: none; color: #ffffff !important;
    }
.accordion-button:not(.collapsed)::after{background: none;}
.accordionleftnav .accordion-button{
	color:#000!important;
    background-color: #e7f1ff00!important;
    box-shadow: #dee2e600!important;
	    padding:20px  0;
	    font-size: 1.2rem;
}
.accordionleftnav .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--bs-accordion-active-bg);
    box-shadow: none!important;
}

.accordionleftnav .accordion-item{background: none; border-bottom:none;}
.accordionleftnav .accordion-button-link:after{ display: none;}
.accordionleftnav .accordion-button {
	color: #fff!important;}
.accordionleftnav ul{padding-left: 24px;}
.accordionleftnav ul a{}

button:focus {
     outline: 0;
    /*border: none!important;*/
    box-shadow: none!important;
}
.accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
	border:none;
    border-bottom: var(--bs-accordion-border-width) solid #c5e2ff;
}

.OurSectors{background: url("../img/Our-Sectors-bg-home.png") no-repeat center; background-size: cover;}

.OurServices .ourserimg span, .csr .ourserimg span{ width: 90%; display: block; padding: 10px 25px 10px 15px; bottom: 0;}
.OurServices .ourserimg span{background: url("../img/ourser-arrow.html") no-repeat 95% center;}
.csr .ourserimg span{background: #5E7DB3;}

.strategic_cap{font-size: 0.8rem;    line-height: 20px;
    display: inline-block;}
.strategic_cap2{font-size: 0.6rem; display: block;}



.nav.nav-pills{text-align: center;    display: block;}
.nav.nav-pills .nav-item{display: inline-block;}
.nav-link {font-size: 1.3rem;}
.nav-pills .nav-link.active{background: none; font-weight: bold;}

.badge-homeabout .badge{    top: -10px;
    left: 50%;
    transform: translateX(-50%);}
.journeyinfo span{ width: 130%; display: block;}

.whatsappftr{position: fixed;
    /* width: 47px;
    height: 47px; */
    bottom: 20px;
    right: 15px;
    /* background-color: #006180; */
    color: #FFF!important;
    border-radius: 50px;
	/* border:1px solid #fff; */
    text-align: center;
    /* font-size: 27px!important; */
    /* box-shadow:2px 2px 3px #999, -2px -2px 8px #ffffffad; */
    z-index: 1050;
    transition: 0.7s all ease;
/* line-height: 50px; */
}
.whatsappftr i svg{margin-top: -11px; fill:#fff;}


.tslicn{    float: right;
}
.tslicn ul {padding: 0px 10px; margin: 0;}
.tslicn ul li  {list-style: none;display: inline-block;}
.tslicn ul li a {
	display: inline-block;
	color: #fff;
	width: 27px;
	height: 27px;
	border-radius: 50%;
	line-height: 25px;
	font-size: 14px;
	margin: 0 1px;
	transition: 0.7s all ease;
	text-align: center;
	background: url("../img/sm-icons.html") no-repeat;
}
.tslicn ul li a:focus{    display: inline-block;}
.twtr {background-position:1px 0px !important;}

.fcbk {background-position:1px 0px !important;}

.lndin {background-position:-72px 0px !important;}

.intgrm {background-position:-35px 0px !important;}

.utube {background-position:-108px 0px !important;}

nav.navbar{float: inline-end;}



.owl-carousel-header .owl-dots{z-index: 1;
    position: absolute;
    bottom: 0px;
    left: 0%; right: 0%; text-align: center; background: linear-gradient(0deg, rgba(0,0,0,0.4513402773218662) 0%, rgba(30,36,46,0) 88%, rgba(35,42,54,0) 100%);    padding: 80px 0 15px 0px;}
.owl-theme .owl-dots .owl-dot span {
    width: 15px!important;
    height: 15px!important;
    background: #ffffff00!important;
    border: solid 2px #49b6d9;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{background: #49b6d9!important;}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    margin: -2px!important;
}

.bg-secondary-dark{background: #e8e8e8;}

.h-about-bg{
  background: url(../img/h-about-bg.jpg) left top no-repeat; 
  background-size: cover;
}


.choose-us-bg{background:#f2f6f9;}
.choose-us-bg h2 {
    font-size: 3rem!important;
}
.choose-us{background: url(../img/choose-us-bg.jpg) left center; background-size:cover;}
.choose-us-carousel .item .box-icon span{display: inline-block; border-radius: 100px; padding: 15px; box-shadow: 0 0 10px #a3a3a366; margin:0 10px; background: rgb(255,255,255);
background: linear-gradient(328deg, rgba(255,255,255,1) 0%, rgba(230,244,255,1) 100%);}
.choose-us-carousel .item .box-icon span img{width: 32px!important;}
.choose-us-carousel .item h6{font-weight: bold; margin: 0;}
.item p{font-size: 14px;}
.choose-us .accordion{background:none;}
.choose-us-bg .accordion-item .accordion-button{background-color: #f2f6f9!important; font-size: 1.4rem;}
.choose-us-bg .accordion {
--bs-accordion-bg: #fff0;}
.accordion-item:last-of-type{
    border-bottom: 0;
}
.when-need .accordion-item .accordion-button{background-color: #6468B5; color:#fff; font-size: 1.2rem;}

/* call to action*/ 
.cv_callToAction_wrapper {
    background: #edf3f6;
    padding: 34px 0 50px;
}
.cv_action_section > span svg {
    height: 30px;
    width: 30px;
    fill: var(--mlf-primary);
}
.cv_action_section {
    width: 100%;
}
.cv_action_section_inner {
    padding: 56px 15px 22px;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    /* border: 4px solid #026180; */
    box-shadow: 0 0 10px 3px rgb(0, 97, 128) !important;
}
.cv_readmore_link, .cv_readmore_link:visited {
    color: var(--mlf-primary);
    display: inline-block;
    font-weight: 500;
}
.cv_readmore_link .cv_link_icon svg {
    height: 10px;
    width: 10px;
    margin-left: 6px;
    fill: var(--mlf-primary);
}
.cv_sub_title {
    font-size: 22px;
    font-weight: 700;
}
.cv_action_section_inner .cv_sub_title {
    font-size: 19px;
}
.cv_action_section > span {
    display: inline-block;
    height: 120px;
    width: 120px;
    line-height: 70px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px 3px rgb(0, 97, 128) !important;
    position: relative;
    bottom: -40px;
}
.cv_action_section > span img{
    width: 80px;
    margin-top: 17px;
}
.cv_action_section p {
    margin: 6px 0 6px;
}
.cv_callToAction_wrapper .col-xl-3:hover .cv_action_section span {
    -webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.cv_callToAction_wrapper .col-xl-3:hover .cv_action_section span, .cv_callToAction_wrapper .col-xl-3 .cv_action_section span, .cv_callToAction_wrapper .col-xl-3:hover .cv_readmore_link svg, .cv_callToAction_wrapper .col-xl-3 .cv_readmore_link svg, .cv_callToAction_wrapper .col-xl-3:hover .cv_readmore_link, .cv_callToAction_wrapper .col-xl-3 .cv_readmore_link, .cv_callToAction_wrapper .col-xl-3:hover h3, .cv_callToAction_wrapper .col-xl-3 h3 {
    -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.cv_callToAction_wrapper .col-xl-3:hover .cv_readmore_link, .cv_callToAction_wrapper .col-xl-3:hover h3 {
    color: var(--mlf-primary);
}
.cv_callToAction_wrapper .col-xl-3:hover .cv_readmore_link svg {
    fill: var(--mlf-primary);
}

.aboutgradient{background: rgb(196,243,235);
background: linear-gradient(143deg, rgba(196,243,235,1) 0%, rgba(168,240,255,1) 100%);}

.product-carousel-static .owl-item{display: block;}
.testimoni .item .avatar{ width: 70px!important; height: 70px!important; border-radius: 100px; margin-top: -30px;box-shadow: 0 14px 18px #cccccca1;}
.testimoni .item .bg-primary{background-color: #ffffff !important;}
/* .testimoni .item .bg-primary{background:url(../../assets/img/test-bg-quo1.png) 5% 5% no-repeat #ffffff !important; background-color: #ffffff;} */

.oxyvideo  iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.owl-item{display:block;}

.check-list ul{list-style: none;}
	.check-list li{list-style: none; margin-bottom:25px; position:relative}
	.check-list li span.about-icon{    margin-left: -21px;
    margin-right: 0px;}
	.bg-light .border-secondary{border-color: #dedede!important;}
  .mainconttopmar{margin-top: -150px; z-index: 2}



.start__single__item {
  text-align: center;
}


@media only screen and (max-width: 767px) {
  .start__single__item {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.start__single__item .img__box {
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  height: 180px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 10px 0px rgb(245 130 31);
          box-shadow: 0px 0px 10px 0px rgb(245 130 31);
  position: relative;
}

@media only screen and (max-width: 767px) {
  .start__single__item .img__box {
    max-width: 140px;
    height: auto;
  }
}

.start__single__item .img__box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.start__single__item .img__box .step__count {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #006180;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  right: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.accordion-item.border-secondary{border-color: #DFDFDF !important;}


@media only screen and (max-width: 767px) {
  .start__single__item .img__box .step__count {
    width: 30px;
    height: 30px;
    right: 37px;
  }
}

.start__single__item .img__box .step__count h4 {
  margin: 0px;
    color: #ffb97d;
}

@media only screen and (max-width: 767px) {
  .start__single__item .img__box .step__count h4 {
    font-size: 16px;
  }
}

.start__single__item h4 {
  text-align: center;
  margin: 33px 0px 0px;
  font-size: 1.5rem;
}

@media only screen and (max-width: 1199px) {
  .start__single__item h4 {
    margin: 12px 0px 20px;
  }

}

.start__single__item p {
  text-align: center;
}


.when-need .rgtbg{background:url(../img/when-do-you-need.jpg) no-repeat 50% 30%; background-size:cover;}

#accordionFlush01 button img{width: 32px; height: 32px; margin-right: 10px;}

@media (min-width: 768px) {
	.csrCommittee .border-md-end{border-right: 2px solid #dc3545;}
}

@media (max-width: 999px) {
	section {
    padding: 30px 0;
}
	
.button-21 {
  font-size: 11px !important;
    padding: 4px 14px !important;
}

.tops
  .start__single__item h4 {
    font-size: 1.2rem;
}
.cv_action_section {
    margin-top: -20px;
}
.formhead{top:0%; right:0; position:relative; transform: translateY(0); width: 90%; margin: auto;}
.form-top-mobile {
  z-index: 11;
    position: relative;
    top: 0%;
    right: 0;
    font-size: 20px;
    font-weight: bold;
    background-color: rgb(244, 130, 32) !important;
    width: 90%;
    left: 5%;
}
.choose-us-bg h2 {
    font-size: 1.8rem!important;
}
.choose-us-bg .accordion-item .accordion-button, .when-need .accordion-item .accordion-button {
    font-size: 1rem;
}
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
	.headerlst span {
    position: relative;
    top:auto;
    transform: translateY(0);
}
	.headerlst {
padding-bottom: 160px;}
	.h2, h2 {
    font-size: 1.5rem;
}
	
	 .OurSectors h5 {font-size: 1rem;}
	
	.OurServices .ourserimg span {
		padding: 3px 25px 0px 0px;}
	.h1, h1 {
    font-size: 1.6rem;
}
.h3, h3 {
    font-size: 1.3rem;
}
	.h5, h5 {
    font-size: 1.1rem;
}
	.fixed-form{
    width: 90%;}
	.tslicn {float: inline-start;}
	#header .logo img {width: 100px; height: auto;}
	.finlink {
    font-size: 0.8rem;
    line-height: 17px;
}
	.vn .vn_details li{width:100%;}
	.csrCommittee .border-md-end{border-bottom: 2px solid #dc3545;}
	
	.sustbg-rtol .lai-home h2, .sustbg-ltor .lai-home h2 {
    line-height: 40px;
    font-size: 3rem;
}
	.sustbg-rtol .lai-home h4,  .sustbg-ltor .lai-home h4{
    font-size: 2rem;
    line-height: 25px;
}
	.sustbg-ltor, .sustbg-rtol{background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) -12%, rgb(45 122 180) 100%);}
	
	.sust-tbl table{width: 300%;}
	
	.mainconttopmar {
    margin-top: -60px;}
    .footer-links-main li{width:100%; float:left;}
    .footer-links-main li:last-child{width:100%;}
    
    .mainconttopmar h5{font-size: 0.9rem;}
}
.owl-carousel div h2, .owl-carousel div .textoverlay{
    position:absolute;
    color:#FFF;
   font-size:12px;
   display:block;
   top: 5%;
   left: 5%;
   width: 100%;
}

 .carousel-wrap {
    width: 1000px;
    margin: auto;
    position: relative;
  }
  .owl-carousel .owl-nav{
    overflow: hidden;
    height: 0px;
  }

  .owl-theme .owl-dots .owl-dot.active span, 
  .owl-theme .owl-dots .owl-dot:hover span {
      background: #2caae1;
  }


  .owl-carousel .item {
      text-align: center;
  }

  .textoverlay > div {
      text-align: unset;
  }

  .owl-carousel .nav-btn{
      height: 47px;
      position: absolute;
      width: 26px;
      cursor: pointer;
      top: 50% !important;
      color: #bebfc0;
  }

  .owl-carousel .owl-prev.disabled,
  .owl-carousel .owl-next.disabled{
    pointer-events: none;
    opacity: 0.2;
  }

  .owl-carousel .prev-slide{
      /* background: url(../img/nav-icon.png) no-repeat scroll 0 0; */
      left: 0px;
  }
  .owl-carousel .next-slide{
      /* background: url(../img/nav-icon.png) no-repeat scroll -24px 0px; */
      right: 0px;
  }
  .owl-carousel .prev-slide:hover{
     background-position: 0px -53px;
  }
  .owl-carousel .next-slide:hover{
    background-position: -24px -53px;
  }

  span.img-text {
    text-decoration: none;
    outline: none;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    font-size: 23px;
    display: block;
    text-transform: capitalize;
  }
  span.img-text:hover {
    color: #2caae1;
  }

  .testimonial-deco {
    text-align: justify;
    /* height: 280px; */
  }

  #myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 65px; /* Place the button at the bottom of the page */
  right: 17px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  /* background-color: red;  Set a background color */
  color: #cdcecf; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  /* padding: 15px; Some padding */
  /* border-radius: 10px; Rounded corners */
  font-size: 37px; /* Increase font size */
}

/* #myBtn:hover {
  /* background-color: #555; Add a dark-grey background on hover 
} */

.btn:hover {
  background-color: #f58220 !important;
}
.navbar a:hover, .navbar li:hover > a {
  color: #f58220 !important;
}
.caregivers{
background: rgb(255, 255, 255);
}
.cprofile-box{
  margin-top: 80px;
  position: relative;
  border-radius: 30px 30px 10px 10px;
  padding: 100px 10px 10px 10px;
}
.cprofile-box-img{
  margin: 0 auto;
  width: 150px;
  top: -16%;
  position: absolute;
  left: 25%;
}
.cprofile-box-img > img {
border-radius: 50%; border: 4px solid #f48120; width: 150px; height: 150px;
}

.why-should-content{
  min-height: 48px;
}
.mobile-call {
  width: 100%;
  height: auto;
  background: rgb(68,68,68);
  background: linear-gradient(95deg, rgb(245, 130, 32) 0%, rgb(245, 130, 32) 100%);
  position: fixed;
  bottom: 0%;
  z-index: 99;
  text-align: center;
  display: none;
  font-size: 22px;
  line-height: 45px;
  color: #000000;
  cursor: pointer;
  font-weight: bold;
}

.mobile-call-display{
  display: none;
}

.desktop-call-display{
  display: block !important;
}

.caregiver-profile.owl-drag .owl-item .card {
  background-color: #f2f6f9;
  /* padding: 0px 10px 10px 10px; */
  border: 2px solid #f58220;
  border-radius: 10px;
}


@media only screen and (max-width: 767px) {
  .cprofile-box{
  margin-top: 98px;
  position: relative;
  border-radius: 30px 30px 10px 10px;
  padding: 100px 10px 10px 10px;
}
.cprofile-box-img{
  margin: 0 auto;
  width: 150px;
  top: -16%;
  position: absolute;
  left: 30%;
}

.why-should-heading{
  font-size: 15px !important;
  min-height: 40px;
}
.why-should-content{
  min-height: 72px;
}
.mobile-call-display{
  display: block;
}

.desktop-call-display{
  display: none !important;
}


.accordion-button::after {
  color: #ffffff !important;
}


}

.owl-carousel .owl-stage{display: flex;}
.article-items {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}
.aticle-box {
    position: relative;
    overflow: hidden;
    /* margin-bottom: 80px; *//*This is optional*/
    display: flex;
    flex-direction: column;
    align-items: stretch;
}


.marquee {
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
            animation: marquee 22s linear infinite;
        }
@keyframes marquee {
            from { transform: translateX(100%); }
            to { transform: translateX(-100%); }
        }


/* CSS */
.button-21 {
  align-items: center !important;
  appearance: none;
  background-color: #2E4392;
  background-image: linear-gradient(1deg, #2E4392, #2E4392 99%);
  background-size: calc(100% + 20px) calc(100% + 20px);
  border-radius: 100px;
  border-width: 0;
  box-shadow: none;
  box-sizing: border-box;
  color: #FFFFFF !important;
  cursor: pointer;
  display: inline-flex !important;
  font-family: CircularStd,sans-serif;
  /* font-size: 15px !important; */
  height: auto;
  justify-content: center !important;
  line-height: 1.5;
  /* padding: 5px 16px !important; */
  position: relative;
  text-align: center;
  text-decoration: none !important;
  transition: background-color .2s,background-position .2s !important;
  user-select: none !important;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap !important;
}

.button-21:active,
.button-21:focus {
  outline: none;
}

.button-21:hover {
  background-position: -20px -20px;
}

.button-21:focus:not(:active) {
  box-shadow: rgba(40, 170, 255, 0.25) 0 0 0 .125em;
}

.toggle-container {
                display: inline-flex;
                background: #fff;
                border-radius: 50px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                padding: 5px;
                top: 42px;
  position: fixed;
  right: 47px;
            }

            .toggle-btn {
                border: none;
  padding: 5px 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  font-size: 11px;
            }

            .topinactive {
                background: white;
                color: #E91E63;
            }

            .topactive {
                background: #E91E63;
                color: white;
            }

            .card-hover {
                transition: all 0.3s ease-in-out;
            }

            
            .card-hover:hover {
                box-shadow: 0 0 20px 5px rgb(245, 130, 32) !important;
            }

            /* Workaround: use a pseudo-element to fake the gradient shadow */
            .card-hover::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(45deg, #ff6ec4, #7873f5);
                z-index: -1;
                filter: blur(20px);
                opacity: 0;
                transition: opacity 0.3s ease-in-out;
            }

            .card-hover:hover::after {
                opacity: 1;
            }

            .service-card {
                transition: all 0.3s ease-in-out;
            }

            
            .service-card:hover {
                box-shadow: 0 0 20px 5px rgb(245, 130, 32) !important;
                /* background: linear-gradient(123deg, #008559 0%, #006ce0 50%, #6842ff 100%) !important; */
            }

            /* Workaround: use a pseudo-element to fake the gradient shadow */
            .service-card::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(123deg, #008559 0%, #006ce0 50%, #6842ff 100%);
                z-index: -1;
                filter: blur(20px);
                opacity: 0;
                transition: opacity 0.3s ease-in-out;
            }

            .service-card:hover::after {
                opacity: 1;
            }

            .on-call-card {
                transition: all 0.3s ease-in-out;
            }

            
            .on-call-card:hover {
                box-shadow: 0 0 20px 5px rgb(240, 174, 18) !important;
                /* background: linear-gradient(123deg, #008559 0%, #006ce0 50%, #6842ff 100%) !important; */
            }

            /* Workaround: use a pseudo-element to fake the gradient shadow */
            .on-call-card::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(123deg, #008559 0%, #006ce0 50%, #6842ff 100%);
                z-index: -1;
                filter: blur(20px);
                opacity: 0;
                transition: opacity 0.3s ease-in-out;
            }

            .on-call-card:hover::after {
                opacity: 1;
            }


