@font-face {
    font-family: 'Spartan';
    font-style: normal;
    font-weight: 400;
    src: url(/assets/fonts/Spartan\ Regular\ 400.ttf) format("truetype");
}
@font-face {
    font-family: 'Spartan';
    font-style: normal;
    font-weight: 500;
    src: url(/assets/fonts/Spartan\ Medium\ 500.ttf) format("truetype");
}
@font-face {
    font-family: 'Spartan';
    font-style: normal;
    font-weight: 600;
    src: url(/assets/fonts/Spartan\ SemiBold\ 600.ttf) format("truetype");
}
@font-face {
    font-family: 'Spartan';
    font-style: normal;
    font-weight: 800;
    src: url(/assets/fonts/Spartan\ ExtraBold\ 800.ttf) format("truetype");
}

:root {
    --light-orange: #FD6A21;
    --light-blue: #286BFF;
    --light-black: #00022F;
    --dark-blue: #010440;
    --white: #FFFFFF;
    --blue: #023EC2;
}

* {
    font-family: 'Spartan', sans-serif;
}

a {
    color: var(--light-black);
    text-decoration: none;
}
  
a:hover {
    color: var(--light-orange);
    text-decoration: none;
}

.mb-custom {
  padding-top: 150px;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
  section {
    overflow: hidden;
    padding: 80px 0;
  }

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
  #header {
    background: var(--white);
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    border-bottom: 1px solid #fff;
  }
  #header.header-scrolled, #header.header-inner-pages {
    background: var(--white);
  }
  #header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  #header .logo a {
    color: #fff;
  }
  #header .logo a span {
    color: #ffc451;
  }
  #header .logo img {
    max-height: 25px;
  }
  
  /*--------------------------------------------------------------
  #  Get Startet Button
  --------------------------------------------------------------*/
  .get-started-btn {
    color: #fff;
    border-radius: 4px;
    padding: 7px 25px 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: 2px solid #ffc451;
  }
  .get-started-btn:hover {
    background: #ffbb38;
    color: #343a40;
  }
  @media (max-width: 992px) {
    .get-started-btn {
      padding: 7px 20px 8px 20px;
      margin-right: 15px;
    }
  }
  
  /*--------------------------------------------------------------
  # 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;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
    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: var(--light-orange);
  }
  .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;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #151515;
    font-weight: 400;
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    background-color: var(--light-orange);
  }
  .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: var(--light-black);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  @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: rgb(230, 230, 230);
    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;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  .navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #151515;
  }
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #151515;
    background-color: #ffc451;
  }
  .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: 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;
    color: #151515;
  }
  .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 {
    background-color: #ffc451;
  }
  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
  .hero {
    width: 100%;
    background-size: cover;
    position: relative;
    min-height: 60vh;
    padding: 160px 0 60px 0;
  }
  
  .hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    /* font-family: var(--font-primary); */
  }
  
  .hero h2 span {
    color: var(--color-primary);
  }
  
  .hero p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 18px;
  }
  
  .hero .btn-book-a-table {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: var(--light-orange);
    box-shadow: 0 8px 28px rgba(206, 18, 18, 0.2);
  }
  
  .hero .btn-book-a-table:hover {
    background: rgba(206, 18, 18, 0.8);
    box-shadow: 0 8px 28px rgba(206, 18, 18, 0.45);
  }
  
  /* .hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--font-secondary);
    font-weight: 600;
  }
  
  .hero .btn-watch-video i {
    color: var(--color-primary);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
  }
  
  .hero .btn-watch-video:hover {
    color: var(--color-primary);
  }
  
  .hero .btn-watch-video:hover i {
    color: rgba(206, 18, 18, 0.8);
  } */
  
  @media (max-width: 640px) {
    .hero h2 {
      font-size: 36px;
    }
  
    .hero .btn-get-started,
    .hero .btn-watch-video {
      font-size: 14px;
    }
  }

  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services .icon-box {
    padding: 44px;
    border: 1px solid #D8DCDF;
    box-shadow: 0px 8px 24px 1px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
  }
  .services .section-title {
    text-align: center;
  }
  .services .section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--light-black);
    margin-bottom: 80px;
  }
  .services .section-title p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 2, 47, 0.6);
  }
  .services .icon-box .title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
  }
  .services .icon-box .description {
    font-size: 16;
    font-weight: 400;
    color: rgba(0, 2, 47, 0.6);
    margin-bottom: 44px;
  }
  .services .icon-box .btn-wrap {
    display: inline-block;
    padding: 23px 30px 19px 30px;
    color: var(--white);
    border: 1.5px solid #010440;
    border-radius: 1000px;
  }
  .services .icon-box .btn-wrap .btn-read {
    padding: 23px 30px 19px 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    letter-spacing: 0.08em;
  }

  /*--------------------------------------------------------------
  # Product Section
  --------------------------------------------------------------*/
  .product .icon-box {
    padding: 44px;
    border: 1px solid #D8DCDF;
    box-shadow: 0px 8px 24px 1px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
  }
  .product .section-title {
    text-align: center;
  }
  .product .section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--light-black);
    margin-bottom: 80px;
  }
  .product .section-title p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 2, 47, 0.6);
  }
  .product .icon-box .title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
  }
  .product .icon-box .description {
    font-size: 16;
    font-weight: 400;
    color: rgba(0, 2, 47, 0.6);
    margin-bottom: 44px;
  }
  .product .icon-box .btn-wrap {
    display: inline-block;
    padding: 23px 30px 19px 30px;
    color: var(--white);
    border: 1.5px solid #010440;
    border-radius: 1000px;
  }
  .product .icon-box .btn-wrap .btn-read {
    padding: 23px 30px 19px 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    letter-spacing: 0.08em;
  }

  /*--------------------------------------------------------------
  # Believe Section
  --------------------------------------------------------------*/
  .believe {
    width: 100%;
    background-size: cover;
    position: relative;
    min-height: 60vh;
    padding: 80px 0;
  }
  
  .believe h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--light-black);
    margin-bottom: 32px;
  }

  .believe p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 2, 47, 0.6);
  }

  /*--------------------------------------------------------------
  # Partners Section
  --------------------------------------------------------------*/
  .partners {
    text-align: center;
  }
  .partners .section-title {
    text-align: center;
  }
  .partners .section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--light-black);
    margin-bottom: 80px;
  }
  .partners img {
    width: 50%;
    display: inline-block;
    padding: 15px 0;
  }

  /*--------------------------------------------------------------
  # Industries Section
  --------------------------------------------------------------*/
  .industries {
    background: #F8F9F9;
  }
  .industries .section-title h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 26px;
  }
  .industries .nav-tabs {
    text-align: center;
    margin: auto;
    display: block;
    border-bottom: 0;
    padding: 0 160px;;
    margin-bottom: 68px;
  }
  .industries .nav-tabs li {
    display: inline-block;
    margin-bottom: 16px;
  }
  .industries .nav-tabs a {
    border: none;
    border-radius: 50px;
    font-weight: 600;
    background-color: #0e1b4d;
    color: #fff;
    padding: 10px 20px;
  }
  @media (max-width: 991px) {
    .industries .nav-tabs a {
      padding: 8px 60px;
    }
  }
  @media (max-width: 767px) {
    .industries .nav-tabs a {
      padding: 8px 50px;
    }
  }
  @media (max-width: 480px) {
    .industries .nav-tabs a {
      padding: 8px 30px;
    }
  }
  .industries .nav-tabs a.active {
    background-color: var(--light-orange);
    color: #fff;
  }
  .industries .tab-pane {
    transition: ease-in-out 0.2s;
  }
  .industries .industries-item h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 24px;
  }
  .industries .industries-item p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 2, 47, 0.6);
  }

  /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
  .about h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--light-black);
  }
  .about p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 2, 47, 0.6);
    margin-bottom: 37px;
  }
  .about .btn-about-us {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: var(--light-orange);
    box-shadow: 0 8px 28px rgba(206, 18, 18, 0.2);
  }
  .about .btn-about-us:hover {
    background: rgba(206, 18, 18, 0.8);
    box-shadow: 0 8px 28px rgba(206, 18, 18, 0.45);
  }
  .about .about-list ul {
    list-style: none;
    padding: 0;
  }
  .about .about-list li {
    padding: 32px;
    border: 1px solid #D8DCDF;
    border-radius: 8px;
  }
  .about .about-list li + li {
    margin-top: 15px;
  }
  .about .about-list p {
    margin-left: 92px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.02em;
  }
  .about .about-list .icon {
    float: left;
    background: var(--light-orange);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: auto;
  }
  .about .about-list .icon i {
    font-size: 24px;
    color: var(--white);
    line-height: 0;
  }

  /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
  .testimonials {
    background-color: var(--dark-blue);
  }
  .testimonials .section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 80px;
  }
  .testimonials .section-title span {
    color: var(--light-blue);
  }
  .testimonials .testimonials-carousel, .testimonials .testimonials-slider {
    overflow: hidden;
  }
  .testimonials .testimonial-item {
    text-align: center;
    color: #fff;
  }
  .testimonials .testimonial-item p {
    font-style: italic;
    font-size: 24px;
    margin: 0 auto 80px auto;
    color: #eee;
  }
  .testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 10px 0;
    color: #fff;
  }
  .testimonials .testimonial-item h4 {
    font-size: 18px;
    margin: 15px 0 30px 0;
    color: #ddd;
  }
  .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.6);
    font-size: 26px;
  }
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }
  .testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 0.5;
  }
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--light-orange);
    opacity: 1;
  }
  @media (min-width: 1024px) {
    .testimonials {
      background-attachment: fixed;
    }
  }
  @media (min-width: 992px) {
    .testimonials .testimonial-item p {
      width: 80%;
    }
  }
  

  /*--------------------------------------------------------------
  # Clients Section
  --------------------------------------------------------------*/
  .clients {
    width: 100%;
    position: relative;
    background: url(../images/client-bg.png) no-repeat right top;
    background-size: 100% 100%;
  }
  .clients .section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--light-black);
    margin-bottom: 18px;
  }
  .clients .section-title p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 2, 47, 0.6);
    margin-bottom: 50px;
  }
  .clients .client-logo {
    padding: 30px 30px 30px 0;
  }

  /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
  .contact {
    width: 100%;
    position: relative;
    background: url(../images/contact-bg.png) center bottom no-repeat;
    background-size: cover;
  }
  .contact h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
  }
  .contact p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
  }
  .contact .cta-btn {
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    font-size: 14px;
    padding: 16px 32px;
    color: var(--white);
  }
  .contact img {
    width: 60%;
  }

  /*--------------------------------------------------------------
  # Footer Section
  --------------------------------------------------------------*/
  .footer {
    padding: 40px 0;
    background: var(--dark-blue);
    color: var(--white);
  }
  .footer .footer-copyright {
    padding: 65px;
    background: var(--dark-blue) url(/assets/images/logo-noosc.png) no-repeat right center;
    background-size: 57% 100%;
  }

  /*--------------------------------------------------------------
  # Hero Service Section
  --------------------------------------------------------------*/
  .hero-service {
    width: 100%;
    background-size: cover;
    position: relative;
    min-height: 45vh;
    padding: 160px 0 60px 0;
    background: linear-gradient(135deg, #EA622E 0%, #1207A5 82.29%);
  }
  .hero-service .p-custom {
    padding: 0 280px;
  }
  .hero-service h4 {
    font-size: 16;
    font-weight: 700;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.4);
  }
  .hero-service h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
  }
  .hero-service p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
  }
  @media (max-width: 640px) {
    .hero-service h2 {
      font-size: 36px;
    }
  }

  /*--------------------------------------------------------------
  # List Service Section
  --------------------------------------------------------------*/
  .list-services .service-box {
    cursor: pointer;
    border-radius: 8px;
    padding: 44px;
  }
  .list-services .service-box:hover {
    background: var(--dark-blue);
    box-shadow: 0px 32px 80px 1px rgba(1, 4, 64, 0.2);
  }
  .list-services .service-box h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--light-black);
    margin-bottom: 44px;
  }
  .list-services .service-box:hover h2 {
    color: var(--white);
  }
  .list-services .service-box p {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 2, 47, 0.6);
    margin-bottom: 0;
  }
  .list-services .service-box:hover p {
    color: rgba(255, 255, 255, 0.8);
  }

  /* .list-services .service-box:hover:before {
    content: "";
    background: linear-gradient(135deg, #EA622E 0%, #1207A5 82.29%);
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    z-index: 1;
    border-radius: 12px;
  }
  .list-services .service-box:hover:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue);
    z-index: 2;
    border-radius: 8px;
  } */

  /*--------------------------------------------------------------
  # Expertise Section
  --------------------------------------------------------------*/
  .expertise {
    background-color: var(--dark-blue);
    padding: 120px 0;
  }
  .expertise .section-title {
    text-align: center;
  }
  .expertise .section-title h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 100px;
  }
  .expertise .card {
    border-radius: 8px;
  }
  .expertise .card img {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
  }
  .expertise .card h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--light-black);
    margin-bottom: 12px;
  }
  .expertise .card p {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 28px;
  }
  .expertise .card .btn-profile {
    background: var(--light-orange);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: 0.4s;
    border-radius: 1000px;
  }
  .expertise .card .btn-profile:hover {
    color: var(--white);
    box-shadow: 0 0 10px 0 var(--light-orange) inset, 0 0 4px 2px var(--light-orange);
  }
  .expertise .card .btn-linkedin {
    border: 2px solid var(--light-orange);
    color: var(--light-orange);
    font-size: 14px;
    font-weight: 700;
    transition: 0.4s;
    border-radius: 1000px;
  }

  /*--------------------------------------------------------------
  # Hero Sub Service Section
  --------------------------------------------------------------*/
  .hero-sub-service {
    padding: 0;
  }
  .hero-sub-service .bg-sub-service {
    background-color: var(--dark-blue);
    padding: 73px 100px 0 100px;
  }
  .hero-sub-service h4 {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    padding-bottom: 24px;
  }
  .hero-sub-service h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    padding-bottom: 24px;
  }
  .hero-sub-service p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
  }

  /*--------------------------------------------------------------
  # Challenges Section
  --------------------------------------------------------------*/
  .challenges {
    padding: 60px 0;
  }
  .challenges .p-custom {
    padding: 0 150px;
  }
  @media (max-width: 991px) {
    .challenges .p-custom {
      padding: 0 90px;
    }
  }
  @media (max-width: 767px) {
    .challenges .p-custom {
      padding: 0 60px;
    }
  }
  @media (max-width: 480px) {
    .challenges .p-custom {
      padding: 0 20px;
    }
  }
  .challenges .section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--light-black);
    margin-bottom: 32px;
  }
  .challenges .challenges-list {
    padding: 0;
    list-style: none;
  }
  .challenges .challenges-list li {
    border-bottom: 1px solid #e9eaed;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .challenges .challenges-list .question {
    display: block;
    position: relative;
    font-family: #f82249;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: #e0072f;
    transition: 0.3s;
  }
  .challenges .challenges-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
  }
  .challenges .challenges-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
  }
  .challenges .challenges-list .icon-show {
    display: none;
  }
  .challenges .challenges-list .collapsed {
    color: black;
  }
  .challenges .challenges-list .collapsed:hover {
    color: #f82249;
  }
  .challenges .challenges-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
  }
  .challenges .challenges-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
  }

  /*--------------------------------------------------------------
  # Benefits Section
  --------------------------------------------------------------*/
  .benefits {
    padding: 0;
  }
  .benefits .bg-sub-service {
    background-color: var(--dark-blue);
    padding: 73px 100px 0 100px;
  }
  .benefits h4 {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    padding-bottom: 24px;
  }
  .benefits h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    padding-bottom: 24px;
  }
  .benefits p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
  }
  .benefits .p-custom {
    padding: 0 150px;
  }
  @media (max-width: 991px) {
    .benefits .p-custom {
      padding: 0 90px;
    }
  }
  @media (max-width: 767px) {
    .benefits .p-custom {
      padding: 0 60px;
    }
  }
  @media (max-width: 480px) {
    .benefits .p-custom {
      padding: 0 20px;
    }
  }
  .benefits .benefits-list {
    padding: 0;
    list-style: none;
  }
  .benefits .benefits-list li {
    border-bottom: 1px solid #e9eaed;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .benefits .benefits-list .question {
    display: block;
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: var(--white);
    transition: 0.3s;
  }
  .benefits .benefits-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
  }
  .benefits .benefits-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
  }
  .benefits .benefits-list .icon-show {
    display: none;
  }
  .benefits .benefits-list .collapsed {
    color: var(--white);
  }
  .benefits .benefits-list .collapsed:hover {
    color: var(--light-orange);
  }
  .benefits .benefits-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
  }
  .benefits .benefits-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
  }

  /*--------------------------------------------------------------
  # Approach Section
  --------------------------------------------------------------*/
  .approach {
    padding: 60px 0;
  }
  .approach .p-custom {
    padding: 0 150px;
  }
  @media (max-width: 991px) {
    .approach .p-custom {
      padding: 0 90px;
    }
  }
  @media (max-width: 767px) {
    .approach .p-custom {
      padding: 0 60px;
    }
  }
  @media (max-width: 480px) {
    .approach .p-custom {
      padding: 0 20px;
    }
  }
  .approach .section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--light-black);
    margin-bottom: 32px;
  }
  .approach .approach-list {
    padding: 0;
    list-style: none;
  }
  .approach .approach-list li {
    border-bottom: 1px solid #e9eaed;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .approach .approach-list .question {
    display: block;
    position: relative;
    font-family: #f82249;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: #e0072f;
    transition: 0.3s;
  }
  .approach .approach-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
  }
  .approach .approach-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
  }
  .approach .approach-list .icon-show {
    display: none;
  }
  .approach .approach-list .collapsed {
    color: black;
  }
  .approach .approach-list .collapsed:hover {
    color: #f82249;
  }
  .approach .approach-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
  }
  .approach .approach-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
  }

  /*--------------------------------------------------------------
  # Hero About Section
  --------------------------------------------------------------*/
  .hero-about {
    width: 100%;
    background-size: cover;
    position: relative;
    min-height: 45vh;
    padding: 233px 0 160px 0;
    background: var(--dark-blue);
  }
  .hero-about h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 46px;
    color: var(--white);
  }
  .hero-about p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
  }
  @media (max-width: 640px) {
    .hero-about h2 {
      font-size: 36px;
    }
  }

  /*--------------------------------------------------------------
  # Our Team Section
  --------------------------------------------------------------*/
  .our-team {
    width: 100%;
    background-size: cover;
    position: relative;
    min-height: 60vh;
    padding: 80px 0;
  }
  .our-team h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--light-black);
    margin-bottom: 32px;
  }
  .our-team p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 2, 47, 0.6);
  }
  .task h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--light-black);
  }
  .task p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 2, 47, 0.6);
    margin-bottom: 37px;
  }
  .task .task-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .task .task-list li {
    padding: 32px;
    border: 1px solid #D8DCDF;
    border-radius: 8px;
  }
  .task .task-list li + li {
    margin-top: 15px;
  }
  .task .task-list p {
    margin-bottom: 0;
  }
  .task .task-list .icon-check {
    width: 40px;
    height: 40px;
    background: var(--light-orange);
    border-radius: 50px;
    float: left;
    margin-right: 32px;
  }
  .task .task-list .icon-check i {
    font-size: 24px;
    color: var(--white);
    line-height: 0;
  }
  .task .card {
    background: url(../images/started-img.png) no-repeat center;
    background-size: cover;
    border-radius: 8px;
  }
  .task .card h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
  }
  .task .card p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
  }

  /*--------------------------------------------------------------
  # Vision Section
  --------------------------------------------------------------*/
  .vision {
    padding: 100px 0;
    background: var(--blue);
  }
  .vision h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 32px;
  }
  .vision h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
  }
  .vision p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
  }

  /*--------------------------------------------------------------
  # Mission Section
  --------------------------------------------------------------*/
  .mission h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--blue);
  }
  .mission p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 2, 47, 0.6);
    margin-bottom: 90px;
  }
  .mission .mission-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mission .mission-list li {
    padding: 32px;
  }
  .mission .mission-list li + li {
    margin-top: 15px;
  }
  .mission .mission-list h2 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--light-black);
  }
  .mission .mission-list p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 2, 47, 0.6);
    margin-bottom: 0;
  }
  .mission .mission-list .icon-check {
    width: 28px;
    height: 28px;
    background: var(--blue);
    border-radius: 50px;
    float: left;
    margin-right: 32px;
  }
  .mission .mission-list .icon-check i {
    font-size: 24px;
    color: var(--white);
    line-height: 0;
  }

  /*--------------------------------------------------------------
  # Leadership Section
  --------------------------------------------------------------*/
  .leadership .section-title {
    text-align: center;
  }
  .leadership .section-title h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 100px;
  }
  .leadership .card {
    border-radius: 8px;
  }
  .leadership .card h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--light-black);
    margin-bottom: 12px;
  }
  .leadership .card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
  }
  .leadership .card p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 2, 47, 0.6);
  }

  /*--------------------------------------------------------------
  # Contact-us
  --------------------------------------------------------------*/
  .contact-us {
    padding: 160px 0 130px 0;
  }
  .contact-us .content {
    padding: 250px 90px;
    background: linear-gradient(135deg, #EA622E 0%, #1207A5 82.29%);
  }
  .contact-us .content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
  }
  .contact-us .content p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 44px;
  }
  .contact-us .content hr {
    margin-bottom: 44px;
    border: 1px solid #FFFFFF99
  }
  .contact-us .content a {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
  }
  .contact-us .content a .bi {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
  }
  .contact-us .content a:hover {
    font-size: 18px;
    font-weight: 500;
    color: var(--light-orange);
  }
  .contact-us .info {
    padding: 30px;
    background-image: url(../images/contact-us-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  }
  .contact-us .info .card {
    padding: 44px;
  }
  .contact-us .info .card:before {
    content: "";
    background: linear-gradient(135deg, #EA622E 0%, #1207A5 82.29%);
    box-shadow: 0px 32px 80px rgba(253, 106, 33, 0.15);
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    z-index: 1;
    border-radius: 12px;
  }
  .contact-us .info .card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue);
    z-index: 2;
    border-radius: 8px;
  }
  .contact-us .info .card img {
    position: relative;
    width: 30%;
    margin-bottom: 32px;
    z-index: 3;
  }
  .contact-us .info .card i {
    position: relative;
    font-size: 20px;
    color: #149ddd;
    float: left;
    width: 44px;
    height: 44px;
    background: #dff3fc;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    z-index: 3;
  }
  .contact-us .info .card h2 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    z-index: 3;
  }
  .contact-us .info .card p {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 30px;
    z-index: 3;
  }
  .contact-us .info .card a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    z-index: 3;
  }
  .contact-us .info .card a:hover {
    color: var(--light-orange);
  }
  .contact-us .php-email-form {
    width: 100%;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  }
  .contact-us .php-email-form .form-group {
    padding-bottom: 8px;
  }
  .contact-us .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  .contact-us .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  .contact-us .php-email-form .error-message br + br {
    margin-top: 25px;
  }
  .contact-us .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  .contact-us .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  .contact-us .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-us .php-email-form .form-group {
    margin-bottom: 15px;
  }
  .contact-us .php-email-form label {
    padding-bottom: 8px;
    font-weight: 600;
  }
  .contact-us .php-email-form input, .contact-us .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
  }
  .contact-us .php-email-form input {
    height: 44px;
  }
  .contact-us .php-email-form textarea {
    padding: 10px 15px;
  }
  .contact-us .php-email-form button[type=submit] {
    background: var(--light-orange);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    font-weight: 500;
    transition: 0.4s;
    border-radius: 1000px;
  }
  .contact-us .php-email-form button[type=submit]:hover {
    color: var(--white);
    box-shadow: 0 0 10px 0 var(--light-orange) inset, 0 0 4px 2px var(--light-orange);
  }
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /*--------------------------------------------------------------
  # Button Whatsapp
  --------------------------------------------------------------*/
  .btn-whatsapp {
    position: fixed;
    visibility: visible;
    opacity: 1;
    right: 20px;
    bottom: 20px;
    z-index: 996;
    background: #2ebd1e;
    height: 65px;
    width: 65px;
    border-radius: 50%;
    transition: all 0.4s;
    box-shadow: 0 1px 6px 0 rgb(0 0 0 / 6%), 0 2px 32px 0 rgb(0 0 0 / 16%);
  }
  .btn-whatsapp i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  .btn-whatsapp:hover {
    background: #31ca20;
  }

  /*--------------------------------------------------------------
  # Hero Profile
  --------------------------------------------------------------*/
  .hero-profile {
    min-height: 45vh;
    padding: 233px 0 160px 0;
    background: var(--dark-blue);
  }

  .hero-profile h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
  }

  /*--------------------------------------------------------------
  # Info Profile
  --------------------------------------------------------------*/
  .info-profile h2 {
    font-size: 60px;
    font-weight: 600;
    line-height: 65px;
    margin-top: 10px;
    margin-bottom: 10px;;
  }
  .info-profile h4 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 30px;
  }
  .info-profile img {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
  }
  .info-profile .btn-profile {
    background: var(--light-orange);
    border: 0;
    padding: 10px 24px;
    color: var(--white);
    font-weight: 500;
    transition: 0.4s;
    border-radius: 1000px;
  }
  .info-profile .btn-profile:hover {
    color: var(--white);
    box-shadow: 0 0 10px 0 var(--light-orange) inset, 0 0 4px 2px var(--light-orange);
  }
  .info-profile .img-fluid {
    max-width: 75%;
  }

  /*--------------------------------------------------------------
  # About Me Profile
  --------------------------------------------------------------*/
  .about-me-profile .section-title h2 {
    padding: 80px 0;
  }
  .about-me-profile .section-content {
    font-size: 18px;
  }

  /*--------------------------------------------------------------
  # Use Case Section
  --------------------------------------------------------------*/
  .usecase {
    padding: 60px 0;
  }
  .usecase .section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--light-black);
    margin-bottom: 32px;
  }