/********** Template CSS **********/
:root {
    --primary: #232ae3;
    --light: #EDF5FF;
    --dark: #202942;
}
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    font-weight: 500 ; 
}

body{
    overflow-x: hidden !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.bg-primary{
    background: linear-gradient(
        90deg,
        rgb(39, 5, 83) 0%,
        rgba(1, 113, 218, 1) 100%
      );
}

.apps-text{
    color: var(--primary);
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-7 {
    margin-top: 7rem;
    margin-bottom: 7rem;
}

.py-7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}



/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

.intro-title{
    font-size: 3.5rem !important;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn.btn-primary {
    color: var(--light);
}

.btn.btn-light {
    color: var(--primary);
}

.btn.free-trial:hover{
    background-color: #232ae3 !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar.navbar-apps{
    max-width: 80rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem !important;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-weight: 500;
    color: var(--light);
    outline: none;
    transition: .5s;
}

a.navbar-brand h1:hover{
    color: #edb657 !important;
}
.navbar-nav a{
    font-weight: bold !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #edb657 ;
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}


.sticky-top.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.sticky-top.navbar .navbar-nav .nav-link:hover{
    color: #edb657;
}


.navbar .navbar-brand h1 {
    color: #FFFFFF;
}

@media (max-width:576px) {
    .navbar .navbar-brand h1 {
        color: #FFFFFF !important;
    }
    .sticky-top.navbar .navbar-brand h1 {
        color: var(--primary) !important;
    }

}

.navbar .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar .navbar-brand img {
    max-height: 45px;
}


@media (max-width:500px) {
    .navbar{
        position: fixed !important;
        width: 100%;
        
    }
    .navbar-collapse a{
        color: white !important;
        backdrop-filter: blur(0.66rem) !important
    }
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 20px 0;
        color: var(--dark) !important;
    }
}


@media (max-width: 991.98px) {
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark);
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #edb657 !important ;
    }

    .navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .sticky-top.navbar .btn {
        color: var(--light);
        background: var(--primary);
        border-color: var(--primary);
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 1rem;
    padding: 1rem 0 0rem 0;
    /* height: 130vh; */
    /* background: url(../img/bg-bottom.png) center bottom no-repeat; */
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}
.swiper {
    width: 100%;
    height: 100%;
  }
.swiper-button-next,
.swiper-button-prev {
  color: #f4b146 !important;

}

.swiper-pagination-bullet-active {
  background: #f4b146 !important;
  margin-top: 50px;
}
/* .bg-image{
    background-image: url(../img/blob.svg);
    background-repeat: no-repeat;
    background-position: center;
    z-index: -10;
	animation: rotation 999999ms infinite linear;
    
    
    
}
.bg-image:before{
    background-image: url(../img/kudasai.svg);
	position: absolute;
	width: calc(25vh + 25vw);
	height: calc(25vh + 25vw);
	opacity: 0.13;
	z-index: -10;
	mix-blend-mode: hard-light;
	animation: rotation 999999ms infinite linear;
	margin-top: calc(2vw + 2vh);
    background-attachment: fixed;
} */


/* mouse */
.mouse-icon {
	position: absolute;
	bottom: 10;
	left: 50%;
	-webkit-transform: translate(-50%, -25px);
	-ms-transform: translate(-50%, -25px);
	transform: translate(-50%, -25px);
	display: inline-block;
	height: 36px;
    margin-top: 5rem;
  }
  @media print, screen and (min-width: 64em) {
	.mouse-icon {
	  height: 40px;
	  -webkit-transform: translate(-50%, -40px);
	  -ms-transform: translate(-50%, -40px);
	  transform: translate(-50%, -40px);
	}
  }

  @media (max-width:576px) {
    .mouse-icon{
        margin-top: 3rem
    }
    
}
  .mouse-icon svg {
	height: 100%;
	width: auto;
  }
  .mouse-icon svg .cursor {
	-webkit-animation: mouseCursorNew;
	animation: mouseCursorNew;
	-webkit-animation-duration: 1.6s;
	animation-duration: 1.6s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
  }
  @-webkit-keyframes mouseCursorNew {
	0% {
	  -webkit-transform: translate(0, 0);
	  transform: translate(0, 0);
	  opacity: 1;
	}
	100% {
	  -webkit-transform: translate(0, 10px);
	  transform: translate(0, 10px);
	  opacity: 0;
	}
  }
  @keyframes mouseCursorNew {
	0% {
	  -webkit-transform: translate(0, 0);
	  transform: translate(0, 0);
	  opacity: 1;
	}
	100% {
	  -webkit-transform: translate(0, 10px);
	  transform: translate(0, 10px);
	  opacity: 0;
	}
}


.bg-blob{
    background-image: url(../img/blob-2.svg);
    background-size: cover;
    opacity: 0.5;
}

