/**
* Template Name: Hidayah - v4.5.0
* Template URL: https://bootstrapmade.com/hidayah-free-simple-html-template-for-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/* --------------------------------------------------------------
# General
-------------------------------------------------------------- */

body {
    color: #444;
  }
  
  a {
    color: #428bca;
    text-decoration: none;
  }
  
  a:hover {
    color: #6aa3d5;
    text-decoration: none;
  }
  
  /* --------------------------------------------------------------
  # Preloader
  -------------------------------------------------------------- */
  
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader::before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #428bca;
    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 {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #428bca;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #629fd3;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /* --------------------------------------------------------------
  # Header
  -------------------------------------------------------------- */
  
  #header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  #header.header-scrolled,
  #header.header-inner-pages {
    background: rgba(23, 26, 29, 0.8);
  }
  
  #header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
  }
  
  #header .logo a {
    color: #fff;
  }
  
  #header .logo img {
    max-height: 40px;
  }
  
  @media (max-width: 992px) {
    #header {
      border: 0;
    }
  }
  
  /* --------------------------------------------------------------
  # 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 0 10px 30px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .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: #5697d0;
  }
  
  .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: 0 0 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    color: #193c5a;
  }
  
  .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: #428bca;
  }
  
  .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: #fff;
    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: rgba(34, 39, 43, 0.9);
    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;
    color: #394047;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover > a {
    color: #428bca;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .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: 0 0 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .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: #428bca;
  }
  
  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }
  
  /* --------------------------------------------------------------
  # Hero Section
  -------------------------------------------------------------- */
  
  #hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(34, 39, 43, 0.8);
    overflow: hidden;
    position: relative;
  }
  
  #hero .carousel,
  #hero .carousel-inner,
  #hero .carousel-item,
  #hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  
  #hero .carousel-item::before {
    content: "";
    background-color: rgba(12, 13, 14, 0.8);
  }
  
  #hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
  }
  
  #hero .container {
    text-align: center;
  }
  
  #hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
  }
  
  #hero p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
  }
  
  #hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
  }
  
  #hero .carousel-inner .carousel-item,
  #hero .carousel-inner .active.carousel-item-start,
  #hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
  }
  
  #hero .carousel-inner .active,
  #hero .carousel-inner .carousel-item-next.carousel-item-start,
  #hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
  }
  
  #hero .carousel-control-next-icon,
  #hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #hero .carousel-control-next-icon:hover,
  #hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
  }
  
  #hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
  }
  
  #hero .carousel-indicators li.active {
    opacity: 1;
    background: #428bca;
  }
  
  #hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: #428bca;
  }
  
  #hero .btn-get-started:hover {
    background: #5697d0;
  }
  
  @media (max-width: 768px) {
    #hero h2 {
      font-size: 28px;
    }
  }
  
  @media (max-height: 500px) {
    #hero {
      height: 120vh;
    }
  }
  
  /* --------------------------------------------------------------
  # Sections General
  -------------------------------------------------------------- */
  
  section {
    padding: 80px 0;
  }
  
  .section-bg {
    background-color: #fafafb;
  }
  
  .section-title {
    text-align: center;
    padding-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: #f5f9fc;
    color: #428bca;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
  }
  
  .section-title h3 {
    margin: 15px 0 0 0;
    font-size: 32px;
    font-weight: 700;
  }
  
  .section-title h3 span {
    color: #428bca;
  }
  
  .section-title p {
    margin: 15px auto 0 auto;
    font-weight: 500;
    color: #919191;
  }
  
  @media (min-width: 1024px) {
    .section-title p {
      width: 50%;
    }
  }
  
  /* -------------------------------------------------------------
  # Counts
  -------------------------------------------------------------- */
  
  .counts {
    padding: 80px 0 60px 0;
  }
  
  .counts .counters span {
    font-size: 48px;
    display: block;
    color: #428bca;
    font-weight: 700;
  }
  
  .counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 500;
  }
  
  /* --------------------------------------------------------------
  # Skills
  -------------------------------------------------------------- */
  
  .skills {
    padding-top: 0;
  }
  
  .skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
  }
  
  .skills .progress .skill {
    padding: 10px 0;
    margin: 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #394047;
  }
  
  .skills .progress .skill .val {
    float: right;
    font-style: normal;
  }
  
  .skills .progress-bar-wrap {
    background: #e3e6e9;
  }
  
  .skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #428bca;
  }
  
  /* --------------------------------------------------------------
  # Services
  -------------------------------------------------------------- */
  
  .services {
    padding-bottom: 30px;
  }
  
  .services .icon-box {
    margin-bottom: 60px;
  }
  
  .services .icon {
    float: left;
  }
  
  .services .icon i {
    color: #428bca;
    font-size: 36px;
    line-height: 1;
  }
  
  .services .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .services .title a {
    color: #343a40;
    transition: 0.3s;
  }
  
  .services .icon-box:hover .title a {
    color: #428bca;
  }
  
  .services .description {
    margin-left: 60px;
    line-height: 24px;
    font-size: 14px;
  }
  
  /* --------------------------------------------------------------
  # Footer
  -------------------------------------------------------------- */
  
  #footer {
    background: #2e3339;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
  }
  
  #footer .footer-newsletter {
    padding: 50px 0;
    background: #2e3339;
  }
  
  #footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
  }
  
  #footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
  }
  
  #footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 100px);
  }
  
  #footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -3px;
    right: -4px;
    bottom: -3px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 0 20px;
    margin: 3px;
    background: #428bca;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
  }
  
  #footer .footer-newsletter form input[type=submit]:hover {
    background: #3071a9;
  }
  
  #footer .footer-top {
    background: #272c30;
    border-top: 1px solid #394047;
    border-bottom: 1px solid #394047;
    padding: 60px 0 30px 0;
  }
  
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-info h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
  }
  
  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
  }
  
  #footer .footer-top .social-links a {
    font-size: 16px;
    display: inline-block;
    background: #394047;
    color: #fff;
    line-height: 1;
    padding: 10px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
    background: #428bca;
    color: #fff;
    text-decoration: none;
  }
  
  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    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: #5697d0;
    font-size: 18px;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #5697d0;
  }
  
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  
  #footer .copyright {
    text-align: center;
    padding-top: 30px;
  }
  
  #footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #fff;
  }
  
  /* Ranjit Css */
  
  .banner-section {
    background-image: url("/wp-content/themes/leaplogic/landingpageassets/img/bg-header-1@2x.png");
    background-color: #e8e8e8;
    background-position: 54% 60%;
  }
  
  .header-text-band h1 {
    font-size: 40px;
    color: #fff;
  }
  
  .vertical-slider h2 {
    font-size: 66px;
    color: #ffa500;
  }
  
  .header-text-band h3 {
    font-size: 21px;
    color: #fff;
    font-weight: 400;
  }
  
  h2.secondary-h2 {
    font-size: 40px;
    color: #fff;
  }
  
  .overview-list {
    padding-top: 5%;
  }
  
  .modernization-text-fold {
    margin-bottom: 5%;
  }
  
  .about .description {
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 3%;
  }
  
  .card-module {
    padding: 0;
    margin-top: 10em;
    background-color: #17191b;
  }
  
  .card-content {
    /* box-shadow: 0px 0px 8px #cecece; */
    padding: 1.5625em;
    min-height: 28em;
  }
  
  .card-p-medium {
    font-size: 1.6em !important;
    margin-bottom: 1em !important;
    line-height: 1em;
    color: #d57f00;
  }
  
  .card-content-a .light {
    line-height: 1.2em;
    font-size: 1.125em !important;
    color: #e8e8e8;
    margin-bottom: 25px;
  }
  
  .card-module.cm-1b {
    margin-top: 5em;
    margin-left: -1em;
    background-color: #17191b;
  }
  
  .card-module.cm-1c {
    margin-top: 0;
    margin-left: -1em;
  
    /* z-index: 9; */
    background-color: #17191b;
  }
  
  #read-text {
    color: #d37f1f;
    font-size: 16px;
  }
  
  #modernization .card-module {
    padding: 0;
    margin-top: 10em;
    background-color: transparent;
  }
  
  #modernization .card-content {
    padding: 0;
  }
  
  #modernization .card-content-a {
    margin-top: 2%;
  }
  
  #modernization .card-content-a .light {
    line-height: 1.2em;
    font-size: 1.125em !important;
    color: #e8e8e8;
    margin-bottom: 25px;
  }
  
  #modernization .card-module.cm-1b {
    margin-top: 5em;
    margin-left: -1em;
    background-color: transparent;
  }
  
  #modernization .card-module.cm-1c {
    margin-top: 0;
    margin-left: -1em;
  
    /* z-index: 9; */
    background-color: transparent;
  }
  
  .ll-video-text {
    padding: 2%;
    border-top: 3px solid #d37f1f;
  }
  
  .ll-video-text h2 {
    line-height: 43px;
  }
  
  .gridd {
    position: relative;
    margin: 0 auto;
    padding: 1em 0 4em;
    max-width: 1000px;
    list-style: none;
    text-align: center;
  }
  
  /* Common style */
  
  .gridd figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 320px;
    max-width: 480px;
    max-height: 360px;
    width: 48%;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
  }
  
  .gridd figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
  }
  
  .gridd figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .gridd figure figcaption::before,
  .gridd figure figcaption::after {
    pointer-events: none;
  }
  
  .gridd figure figcaption,
  .gridd figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* Anchor will cover the whole item by default */
  
  /* For some effects it will show as a button */
  
  .gridd figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
  }
  
  .gridd figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
  }
  
  .gridd figure h2 span {
    font-weight: 800;
  }
  
  .gridd figure h2,
  .gridd figure p {
    margin: 0;
  }
  
  .gridd figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
  }
  
  figure.effect-zoe figcaption {
    top: auto;
    bottom: 0;
    padding: 1em;
    height: 3.75em;
  
    /* background: #fff; */
  
    color: #3c4a50;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  
  figure.effect-zoe h2 {
    float: left;
  }
  
  figure.effect-zoe p.icon-links a {
    float: right;
    color: #3c4a50;
    font-size: 1.4em;
  }
  
  figure.effect-zoe:hover p.icon-links a:hover,
  figure.effect-zoe:hover p.icon-links a:focus {
    color: #252d31;
  }
  
  figure.effect-zoe p.description {
    position: absolute;
    bottom: 0;
    padding: 2em;
    color: #fff;
    text-transform: none;
    font-size: 90%;
    opacity: 0;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  
    /* Fix for Chrome 37.0.2062.120 (Mac) */
  }
  
  figure.effect-zoe h2,
  figure.effect-zoe p.icon-links a {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 200%, 0);
    transform: translate3d(0, 200%, 0);
  }
  
  figure.effect-zoe p.icon-links a span::before {
    display: inline-block;
    padding: 8px 10px;
  
    /* font-family: "feathericons"; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .icon-eye::before {
    content: "\e000";
  }
  
  .icon-paper-clip::before {
    content: "\e001";
  }
  
  .icon-heart::before {
    content: "\e024";
  }
  
  /* figure.effect-zoe h2 {
    display: inline-block;
    float: left;
  } */
  
  figure.effect-zoe:hover p.description {
    opacity: 1;
  }
  
  figure.effect-zoe:hover figcaption,
  figure.effect-zoe:hover h2,
  figure.effect-zoe:hover p.icon-links a {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  
  figure.effect-zoe:hover h2 {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
  }
  
  figure.effect-zoe:hover p.icon-links a:nth-child(3) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  
  figure.effect-zoe:hover p.icon-links a:nth-child(2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
  }
  
  figure.effect-zoe:hover p.icon-links a:first-child {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  
  .container-29 {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .slick-arrow {
    display: none !important;
  }
  
  .banner-section .slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: none;
    height: 80px;
  
    /* padding-top: 2%; */
  
    padding-bottom: 4%;
    opacity: 1;
    text-align: -webkit-center;
  }
  
  .banner-section .slider h2 {
    line-height: 35px;
  }
  
  .slick-list.draggable {
        width: 80% !important;
        margin: -7px 0;
    }
  
  .chart {
    position: relative;
    display: inline-block;
    margin: 20px 30px;
    color: #fff;
    font-size: 28px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 5px !important;
  }
  
  .chart canvas {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .para-weight {
    width: 85%;
    color: #e8e8e8;
    font-size: 14px;
  }
  
  .mobile-dis {
    display: none;
  }
  
  .case-in-point .subheading {
    line-height: 30px;
    color: #fff;
  }
  
  .what-possible h2 {
    font-size: 50px;
    line-height: 72px;
    margin-top: 20px;
    color: #d37f1f;
  }
  
  .what-possible p {
    color: #fff;
  }
  
  .bx-banner ul,
  .bx-banner li {
    padding: 0;
    margin: 0;
  }
  
  .bx-wrapper {
    width: 100%;
    margin: 0;
  }
  
  .bx-wrapper .bx-prev {
    left: -60px;
  }
  
  .bx-wrapper .bx-next {
    right: -60px;
  }
  
  .bx-banner li {
    font-size: 18px;
  }
  
  .bx-banner li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 60px 0;
    text-align: -webkit-center;
  }
  
  .card-plain h2 {
    color: #d37f1f;
    font-size: 50px;
    margin-bottom: 10%;
  }
  
  .did-you-know .card {
    background-color: transparent;
    border: none;
  }
  
  .did-you-know .card-body {
    background-color: transparent;
    padding: 0;
  }
  
  #read-more {
    color: #d37f1f;
  }
  
  .card-plain p {
    color: #fff;
  }
  
  @media only screen and (min-width: 1024px) and (max-width: 1199px) {
    .vertical-slider h2 {
      font-size: 48px;
    }
  
    .piee-chart {
      text-align: center;
    }
  
    .para-weight {
      width: 100%;
      padding: 0 20%;
    }
  }
  
  @media (max-width: 979px) and (min-width: 768px) {
    .banner-section .slider {
      height: 80px;
    }
  
    .vertical-slider h2 {
      font-size: 36px;
    }
  
    .piee-chart {
      text-align: center;
    }
  
    .para-weight {
      width: 100%;
      padding: 0 15%;
    }
  
    .card-module.cm-1a,
    .card-module.cm-1b,
    .card-module.cm-1c {
      margin-top: 5em;
      margin-left: 0;
    }
  
    #modernization .card-module.cm-1a,
    #modernization .card-module.cm-1b,
    #modernization .card-module.cm-1c {
      margin-top: 5em;
      text-align: center;
    }
  
    .modernization-text-fold {
      text-align: center;
    }
  
    .card-content {
      min-height: 22em;
    }
  
    .mobile-dis {
      display: block;
    }
  
    .desktop-dis {
      display: none;
    }
  
    .bx-wrapper {
      margin: 0;
    }
  }
  
  @media (max-width: 767px) {
    section {
      padding: 40px 0;
    }
  
    .banner-section .slider {
        height: 120px;
    }
  
    .vertical-slider h2 {
        font-size: 40px;
    }
  
    .piee-chart {
        text-align: center;
    }
  
    .para-weight {
        width: 100%;
    }
  
    .card-module.cm-1a,
    .card-module.cm-1b,
    .card-module.cm-1c {
        margin-top: 2em;
        margin-left: 0;
    }
  
    #modernization .card-module.cm-1a,
    #modernization .card-module.cm-1b,
    #modernization .card-module.cm-1c {
        margin-top: 2em;
        margin-left: 0;
    }
  
    .mobile-dis {
        display: block;
    }
  
    .desktop-dis {
        display: none;
    }
  
    #modernization .card-content {
        min-height: 22em;
    }
  
    .bx-wrapper {
        margin: 0 5%;
    }
  }
  
  @media (device-width: 320px) {
    .vertical-slider h2 {
        font-size: 36px;
    }
  }
  