:root {
  --color-default: #079ea3;
  --color-default-hover: #076e71;
  --text-color-default:#fff;
  --text-color-black:#0d0d0d;
  --text-paragraph:#3d4148;
  --success:#00f345;
  --red:#da291c;
  --blue:#1f66ff;
  --teal:#079ea3;
  --purple:#925bde;
  --font-default:"Inter",Open Sans,Arial,Helvetica,Verdana,sans-serif;
  --bs-gutter-x: 4rem;
}

body{
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
}
html,
body { height: 100%;position:relative;  }
.container{
  padding-right: calc(4rem * .5);
  padding-left: calc(4rem * .5);
}
@media only screen and (max-width:960px){
.container{
  padding-right: calc(2.5rem * .5);
  padding-left: calc(2.5rem * .5);
}
}
.space10 {
  height: 10px;
}
.space20 {
  height: 20px;
}
.space30 {
  height: 30px;
}
.space40 {
  height: 40px;
}
.space50 {
  height: 50px;
}
.space80 {
  height: 80px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0px;
  margin: 0px; 
  font-family: "Inter",Open Sans,Arial,Helvetica,Verdana,sans-serif;
  color: var(--text-color-black);
  font-weight: 400;
}
a {
font-family: "Inter",Open Sans,Arial,Helvetica,Verdana,sans-serif;
text-decoration: none;
color: var(--text-color-black);
-webkit-transition: all 0.2s ease 0s;
transition: all 0.2s ease 0s;
}
a:hover {
    color: var(--text-color-default);
    text-decoration: none;
}
a:focus {
    outline: none;
    text-decoration: none;
}
p {
    margin-bottom: 0;
    color: var(--text-paragraph);
}
ul,
li {
    margin: 0;
    padding: 0;
}

select:hover, input:hover, select:focus, input:focus{
    outline: none!important;
}
.bg-black{
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.sp1 {
  padding: 120px 0 100px;
}

.sp2 {
  padding: 100px 0;
}
.sp3 {
  padding: 80px 0;
}
.sp4 {
  padding: 50px 0;
}

.sp5 {
  padding-bottom: 100px;
}

/* Preloader full screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Animasi loading */
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #ddd;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animasi putar */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Konten awal disembunyikan */
#content {
    display: none;
}
.brand-carousel{
    background-color: #f4f4f4;
}
.brand-carousel swiper-slide{
    background-color: #f4f4f4;
    height: 80px;
}
.brand-carousel swiper-slide img{
    max-height: 20px;
}

/*
* ----------------------------------------------------------------------------------------
* 02.START NAVIGATION
* ----------------------------------------------------------------------------------------
*/
.col-20{
	width: 20%;
}
.col-60{
	width: 60%;
}
.col-20{
	width: 20%;
}
.site-logo{
	width: 200px;
}
.site-logo a{
	display: block;
}
.site-logo img{
	max-width: 100%;
}
#navigation{
	padding: 0px 65px;
}

#navigation {
    position: relative;
}

.navigation2{
	border-bottom: 0px !important;
	background:#fff;
}
@media only screen and (max-width:960px){
#navigation{border-bottom: 0px;}
}
.navbar-fixed {
    z-index: 999;
    position: fixed;
    opacity: .98;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=98)";
    width: 100%;
    top: 0;
    -webkit-animation: fadeInDown 800ms;
    animation: fadeInDown 800ms;
    -webkit-backface-visibility: hidden;
    border-radius: 0px;
    background: #fff;
	box-shadow: 10px 15px 18px rgba(23, 23, 36, 0.03);
}

@media only screen and (max-width:960px){
#navigation.navbar-fixed{display:none;}
}
#main-menu{
}
#main-menu ul{
	list-style-type: none;
}

#main-menu ul li {
	display: inline-block;
	padding: 0 15px;
	position: relative;
	line-height: 60px;
}
@media only screen and (max-width:1024px){
#main-menu ul li {padding: 0 6px;}
}	
#main-menu ul li a,
#main-menu ul li.menu-dropdown a {
	position: relative;
	/* text-transform: uppercase; */
	color: var(--text-color-default);
	font-weight: 600;
	transition: .5s;
	font-size: 16px;
}
#main-menu ul li a.text-focus:hover,
#main-menu ul li a.text-focus:focus{
    color: #fffc37;
}
#main-menu ul li a:hover,
#main-menu ul li a:focus{
	color: var(--color-default);
}
#navigation .header-btn {
	padding-right:20px;
}



