/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

  /* @font-face {
    font-family: "montserratbold";
    src: url('../../font/Montserrat-Bold.ttf');
  }

  @font-face {
    font-family: "montserratboldblack";
    src: url('../../font/Montserrat-Black.ttf');
  }

  @font-face {
    font-family: "montserratboldblackitalic";
    src: url('../../font/Montserrat-BlackItalic.ttf');
  }

  @font-face {
    font-family: "montserratbolditalic";
    src: url('../../font/Montserrat-BoldItalic.ttf');
  }

  @font-face {
    font-family: "montserratextrabold";
    src: url('../../font/Montserrat-ExtraBold.ttf');
  }

  @font-face {
    font-family: "montserratextrabolditalic";
    src: url('../../font/Montserrat-ExtraBoldItalic.ttf');
  }

  @font-face {
    font-family: "montserratextralight";
    src: url('../../font/Montserrat-ExtraLight.ttf');
  }

  @font-face {
    font-family: "montserratextralightitalic";
    src: url('../../font/Montserrat-ExtraLightItalic.ttf');
  }

  @font-face {
    font-family: "montserratitalic";
    src: url('../../font/Montserrat-Italic.ttf');
  }

  @font-face {
    font-family: "montserratlight";
    src: url('../../font/Montserrat-Light.ttf');
  }

  @font-face {
    font-family: "montserratmedium";
    src: url('../../font/Montserrat-Medium.ttf');
  }

  @font-face {
    font-family: "montserratmediumitalic";
    src: url('../../font/Montserrat-MediumItalic.ttf');
  }

  @font-face {
    font-family: "montserratregular";
    src: url('../../font/Montserrat-Regular.ttf');
  }

  @font-face {
    font-family: "montserratsemibold";
    src: url('../../font/Montserrat-SemiBold.ttf');
  }

  @font-face {
    font-family: "montserratsemibolditalic";
    src: url('../../font/Montserrat-SemiBoldItalic.ttf');
  }

  @font-face {
    font-family: "montserratthin";
    src: url('../../font/Montserrat-Thin.ttf');
  }

  @font-face {
    font-family: "montserratthinitalic";
    src: url('../../font/Montserrat-ThinItalic.ttf');
  } */

  /* .montserrat-bold{
    font-family: "Montserrat";
    src: url('../../font/Montserrat-Bold.ttf');
  } */

  .d-none{
    display: none;
  }

  .fw600{
    font-weight: 600;
  }

  .fw700{
    font-weight: 700;
  }

  .fw800{
    font-weight: 800;
  }  

  .fw500{
    font-weight: 500;
  }  

  .fw400{
    font-weight: 400;
  }

  .fw300{
    font-weight: 300;
  }

  .fwbold{
    font-weight: bold;
  }

