body{
    background-color: #F3ECE4 ;
    overflow-x: hidden;
}

/* styling preloader */
#content {
    display: none;
    opacity: 0;
    transition: .3s ease;
  }
  
  /* Basic styles for the preloader */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #A91722;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .img-loader{
    opacity: 0;
    animation: fadein 2s forwards;
  }
  
  @keyframes fadein {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  #preloader .star {
    top: 2%;
    scale: 0.4;
    left: 16%;
    animation: fadein 2s forwards;
  }
  
  #preloader .spiral-spinning {
    transform: skew(-58deg) translateX(-20px);
  }
  
  #preloader .spiral {
    margin: 0 auto;
    display: block;
    animation: rotate 1s linear infinite, fadein 2s forwards;
    transform-origin: 54% 43%;
    width: 180px;
  }
  
  #preloader .manusia {
    position: absolute;
    z-index: 2;
    width: 160px;
    top: 37%; 
    right: unset;
    animation: manFall2 1.5s ease-in-out infinite, fadein 2s forwards;
  }
  
  @keyframes manFall2 {
    0% {
      transform: translateY(15px);
    }
    50% {
      transform: translateY(-30px);
    }
    100% {
      transform: translateY(15px);
    }
  }
  
  @keyframes moveUpFadeOut {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    50%{
        /* transform: translateY(50px); */
        opacity: 0;
    }
    100% {
      transform: translateY(120px);
      opacity: 0;
    }
  }
  
  /* Hide the preloader once the page is loaded */
  body.loaded #preloader {
    animation: moveUpFadeOut 0.8s forwards;
  }
  
  body.loaded #content {
    display: none;
  }
  
  /* Show the content once the page is loaded */
  body.loaded #content {
    display: block;
    opacity: 1;
}




nav.navbar{
    font-family: 'Poppins', sans-serif;
    height: auto;
    width: 100%;
    -webkit-transition: height .5s, line-height .5s; /* Safari */
    transition: height .5s, line-height .5s, .5s ease-in-out;
    overflow: hidden;
}

.navbg{
    background-color: #A91722 !important;
}

.navbar-brand{
    width: 200px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.shadowNav{
    box-shadow: -2px 5px 12px 0px rgba(0, 0, 0, 0.3);
}

.nav-link{
    font-size: 16px;
    margin-right: .5rem;
    border: 1px solid transparent;
    border-radius: 12px;
}

.navbar-expand-lg .navbar-nav .nav-link{
    padding-right: 1rem;
    padding-left: 1rem;
}

.navbar-nav .nav-link:hover{
    border: 1px solid #fff;
    border-radius: 12px;
    color: #fff;
}

#toggle-3bar {
  width: 28px;
  height: 30px;
  margin: 10px auto;
}

#toggle-3bar div {
  width: 100%;
  height: 3px;
  border-radius: 20px;
  background: white;
  margin: 6px 0px auto;
  transition: all 0.3s;
  backface-visibility: hidden;
}

.h-bar:first-child{
    margin-top: 20px !important;
}

.navbar-toggler {
    padding: 0;
}

.navbar-toggler:focus{
    box-shadow: none;
}

.poppins{
    font-family: 'Poppins' !important;
}

.poppins-bold{
    font-family: 'Poppins-Bold' !important;
}

.poppins-semibold{
    font-family: 'Poppins-SemiBold' !important;
}

.poppins-medium{
    font-family: 'Poppins-Medium' !important;
}

section{
    padding-top: 6rem;
    padding-bottom: 5rem;
}


/* hero section */
#hero{
    /* background-image: url('assets/section1/Bintang.webp');
    background: linear-gradient(254.93deg, #CC2D39 -3.85%, #A91722 80.46%); */
    background: linear-gradient(254.93deg, #CC2D39 -3.85%, #A91722 80.46%);
    padding-bottom: 2rem;
    padding-top: 9rem;
}

/* #hero .col-lg-4.col-md-3{
    background: url('assets/section1/Bintang.webp');
    background-size: cover;
} */

h1{
    font-size: 72px;
    line-height: 88px;
    text-align: left;
}

h1, h2, h3{
    text-transform: none;
}

.i-b{
    font-style: italic;
    font-family: Poppins-Bold;
}

.font-light{
    color: #FCEBED !important;
}

.font-white{
    color: #fff;
}

.font-whitesecondary{
    color: #E9EFF2 !important;
}

.desc{
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
}

.btn{
    padding: 18px 28px;
    border: 1px solid #fff;
    width: unset;
    border-radius: 12px;
    text-decoration: none;
    transition: .2s ease-in-out;
}