/*-------------------------------
# Dropdwon menu 
--------------------------------*/

#navigation #main-menu ul li.mega-menu {
    position: static; /* penting supaya child bisa full width */
}


#navigation #main-menu ul li.mega-menu > ul {
    position: absolute;
    
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    top: 100%; /* tepat di bawah menu */
    
    width: 100vw; /* full layar */
    max-width: 1400px; /* optional biar tidak terlalu lebar */
    
    padding: 0px 40px;
    background: #fff;
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 0px;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

    z-index: 999;
}

#navigation #main-menu ul li.mega-menu:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


#navigation #main-menu ul li ul ,
#navigation #main-menu ul li.menu-dropdown ul li ul {	
	background: #fff;
	-webkit-box-shadow: 0 0 10px 3px rgba(0,0,0,.05);
	box-shadow: 0 0 10px 3px rgba(0,0,0,.05);
	left: -55px;
	list-style: outside none none;
	margin:  0;
	opacity: 0;
	padding:10px 0px;
	position: absolute;
	text-align: left;
	top: 120%;
	-webkit-transition:all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	visibility: hidden;
	width: 210px;
	z-index: 999;
	border-radius: 4px;
	/* border-top: 2px solid #525fe1; */
}

#navigation #main-menu .menu-item-has-children {
	position: relative;
	margin-right: 5px;
}

#navigation #main-menu ul li.menu-dropdown a {
    position: relative; /* penting */
    padding-right: 1px; /* kasih ruang icon */
}

#navigation #main-menu li.mega-menu > a::after {
    right: -12px;
}

/* chevron */
#navigation #main-menu .menu-item-has-children::after {
    /* position: absolute; */
    content: "\f078";
    font-family: "Font Awesome 7 Free";

    right: 0;
    top: 50%;
    transform: translateY(-50%);

    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
}

#navigation #main-menu ul li  ul li{
	position: relative;
}
#navigation #main-menu ul li ul li ul{
	top: 0;
	right: auto;
	left: 205px;
}
#navigation.navbar-fixed #main-menu ul li li a{
	color: var(--text-color-default);
} 
#navigation #main-menu ul li:hover ul,
#navigation #main-menu ul li ul li:hover > ul{
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; 
	visibility: visible;
	top: 100%;
}
#navigation #main-menu ul li ul li {display: block; margin: 0; padding: 0;}

#navigation #main-menu ul li ul li a {
	color: var(--text-color-black);
	display: block;
	font-size: 16px;
	line-height: 30px;
	font-weight: 600;
	padding: 5px 12px;
	position: relative;	
	transition: all 0.3s ease 0s !important;
	visibility: inherit !important;
	opacity: inherit !important;
	text-transform: capitalize;
}

#navigation #main-menu ul li ul li a:hover{
	color: var(--text-color-default);
	background-color: var(--color-default);
	text-decoration: none;
}

/* wrapper layout */
.mega-wrapper {
    display: flex;
    gap: 30px;
    padding:0px 20px;
}

/* LEFT TAB */
.mega-tabs {
    width: 250px;
    border-right: 1px solid #eee;
    padding: 20px 0;
}

.mega-tabs div {
    padding: 12px 15px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: 0.3s;
    line-height: 20px;
}

/* hover */
.mega-tabs div:hover {
    background: #f4f4f4;
    /* border-left: 3px solid var(--color-default-hover); */
}

/* active tab */
.mega-tabs .active {
    /* background: var(--color-default); */
    color: #000;
    border-left: 3px solid var(--color-default);
}

/* RIGHT CONTENT */
.mega-content-area {
    flex: 1;
    padding: 20px 0;
}

/* hide all */
.mega-pane {
    display: none;
}

/* show active */
.mega-pane.active {
    display: block;
}
.mega-content-area .label{
    border-left: 2px solid var(--color-default);
    font-weight: 700;
    padding-left: 8px;
    line-height: 30px;
    margin-bottom: 30px;
}
.mega-content-area .section-title {
    font-weight: 600;
    font-size: 12px;
    color: #d80f0f;
    line-height: normal;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

#main-menu ul li .mega-content .mega-content-area a{
    font-size: 12px;
    font-weight: 400;
    display: block;
    padding: 0px;
  text-decoration: none;
  color: #333;
  line-height: 1.33;
  display: grid;
  gap: 10px;
}