body::-webkit-scrollbar {
    width: 0.2em;
  }
  
  body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 500px #F0F0F000;
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #4ab8ef;
  }
  
  body {
    /* font-family: "Open Sans", sans-serif; */
    color: #444444;
  }
  
  a {
    color: #47b2e4;
    text-decoration: none;
  }
  
  a:hover {
    color: #73c5eb;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Jost", sans-serif;
  }
  
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #37517e;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #37517e;
    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: 996;
    background: #47b2e4;
    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: #6bc1e9;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
  }
  
  #header.header-scrolled,
  #header.header-inner-pages {
    background: rgba(86, 86, 86, 0.14);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 1px 15px 0 rgb(0 0 0 / 5%);
    backdrop-filter: blur(26.100000381469727px);
    /* width: 100%; */
  }

  #header.header-scrolled-custom,
  #header.header-inner-pages-custom {
    background: rgba(86, 86, 86, 0.14);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 1px 15px 0 rgb(0 0 0 / 5%);
    backdrop-filter: blur(26.100000381469727px);
    width: 100%;
    height: 100%;
  }  
  
  #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 {
    max-height: 40px;
    width: 110px;
  }

  .headerbtncontact{
    background-color: rgba(0, 140, 210, 1); 
    /* border: 1px #D9D9D9 solid;  */
    border-radius: 50px; 
    padding: 4px 15px; 
    font-size: 14px;
    margin-left: 6px;
    cursor: pointer;
  }

  .btncontactus{
    padding: 10px 50px; 
    border-radius: 15px; 
    color: #202020;
    background-color: transparent; 
    border: 1px black solid; 
    font-size: 14px;
    /* margin-left: 6px; */
  }

  .btncontactus:hover{
    transition: 500ms;
    color: white;
    background-color: #202020; 
  }  

  .btn-load-more{
    background-color: transparent; 
    border: 1px black solid; 
    border-radius: 50px; 
    padding: 10px 30px; 
    font-size: 14px;
    margin-left: 6px;
    margin-top: 5%;
  }

  .btn-load-more:hover{
    background-color: #202020;
    color: white;
    transition: 0.3s;
  }  

  .headerbtncontact-mobile{
    background-color: rgba(0, 140, 210, 1); 
    color: white;
    /* border: 1px black solid;  */
    border-radius: 50px; 
    padding: 4px 15px; 
    font-size: 14px;
    font-weight: 600;
    /* margin-left: 20px; */
    /* margin-top: 15px; */
  }

  .headerbtncontact:hover{
    /* background-color: #202020;
    color: white;
    transition: 0.3s; */
  }

  .headerbtncontact-mobile:hover{
    background-color:rgb(0, 94, 141); 
    color: white;
    transition: 0.3s;
  }  

  .first-header-about{
    width: 100%;
    height: 20vh;
    background-color: #f8fcfc;
  }

  .first-header-web
  {
    width: 100%;
    height: 40vh;
    background-color: #f8fcfc;
    /* margin-top: 8rem; */
    /* display: flex; */
    /* align-items: center; */
  } 

  .first-header-recruitment{
    width: 100%;
    height: 40vh;
    background-color: #f8fcfc;
  }

  .header-about{
    width: 100%; 
    height: 65vh; 
    /* margin-top: 10%; */
    background-size: 100%; 
    background-repeat: no-repeat; 
    object-fit: cover;
  }

  .top50flex{
    margin-top: 50%;
  }

  .aa-white::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22%;
    height: 0.1em;
    background-color: white;
    opacity: 1;
    /* transition: opacity 300ms, transform 300ms; */
  }  
  
  .aa-white-active::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: #0088CF;
    opacity: 1;
    /* transition: opacity 300ms, transform 300ms; */
  }
  
  .aa-white::after,
  .aa-white::after{
    opacity: 1;
    transform: translate3d(0%, 0, 0);
  }

  .aa-white-active::after,
  .aa-white-active::after{
    opacity: 1;
    transform: translate3d(0%, 0, 0);
  }  

  .aa-white:hover::after,
  .aa-white:focus::after{
    opacity: 1;
    width: 100%;
    transition: 0.5s;
    /* transform: translate3d(5%, 0, 0); */
  }

  .aa-white-active:hover::after,
  .aa-white-active:focus::after{
    opacity: 1;
    width: 100%;
    transition: 0.5s;
    /* transform: translate3d(5%, 0, 0); */
  }  

  .aa-white:hover{
    margin-top: 3px;
  }

  .aa-white-active:hover{
    margin-top: 3px;
  }    

  .aa::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22%;
    height: 0.1em;
    background-color: black;
    opacity: 1;
    /* transition: opacity 300ms, transform 300ms; */
  }  

  .aa-active::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: #0088CF;
    opacity: 1;
    /* transition: opacity 300ms, transform 300ms; */
  }  

  /* .aa:focus{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22%;
    height: 0.1em;
    background-color: black;
    opacity: 1; */
    /* transition: opacity 300ms, transform 300ms; */
  /* } */

  .aa::after,
  .aa::after{
    opacity: 1;
    transform: translate3d(0%, 0, 0);
  }

  .aa-active::after,
  .aa-active::after{
    opacity: 1;
    transform: translate3d(0%, 0, 0);
  }  

  .aa:hover::after,
  .aa:focus::after{
    opacity: 1;
    width: 100%;
    transition: 0.5s;
    background-color: #0088CF;
    /* transform: translate3d(5%, 0, 0); */
  }

  .aa-active:hover::after,
  .aa-active:focus::after{
    opacity: 1;
    width: 100%;
    transition: 0.5s;
    background-color: #0088CF;
    /* transform: translate3d(5%, 0, 0); */
  }  

  .aa:hover{
    margin-top: 3px;
  }

  .aa-active:hover{
    margin-top: 3px;
  }  
  
  @media (max-width: 575px) {

    #header .logo img {
      margin-top: -10px;
      margin-left: 2%;
      max-height: 25px;
      width: 75px;
    }

    .header-about{
      width: 100%; 
      height: 25vh; 
    }

    .top50flex{
      margin-top: 0%;
    }    

  }

  @media (max-width: 991px) {

    .headerbtncontact{
      display: none;
    }

    .aa::after{
      content: '';
      position: absolute;
      bottom: 0;
      left: 20px;
      width: 10%;
      height: 0.1em;
      background-color: black;
      opacity: 0;
      /* transition: opacity 300ms, transform 300ms; */
    }

    .aa-active::after{
      content: '';
      position: absolute;
      bottom: 0;
      left: 20px;
      width: 10%;
      height: 0.1em;
      background-color: #0088CF;
      opacity: 0;
      /* transition: opacity 300ms, transform 300ms; */
    }    
  
    .aa:focus{
      content: '';
      position: absolute;
      bottom: 0;
      left: 5px;
      width: 10%;
      height: 0.1em;
      background-color: black;
      opacity: 0;
      /* transition: opacity 300ms, transform 300ms; */
    }

    .aa-active:focus{
      content: '';
      position: absolute;
      bottom: 0;
      left: 5px;
      width: 10%;
      height: 0.1em;
      background-color: #0088CF;
      opacity: 0;
      /* transition: opacity 300ms, transform 300ms; */
    }    
  
    .aa::after,
    .aa::after{
      opacity: 1;
      transform: translate3d(0%, 0, 0);
    }

    .aa-active::after,
    .aa-active::after{
      opacity: 1;
      transform: translate3d(0%, 0, 0);
    }    
  
    .aa-active:hover::after,
    .aa-active:focus::after{
      opacity: 1;
      width: 100%;
      transition: 0.5s;
      /* transform: translate3d(5%, 0, 0); */
    }
  
    .aa:hover{
      margin-top: 3px;
    }   

    .aa-active:hover{
      margin-top: 3px;
    }       
    
    .first-header-recruitment{
      width: 100%;
      height: 15vh;
      background-color: #f8fcfc;
    }    

  }  
  
  .btn-contact {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #FFF;
    background-color: #47b2e4;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    /* margin-top: 6px; */
    margin-left: 20px;
    border: 2px solid #47b2e4;
  }
  
  .btn-contact:hover {
    /* background-color: #47b2e4;
    color: #fff;
    transition: 0.3s; */
    border-radius: 100px;
    transition: all 2s ease-out;
  }
  
  .contact-not-display {
    display: inline-block;
    height: 0;
  }
  
  .contact-display {
    display: none;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */

  .div-img-search{
    margin-left: 13rem;
  }

  .navbar {
    padding: 0;
  }
  
  #navbar.navbar-scrolled {
    color: #000;
  }
  
  .navbar ul {
    margin: 0;
    margin-left: 200px;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    /*Customize*/
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center;
    /*Template*/
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .navbar a,
  .navbar a:focus {
    /*Template*/
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    padding: 10px 0 10px 20px;
    /* font-size: 15px; */
    /* font-weight: 500; */
    color: Black;
    /* white-space: nowrap; */
    transition: 0.3s;
    /* font-weight: bold; */
    /*Customize*/
    display: block; 
    position: relative; 
    padding: 0.2em 0; 
    margin-right: 20px;
  }

  .navbar ul li .aa-active{
    color: #0088CF;
  }
  
  .navbar a i,
  .navbar a:focus i {
    /* font-size: 12px; */
    line-height: 0;
    margin-left: 5px;
  }
  
  .navbar a:hover,
  .navbar li:hover>a,
  .navbar ul li a.aktif {
    /* font-size: 15px; */
    color: #0088CF;
    /* margin-top: -5px; */
    transition: 0.1s;
  }
  
  .navbar .getstarted,
  .navbar .getstarted:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: #b5e5ff;
    font-size: 14px;
    border: 2px solid #47b2e4;
    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: #47b2e4;
  }
  
  .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;
  }

  .img-search{
    max-height: 45px; 
    width: 100%; 
    object-fit: cover;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }

  .headerbtncontact-mobile
  {
    display: none;
  }
  
  /**
  * 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 ul {
      margin-left: 0;
    }    

    .navbar li {
      justify-content: start;
    }
  
    .mobile-nav-toggle {
      color: #0088CF;
      margin-right: 20px;
    }
  
    .contact-not-display {
      display: none;
    }
  
    .contact-display {
      display: inline-block;
    }

    .headerbtncontact-mobile
    {
      display: block;
    }

    .div-img-search{
      margin-left: 200px;
    }    

  }

  @media (max-width: 768px) {

    .div-img-search{
      margin-left: 450px;
    }    

  }  

  @media (max-width: 575px) {

    .div-img-search{
      margin-left: 165px;
    }    

  }  
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    /* width: 100%;
    height: 100%; */
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(40, 58, 90, 0.9);
    transition: 0.3s;
    /* z-index: 9999; */
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    /* width: 100%;
    height: 100%; */
    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: #37517e;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #47b2e4;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
    color: #37517e;
  }
  
  .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: #47b2e4;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    height: 67vh;
    /* background: white; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    /* object-fit: cover; */
    /* background-image: url('assets/img/newimg/headGif.gif'); */
    /* background-position:; */
  }
  
  #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;
  }
  
  .btn-get-started {
    /* font-family: "Jost", sans-serif; */
    font-weight: 500;
    font-size: 14px;
    /* letter-spacing: 0.1px; */
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #3D3C3C;
    font-weight: bold;
    cursor: pointer;
  }
  
  .btn-get-started:hover {
    background: transparent;
    color: #3D3C3C;
    font-weight: bold;
    border: 1px #3D3C3C solid;
  }
  
  #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: #47b2e4;
  }
  
  #hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  
  .hero-title1{
    font-size: 40px;
    font-weight: bold;
  }

  .hero-title2{
    margin-top: -25px;
    font-size: 40px;
    font-weight: bold;
  }

  .hero-title3{
    display: none;
    margin-top: -25px;
    font-size: 40px;
    font-weight: bold;
  }

  .hero-subtitle{
    font-size: 18px;
    margin-top: -5px;
  }

  .hero-gap{
    height: 10vh;
  }

  .top-hero{
    margin-top: 5%;
  }

  @media (max-width: 991px) AND (min-width: 769px) {
    #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 {
      height: 100vh;
      /* text-align: center; */
    }

    #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%;
    }

    .hero-title1{
      text-align: left;
    }

    .hero-title2{
      text-align: left;
      display: none;
    }

    .hero-title3{
      display: inline;
      text-align: left;
      line-height: 47px;
      margin-top: -20px;
    }

    .hero-gap{
      height: 1vh;
    }

    #hero .container {
      padding-top: 0px;
    }

  }
  
  @media (max-width: 575px) {

    #hero {
      height: 70vh;
      /* text-align: center; */
    }

    #hero .hero-img img {
      width: 80%;
    }
  
    #hero .btn-get-started {
      font-size: 12px;
      padding: 8px 18px 8px 18px;
    }

    .top-hero{
      margin-top: 0%;
      margin-left: 2%;
    }

    .hero-title1{
      font-size: 25px;
    }

    .hero-title3{
      display: inline;
      text-align: left;
      line-height: 30px;
      margin-top: -30px;
      font-size: 25px;
    }    

    .hero-subtitle{
      font-size: 15px;
      margin-top: -5px;
    }    

    .div-sub-title{
      width: 85%;
    }

  }
  
  #about {
    width: 100%;
    height: 70vh;
    background: #37517e;
  }
  
  #about .container {
    padding-top: 72px;
  }
  
  #about h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }
  
  #about h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 24px;
  }
  
  #about .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: #47b2e4;
  }
  
  #about .btn-get-started:hover {
    background: #209dd8;
  }
  
  #about .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
  }
  
  #about .btn-watch-video i {
    line-height: 0;
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
  }
  
  #about .btn-watch-video:hover i {
    color: #47b2e4;
  }
  
  #about .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  
  @media (max-width: 991px) {
    #about {
      height: 100vh;
      text-align: center;
    }
  
    /* #about .animated {
      -webkit-animation: none;
      animation: none;
    } */
  
    #about .hero-img {
      text-align: center;
    }
  
    #about .hero-img img {
      width: 50%;
    }
  }
  
  @media (max-width: 768px) {
    #about h1 {
      font-size: 28px;
      line-height: 36px;
    }
  
    #about h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  
    #about .hero-img img {
      width: 70%;
    }
  }
  
  @media (max-width: 575px) {
    #about .hero-img img {
      width: 80%;
    }
  
    #about .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 Wave
  --------------------------------------------------------------*/  

  .img-wave
  {
    /* background-color: white; */
    margin-top: -10%;
    width: 100%;
    height: 75vh;
    /* background: white; */
    background-repeat: no-repeat;
    /* background-size: 100%;     */
    /* object-fit: cover; */
  }

  @media (max-width: 991px) {
    .img-wave{
      margin-top: -30%;
      width: 100%;
      height: 80vh;
    }
  }
  
  @media (max-width: 768px) {
    .img-wave{
      margin-top: -20%;
      width: 100%;
      height: 95vh;
    }
  }
  
  @media (max-width: 575px) {
    .img-wave{
      margin-top: -20%;
      width: 100%;
      height: 40vh;
    }
  }  

  /*--------------------------------------------------------------
  # Sections let's begin
  --------------------------------------------------------------*/  

  .section-letsbegin{
    margin-top: -75vh;
  }

  .line-begin{
    margin-top: -10%; 
    margin-left: 50%; 
    width: 1.45%; 
    height: 35vh; 
    background-color: black;
  }

  .line-begin-scroll{
    transition: 1s;
    height: 35vh; 
  }

  .line-usecase{
    margin-top: -10%; 
    margin-left: 50%; 
    width: 0.7%; 
    height: 20vh; 
    background-color: #56A4C9;
  }

  .line-usecase-scroll{
    transition: 1s;
    height: 20vh; 
  }

  .what-we-do-desktop{
    /* display: block; */
  }

  .what-we-do-mobile{
    display: none;
  } 
  
  .si-mobile{
    width: 73.5%; 
    height: 73.5%;
  }

  @media (max-width: 991px) {

    .what-we-do-desktop{
      display: none;
    }
  
    .what-we-do-mobile{
      display: block;
    }      

    .si-mobile{
      width: 65%; 
      height: 65%;
    }    

  }
  
  @media (max-width: 768px) {
    .section-letsbegin{
      margin-top: -80vh;
    }

    .line-begin{
      transition: 1s;
      height: 20vh; 
    }

    .line-begin-scroll{
      transition: 1s;
      height: 25vh; 
    }    

  }
  
  @media (max-width: 574px) {

    .section-letsbegin{
      margin-top: -40vh;
    } 

    .what-we-do-desktop{
      display: none;
    }
  
    .what-we-do-mobile{
      display: block;
    }  

    .si-mobile{
      width: 85%; 
      height: 85%;
    }    
    
    .line-usecase{
      height: 15vh; 
    }    

  }  

  /*--------------------------------------------------------------
  # Sections UseCase
  --------------------------------------------------------------*/

  .ul-use-case{
    margin-left: 5%;
  }

  .div-numbering{
    /* width: 50px; */
  }  

  #numbering{
    border: 0.3vh #008CD2 solid; 
    border-radius: 123px; 
    padding: 10px 15px;
    background-color: transparent;
  }

  #numbering-p {
    margin-top: -13px; 
    color: #008CD2;
  }

  #numbering:hover > #numbering-p {
    /* background-color: #008CD2; */
    color: white;
    transition: 500ms;
  }

  #numbering:hover {
    background-color: #008CD2;
    color: white;
    transition: 500ms;
  }

  .faq-line{
    margin-top: 10px;  
    margin-left: 6%; 
    width: 85%;
    height: 0.5px; 
    background-color: black;
  }

  @media (max-width: 575px) {

    .div-numbering{
      width: 25px;
    } 

    #numbering{
      padding: 20% 50%;
    }    

    #numbering-p {
      margin-top: -11px;
      font-size: 12px;
    }

    .ul-use-case{
      margin-left: 3%;
    }    

    /* .text-numbering{
      font-size: 13px;
    } */

    .iot-sol .iot-sol-list a.collapsed{
      font-size: 12px;
    }

    .li-use-case {
      margin: 10px;
      /* background: #fff;
      border-radius: 4px; */
      position: relative;
    }

  }  

  /* .faq-line-scroll{
    transition: all 60s ease-in-out;
    width: 94%;
  } */

  /*--------------------------------------------------------------
  # 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: capitalize;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #0088CF;
  }
  
  .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: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
  }
  
  .section-title p {
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Clients
  --------------------------------------------------------------*/
  .clients {
    padding: 12px 0;
    text-align: center;
  }
  
  .clients img {
    max-width: 65%;
    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);
  }
  
  .clients .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: 20px;
    transition: all ease-in-out 0.4s;
  
  }
  
  @media (max-width: 768px) {
    .clients img {
      max-width: 40%;
    }
  }
  
  /*--------------------------------------------------------------
  # About Us
  --------------------------------------------------------------*/
  .about {
    background-color: #FFF;
  }
  
  .about .content h3 {
    font-weight: 600;
    font-size: 34px;
    color: #0088CF;
  }
  
  .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: #0088CF;
    line-height: 1;
  }
  
  .about .content p:last-child {
    margin-bottom: 0;
  }
  
  .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: #47b2e4;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #47b2e4;
  }
  
  .btn-learn-more:hover {
    background: #47b2e4;
    color: #fff;
    /* text-decoration: none; */
    border-radius: 100px;
    transition: all 0.7s ease-out;
  }
  
  @media (max-width: 575px) {
    .visi-misi {
      padding-top: 40px;
    }
  }
  
  /*--------------------------------------------------------------
  # Featured Services Section
  --------------------------------------------------------------*/
  .featured-services .service-item {
    position: relative;
    height: 100%;
    margin-bottom: 20px;
  }
  
  .featured-services .service-item .icon {
    margin-right: 20px;
  }
  
  .featured-services .service-item .icon i {
    color: #001f8d;
    font-size: 48px;
    transition: 0.3s;
  }
  
  .featured-services .service-item:hover .icon {
    background: #fff;
  }
  
  .featured-services .service-item:hover .icon i {
    color: var(--color-primary);
  }
  
  .featured-services .service-item .title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--color-secondary);
    transition: 0.3s;
  }
  
  .featured-services .service-item .description {
    font-size: 15px;
    color: #132848;
    margin-bottom: 10px;
  }
  
  .featured-services .service-item .readmore {
    display: flex;
    align-items: center;
    color: var(--color-secondary);
    transition: 0.3s;
    font-weight: 700;
    font-size: 14px;
  }
  
  .featured-services .service-item .readmore i {
    margin-left: 8px;
  }
  
  .featured-services .service-item:hover .title,
  .featured-services .service-item:hover .readmore,
  .featured-services .service-item:hover .icon i {
    color: var(--color-primary);
  }
  
  /*--------------------------------------------------------------
  # Why Us
  --------------------------------------------------------------*/
  .why-us .content {
    padding: 60px 100px 0 100px;
  }
  
  .why-us .content h3 {
    font-weight: 700;
    font-size: 27px;
    color: #0088CF;
    font-family: "Jost", sans-serif;
  }
  
  .why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
  }
  
  .why-us .content p {
    font-size: 15px;
    color: #444444;
  }
  
  .why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
  .why-us .content ul {
    list-style: none;
    padding: 0;
  }
  
  .why-us .content ul li {
    padding-bottom: 10px;
  }
  
  .why-us .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #47b2e4;
  }
  
  .why-us .akordeon-list {
    padding: 0 100px 60px 100px;
  }
  
  .why-us .akordeon-list ul {
    padding: 0;
    list-style: none;
  }
  
  .why-us .akordeon-list li+li {
    margin-top: 15px;
  }
  
  .why-us .akordeon-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
  }
  
  .why-us .akordeon-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 .akordeon-list span {
    color: #47b2e4;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
  }
  
  .why-us .akordeon-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .why-us .akordeon-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
  }
  
  .why-us .akordeon-list .icon-show {
    display: none;
  }
  
  .why-us .akordeon-list a.collapsed {
    color: #343a40;
  }
  
  .why-us .akordeon-list a.collapsed:hover {
    color: #47b2e4;
  }
  
  .why-us .akordeon-list a.collapsed .icon-show {
    display: inline-block;
  }
  
  .why-us .akordeon-list a.collapsed .icon-close {
    display: none;
  }
  
  @media (max-width: 1024px) {
  
    .why-us .content,
    .why-us .akordeon-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 .akordeon-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: #0088CF;
    font-family: "Poppins", sans-serif;
  }
  
  .skills .content h4 {
    font-weight: 700;
    font-size: 25px;
    color: #0088CF;
    font-family: "Poppins", sans-serif;
  }
  
  .skills .box h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 30px;
    color: #0088CF;
  }
  
  .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: #47b2e4;
  }
  
  .skills .content p:last-child {
    margin-bottom: 0;
  }
  
  .skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 5px;
  }
  
  .skills .progress .skill {
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #37517e;
    font-size: 18px;
  }
  
  .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: #0088CF;
  }
  
  .skills .image-shadow {
    box-shadow: 0px 0 30px 0 rgba(0, 0, 0, 0.1);
  }
  
  .skills .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    /* padding: 50px 30px; */
    transition: all ease-in-out 0.4s;
    background: #0088CF;
  }
  
  .skills .desk-box {
    padding: 20px 30px;
  }
  
  .skills .icon-box .icon {
    margin-bottom: 10px;
  }
  
  .skills .icon-box .icon i {
    color: #47b2e4;
    font-size: 36px;
    transition: 0.3s;
  }
  
  .skills .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .skills .icon-box h4 a {
    color: #37517e;
    transition: ease-in-out 0.3s;
  }
  
  .skills .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .skills .icon-box:hover {
    transform: translateY(-10px);
  }
  
  .skills .icon-box:hover h4 a {
    color: #47b2e4;
  }
  
  /*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
  .services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    /* padding: 50px 30px; */
    transition: all ease-in-out 0.4s;
    background: #fff;
  }
  
  .services .desk-box {
    padding: 20px 30px;
  }
  
  .services .icon-box .icon {
    margin-bottom: 10px;
  }
  
  .services .icon-box .icon i {
    color: #47b2e4;
    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: #37517e;
    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: #47b2e4;
  }
  
  /*--------------------------------------------------------------
  # Cta
  --------------------------------------------------------------*/
  .cta {
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/BIG.png") fixed center center;
    background-size: cover 50%;
    background-repeat: no-repeat;
    padding: 40px 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: #47b2e4;
    border: 2px solid #47b2e4;
  }
  
  @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;
    }
  
    /* .cta {
      background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/BIG.png") fixed left ;
      background-size: cover 10%;
    } */
  }
  
  /*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
  .portfolio #portfolio-flters {
    list-style: none;
  }
  
  .portfolio #portfolio-flters li {
    cursor: pointer;
    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 #portofolio-flters li:hover,
  .portfolio #portofolio-flters li.filter-active {
    color: #0088CF;
  }
  
  .portfolio #portofolio-flters {
    list-style: none;
  }
  
  .portfolio #portofolio-flters li {
    cursor: pointer;
    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 #portofolio-flters li:hover,
  .portfolio #portofolio-flters li.filter-active {
    color: #0088CF;
  }
  
  .portfolio .portfolio-item {
    margin-bottom: 30px;
  }
  
  .portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
  }
  
  .portfolio .portfolio-item .portfolio-img img {
    transition: all 0.6s;
  }
  
  .portfolio-info {
    transition: all 0.3s;
    background: rgba(55, 81, 126, 0.8);
    padding: 10px 15px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding: 30px;
    box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
    align-items: center;
  }
  
  @media (max-width: 576px) {
    .portfolio-info {
      transition: all 0.3s;
      padding: 15px;
      font-size: 10px;
    }
  
    .portfolio .portfolio-item .portfolio-info .preview-link,
    .portfolio .portfolio-item .portfolio-info .details-link {
      font-size: 15px;
    }
  
    .portfolio-item img {
      width: 85%;
    }
  }
  
  .portfolio .portfolio-item .portfolio-info h4 {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
  }
  
  .preview-link {
    font-size: 24px;
  }
  
  .portfolio .portfolio-item .portfolio-info p {
    color: #37517e;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link,
  .portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    top: calc(50% - 18px);
    color: #47b2e4;
    transition: 0.3s;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link:hover,
  .portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #37517e;
    transform: scale(1.15);
  }
  
  .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;
  }

  
  /*--------------------------------------------------------------
  # Our Customer Details
  --------------------------------------------------------------*/
  
  .customer-title{
    font-size: 48px;
  }

  .partners-title{
    margin-top: -6%;
  }

  .product-title{
    /* margin-top: -6%; */
    font-size: 37px;
  }

  @media (max-width: 992px) {
    /* .why-us .img {
      min-height: 400px;
    }
  
    .why-us .content {
      padding-top: 30px;
    }
  
    .why-us .akordeon-list {
      padding-bottom: 30px;
    } */
  }
  
  @media (max-width: 575px) {

    .customer-title{
      font-size: 30px;
      margin-top: -11%;
    }

    .partners-title{
      margin-top: -15%;
    }

    .product-title{
      /* margin-top: -13%; */
      font-size: 25px;
    }    

    .con-card{
      margin-top: -20%;
    }

  }  
  
  /*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/

  .portfolio-details {
    padding-top: 40px;
  }
  
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  
  .swiper-pagination {
    margin-top: 25px;
    position: relative;
  }
  
  .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
    /* border: 1px solid rgba(0, 0, 0, 0.2); */
  }
  
  .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #0088CF;
  }
  
  .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-info ul li+li {
    margin-top: 10px;
  }
  
  .portfolio-description {
    padding-top: 30px;
  }
  
  .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .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: #f3f5fa;
    transition: 0.5s;
  }
  
  .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: #37517e;
  }
  
  .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: #37517e;
    font-size: 16px;
    margin: 0 2px;
  }
  
  .team .member .social a:hover {
    background: #47b2e4;
  }
  
  .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: 30px 30px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
    transition: all ease-in-out 0.4s;
  
  }
  
  .pricing .box:hover {
    transform: translateY(-10px);
    border-radius: 20px;
    box-shadow: 0px 0px 25px 1px rgba(153, 153, 153, 0.75);
  }
  
  .pricing p {
    font-size: 15px;
  
  }
  
  .pricing h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
    color: #37517e;
  }
  
  .pricing h4 {
    font-size: 100px;
    color: #37517e;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .pricing h4 sup {
    font-size: 28px;
  }
  
  .pricing h4 span {
    color: #47b2e4;
    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: #47b2e4;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
    border: 1px solid #47b2e4;
  }
  
  .pricing .buy-btn:hover {
    background: #47b2e4;
    color: #fff;
  }
  
  .pricing .featured {
    border-top-color: #47b2e4;
  }
  
  .pricing .featured .buy-btn {
    background: #47b2e4;
    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 ul {
    padding: 0;
    list-style: none;
  }
  
  .faq .faq-list li+li {
    margin-top: 15px;
  }
  
  .faq .faq-list li {
    padding: 20px;
    background: #f3f5fa;
    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;
    outline: none;
    cursor: pointer;
  }
  
  .faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #47b2e4;
  }
  
  .faq .faq-list .icon-show,
  .faq .faq-list .icon-close {
    font-size: 24px;
    position: relative;
    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: #37517e;
    transition: 0.3s;
  }
  
  .faq .faq-list a.collapsed:hover {
    color: #47b2e4;
  }
  
  .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;
    }
  }
  
  /*--------------------------------------------------------------
  # Iot Solution
  --------------------------------------------------------------*/
  
  .iot-sol .iot-sol-list ul {
    padding: 0;
    list-style: none;
  }
  
  .iot-sol .iot-sol-list li+li {
    margin-top: 15px;
  }
  
  .li-use-case {
    width: 100%;
    margin: 20px;
    /* background: #fff;
    border-radius: 4px; */
    position: relative;
  }
  
  .iot-sol .iot-sol-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;
  }
  
  .iot-sol .iot-sol-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #47b2e4;
  }
  
  .iot-sol .iot-sol-list .icon-show,
  .iot-sol .iot-sol-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .iot-sol .iot-sol-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
  }
  
  .iot-sol .iot-sol-list .icon-show {
    display: none;
  }
  
  .iot-sol .iot-sol-list a.collapsed {
    color: #37517e;
    transition: 0.3s;
  }
  
  .iot-sol .iot-sol-list a.collapsed:hover {
    color: #47b2e4;
  }
  
  .iot-sol .iot-sol-list a.collapsed .icon-show {
    display: inline-block;
  }
  
  .iot-sol .iot-sol-list a.collapsed .icon-close {
    display: none;
  }
  
  @media (max-width: 1200px) {
    .iot-sol .iot-sol-list {
      padding: 0;
    }
  }
  
  /*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
  .contact .info {
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    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: #47b2e4;
    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: #37517e;
  }
  
  .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: #47b2e4;
    color: #fff;
  }
  
  .contact .info .email:hover i,
  .contact .info .address:hover i,
  .contact .info .phone:hover i {
    background: #47b2e4;
    color: #fff;
  }
  
  .contact .php-email-form {
    width: 100%;
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    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: #47b2e4;
  }
  
  .contact .php-email-form input {
    height: 44px;
  }
  
  .contact .php-email-form textarea {
    padding: 10px 12px;
  }
  
  .contact .php-email-form button[type=submit] {
    background: #47b2e4;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
    background: #209dd8;
  }
  
  @-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: #37517e;
  }
  
  .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: "/";
  }
  
  /*--------------------------------------------------------------
  # Breadcrumbs Page
  --------------------------------------------------------------*/
  .breadcrumbs-page .page-header {
    padding: 140px 0 80px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .breadcrumbs-page .page-header:before {
    content: "";
    background-color: rgba(14, 29, 52, 0.8);
    position: absolute;
    inset: 0;
  }
  
  .breadcrumbs-page .page-header h3 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Open Sans", sans-serif;
  }
  
  .breadcrumbs-page .page-header p {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .breadcrumbs-page nav {
    background-color: #f3f6fc;
    padding: 20px 0;
  }
  
  .breadcrumbs-page nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-secondary);
  }
  
  .breadcrumbs-page nav ol a {
    color: var(--color-primary);
    transition: 0.3s;
  }
  
  .breadcrumbs-page nav ol a:hover {
    text-decoration: underline;
  }
  
  .breadcrumbs-page nav ol li+li {
    padding-left: 10px;
  }
  
  .breadcrumbs-page nav ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4278cc;
    content: "/";
  }
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/

  .sosmed-big-desktop{
    /* display: block; */
    display: flex; 
    justify-content: space-between; 
    flex-direction: column;
  }

  .sosmed-big-mobile{
    display: none;
  }  

  .img-footer{
    width: 10%;
  }

  .footer-title{
    color: #1A8FDD;
    font-size: 20px;
  }

  #footer {
    font-size: 14px;
    background: #37517e;
  }
  
  #footer .footer-newsletter {
    padding: 50px 0;
    background: #05579e;
  }
  
  #footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #fff;
  }
  
  #footer .footer-newsletter p {
    color: #fff;
  }
  
  #footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
  }
  
  #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: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    margin: 3px;
    background: #0088CF;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
  }
  
  #footer .footer-newsletter form input[type=submit]:hover {
    background: #0880e8;
  }
  
  #footer .footer-top {
    padding: 60px 0 30px 0;
    background: #333;
  }
  
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-contact h3 {
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: #0088CF;
  }
  
  #footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
    color: #FFF;
  }
  
  @media (max-width: 768px) {

    .sosmed-big-mobile{
      display: block; 
    }  

    .sosmed-big-desktop{
      display: none;
    }

  }
  
  @media (max-width: 576px) {
    .footer-center {
      text-align: center;
    }
  
    .footer-center p {
      margin-left: auto;
      margin-right: auto;
      width: 80%;
      padding-bottom: 10px;
    }

    .sosmed-big-desktop{
      display: none;
    }
  
    .sosmed-big-mobile{
      display: block;
    }  

    .img-footer{
      width: 20%;
    }

    .footer-title{
      color: #1A8FDD;
      font-size: 15px;
      margin-left: 10px;
      font-weight: bold;
    }    

  }
  
  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #0088CF;
    position: relative;
    padding-bottom: 12px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  
  /* @media (max-width: 576px) {
    #footer .footer-top .footer-links h4 {
      text-align: center;
    }
  
    #footer .footer-top .footer-links ul li {
      -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
      justify-content: center !important;
      text-align: left;
    }
  } */
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #47b2e4;
    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 {
    text-decoration: none;
    color: #47b2e4;
  }
  
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #47b2e4;
    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: #209dd8;
    color: #fff;
    text-decoration: none;
  }
  
  #footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
  }
  
  #footer .copyright {
    float: left;
  }
  
  #footer .credits {
    float: right;
    font-size: 13px;
  }
  
  #footer .credits a {
    transition: 0.3s;
  
  }
  
  @media (max-width: 768px) {
    #footer .footer-bottom {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    #footer .copyright,
    #footer .credits {
      text-align: center;
      float: none;
    }
  
    #footer .credits {
      padding-top: 4px;
    }
  }
  
  /* Custom CSS */ 

  /* Start Side Navbar CSS */

  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
  }
  .main {
    width: 100%;
    background-color: #fff;
  }
  .side-navbar {
    /* position: fixed; */
    height: 100vh;
    width: 260px;
    background: #460044;
    overflow: hidden;
    transition: 0.5s ease;
  }
  .side-navbar ul {
    top: 0;
    left: 0;
    width: 100%;
  }
  .side-navbar ul li {
    width: 100%;
  }
  .side-navbar ul li:hover {
    background: #8b0084;
  }
  .side-navbar ul li:first-child {
    margin-bottom: 1rem;
    background: none;
  }
  .side-navbar ul li a {
    display: block;
    width: 100%;
    display: flex;
    color: #fff;
  }
  .side-navbar ul li a .ikon {
    min-width: 25px;
    display: block;
    font-size: 20px;
    line-height: 60px;
    height: 60px;
    /* text-align: center; */
  }
  .side-navbar ul li a .text {
    display: block;
    padding: 0 10px;
    line-height: 60px;
    height: 60px;
    white-space: nowrap;
  }
  .konten {
    /* position: absolute; */
    width: calc(100% - 260px);
    left: 260px;
    min-height: 100vh;
    transition: 0.5s ease;
  }
  .top-navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 20px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
  }
  .profile img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    cursor: pointer;
  }
  #menu-icon {
    font-size: 34px;
    cursor: pointer;
  }
  .konten.active {
    width: calc(100% - 60px);
    left: 60px;
  }
  .side-navbar.active {
    width: 60px;
  }
  @media (max-width: 768px) {
    .konten {
      width: 100%;
      left: 0;
    }
    .side-navbar {
      width: 60px;
      left: -60px;
    }
    .konten.active {
      width: calc(100% - 60px);
      left: 60px;
    }
    .side-navbar.active {
      left: 0;
    }
  }
  
  /* End Side Navbar */

  .responsive-ml-5rem{
    margin-left: 0;
  }  

  .card-product-colorful{
    position: relative; 
    width: 90%; 
    height: 15rem;
  }

  @media (max-width: 768px) {
    .card-product-colorful{
      position: relative; 
      width: 100%; 
      height: 13rem;
    }

    .responsive-ml-5rem{
      margin-left: 5rem;
    }  
  }
  
  /* CSS FOR akordeon-IMAGE START */

  .catu-teks{
    font-size: 200px;
  }

  .ai-card-photo-atas{
    width: 320px; 
    height: 370px; 
    padding: 24px; 
    margin-top: 20px;
    flex-shrink: 0;
    border-radius: 12px; 
    background: var(--White, #FFF); 
    box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.10), 0px 1px 2px 0px rgba(16, 24, 40, 0.06);
  }

  .ai-card-photo-bawah{
    width: 320px; 
    height: 370px; 
    padding: 24px; 
    margin-top: 100px;
    flex-shrink: 0;
    border-radius: 12px; 
    background: var(--White, #FFF); 
    box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.10), 0px 1px 2px 0px rgba(16, 24, 40, 0.06);
  }

  .d-flex-custom {
    display: flex !important;
  }  

  .line-challenge-aillm {
    width: 40%; 
    margin-top: -30px;
  }

  @media (max-width: 768px) {
    .line-challenge-aillm {
      width: 30%; 
      margin-top: -20px;
    }

    .d-flex-custom {
      display: block !important;
    }  

    .ai-card-photo-bawah{
      width: 320px; 
      height: 370px; 
      padding: 24px; 
      margin-top: 20px;
      flex-shrink: 0;
      border-radius: 12px; 
      background: var(--White, #FFF); 
      box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.10), 0px 1px 2px 0px rgba(16, 24, 40, 0.06);
    }

    .catu-teks{
      font-size: 140px;
    }

  }  

  .imgkesanmobile{
    width: 25%; 
    height: 25%;
  }

  .card-slider-kesan{
    background-color: white; 
    border-radius: 8px; 
    height: 7rem;
  }

  .card-slider-use-case{
    background-color: white; 
    border-radius: 8px;  
    width: 250px;
    height: 23rem;
    -webkit-box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.1);
  }  

  .card-slider-use-case-not-use{
    background-color: transparent; 
    border-radius: 8px; 
    width: 250px;
    height: 23rem;
  }  

  .swiper-slide{
    color: rgba(61, 60, 60, 1);
  }

  @media (max-width: 768px) {
    .imgkesanmobile{
      width: 90%; 
      height: 90%;
    }

    .card-slider-kesan{
      background-color: white; 
      border-radius: 8px; 
      height: 9rem;
    }

    .swiper-slide{
      color: rgba(61, 60, 60, 1);
      /* padding-right: 15rem; */
    }    
  }  

  .kotak-akordeon {
    /* display: flex; */
    width: 100%;
    height: 100%;
  }

  .left-column, .right-column {
      /* width: 50%; */
      overflow: hidden;
  }

  #image-container {
      position: relative;
      width: 100%;
      height: 50vh;
      object-fit: cover;
      /* object-fit: cover; */
  }

  .image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      object-fit: cover;
  }

  .image img {
      width: 100%;
      height: 50vh;
      object-fit: cover;
      object-position: center;
  }

  .image.active {
      opacity: 1;
  }

  .akordeon {
      width: 100%;
  }

  .akordeon-item {
      border-bottom: 1px solid #ccc;
  }

  .akordeon-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      /* background-color: #f9f9f9; */
  }

  .akordeon-button {
      background: none;
      border: none;
      outline: none;
      width: 100%;
      text-align: left;
      padding: 15px;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      /* justify-content: space-between; */
      align-items: center;
  }

  .akordeon-button:hover {
      /* background-color: #e9e9e9; */
  }

  .icon-kotak {
      width: 24px;
      height: 24px;
      display: none;
  }

  .icon-kotak.plus {
      display: block;
  }

  .akordeon-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease-out;
      padding: 0 15px;
      /* background-color: #fff; */
  }

  .akordeon-content p {
      margin: 0;
      /* padding: 15px 0; */
  }

  .akordeon-item.active .akordeon-content {
      max-height: 200px; /* adjust based on content height */
      padding: 15px;
  }

  .akordeon-item.active .icon.plus {
      display: none;
  }

  .akordeon-item.active .icon.minus {
      display: block;
  }  

  /* CSS FOR akordeon-IMAGE END */  

  /* CSS untuk one slider start */

  .btn-reach-out {
    cursor: pointer; 
    padding: 10px 20px; 
    border-radius: 123px; 
    background-color: rgba(0, 99, 149, 1); 
    color: white;
  }

  .btn-reach-out:hover {
    background-color: rgb(0, 50, 75); 
    color: white;
  }

  .btn-see-the-service {
    padding: 10px 20px; 
    border-radius: 123px; 
    background-color: white; 
    color: #005078;
  }
  
  .btn-see-the-service:hover {
    background-color: #005078;
    color: white;
  }

  .div-image {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 70vh;
  }

  @media (max-width: 576px) {
    .div-image {
      position: relative;
      width: 100%;
      margin: 0 auto;
      height: 30vh;
    }
  }  

  .img-polygon {
    border-radius: 56px; 
    /* aspect-ratio: 1277 / 616;  */
    clip-path: polygon(51% 4%, 100% 0, 100% 60%, 100% 100%, 51% 96%, 0 100%, 0 0);
    width: 100%;
    height: 100%;
    /* object-position: bottom; */
    object-fit: cover;
  }

  .next {
    right: 0;
  }

  .disabled {
    opacity: 0.5;
  }

  .count {
    margin: 0;
    text-align: center;
    color: #717171;
  }

  .arrow-div{
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05); 
    border: 1px solid var(--Gray-300, #D0D5DD); 
    padding: 8px 16px; 
    border-radius: 8px; 
    background-color: white; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    cursor: pointer;
  }  

  /* CSS untuk one slider end */

  .bgimage{
    object-fit: cover; 
    height: 100%; 
    width: 100%; 
    background-position-y: center; 
    background-position-x: center; 
    object-fit: cover; 
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: center; 
    position: relative; 
  }

  /* .bgimage::before{
    background-color: rgba(0, 0, 0, 0.37);
    content: '';
    display: block;
    height: 100vh;
    position: absolute;
    width: 100%;
  }   */

  .text-black{
    color: #000;
  }

  .line-height70px{
    line-height: 47px;
  }

  .line-height50px{
    line-height: 50px;
  }

  @media (max-width: 768px) {
    .line-height50px{
      line-height: 35px;
    }
  }

  .responsive-card-product{
    width: 100%; 
    /* height: 240px; */
    position: relative;
    display: flex; 
    align-items: center;
    border-radius: 20px; 
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.46); 
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.46); 
    -moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.46); 
  } 
  
  @media (max-width: 576px) {
    .responsive-card-product{
      width: 80%;
    }
  }

  /* css for slider */