.btn:hover{
    border: 1px solid transparent;
    color: #A91722;
    background-color: #fff;
    transform: scale(1.05);
    /* animation: shake 2s; */
}

@keyframes shake{
    10%{
        transform: rotate(2deg);
    }
    20%{
        transform: rotate(-2deg);
    }
    30%{
        transform: rotate(2deg);
    }
    40%{
        transform: rotate(-2deg);
    }
}

.btn-white{
    background-color: #fff;
}

.btn-border{
    border: 1px solid #fff;
    background-color: #A91722;
}

.btn .fa-arrow-right{
    transition: .2s ease;
}

.btn:hover .fa-arrow-right{
    color: #A91722;
    transform: translateX(50%);
}

.font-red{
    color: #A91722;
}

.btn-circle{
    height: 48px;
    width: 48px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 70%;
    right: 8%;
    opacity: 0;
    /* animation: MoveUpDown 2s linear infinite; */
}

.btn-circle.mobile{
    display: none;
}

.btn-circle2.mobile2{
    display: none;
    bottom: 20px;
}

@keyframes MoveUpDown {
    0%, 100% {
        transform: translateY(60%);
    }
    50% {
        transform: translateY(120%);
    }
}

/* test spiral */
.spiral-spinning{
    transform: skew(-58deg);
}

.spiral {
  margin: 0 auto; 
  display:  block;
  animation: rotate 2s linear infinite;
  transform-origin: 54% 43%;;
  /* transform: rotateZ('angle'); */
}

@keyframes rotate {
    0% {
        transform: rotateZ(0deg);
    }
    100%{
      transform: rotateZ(360deg);
    }
}

.star{
    /* width: 812px;
    height: 414px; */
    scale: 1.8;
    top: 15%;
    left: 0;
    bottom: 0;
    animation: bling 4s ease-in-out infinite;
}

@keyframes bling {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    50% {
        transform: translateY(30px);
        opacity: 1;
    }

    100%{
        transform: translateY(-30px);
        opacity: 0;
    }
}

.manusia{
    position: absolute; 
    z-index: 2; 
    right: 0; 
    top: 8%;
    animation: manFall 4s ease-in-out infinite;
    /* animation: name duration timing-function delay iteration-count direction fill-mode; */
}

@keyframes manFall {
    0% {
        transform: translateY(15px);
    }

    50% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(15px);
    }
}


/* section 2 - Guide your bussiness */
.bg-cream{
    background-color: #F3ECE4 !important;
}

h2{
    font-size: 44px;
    line-height: 60px;
}

#guideyou{
    padding-bottom: 3rem;
}

#guideyou .card{
    padding: 0;
}

.font-grey{
    color: #475467;
}

.font-dark{
    color: #1D2939;
}

.desc.big{
    font-size: 24px;
    line-height: 36px;
}

.card{
    background: linear-gradient(159.65deg, #E8DCCC 13.53%, #F3ECE4 102.44%);
    padding: 32px;
    border: none;
    margin-bottom: 32px;
    border-radius: 12px;
}

#guideyou .card-text{
    padding: 32px;
}

/* section 2 (data driven) */
#data-driven{
    padding-top: 4rem;
}

#data-driven h2{
    width: 80%;
    margin: auto;
}

/* fullpage js */
.slides-wrapper{
    display: block;
}

.pin-spacer{
    display: unset;
}

.circleNum{
    height: 40px;
    width: 40px;
    background-color: #fff;
    color: #A91722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 9;
    transform: translate(49vw, -20px);
    font-family: 'Poppins-SemiBold';
    font-size: 14px;
}

.donatOren{
    z-index: 1;
    /* rotate: -171.43deg; */
    width: 402.4px;
    height: 402.4px;
    top: 70px;
}

.donatMerah{
    z-index: 1;
    /* rotate: -171.43deg; */
    width: 402.4px;
    height: 402.4px;
    bottom: 40px;
}

.panel .panel-content .row .col-lg-6 h3, h2, p{
    position: relative;
    z-index: 3;
}

.panel, .panel.sect4{
    background-color: #A91722;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0px 0px;
}

.panel.sect2, .panel.sect5{
    background-color: #F79009;
}

.panel.sect3{
    background-color: #0E0E10;
    color: #fff;
}

.panel-content .desc.big.font-light.poppins{
    color: #EAECF0 !important;
}


.circle{
    width: 582px;
    height: 582px;
    border-radius: 251px;
    background: radial-gradient(circle, rgb(255 255 255) 0%, rgba(255, 255, 255, 0) 100%);
    filter: blur(120px);
    z-index: 1;
    position: absolute;
    top: 5%;
    right: 3%;
    opacity: .7;
}