.brand-logo img {
    max-height: 35px;
    object-fit: contain;
    margin-bottom: 3px;
}

.mega-content-area .mega-section {
    padding-bottom: 5px;
}

@media only screen and (max-width: 991px){
	
	.col-60{
		display: none!important;
	}

	#sm_menu_ham {
		display: block;
		top: 30px;
		right: 10%;
		position: absolute;
	}
	.sidebar{
		padding-top: 100px;
	}

    .mega-wrapper {
        flex-direction: column;
    }

    .mega-tabs {
        width: 100%;
        border-right: none;
    }

    .mega-tabs div {
        border-bottom: 1px solid #222;
    }

}

@media only screen and (max-width: 767px){
.spt-130 {
padding-top: 90px;
}	
#mobile_menu{
display: block;
width: 100%;

}
}
@media only screen and (max-width: 575px){
#navigation {
padding: 25px 20px;
}
#sm_menu_ham {
top: 25px;
}
}
.header-btn{
	display: inline-block;
	font-weight: 600;
	font-size: 18px;
	color: #0b104a;
	transition: .5s;	
}
.header-btn:hover,
.header-btn:focus{
	color: #525fe1;
	
}

/* =========================
   MOBILE MENU
========================= */

#sm_menu_ham {
    display: none;
    width: 30px;
    cursor: pointer;
    z-index: 1001;
}

#sm_menu_ham span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Sidebar menu */
#mobile_sidebar {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 75%;
    height: 100vh;
    padding: 20px 20px 20px;
    transition: 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    background-color: #1a1a1a;
}

/* Active */
#mobile_sidebar.active {
    display: block;
    right: 0;
}

/* Menu list */
#mobile_sidebar ul {
    list-style: none;
    padding: 0;
}

#mobile_sidebar ul li {
    border-bottom: 1px solid #333;
    color: #fff;
}
#mobile_sidebar ul > li.menu-item-has-children > a::after {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 7 Free";
  right: 30px;
  margin-top: 5px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
}

#mobile_sidebar ul li a {
    display: block;
    padding: 10px 0px 10px 0px;
    color: var(--text-color-default);
    font-weight: 500;
    cursor: pointer;
}
#mobile_sidebar .mega-content li a {
    display: block;
    color: var(--text-color-default);
    font-weight: 500;
    cursor: pointer;
}

#mobile_sidebar ul.mega-content > li.menu-item-has-children > a::after {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 7 Free";
  right: 10px;
  margin-top: 5px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
}
#mobile_sidebar ul li.menu-item-has-children ul li  a::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  width: 6px;
  height: 6px;
  border: 1px solid #ddd;
  margin-top: 10px;
  z-index: 10;
  background: #ddd;
  border-radius: 4px;
  left: 30px;
}
#mobile_sidebar ul li.menu-item-has-children .mega-content li ul li a::before{
    left: 20px;
}
#mobile_sidebar ul li.menu-item-has-children ul.mega-content li a::before{
left: 10px ;
}
#mobile_sidebar ul li ul li ul li a {
    display: block;
    color: var(--text-color-default);
    font-weight: 500;
    cursor: pointer;
}

/* Dropdown hidden */
#mobile_sidebar ul li ul {
    display: none;
}

/* Active dropdown */
#mobile_sidebar ul li.active > a {
    color: var(--color-default);
}
#mobile_sidebar ul li.active > ul {
    display: block;
}

#mobile_sidebar ul li ul li{
    padding-left: 20px;
}

/* Mega menu jadi vertical */
#mobile_sidebar .mega-content {
    position: relative !important;
    width: 100% !important;
    transform: none !important;
    background: #1a1a1a;
    box-shadow: none;
}


#mobile_sidebar .mega-content .row {
    flex-direction: column;
}

#mobile_sidebar .mega-content .col {
    padding: 5px 0;
}

@media only screen and (max-width: 991px){

    #sm_menu_ham {
        display: block;
    }

    #main-menu {
        display: none; /* hide desktop menu */
    }
}
#overlay {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:999;
}

#overlay.active {
    opacity:1;
    visibility:visible;
}

/*
* ----------------------------------------------------------------------------------------
* 02.END NAVIGATION
* ----------------------------------------------------------------------------------------
*/