.wc-slide-containder{
    height: 120px;
    overflow-x: scroll;
    overflow-y: hidden;
}

.wc-slide-containder::-webkit-scrollbar {
  opacity: 0;
}

.wc-slider{
    display: flex;
    justify-content: center;
    align-items: center;

    width: fit-content;
    height: 100%;

    transition: all 0.2s;
    transform: scale(0.995);
    cursor: grab;
}

.wc-slider.active{
    cursor: grabbing;
    cursor: -webkit-grabbing;
    transform: scale(1);
}

.wc-slide-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* background-color: #eee; */

    width: 100%;
    height: 228px;

    /* border: 1px solid #ccc; */
    border-top: none;
    border-bottom: none;

    font-family: sans-serif;
    font-size: 12px;

    /* margin-left: 2%;
    margin-right: 2%; */
    
}

.wc-slide-item > img{
    height: 50%;
    border-radius: 4px;
}

.wc-slide-item img {
  width: 15vh;
  /* padding-left: 10%;
  padding-right: 10%; */
  margin-right: 30px;
}

.wc-slide-item > h4 {
    color: #002563;

}

.wc-slide-item > p{
    color: #666666;
}

/* end css slider */

/* css slider attendance */

.container-slider {
  background: #f7f7f7;
  height: 500px;
  width: 100%;
  display: flex;
  /* margin-left: 50rem; */
  padding-left: 100px;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  position: relative;
}