.circle2{
    top: 50%;
    opacity: .4;
}


.img-panel{
    z-index: 5;
    position: relative;
}

/* section align your software */
.bg-cream-dark{
    background-color: #E8DCCC;
}

#align-software .col-lg-5{
    padding-right: 4rem;
}

.card-light{
    padding: 32px;
    border: none;
    margin-bottom: 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, #F3ECE4 0%, #E8DCCC 125.26%);
}

.img-ab{
    position: absolute;
}

.img-rel{
    position: relative;
}

/* [data-aos="custom-rotate"]{
    animation: iconmuter 2s ease-in;
} */

.icon1{
    animation: iconmuter 2s ease;
}

.icon2{
    animation: iconmuter 2s ease;
}

.icon3{
    animation: iconmuter 2s ease;

}

.icon4{
    /* transform: rotate(0deg); */
    animation: iconmuter 2s ease;
}

.icon5{
    /* transform: rotate(0deg); */
    animation: iconmuter 2s ease;
}

@keyframes iconmuter {
    0%{
        transform: rotate(-180deg);
    }
    100%{
        transform: rotate(0deg);
    }
}


@keyframes rotateIcon {
    0%{
        transform: rotate(-180deg);
        /* opacity: 0; */
    }
    100%{
        transform: rotate(0deg);
        opacity: 1;
    }
}

#streamlined .card-light p{
    margin-bottom: 0;
}

/* #streamlined #target{
    animation: bling 4s ease-in-out 1s infinite;
} */

.stream-img{
    /* transform-origin: 50% 50%; */
    top: -325px;
    right: 15px;
}

.stream-img.mobile{
    display: none;
}

/* section streamlined bisnis */
.font-darkgrey{
    color: #344054;
}

#streamlined .card-light h3{
    font-size: 36px;
    margin-bottom: 0;
}

/* svg streamlined */
.pathIcon{
    position: absolute;
    top: -425px;
    right: -55px;
    width: 100%;
    height: 100%;
}

#mainPath {
  fill: none;
  stroke: #000;
  stroke-width: 3;
  stroke-miterlimit: 10;
}

#target, #target2, #target3, #target4, #target5 {
  scale: 0.5;
  opacity: 0;
}

svg {
  max-height: 100vh;
  max-width: 100vw;
}


/* section as they say */
#as-they-say{
    background-color: #A91722;
}

#as-they-say .card{
    overflow: hidden;
    background: #FEA110;
    cursor: pointer;
    border-radius: 16px;
    transition: .5s ease;
}

#as-they-say .card-body{
    background-color: #F0F4F6;
    border-radius: 0px 0px 16px 16px;
    z-index: 3;
    transform-origin: bottom center;
}

#as-they-say .card-img-top{
    border-radius: 16px 16px 0px 0px;
    rotate: 0deg;
    overflow: hidden;
    scale: 1.02;
    
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-drag: none;
}

#as-they-say .card:hover{
    scale: 1.05;
}

#as-they-say .row.pt-5 {
    overflow-x: scroll !important;
    white-space: nowrap !important;
    display: block;
    padding-left: 4rem;
    margin-right: 0;
    margin-left: auto;
}

@media (max-width:576px) {
    #as-they-say .row.pt-5{
        padding-left: 1rem;
    }
}

@media (min-width:577px) {
    #as-they-say .row.pt-5{
        padding-left: 2rem;
    }
}

@media (min-width:992px) {
    #as-they-say .row.pt-5{
        padding-left: 3rem;
    }
}

@media (min-width:1200px) {
    #as-they-say .row.pt-5{
        padding-left: 4rem;
    }
}

@media (min-width:1300px) and (max-width:1400px) {
    #as-they-say .row.pt-5{
        padding-left: 5rem;
    }
}

#as-they-say .row.pt-5>*{
    width: 19% !important;
}

#as-they-say .row.pt-5 .col-md-6{
    display: inline-block;
    float: none; /* Cancel Bootstrap's float behavior */
    white-space: normal; /* Allow wrapping of text inside the cards */
}

#as-they-say ::-webkit-scrollbar{
    height: 8px;
}

/* Track */
#as-they-say ::-webkit-scrollbar-track {
  background: #8e8e8e50;
}

.playbutton{
    position: absolute;
    padding: 15px;
    border-radius: 12px 12px 0px 0px;
    background-color: #FEA110;
    right: 0;
    bottom: 62px;
    transform-origin: bottom right;
    transition: 1s ease;
}