/*START BTN*/
.btn_one {
	background: var(--color-default);
	padding: 8px 25px;
	border-radius: 2px;
	color: var(--text-color-default);
	transition: 0.3s;
	font-weight: 600;
}
.btn_one i{margin-right:5px;}
.btn_one:hover{
background:var(--color-default-hover);
color:#fff;
}
@media only screen and (max-width:960px){
.btn_one{
padding: 14px 25px;
margin-top: 0px;
}
.btn_one i{margin-right:5px;display:none;}
}
.btn_two {
  background: none;
	padding: 8px 25px;
	border-radius: 8px;
	color: var(--text-color-default);
	transition: 0.3s;
	font-weight: 600;
  border: 1px solid #fff;
}
.btn_two:hover{
  color: var(--color-default);
  border: 1px solid var(--color-default);
}
/*END BTN*/

/*SLIDER*/
#slider{
  height: 26rem;
}
.solution-banner{
    height: 20rem;
}
.solution-banner .overlay::before {
    content: '';
    position:absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    z-index: -1;
}
.hero-banner{
    height: 25rem;
}
.hero-banner .overlay::before {
    content: '';
    position:absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    z-index: -1;
}
swiper-container {
      width: 100%;
      height: 100%;
    }

    swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #ababab;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      background-size: cover;
    }

    swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .parallax {
      position: relative;
      display: flex;
      width: 80%;
      height: 100%;
      text-align: left;
    }
    .parallax-container{
      align-items: center;
      vertical-align: middle;
      max-width: 55%;
    }
    swiper-slide .title {
      font-weight: 700;
      padding: .5rem;
      background-color: #fff;
      border-radius: .5rem;
      color: #0d0d0d;
      margin-bottom: 10px;
    }

    swiper-slide .subtitle {
      color: #fff;
      font-weight: 700;
      margin-top: 20px;
    }

    swiper-slide .text {
      font-size: 14px;
      max-width: 400px;
      line-height: 1.3;
    }

.caption {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}
@media only screen and (max-width: 991px){
    .parallax-container{
      max-width: 100%;
    }
    swiper-slide .title {
      font-size: 14px;
    }
    
}