.container-slider:active{
  cursor: grabbing;
}

.container-slider .smooth {
  scroll-behavior: smooth;
}

.container-slider .card-slider {
  height: 380px;
  width: 30%;
  background: white;
  border-radius: 12px;
  /* margin-right: 32px; */
  flex-shrink: 0;
  -webkit-box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .container-slider .card-slider {
    width: 45%;
  } 
}

.container-slider .card-slider-start {
  height: 300px;
  width: 590px;
  background: transparent;
  border-radius: 4px;
  margin-right: 32px;
  flex-shrink: 0;
  /* -webkit-box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.1); */
}

.container-slider .card-slider:active {
  cursor: grabbing;
}

/* end css slider attendance */

  .btn-find-more{
    border-radius: 20px; 
    font-size: 12px; 
    /* width: 60%;  */
    margin: auto; 
    color: white; 
    border: 2px solid white; 
    padding: 3% 10%;
    cursor: pointer;
  }

  .btn-find-more:hover{
    background-color: white;
    color: #008CD2;
    transition: 500ms;
  }

  .div-competencies{
    margin-top: -27vh;
    padding-top: 10vh;
  } 
  
  .competencies-text{
    margin-top: -3%;
    font-size: 48px;
  }

  .techpartner-text{
    margin-top: -3%;
    font-size: 48px;
  }  

  .hover-product:hover{
    background: linear-gradient(778.95deg, rgba(32, 106, 130, 0.6) 3.02%, rgba(7, 23, 28, 0.6) 99.1%);
    transition: 2s;
    opacity: 1;
    height: 100%;
  }

  .img-boost{
    margin-top: -20%;
  }  

  .img-boost img {
    width: 75%;
  }