.fa-circle-play{
    font-size: 34px;
}

/* section form */
#form h2{
    width: 70%;
}

.form-floating{
    color: #475467;
    font-family: 'Poppins-SemiBold';
}

.form-control{
    border-radius: 12px;
    background-color: #F3ECE4;
}

.form-floating>.form-control, .form-floating>label{
    padding: 16px 24px;
}

.btn-primary{
    float: right;
    background-color: #A91722;
    border: 1px solid #A91722;
}

footer{
    padding-top: 5rem;
    padding-bottom: 2rem;
    background-color: #A91722;
}

.footerkiri{
    width: 45%;
}

.verLine{
    border-right: 1px solid #fff;
}

.sosmed a{
    margin-right: 10px;
}

/* .sosmed i{
    margin-right: 5px;
} */

footer a{
    transition: ease;;
}

footer a:hover{
    opacity: .75;
    color: #fff;
}

hr{
    opacity: 1;
}

.btn-circle2{
    height: 48px;
    width: 48px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 5;
    right: 20px;

    /* animation: MoveUpDown 2s linear infinite; */
}


@media (min-width:1400px) {
    #hero p{
        width: 75%;
    }

}

@media (max-width: 1200px) {
    .card-light{
        padding: 32px 12px;
    }

    h1{
        font-size: 52px;
        line-height: 65px
    }

    .btn-circle{
        top: 44%;
    }

    .desc.big{
        font-size: 20px;
        line-height: 28px;
    }

    h2{
        font-size: 32px;
        line-height: 40px;
    }

    .btn-circle{
        top: 52%;
    }

    /* #as-they-say .row.pt-5{
        /* padding-left: 2.5rem; */
        /* min-width: 1180px;
    } */

    #as-they-say .row.pt-5 .col-md-6{
        min-width: 200px;
    }

    /* #as-they-say ::-webkit-scrollbar-track{
        background-color: #A91722;
    } */
    
    .manusia{
        /* right: 4%; */
        top: 4%; 
        width: 300px;
    }

    /* #streamlined .card-light .desc{
        font-size: 16px;
        line-height: 28px;
    } */
}

@media (min-width: 1200px) and (max-width: 1399px) {
    #data-driven h2{
        width: 94%;
    }

    #hero h1{
        font-size: 60px;
    }

    #hero .row .col-lg-8 .mb-lg-4{
        margin-bottom: 2rem !important;
    }


    #guideyou .card .card-text h3{
        font-size: 1.5rem;
    }

    .pathIcon{
        scale: 0.95;
        right: -18px;
    }
/* 
    .star{
        left: 50%;
    } */
}

@media (min-width: 992px) and (max-width: 1400px) {
    .panel .panel-content h3{
        font-size: 1.25rem;
    }

    .panel .panel-content h2{
        font-size: 40px;
        line-height: 52px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    #data-driven h2{
        width: 82%;
    }

    .pathIcon{
        scale: 0.9;
        right: 24px;
    }

    /* .star{
        left: 50%;
        top: 10%;
    } */
}

@media (min-width: 992px) {
    .scrolled-nav{
        height: 60px !important;
    }

    .scrolled-nav .navbar-brand{
        width: 150px;
    }

    .btn-circle{
        top: 68%;
    }

    .modal.fade .modal-dialog {
        width:75%;
    }

}


@media (max-width:992px) {
    #hero{
        padding-top: 8rem;
    }
    
    .manusia{
        width: 200px;
    }

    .star{
        left: 0;
        top: 0;
    }

    h1{
        font-size: 43px;
        line-height: 57px;
    }

    .pathIcon{
        display: none;
    }

    .btn{
        padding: 14px 20px;
    }

    .card-light{
        padding: 32px;
    }

    #form h2{
        width: 100%;
    }
    
    .circleNum{
        transform: translate(46vw, -20px);
    }

    .navbar.fixed-top{
        padding: 5px;
    }

    .navbar-collapse.collapse.show{
        padding-bottom: 20px;
    }

    .btn-circle{
        top: 28%;
    }

    .stream-img {
        display: none;
    }

    .stream-img.mobile{
        display: block;
        margin: auto;
    }

    .playbutton{
        bottom: 86px;
    }

    .donatMerah, .donatOren{
        width: 256.3px;
        height: 256.38px;
        bottom: 397px;
        top: 130px;
        right: 35px;
        z-index: 0;
    }

    .donatMerah{
        top: 75px;
    }

    #hero .donatMerah{
        right: 12px;
    }

    #hero .donatMerah.don2{
        width: 200px;
        height: 200px;
        right: 100px;
        top: 290px;
        /* rotate: 45deg; */
    }

    #data-driven{
        padding-top: 6rem;
    }

    #guideyou{
        padding-bottom: 0;
    }

    #preloader .star{
        top: 27vh;
        scale: 0.6;
        left: 7vh;
    }

    .panel{
        min-height: 100vh;
    }
}