/*** Feature ***/
.feature-item,
.advanced-feature-item {
    height: 100%;
    transition: ease-out .5s;
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.advanced-feature-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.advanced-feature-item * {
    transition: .5s;
}

.advanced-feature-item:hover {
    background: var(--primary);
}

.advanced-feature-item:hover * {
    color: #FFFFFF !important;
}

/* owl carousel */
.owl-carousel .owl-nav{
    display: flex;
    justify-content: center;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
} 


.test-card.item-card{
    padding: 10px ;
    height: 100%;
}

.test-card{
    border: 1px solid rgba(0, 0, 0, 0.125);
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.backup-section{
    background-color: #fff;
    border: 10px solid #d2d9ff;
    border-left: none;
    padding-top: 7rem;
    border-radius: 0 120px 120px 0;
}

.border-orange{
    border-top: 5px solid #ff7a06;
}
.border-blue{
    border-top: 5px solid #1540cf;
}
.border-green{
    border-top: 5px solid #07ed1e;
}
.border-black{
    border-top: 5px solid #000000;
}

.phone-section{
    background-color: #fff;
    border: 10px solid #d2d9ff;
    border-left: none;
    padding-top: 7rem;
    border-radius: 120px 0 0 120px;
}

/*** Process ***/
.process {
    padding: 0;
    list-style: none;
}

.process li {
    position: relative;
    display: flex;
    padding-bottom: 25px;
}

.process li::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 20px;
    background: var(--primary);
}

.process li:last-child {
    padding-bottom: 0;
}

.process li:last-child:after {
    display: none;
}

.process li span {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    z-index: 1;
}

.process li p {
    margin: 0;
}

/* title */
.section-title {
    position: relative;
    padding: 60px 0 30px 0;
    text-align: center;
  }
  
  .section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f4b146;
  }
  
  .section-title::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
      90deg,
      rgba(0, 46, 126, 1) 0%,
      rgba(1, 113, 218, 1) 100%
    );
  }
  

  .btn-1 {
    /* font-family: Hack, monospace; */
    background: #0F0F6D;
    color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.375rem 0.75rem;
    border: 0;
    transition: all 0.5s;
    border-radius: 5px;
    width: auto;
    position: relative;
  }

  .btn-1::after{
     content: '\f007';
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    left: 75%;
    top: 16%;
    right: 5%;
    bottom: 0;
    opacity: 0;
  }

  .btn-1:hover{
    background: #2b2bff;
    transition: all 0.5s;
    border-radius: 10px;
    box-shadow: 0px 6px 15px #0000ff61;
    padding: 0.375rem 2rem !important   ;
  }

  .btn-1:hover::after{
    opacity: 1;
    transition: all 0.5s;

  }

/*** Price ***/
.price-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.price-item:hover {
    margin-top: -10px;
}

.item-carousel .item-item {
    padding: 0 30px 30px 30px;
}


.item-carousel .owl-nav{
    display: flex;
    justify-content: center;
}

.item-carousel .owl-nav .owl-prev,
.item-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.item-carousel .owl-nav .owl-prev:hover,
.item-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Testimonial ***/


.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 10px 12px;
    margin-top: 100px !important;
    padding: 20px !important;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}
.owl-carousel.active{
    transform: scale(1.1) !important;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
.testimonial-card{
    min-height: 300px;
    border: solid 3px #002e7e;
    border-radius: 10px !important;
    transition: ease .5s;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
  }
  .testimonial-card:hover{
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
    transform: translateY(-15px) !important;
  }
  
  .card-head{
    border-radius: 10px !important;
  }

  .border-pegawai{
      border-color:#002e7e !important;
  }
  .line{
      height:1px;
      padding:1px;
      width: 100%;
  }
  img.user-pic{
      width:100px !important;
      
  }
  
  .testimonial-header{
      background-color: #e7f1ff;
      padding:5px;
      border-bottom: solid 1px blue;
  }
  
  span.line{
      top:25px;
  }
  
  .bg-grey{
      background-color: rgba(230, 230, 230, 0.99) !important;
  }

/* contact-form */
/* .contact-form{
    background: linear-gradient(87deg,#f4f5f7,#f4f4f7)!important;
} */
form.contact{
    position: relative;
    background-color: rgba(251, 251, 251, 0.583) !important;
    padding: 60px 80px;
    border-radius: 50px;
    text-align: center;
    box-shadow: #000000 !important;
}

.form-floating input{
    border: 3px solid black !important;
}

/*** Footer ***/
.footer {
    padding-top: 3rem;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #858585;
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: #858585;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
    text-decoration: none;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}

.img-animate{
    animation: updown 3s linear infinite;
  }
  @keyframes updown{
    0%{
      transform: translateY(-20px);
    }
    50%{
      transform: translateY(20px);
    }
    100%{
      transform: translateY(-20px);
    }
  }

.mouse-animate{
    animation: up-down 4s linear infinite;
}
@keyframes up-down{
    0%{
      transform: translateY(-10px);
    }
    50%{
      transform: translateY(10px);
    }
    100%{
      transform: translateY(-10px);
    }
  }


@media (max-width:576px) {
    .img-animasi{
        animation: sidedown 5s linear infinite;
      }
      @keyframes sidedown{
        0%{
          transform: translateX(-10px);
        }
        50%{
          transform: translateX(10px);
        }
        100%{
          transform: translateX(-10px);
        }
      }
    
}

.img-animasi{
    animation: sidedown 5s linear infinite;
  }
  @keyframes sidedown{
    0%{
      transform: translateX(-200px);
    }
    50%{
      transform: translateX(200px);
    }
    100%{
      transform: translateX(-200px);
    }
  }

.text-slider-items{
    display: none;
}