/*END SLIDER*/
.solution .solution-images{
    width: 80%;
}
.hadding2 span.span {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background-color: var(--color-default);
  padding: 4px 16px;
  border-radius: 30px;
  display: inline-block;
}
.hadding2 h5 {
  color: var(--text-color-black, #03163B);
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  text-transform: capitalize;
}
.hadding2 h3 {
  color: var(--text-color-black, #03163B);
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
}
.hadding2 h1 {
  color: var(--text-color-black, #03163B);
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px;
  text-transform: capitalize;
}
.hadding2 span.after2 {
  position: relative;
}

.hadding2 span.after2::after {
  content: "";
  position: absolute;
  bottom: -48px;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/shapes/line2.svg);
  background-repeat: no-repeat;
}
.hadding2 p {
  color: var(--text-paragraph, #616976);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  transition: all.3s;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}
.tmp-list-item-half {
        margin-top: 20px;
        padding-left: 0;
        display: grid;
        gap: 8px;
}
.tmp-list-item-half li {
            float: left;
            list-style: none;
            display: flex;
            align-items: center;
            padding: 5px;
            padding-right: 20px;
            background-color: #222626;
            color: #fff;
            border-radius: 5px;
            line-height: 1.2;
}
.brand .tmp-list-item-half li{
  padding: 0;
}

.tmp-list-item-half li small{
    font-size: 0.7rem;
}

.tmp-list-item-half li img {
                max-width: 50px;
                margin-right: 10px;
            }
.tmp-list-item-half .icon {
    font-size: 24px;
    margin-right: 15px;
    height: 50px;
    min-width: 50px;
    line-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    padding: 14px;
    border-radius: 4px;
}
.brand .tmp-list-item-half .icon{
  font-size: 20px;
    margin-right: 5px;
    height: 40px;
    min-width: 40px;
    line-height: 35px;
}
.tmp-list-item-half .icon i{
    color: #fff;
}
.image-box{
  position: relative;
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 7%);
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
}
.image-box img{
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
  padding: 20px 0px;
}

.image-box:hover img {
  transform: scale(1.16);
}
.feature__title {
  font-size: 20px;
  line-height: 20px;
  color: var(--text-color-black);
  margin-top: 30px;
}
.use-case div{
  min-height: 180px;
}
.use-case .service-hadding {
  align-content: center;
}

.use-case div:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.box-card{
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  border-radius: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  
  
  background-image: url('/assets/img/produkmenu/server.webp');
  background-color: rgb(31 41 55 / 1);
  background-blend-mode: multiply;
  
  transition: background 1s;
  border-bottom-width: 20px;
  border-bottom-style: solid;
  border-bottom-color: #2d2d2d;
  -webkit-box-shadow: 0 10px 20px -14px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 10px 20px -14px rgba(0, 0, 0, 0.75);
  box-shadow: 0 10px 20px -14px rgba(0, 0, 0, 0.75);

}
.box-card.red {
  border-bottom-color: var(--red);
}
.box-card.blue {
  border-bottom-color: var(--blue);
}
.box-card.teal {
  border-bottom-color: var(--teal);
}
.box-card.purple {
  border-bottom-color: var(--purple);
}

.box-card.red:hover {
            background: #da291c;
            transition: background 1s;
        }
.box-card.teal:hover {
            background: var(--color-default);
            transition: background 1s;
        }
.box-card-header{
    font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
  min-height: 150px;
  
  background: url(../img/shapes/box-header-bg.svg);
    background-repeat: repeat;
    background-size: auto;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: background 1s;
  display: flex;
}
.box-card-header .header-wrapper{
    display: flex;
    align-items: center;
    width: 100%;
}
.box-card-header .header-wrapper div{
    background: var(--color-default);
  border-top-right-radius: .7rem;
  border-bottom-right-radius: .7rem;
  max-width: 70%;
  padding-left: 20px;
  padding-right: 30px;
}
a:hover .header-wrapper div{
    background: #1b1b1beb;
}
.box-card-info{
    padding: 0px 20px 20px;
    height: 70px;
    overflow: hidden;
    display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.box-card-link{
    padding: 20px;
  width: 100%;
  margin-top: auto;
}
a:hover .box-card-link{
    text-decoration: underline;
}
.section-title{
    font-weight: 700;
}
.section-img img{
  width: 100%;
}
.hadding2-w h4 {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  text-transform: capitalize;
}
.hadding2-w h5 {
  color: #fff;
  font-size: 24;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
}
.button-h2-2 {
  cursor: pointer;
  display: inline-block;
  color: #03163B;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  position: relative;
  text-transform: capitalize;
  width: 100%;
  text-align: center;
  border-radius: 25px;
  border: 1px solid var(--font-color, #03163B);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.13);
  padding: 12px 24px;
  border: none;
}
.btncta {
  border: 0 solid;
  box-shadow: none;
  outline: 1px solid #03163B;
    outline-color: rgb(3, 22, 59);
  outline-color: #000000;
  outline-offset: 0px;
  text-shadow: none;
  -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  outline-color: #ffffff;
  outline-offset: 0px;
  color: #fff;
}
.btncta:hover {
  border: none;
  outline: none;
  color: #fff;
  background-color: var(--color-default);
  transition: all.4s;
}
section ul{
  list-style: none;
}
section ul li{
  padding-bottom: 10px;
}
section p{
  margin-bottom: 10px;
}
.product-type{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  border-bottom: 1px solid var(--color-default);
}
.product-type li{
  padding: 0;
}
.product-type li button {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .005em;
  line-height: 1.5rem;
  position: relative;
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 1rem 2rem;
  max-width: 20rem;
  color: #636363;
}
.product-type li button:hover {
  background-color: #ddd;
}
.product-type li button.active {
  background-color: var(--color-default);
  color: var(--text-color-default);
}
.tab-content{
  padding: 20px 0px;
}
.product table thead th{
  background-color: #222;
  color: var(--text-color-default);
}
.product table tbody td{
  padding: 30px 18px;
}
@media screen and (max-width: 769px) {
  .product-type{
    justify-content: flex-start;
  }
  .product-type li button {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.error-hadding {
  color: var(--text-color-black, #03163B);
  text-align: center;
  text-shadow: 0px 4px 12px rgba(14, 22, 129, 0.12);
  font-size: 180px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.error-page-hadding2 {
  color: var(--text-color-black, #03163B);
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
  text-transform: capitalize;
  margin-top: -30px;
}
.comon-button {
  background: var(--color-default);
  box-shadow: 0px 4px 12px 0px rgba(14, 22, 129, 0.13);
  border: none;
  text-align: center;
  padding: 8px 20px;
  display: inline-block;
  align-items: center;
  z-index: 2;
  transition: all.4s;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  position: relative;
}
.comon-button::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  content: "";
  height: 100%;
  background: var(--color-default-hover);
  z-index: -1;
  transition: all.4s;
}

.comon-button:hover::after {
  width: 100%;
  transition: all.4s;
  left: 0;
  right: auto;
}

/* .comon-button:hover {
  transform: translateY(-5px);
} */

.service-box{
    transition: all.4s;
  border-radius: 30px;
  background-image: url('/assets/img/produkmenu/server.webp');
  background-color: rgb(31 41 55 / 1);
  background-blend-mode: multiply;
  padding: 26px 32px;
  margin-bottom: 30px;
}
.serivce-icon {
  background-color: #ffffffd8;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 58px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.usecase-box{
    transition: all.4s;
  border-radius: 30px;
  background-image: url('/assets/img/produkmenu/backup.webp');
  background-color: rgb(31 41 55 / 1);
  background-blend-mode: multiply;
  padding: 26px 32px;
  margin-bottom: 30px;
}
.usecase-icon {
  background-color: #ffffffd8;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 58px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.service-hadding h4{
    color: var(--text-color-default);
    margin-bottom: 10px;
}
.service-hadding p{
    color: var(--text-color-default);
}
.contact-section{
  background: url('../img/slider/sliderbackground-2.webp');
  background-color: rgb(28, 55, 94);
  background-blend-mode: multiply;
}
.contact-section .hadding2,
.contact-section a,
.contact-section .hadding2 h1,
.contact-section .hadding2 p{
    color: var(--text-color-default);
}
.contact-section ul{
    list-style: none;
}
.contact-section ul li{
    line-height: 36px;
}
.contact-section ul li i{
    color: var(--success);
}
.contact-form-box-all {
  background-color: #333;
  border-radius: 10px;
  padding: 50px;
}
.contact-form-box-all h4,
.contact-form-box-all p,
.contact-form-box-all textarea,
.contact-form-box-all select,
.contact-form-box-all input{
  color: var(--text-color-default);
}
.contact-form-box-all select{
  background: none;
}
.contact2-form-box-all {
  background-color: #fff;
  border-radius: 30px;
  padding: 50px;
}
.form-select:focus {
    border-color: none;
    outline: none;
    box-shadow: none;
}
.contact-input input {
  width: 49%;
  padding: 13px;
  border: none;
  background-color: #F6F7FA;
  border-radius: 4px;
  margin-top: 16px;
  margin-right: 5px;
}
.contact-input-single input {
  width: 48%;
  background: none;
  border-bottom: 1px solid #999DAB;
  border-radius: 0px;
}

.contact-input-single.contact-input-single1 input {
  width: 98%;
}

.contact-input textarea {
  width: 99%;
  padding: 13px;
  border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
  background-color: #F6F7FA;
  border-radius: 4px;
  margin-top: 16px;
  margin-right: 5px;
}
.contact-input-single textarea {
  width: 98%;
  background: none;
  border-bottom: 1px solid #999DAB;
}


textarea:focus {
  outline: none;
}
.contact-input-single.contact-input-single1 select{
    border: none;
  height: 60px;
  border-bottom: 1px solid #d8e6fe;
  border-radius: 0;
  padding-top: 10px;
  margin-top: 10px;
  color: #767676;
  width: 98%;
  cursor: pointer;
}
.contact-input-single.contact-input-single select{
    border: none;
  height: 60px;
  border-bottom: 1px solid #b6b6b6;
  border-radius: 0;
  padding-top: 10px;
  margin-top: 10px;
  color: #b6b6b6;
  width: 98%;
  cursor: pointer;
}
.contact-input-single.contact-input-single1 select:focus{
    outline: none;
}

.box-address{
  padding: 22px 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.box-address .icon {
  color: var(--color-primary);
  border-radius: 100%;
  font-size: 40px;
  display: inline-block;
  margin-bottom: 0;
  line-height: 6px;
  margin-right: 20px;
}
.box-address a {
  color: var(--text-color-black);
}
.box-address a:hover {
  color: var(--color-default);
}

a:hover .feature__title {
  text-decoration: underline;
}
.button2 {
  cursor: pointer;
  display: content;
  color: var(--text-color-default);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  position: relative;
  text-transform: capitalize;
  text-align: center;
  border-radius: 2px;
  padding: 10px 24px;
  transition: all.4s;
  border: none;
  background-color: var(--color-default);
  color: #fff;
  transition: all.4s;
}
.button2:hover {
  background: var(--color-default-hover);
  transform: translateY(-5px);
  transition: all.4s;
}
.shop-search{
  position: relative;
}
.search-input {
  padding: 10px;
  border: none;
  border-radius: 0;
  border: 1px solid #E9E9E9;
  width: 100%;
}
.search-button {
  border: none;
  background: #333;
  padding: 10px 16px;
  color: #fff;
}
.search-button:hover {
  background: #000;;
}
@media screen and (max-width: 769px) {
  .contact2-form-box-all {
    margin-top: 30px;
    padding: 20px;
  }
  .contact-form-box-all {
    padding: 20px;
    margin-top: 30px;
  }
  .contact-input input {
    width: 100%;
  }
  .button2-all2 {
    margin-top: 20px;
  }
  .categories-list {
    max-height: 200px;
  }
  .use-case div{
  min-height: 150px;
}
}
.single-widget {
  padding: 0px;
  margin-bottom: 30px;
}
.single-widget h5 {
  color: var(--text-color-black);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  position: relative;
  padding-bottom: 5px;
}
.single-widget ul {
  margin: 0;
  list-style: none;
}
.btn-filter{
  padding: 10px;
  background-color: #fff;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.12), 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
  line-height: 20px;
  border-radius: 0;
}
.btn-filter:hover{
  background-color: #ededed;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.12), 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
}
.categories-list {
    max-height: 500px;
    overflow-y: auto;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
}

ul.categories-list li {
  border-bottom: 1px solid #EDEDED;
  padding: 8px 0;
}

.categories-list ul {
    display: none;
    padding-left: 20px;
}
.categories-list label {
    padding-right: 6px;
}

.cat-toggle,
.sub-toggle,
.type-toggle {
    cursor: pointer;
    font-weight: 500;
}

.cat-toggle::after{
    content: '▸';
    float: right;
}

.sub-toggle::after,
.type-toggle::after {
    content: '▸';
    float: right;
}

.open  .cat-toggle::after{
  content: '▾';
}

.subcategory-list.open li.open .sub-toggle::after,
.subcategory-list.open li.open .type-list li.open .type-toggle::after {
    content: '▾';
}

.img-full{
  display: block;
  width: 100%;
  height: 100%;
}
.shop-sidebar-top {
  justify-content: space-between;
  align-items: center;
}
.shop-top-filter select{
  width: 250px;
  border: 1px solid #E3E3E3;
  color: #616976;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  height: 50px;
  padding-top: 5px;
  border-radius: 0;
}
.page-hadding p {
  color: #616976;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.shop-details-list ul li {
  color: var(--text-paragraph, #03163B);
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
padding-bottom: 8px;
}

.shop-details-list ul li span {
  color: var(--text-paragraph, #616976);
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
display: inline-block;
padding-left: 4px;
}
.shop-img-single::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #03163B;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all.4s;
}
.shop-img-single {
  overflow: hidden;
}

.shop-box-hover-effect {
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -65px;
  opacity: 0;
  visibility: hidden;
  transition: all.4s;
}

.shop-single-box:hover .shop-box-hover-effect {
  visibility: visible;
  opacity: 1;
  bottom: 24px;
  transition: all.4s;
}
.shop-img {
  overflow: hidden;
  position: relative;
  min-height: 220px;
  align-content: center;
  background-color: #fff;
}
.shop-details-img{
  text-align: center;
}
.shop-details-img img{
  max-width: 100%;
  height: auto;
}
.shop-single-box {
  margin-bottom: 30px;
}

.shop-single-box:hover .shop-img-single::after {
  visibility: visible;
  opacity: 0.4;
  transition: all.4s;
}

.shop-img-single img {
  transition: all.4s;
  width: 100%;
}

.shop-single-box:hover .shop-img-single img {
  transform: scale(1.1);
  transition: all.4s;
}
.shop-single-box .comon-button {
  background: #000;
  box-shadow: 0px 4px 12px 0px rgba(14, 22, 129, 0.13);
  border: none;
  text-align: center;
  padding: 8px 18px;
  display: inline-block;
  align-items: center;
  z-index: 2;
  transition: all.4s;
  overflow: hidden;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  position: relative;
}
.shop-hadding h4{
  line-height: 18px;
}
.shop-hadding h4 a {
  color: var(--text-color-black, #03163B);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.shop-hadding small {
font-size: 10px;
font-style: italic;
font-weight: 500;
line-height: 18px;
color: #777;
}

.shop-hadding p {
  color: var(--main-color, #0E1681);
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 32px;
}

.shop-box-border {
  height: 1px;
  width: 100%;
  background-color: #E9E7E7;
  margin: 14px 0;
}

.shop-hadding p s {
  color: var(--paragraph, #B0B4BB);
font-family: Spline Sans;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 160% */
text-decoration-line: strikethrough;
}
.page-hadding h2 {
  color: var(--text-color-black, #03163B);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.shop-box-border {
  height: 1px;
  width: 100%;
  background-color: #E9E7E7;
  margin: 14px 0;
}
.shop .nav-pills .nav-link {
  color: #08121E;
  background: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}
.shop .nav-link.active {
    position: relative;
    transform: scale(1);
}

.shop .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -17px;
    left: 0;
    height: 3px;
    width: 100%;
    background: #0E1681;
}
.shop ul{
  padding: 0 20px;
}

@media screen and (max-width: 769px) {
  .categories-list {
    max-height: 200px;
  }
  .offcanvas .categories-list {
    max-height: 100vh;
  }
  .shop-img {
    min-height: 190px;
  }
}
/*Pagination*/
.theme-pagination ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.theme-pagination li{
	display: inline-block;
}
.theme-pagination li svg{
	height: 1em;
}
.theme-pagination li a,
.theme-pagination li span {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #E1E3E8;
background: var(--background, #F4F8F7);
    margin: 0 4px;
    transition: all 0.3s;
    display: block;
    color: #000;
}
.theme-pagination li .mute {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #E1E3E8;
background: var(--background, #F4F8F7);
    margin: 0 4px;
    display: block;
    color: #000;
}
.recent-post-content {
  padding-right: 20px;
}

.theme-pagination li a:hover, 
.theme-pagination li a.active
.theme-pagination li span:hover, 
.theme-pagination li span.active {
  background: #222;
  transition: all 0.3s;
  color: #ffffff;
}
.product-skeleton {
    width: 23%;
    display: inline-block;
    margin: 1%;
}

.product-skeleton .img {
    width: 100%;
    height: 180px;
    background: #eee;
}

.product-skeleton .line {
    height: 12px;
    background: #eee;
    margin-top: 10px;
}

.product-skeleton .line.short {
    width: 60%;
}

.product-skeleton,
.product-skeleton .img,
.product-skeleton .line {
    animation: shimmer 1.2s infinite linear;
}

@keyframes shimmer {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}
.footer-area{
    background-color: rgb(3 7 18 / 1);
    padding-top: 50px;
    color: var(--text-color-default);
}
.footer-area .single-footer{
    padding-right: 20px;
}
.footer-area a{
    color: var(--text-color-default);
}
.footer-area h4, .footer-area h5 {
    color: var(--text-color-default);
    padding-bottom: 10px;
}
.footer-area p{
    color: var(--text-color-default);
    margin-bottom: 10px;
}

.footer-area .label{
    color: #ddd;
    font-weight: 600;
}
.footer-logo img{
    width: 80%;
}

.footer-area ul{
    list-style: none;
}
.single-footer ul li {
  padding: 7px 0;
}
.single-footer ul li a i {
  font-size: 13px;
  color: var(--color-default);
}

.footer-area ul.social-media li{
    display: inline;
}
.single-footer ul.social-media i {
  font-size: 24px;
}

.copyright{
    border-top: 1px solid #31343B;
  padding: 16px 0;
  margin-top: 30px;
  color: #777;
  font-size: 14px;
}
.copyright a{
    color: #777;
}
@media screen and (max-width: 769px) {
  .footer-area .footer-logo img{
    width: 60%;
  }
}
#whatsapp{
    position: relative;
}
#whatsapp a{
    position: fixed;
    background-color: rgb(22 163 74 / 1);
    z-index: 1000;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3.5rem;
    border-radius: 100%;
    --tw-shadow: 0 10px 10px 0px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
}
#whatsapp a svg{
    width: 3rem;
    display: block;
}