@media (min-width:767px) and (max-width: 1200px) {
    #as-they-say .row.pt-5>*{
        width: 25% !important;
        --bs-gutter-x: 1rem;
    }
}

@media (max-width: 767px) {
    .modal.fade .modal-dialog {
        width:100%;
    }

    #as-they-say .row.pt-5>*{
        width: 33% !important;
        --bs-gutter-x: 1rem;
    }
}

@media (max-width: 576.5px) {
    .navbar-brand{
        width: 150px;
    }

    .btn-circle.mobile{
        display: flex;
        top: 82%;
        right: 44%;
        left: 44%;
    }

    .playbutton{
        bottom: 82px;
    }

    #hero{
        padding-bottom: 10rem;
    }

    h2{
        font-size: 30px;
        line-height: 38px;
    }

    h2, h1, h3, #data-driven h2, #streamlined h2{
        text-align: left !important;
    }

    #data-driven h2{
        width: 100%;
    }

    .desc.big{
        font-size: 18px;
        line-height: 26px;
        text-align: left !important;
    }

    .circleNum{
        transform: translate(43vw, -20px);
    }

    .footerkiri{
        width: 100%;
        margin-bottom: 2rem;
    }

    h1{
        font-size: 42px;
        line-height: 58px;
    }

    #hero .row.mt-5 .col.py-3{
        margin-top: 4.5rem;
    }

    #hero .row .col-lg-8.col-md-9 .poppins.desc.font-light{
        margin-bottom: 2rem;
    }

    .desc, .panel .panel-content h3{
        font-size: 18px;
        line-height: 30px;
    }

    .btn{
        padding: 18px 24px;
        text-align: center;
        font-size: 14px;
    }

    .card{
        padding: 32px 20px;
    }

    .circle{
        top: 45%;
        right: -10%;
    }

    #guideyou .card-text{
        padding: 32px 32px 0px 32px;
    }

    #guideyou .card .card-text h3{
        font-size: 24px;
        line-height: 36px;
    }

    #align-software .card-light{
        padding: 32px 12px;
    }

    #streamlined .card-light{
        padding: 32px 20px;
    }

    #streamlined .card-light .col-md-9.d-flex{
        display: block !important;
        text-align: left !important;
    }

    #streamlined .card-light .row.mb-2{
        text-align: center;
    }

    #streamlined .card-light .row.mb-2 .col-md-9 .desc{
        font-size: 16px;
        line-height: 24px;
        margin-top: .75rem;
    }

    #as-they-say .card{
        width: 95%; 
    }

    #as-they-say .playbutton{
        display: block;
        rotate: 0deg;
    }

    #as-they-say .card-body{
        scale: 1.4;
    }

    #as-they-say .row.pt-5{
        overflow-x: scroll;
        white-space: nowrap !important;
        display: block;
        --bs-gutter-x: 0;
        margin-right: 0;
        width: 100% !important;
    }
    
    #as-they-say .row.pt-5>*{
        width: 85% !important;
    }
    
    #as-they-say .row.pt-5 .col-md-6{
        display: inline-block;
        float: none; /* Cancel Bootstrap's float behavior */
        white-space: normal; /* Allow wrapping of text inside the cards */
    }

    .card-light .text-end{
        text-align: left !important;
    }

    .btn-primary{
        width: 100%;
        margin-top: 1.25rem;
    }

    /* #hero .btn.btn-border{
        float: right;
    } */

    #preloader .star {
        top: 32vh;
        scale: 1;
        left: 7vh;
    }
}

@media (max-width: 424.5px) {
    .btn-circle.mobile{
        top: 90%;
    }

    .btn{
        padding: 14px 20px;
    }
    
}

@media (max-width: 374.5px) {
    .btn-circle.mobile{
        top: 110%;
    }
    #hero .btn.btn-border{
        margin-top: .75rem;
    }
}

@media (min-width:1200px) {
    .btn-circle{
        top: 80%;
    }
}




/* width */
::-webkit-scrollbar {
    width: 10px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: #8e8e8e;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #F3ECE4;
    border-radius: 15px;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #F3ECE4;
    border-radius: 15px;
  }