.challenges-llm{
  width: 70%; 
  padding-left: 10%;
}

  .round-llm{
    width: 5%; 
    height: 7vh; 
    color: #008CD2; 
    border: 0.3vh #008CD2 solid; 
    border-radius: 100%; 
    padding: 10px 20px; 
    background-color: transparent;
  }  
  
.web-header{
  padding-top: 8rem;
}  

.ai-kiri{
  width: 65%; 
  background: linear-gradient(168.5deg, #008CD2 35.32%, #FFFFFF 184.77%);
}  

.ai-kanan{
  width: 35%; 
}  

.flex-ai-kiri{
  display: flex;
}

@media (max-width: 991px) {

  .div-competencies{
    margin-top: -12vh;
  }

  .competencies-text{
    margin-top: -8%;
    font-size: 30px;
  }

  .techpartner-text{
    margin-top: 0;
    font-size: 30px;
    margin-left: 4rem;
    margin-right: 4rem;
    /* width: 80%; */
    line-height: 35px;
  }

  .ai-kiri{
    width: 100%; 
    background: linear-gradient(168.5deg, #008CD2 35.32%, #FFFFFF 184.77%);
  } 
   
  .b-kiri{
    display: none;
  }

  .flex-ai-kiri{
    display: inline;
  } 
  
  .ai-kanan{
    width: 0%; 
  }  

  .who-are-we{
    padding-left: 10%; 
    padding-right: 10%;
  }

  .desk-who-are-we{
    padding-left: 10%; 
    padding-right: 10%;    
  }  

  .web-header{
    padding-top: 6rem;
  }   
  
  .round-llm{
    width: 5%; 
    height: 4.5vh; 
    color: #008CD2; 
    border: 0.3vh #008CD2 solid; 
    border-radius: 100%; 
    padding: 10px 15px; 
    background-color: transparent;
  }    

  .challenges-llm{
    width: 100%; 
    padding-left: 10%;
    padding-right: 10%;
  }  

  .img-boost{
    margin-top: -10%;
  }    

  .img-boost img {
    width: 100%;
  }

}

.build-up-tools{
  width: 20%; 
  height: 30%; 
  background-color: #e01c54; 
  border-radius: 15px;
}

.build-up-tools p {
  margin-top: 0.7rem;
  font-size: 25px;
}

@media (max-width: 991px) {
  .build-up-tools{
    width: 30%; 
    height: 30%; 
    background-color: #e01c54; 
    border-radius: 15px;
  }
}

@media (max-width: 768px) {
  .build-up-tools{
    width: 30%; 
    height: 30%; 
    background-color: #e01c54; 
    border-radius: 5px;
  }
}

@media (min-width: 425px) {
  .build-up-tools p{
    font-size: 8px;
    margin-top: 0.9rem;
  }
}

.crimsontext-font{
  font-family: 'Crimson Text', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.montserrat-font {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* .montserrat-font400 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
} */

.montserrat-thin{
  font-family: "montserrat";
  src: url(assets/font/Montserrat-Thin.tff);
}

.TextGreyBig
{
  color: #3D3C3C;
}

.montserrat-font-700 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
  }

  .fs48{
    font-size: 48px;
  }

  .fs18{
    font-size: 18px;
  }

  .fs10{
    font-size: 10px;
  }

  .fs11{
    font-size: 11px;
  }

  .fs13{
    font-size: 13px;
  }

  .fs14{
    font-size: 14px;
  }

  .fs15{
    font-size: 15px;
  }  

  .fs20{
    font-size: 20px;
  }

  .fs24{
    font-size: 19px;
  }

  .fs16{
    font-size: 16px ;
  }

  .fs32{
    font-size: 32px;
  }

  .fs36{
    font-size: 36px;
  }

  .fs20{
    font-size: 20px;
  }

  @media (max-width: 769px) {
    .fs48 {
      font-size: 20px;
    }

    .fs18{
      font-size: 13px;
    }

  }

  .colorservicefont{
    color: #008CD2;
  }

  .line-height2194 {
    line-height: 21.94px;
  }

  .line-height5851 {
    line-height: 58.51px;
  }

  .line-height44 {
    line-height: 44px;
  }
  
  .text-justify {
    text-align: justify !important;
  }
  
  .icon {
    width: 100%;
    height: auto;
  }
  
  .not-found-container {
    margin-top: -130px;
    padding-top: -100px;
  }
  
  .not-found-container img {
    width: 25%;
    height: auto;
  }
  
  .not-found-container p {
    color: #FFF;
    margin-top: 40px;
    font-weight: bold;
    font-size: 15px;
    width: 40%;
  }
  
  .not-found-container .buton {
    background-color: #1696db;
    padding: 9px 15px;
    margin-top: 70px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: 3px;
    text-decoration: none;
    position: absolute;
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .not-found-container .buton:hover {
    background: #0088CF;
  }
  
  @media (max-width: 575px) {
    .not-found-container img {
      width: 50%;
      height: auto;
    }
  
    .not-found-container .buton {
      padding: 5px 10px;
    }
  
    .not-found-container p {
      width: 80%;
      font-size: small;
      margin-top: 20px;
    }
  }
  
  #notfound {
    position: relative;
    height: 100vh;
  }
  
  #notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .notfound {
    max-width: 920px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .notfound .notfound-404 {
    position: absolute;
    height: 100px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
  }
  
  .notfound .notfound-404 h1 {
    font-family: 'Maven Pro', sans-serif;
    color: #ececec;
    font-weight: 900;
    font-size: 276px;
    margin: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 1s all;
    transition: 1s all;
  }
  
  .notfound h2 {
    font-family: 'Maven Pro', sans-serif;
    font-size: 46px;
    color: #2fb6ff;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0px;
    -webkit-transition: 1s all;
    transition: 1s all;
  }
  
  .notfound p {
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    color: #0196e6;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 15px;
    -webkit-transition: 1s all;
    transition: 1s all;
  }
  
  .notfound a {
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    background: #189cf0;
    display: inline-block;
    padding: 16px 38px;
    border: 2px solid transparent;
    border-radius: 40px;
    color: #fff;
    font-weight: 400;
    -webkit-transition: 1s all;
    transition: 1s all;
  }
  
  .notfound a:hover {
    background-color: #fff;
    border-color: #189cf0;
    color: #189cf0;
  }
  
  @media (max-width: 768px) {
    .notfound .notfound-404 h1 {
      font-size: 132px;
      -webkit-transition: 1s all;
      transition: 1s all;
    }
  
    .notfound h2 {
      font-size: 26px;
      -webkit-transition: 1s all;
      transition: 1s all;
      margin-top: 30px;
    }
  
    .notfound p {
      margin-left: 14%;
      width: 70%;
      font-size: 12px;
      -webkit-transition: 1s all;
      transition: 1s all;
    }
  
    .notfound a {
      font-size: 10px;
      padding: 8px 20px;
      border: 2px solid transparent;
      border-radius: 40px;
      color: #fff;
      font-weight: 400;
      -webkit-transition: 1s all;
      transition: 1s all;
    }
  
    #notfound .notfound {
      top: 40%;
      -webkit-transition: 1s all;
      transition: 1s all;
    }
  
    .stack-none-sticky {
      display: inline-block;
    }
  
    .stack-sticky {
      display: none;
    }
  
    .needs {
      margin-top: 0;
    }
  }
  
  @media (min-width: 769px) {
    .stack-sticky {
      position: sticky;
      top: 17%;
    }
  
    .stack-none-sticky {
      display: none;
    }
  
    .needs {
      margin-top: -50px;
    }
  
    .key h5 {
      margin-top: 100px;
    }
  }
  
  .cold ol>li,
  .cold ul>li {
    text-align: justify;
    font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #8C979E;
  }
  
  .cold h1,
  .cold h5 {
    font-family: "Open Sans", sans-serif;
    /* font-weight: bold; */
    font-weight: 600;
    color: #0088CF;
  }
  
  .cold p {
    margin-left: 13px;
    font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #8C979E;
  }
  
  .hide-scroll {
    display: none;
    transition: 1s;
  }
  
  .display-content {
    display: block;
    transition: 1s;
  }
  
  .portfolio .text-header {
    color: #000;
    font-size: 55px;
    font-weight: bold;
    font-family: 'Red Hat Display', sans-serif;
  }

  .container-big-product{
    width: 23%; 
    margin-right: 2%; 
    border-radius: 5%; 
    background-size: cover; 
    background-repeat: no-repeat; 
    object-fit: cover;
  }

  .container-big-product-mobile{
    display: none;
    width: 45%; 
    height: 35vh;
    margin-right: 2.5%;
    margin-left: 2.5%;
    border-radius: 5%; 
    background-size: cover; 
    background-repeat: no-repeat; 
    object-fit: cover;     
  }  

  .img-product{
  }  

  .img-product-active{
    position: absolute;
    top: 18%;
    left: 20%;
  }    

  .d-none-opacity{
    /* display: none !important; */
    /* opacity: 0; */
    /* transition: 1s; */
    /* -webkit-transition: 2s ease;
    -moz-transition: 2s ease;
    -ms-transition: 2s ease;
    -o-transition: 2s ease;
    transition: 2s ease; */
    /* transition: all .5s linear; */
  }

  .display-opacity{
    /* opacity: 100; */
    /* margin-top: 30px; */
    /* display: flex !important; */
    /* -webkit-transition: 2s ease;
    -moz-transition: 2s ease;
    -ms-transition: 2s ease;
    -o-transition: 2s ease;
    transition: 2s ease; */
    /* animation: shake 0.5s;
    animation-iteration-count: infinite; */
    /* transition: all .3s linear; */
  }

  /* .container-big-product:hover{
    transition: 1ms;
    filter: blur(8px); */
    /* -webkit-filter: blur(8px); */
  /* } */

  /* .container-big-product:hover .big-product{
    filter: blur(0px);
    width: 100%; 
    height: 55vh; 
    background-color: red;
  }   */

  /* .container-big-product:hover .big-product p{
    color: black;
  }     */

  .big-product{
    /* position: static; */
    width: 100%; 
    height: 55vh; 
    background-image:  linear-gradient(rgba(0, 149, 255, 0.4), rgba(0,0,0,.8));
    object-fit: cover;
  }

  .container-big-product > .big-product:hover {
    filter: drop-shadow(0 2px 2px #333);
    transform: translateY( -1px );
    transition: 300ms;
  }

  .container-big-product > .big-product:hover > .container-big-product p:hover {
    margin-top: 20px;
  }
  
  .product-big {
    width: 80%;
    flex-direction: row;
  }
  
  .product-big:hover {
    box-shadow: 0px 0px 25px 1px rgba(153, 153, 153, 0.75);
    -webkit-box-shadow: 0px 0px 25px 1px rgba(153, 153, 153, 0.75);
    -moz-box-shadow: 0px 0px 25px 1px rgba(153, 153, 153, 0.75);
    transition: 1s;
  }
  
  .product-big img {
    padding: 30px;
    width: 25%;
  }
  
  .product-big:hover img {
    width: 26%;
    transition: 1s, zoom-in;
    margin-left: -4px;
  }
  
  .product-big:hover h5 {
    margin-top: -5px;
    margin-bottom: 13px;
    color: #0088CF;
    transition: ease-in 0.2s;
  }
  
  .categories-product .card {
    height: 200px;
  }
  
  .categories-product .card-body p {
    font-size: 14px;
  }
  
  .categories-product:nth-child(1),
  .categories-product:nth-child(3) {
    margin-left: -100px;
  }
  
  .categories-product:nth-child(3),
  .categories-product:nth-child(4) {
    margin-top: 40px;
  }
  
  .categories-product:nth-child(2),
  .categories-product:nth-child(4) {
    margin-left: -100px;
  }
  
  .display-full {
    display: none;
  }
  
  .display-full ol li {
    display: list-item;
    list-style-type: disc;
    margin-left: 30px;
  }
  
  .monitor h6 {
    margin-left: 10px;
  }
  
  .solution-ilustration {
    margin: 3rem 0rem;
    padding-bottom: 0.5rem;
  }
  
  .line-top {
    margin-top: 10px;
    width: 100%;
    height: 1px;
    background-color: #0088CF;
  }
  
  .cobalt {
    margin-top: 100px;
  }
  
  .img-cobalt:hover {
    transition: 1s;
    box-shadow: 0px 0px 25px 1px rgba(153, 153, 153, 0.75);
    -webkit-box-shadow: 0px 0px 25px 1px rgba(153, 153, 153, 0.75);
    -moz-box-shadow: 0px 0px 25px 1px rgba(153, 153, 153, 0.75);
  }
  
  .ml3 {
    margin-top: 1.5rem;
  }
  
  .l3 {
    margin-top: 3rem;
  }
  
  .truck h5 {
    color: #0088CF;
    margin-top: 1.5rem;
  }
  
  .truck h2 {
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    color: #0088CF;
  }
  
  .truck h3 {
    margin-top: 2rem;
    color: #0088CF;
  }
  
  .truck img {
    border-radius: 10px;
  }

  .solution {
    /* padding: 0 50px; */
    width: 100%;
    position: relative
  }

  .solution i {
    /* width: 100%; */
    /* right: calc(100% + 100px); */
    /* left: 500px; */
    left: 90%;
    position: absolute;
    /* right: -500px; */
    /* left: 500px; */
    /* padding-left: 100%; */
    /* display: flex;
    justify-content: end; */
    /* width: 100%; */
    /* top: 0;
    right: 0; */
    /* position: absolute; */
  }  

  /* @media (min-width: 993px) AND (max-width: 1024px) {

    .solution i {
      display: flex;
      justify-content: end;
      width: 100%;
      left: 700px;
      top: 0;
      right: 0;
      position: absolute;
    }  

  } 

  @media (min-width: 1024px) AND (max-width: 1440px) {

    .solution i {
      display: flex;
      justify-content: end;
      width: 100%;
      left: 65vw;
      top: 0;
      right: 0;
      position: absolute;
    }  

  }   
  
  @media (max-width: 992px) {

    /* .solution i {
      left: 770px;
      position: absolute;
    } */

  /* } */
  
  @media (max-width: 768px) {

    /* .solution i {
      left: 500px;
      position: absolute;
    } */

  } */
  
  .solution .to-bottom {
    left: 650px;  
    position: relative;
  }

  .btn-read-more{
    font-family: 'Jost', sans-serif; 
    font-weight: 500; 
    font-size: 14px; 
    letter-spacing: 1px; 
    display: inline-block; 
    padding: 5px 15px 5px 15px; 
    border-radius: 5px; 
    transition: 0.5s; 
    margin: 10px 0 0 0; 
    color: #fff; 
    background: #47b2e4;
  }
  
  .panah-kanan:hover i {
    margin-left: 3px;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transform: 2s;
    color: #0088cf;
  }
  
  .navicat p {
    font-size: 14px;
  }

  .solution-text
  {
    color: #008CD2;
  }
  
  .partner {
    height: 340px;
    background-color: #f3f5fa;
    border-radius: 10px;
  }
  
  .partner img {
    width: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .partner p {
    font-size: 14px;
  }
  
  @media (max-width: 768px) {

    .big-product{
      /* position: static; */
      width: 100%; 
      height: 100%; 
      background-color: #102134;
      object-fit: cover;
    }

    .partner {
      height: 380px;
    }
  
    .partner p {
      font-size: 12px;
    }
  
    .categories-product .card {
      height: 190px;
    }
  
    .categories-product .card-body h5 {
      font-size: 14px;
    }
  
    .categories-product .card-body p {
      font-size: 12px;
    }
  
    .truck h3 {
      margin-top: 0rem;
      color: #0088CF;
    }
  
    .cobalt {
      margin-top: 0px;
    }
  
    .ml3 {
      margin-top: 2rem;
    }
  
    .l3 {
      margin-top: 4rem;
    }
  
    .line-top {
      margin-top: 50px;
    }
  
    .solution-ilustration {
      margin: 2rem 0rem;
    }
  
    .monitor h6 {
      margin-left: 0px;
    }
  
    .display-full {
      display: block;
    }
  
    .not-display {
      display: none;
    }
  
    .categories-product:nth-child(1),
    .categories-product:nth-child(3) {
      margin-left: 0;
    }
  
    .categories-product:nth-child(2),
    .categories-product:nth-child(4) {
      margin-left: 0;
    }
  
    /* .categories-product:nth-child(2) {
      margin-top: 40px;
    } */
  
    .portfolio .text-header {
      font-size: 35px;
    }
  
    .product-big {
      width: 100%;
    }
  
    .product-big img {
      width: 35%;
    }
  
    .product-big:hover img {
      width: 36%;
      transition: 1s, zoom-in;
      margin-left: 0px;
    }
  }
  
  @media (max-width: 425px) {
    /* .solution i {
      left: 240px;
      position: relative;
    } */
  }

  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/

  .footer-icon{
    display: none;
  }

  @media (max-width: 991px) {
    .footer-icon{
      display: inline;
    }

    .big-product{
      /* position: static; */
      width: 100%; 
      height: 100%; 
      background-color: #102134;
      object-fit: cover;
    }

  }
  
  @media (max-width: 767px) {
    .footer-icon{
      display: inline;
    }
  }
  
  /*--------------------------------------------------------------
  # Blog
  --------------------------------------------------------------*/
  .blog {
    padding: 40px 0 20px 0;
  }
  
  .blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog .entry .entry-img {
    max-height: 440px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
  }
  
  .blog .entry .entry-title {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
  }
  
  .blog .entry .entry-title a {
    color: #054a85;
    transition: 0.3s;
  }
  
  .blog .entry .entry-title a:hover {
    color: #054a85;
  }
  
  .blog .entry .entry-meta {
    margin-bottom: 15px;
    color: #2b99f8;
  }
  
  .blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .blog .entry .entry-meta ul li+li {
    padding-left: 20px;
  }
  
  .blog .entry .entry-meta i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
  }
  
  .blog .entry .entry-meta a {
    color: #777777;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
  }
  
  .blog .entry .entry-content p {
    line-height: 24px;
  }
  
  .blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
  }
  
  .blog .entry .entry-content .read-more a {
    display: inline-block;
    background: #054a85;
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
  }
  
  .blog .entry .entry-content .read-more a:hover {
    background: #0088CF;
  }
  
  .blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
  }
  
  .blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
  }
  
  .blog .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
  }
  
  .blog .entry .entry-content blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #0880e8;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
  }
  
  .blog .entry .entry-footer i {
    color: #8ec8fb;
    display: inline;
  }
  
  .blog .entry .entry-footer a {
    color: #138df7;
    transition: 0.3s;
  }
  
  .blog .entry .entry-footer a:hover {
    color: #0088CF;
  }
  
  .blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
  }
  
  .blog .entry .entry-footer .cats li {
    display: inline-block;
  }
  
  .blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
  }
  
  .blog .entry .entry-footer .tags li {
    display: inline-block;
  }
  
  .blog .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
  }
  
  .blog .entry .entry-footer .share {
    font-size: 16px;
  }
  
  .blog .entry .entry-footer .share i {
    padding-left: 5px;
  }
  
  .blog .entry-single {
    margin-bottom: 30px;
  }
  
  .blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog .blog-author img {
    width: 120px;
    margin-right: 20px;
  }
  
  .blog .blog-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #0880e8;
  }
  
  .blog .blog-author .social-links {
    margin: 0 10px 10px 0;
  }
  
  .blog .blog-author .social-links a {
    color: rgba(8, 128, 232, 0.5);
    margin-right: 5px;
  }
  
  .blog .blog-author p {
    font-style: italic;
    color: #b7b7b7;
  }
  
  .blog .blog-comments {
    margin-bottom: 30px;
  }
  
  .blog .blog-comments .comments-count {
    font-weight: bold;
  }
  
  .blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
  }
  
  .blog .blog-comments .comment .comment-img {
    margin-right: 14px;
  }
  
  .blog .blog-comments .comment .comment-img img {
    width: 60px;
  }
  
  .blog .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
  }
  
  .blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
  }
  
  .blog .blog-comments .comment h5 a:hover {
    color: #054a85;
  }
  
  .blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #0880e8;
  }
  
  .blog .blog-comments .comment h5 .reply i {
    font-size: 20px;
  }
  
  .blog .blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: #2b99f8;
    margin-bottom: 5px;
  }
  
  .blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
  }
  
  .blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
  }
  
  .blog .blog-comments .reply-form p {
    font-size: 14px;
  }
  
  .blog .blog-comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
  }
  
  .blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #fad386;
  }
  
  .blog .blog-comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
  }
  
  .blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #fad386;
  }
  
  .blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
  }
  
  .blog .blog-comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #0880e8;
  }
  
  .blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #138df7;
  }
  
  .blog .blog-pagination {
    color: #0880e8;
  }
  
  .blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
  }
  
  .blog .blog-pagination li a {
    color: #0880e8;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .blog .blog-pagination li.active,
  .blog .blog-pagination li:hover {
    background: #054a85;
  }
  
  .blog .blog-pagination li.active a,
  .blog .blog-pagination li:hover a {
    color: #fff;
  }
  
  .blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #0665b7;
    position: relative;
  }
  
  .blog .sidebar .sidebar-item {
    margin-bottom: 30px;
  }
  
  .blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
  }
  
  .blog .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
  }
  
  .blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #054a85;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
  }
  
  .blog .sidebar .search-form form button i {
    line-height: 0;
  }
  
  .blog .sidebar .search-form form button:hover {
    background: #0088CF;
  }
  
  .blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
  }
  
  .blog .sidebar .categories ul li+li {
    padding-top: 10px;
  }
  
  .blog .sidebar .categories ul a {
    color: #0665b7;
    transition: 0.3s;
  }
  
  .blog .sidebar .categories ul a:hover {
    color: #0088CF;
  }
  
  .blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
  }
  
  .blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
  }
  
  .blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
  }
  
  .blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
  }
  
  .blog .sidebar .recent-posts h4 a {
    color: #0665b7;
    transition: 0.3s;
  }
  
  .blog .sidebar .recent-posts h4 a:hover {
    color: #0088CF;
  }
  
  .blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #aaaaaa;
  }
  
  .blog .sidebar .tags {
    margin-bottom: -10px;
  }
  
  .blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
  }
  
  .blog .sidebar .tags ul li {
    display: inline-block;
  }
  
  .blog .sidebar .tags ul a {
    color: #0880e8;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid white;
    display: inline-block;
    transition: 0.3s;
  }
  
  .blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #0088CF;
    background: #054a85;
  }
  
  .blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: white;
    font-size: 14px;
  }
  
  .audit-tittle {
    margin-top: -160px;
  }
  
  @media (max-width: 575px) {
    .audit-tittle {
      margin-top: 0px;
    }
  }
  
  .partner-not-display-992px {
    display: none;
  }
  
  .partner-display-992px {
    display: inline-block;
  }
  
  @media (max-width: 991px) {
    .partner-display-992px {
      display: none;
    }
  
    .partner-not-display-992px {
      display: inline-block;
    }

    .container-big-product{
      display: none;
    }
  
    .container-big-product-mobile{
      display: block;
    } 

  }
  
  .card-homepage-display-none {
    display: none;
  }
  
  .card-homepage-display-inline {
    display: inline;
  }
  
  @media (max-width: 767px) {
    .card-homepage-display-none {
      display: inline-block;
    }
  
    .card-homepage-display-inline {
      display: none;
    }
  }
  
  .use-case-description {
    color: #0088CF;
    margin-bottom: 50px;
    font-size: 50px;
    font-weight: bold;
    line-height: 55px;
    font-family: 'Red Hat Display', sans-serif;
  }
  
  @media (max-width: 991px) {
    .use-case-description {
      font-size: 25px;
      line-height: 35px;
    }
  }