@font-face {
    font-family: ceraprobold;
    src: url(../../fonts/cera_pro_bold.ttf);
}
@font-face {
    font-family: cerapromedium;
    src: url(../../fonts/cera_pro_medium.ttf);
}
@font-face {
    font-family: ceraprolight;
    src: url(../../fonts/cera_pro_light.ttf);

}
@font-face {
    font-family: ceraproboldsuper;
    src: url(../../fonts/cera_pro_bold_super2.otf);
}
@keyframes loading {
    from{
        transform:rotate(0turn);
    }
    to{
        transform: rotate(1turn);
    }
}

*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'ceraprolight', arial, sans-serif;
    color: #0070af;
    scroll-behavior: smooth;
    /* scroll-padding-top: 4rem; */
    /* overflow-x: auto; */
    /* scroll-snap-type: x mandatory; */
}
b{
    font-family: 'çeraprobold', arial, sans-serif;
    color: rgb(22,50,134);  
}
a{text-decoration: none;}
.no-scroll {
    overflow: hidden;
}
/* ========================================================================== */
/* ======================N A V I G A T I O N   M E N U ====================== */
/* ========================================================================== */
.menu-navbar-ncd{
    width: 100%;
    height: 18vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 20px 20px 0px;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
    /* opacity: 0.5; */
    /* position: sticky; */
    /* top:0px; */
    /* z-index: 999; */
    /* position: fixed;  */
    /* z-index: 999; */
}
.container-fluid-nav-ncd{
    width: 100%;
    height: 100%;
    display: flex;
    /* position: relative; */
    /* background-color: green; */
}
.brand-logo-ncd {
    width: 40%;
    height: 100%;
    /* display: flex; */
    /* justify-content: flex-end; */
    /* background-color:red; */
}
.brand-logo-ncd a{
    display: flex;
    justify-content: flex-end;
    gap: 2%;
    text-decoration: none;
    /* background-color: #25d366; */
}
.brand-logo-ncd a img{
    width: 14%;
    object-fit: cover;
    /* background-color:#0070af; */
}
.brand-logo-ncd a h1{
    width: 60%;
    display: flex;
    align-items: center;
    font-family: 'ceraprobold', arial, sans-serif;
    color: white;
    /* background-color:white; */
}
.list-menu-navbar-ncd{
    width: 60%;
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    /* background-color: brown;    */
}
.list-menu {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 5%;
    /* background-color:red */
}
.list-menu li {
    width: 117px;
    /* background-color: #25d366;  */
} 
.list-menu li .detailmenu {
    width: 100%;
    height: 30px;
    font-size: 15px;
    text-decoration: none;
    color: white;
    font-family: 'cerapromedium', arial, sans-serif;
    transition: all 0.4s; 
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color:yellow;     */
}
.list-menu li .detailmenu:hover{
    color:red;
    transition: all 0.4s;
}
.list-menu li .detailmenu:before {
    content: "";
    position: absolute;
    bottom: 10px;
    width: 5%;
    height: 40px;
    opacity: 0;
    border-radius: 0 8px 0 8px;
    transition: 0.3s;
}
.list-menu li .detailmenu:is(:link, :active, :visited):hover:before{
    content: "";
    position: absolute;
    opacity: 1;
	bottom: 15;
    width: 15%;
    height: 5px;
    border-radius: 0 8px 0 8px;
    transition: all 0.4s;
    background-color: white;
}
.list-menu li .detailmenu:is(:link, :active, :visited).active:before {
    content: "";
    position: absolute;
    transition: 0.4s;
    margin-bottom: 20px;
    height: 5px;
    width: 100px;
    bottom: -6px;
    transition: 0.4s;
    border-radius: 0 8px 0 8px;
    background-color: red;
    opacity: 1;
}
.square-background-container-menu{
    display: none;
}
.nav-indicator {
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.4s;
    margin-bottom: 20px;
    height: 5px;
    border-radius: 8px 8px 0 0;
}
/* =========================================================================== */
/* ==================H  A  M  B  U  R  G  E  R   M  E  N  U ==================*/
/* =========================================================================== */
.hamburger-menu-ncd{
    display: none;
    flex-direction: column;
    height: 25px;
    justify-content: space-around;
    margin: 0 15px 0 0;  
    position: relative; 
    /* background-color: #000; */
}
.hamburger-menu-ncd input{
    position: absolute;
    width: 28px;
    height: 25px;
    opacity: 0;
    z-index:2;
    cursor: pointer;
}
.hamburger-menu-ncd span{
    display: block;
    width: 28px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.5s;
}

/* H  M   M  E  N  U   A  N  I  M  A  T  I  O  N */
.hamburger-menu-ncd span:nth-child(2){
    transform-origin: 0 0; 
}
.hamburger-menu-ncd span:nth-child(4){
    transform-origin: 0 0; 
}
.hamburger-menu-ncd input:checked ~ span:nth-child(2){
    transform: rotate(45deg) translate(0px, -2px);
}
.hamburger-menu-ncd input:checked ~ span:nth-child(4){
    transform: rotate(-45deg) translate(-2px, 0);
}
.hamburger-menu-ncd input:checked ~ span:nth-child(3){
    transform: scale(0);
}

/* ============================================================= */
/* ======================== H E A D E R ======================== */
/* ============================================================= */
.header-img-fullsize-ncd {
  width: 100%;
  height: 90vh;
  display: flex;
  position: relative;
  /* background-color: blue;  */
}
.single-row-content-ncd-1{
    width: 55%;
    display: flex;
    position: relative;
    /* background-color: #0070af; */
}
.single-row-content-ncd-1 .full-color-square-ncd{
    width: 200px;
    height: 200px;
    position: absolute;
    margin-top: 36%;
    margin-right: 61%;
    border-radius: 18px;
    transform:  rotate(45deg);
    background: rgb(220,224,237);
    background: linear-gradient(207deg, rgba(220,224,237,1) 0%, rgba(255,255,255,1) 72%);
}
.text-header-fliping{
    width: 100%;
    display: flex;
    position: relative;
    padding-top: 18%;
    padding-left: 30%;
    flex-direction: column;
    z-index: 9;
    /* background-color: violet; */
}
.text-header-fliping h1{
    width: fit-content;
    font-size: 36px;
    color: #163286;
    font-family: 'ceraprobold', arial, sans-serif;
    /* background-color: yellowgreen; */
}
.text-header-fliping h6{
    width: fit-content;
    font-size: 36px;
    color: #163286;
    font-family: 'ceraproboldsuper', arial, sans-serif;
    /* background-color: yellowgreen; */
}
.text-header-fliping button{
    margin-top: 1rem;
    width: fit-content;
    color: white;
    padding: 3px 18px;
    font-size: 15px;
    background-color: red;
    border: none;
    border-radius: 0 0 7px 7px;
    cursor: pointer;
    font-family: 'ceraprobold', arial, sans-serif;
}
.single-row-content-ncd-2{
    width: 45%;
    overflow: hidden;
    /* display: flex; */
    /* height: 100%; */
    /* overflow: hidden; */
    /* position: relative; */
    /* background-color: #25d366; */
    /* background-color: white; */
}
.single-row-content-ncd-2 .square-header-background{
    width: 300px;
    height: 300px;
    position: relative;
    margin-top: -32%;
    margin-left: 70%;
    border: solid #DCE0ED 27px;
    border-radius: 45px;
    transform:  rotate(45deg);
    /* background-color: #000000; */
}
.single-row-content-ncd-2 img{
    width: 50%;
    top: 5%;
    right: 2%;
    object-fit: cover;
    position: absolute;
    /* background-color: brown; */
}
.divider-ijb-ncd{
    width: 100%;
    height: 20%;
    position: absolute;
    bottom: 0;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
    /* background-color: #25d366; */
}
.divider-ijb-ncd .divider-content-ncd-ijb{
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* background-color: #1b4949; */
}
.divider-ijb-ncd .divider-content-ncd-ijb h5{
    color: white;
    position: relative;
    text-align: center;
    font-size: 36px;
    font-family:'ceraprobold',arial, sans-serif;
    /* background-color: aqua; */
}
.fliptext{
    transform: rotateX(360deg);
    white-space: nowrap;
    transition: transform .6s ease;
}
/* =============================================================  */
/* =================== WHAT ABOUT US SECTION =================== */
/* =============================================================  */
.header-container-comment-ijb-ncd{
    width: 100%;
    position: relative;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
}
.header-comment-ijb-ncd {
    width: 100%;
    padding: 0 10%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 50px 50px;
    background-color: white;
    /* background-color: red; */
}
.primary-item-ncd{
    position: relative;
    width: 100%;
    margin-top: 36px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: olive; */
}
.title-about-us{
    position: relative;
    text-align: center;
    color: #163286;
    font-size: 47px;
    font-family: 'ceraproboldsuper', arial, sans-serif;
    /* background-color: #0070af; */
}
.komen{
    width: 100%;
    height: fit-content;
    display:flex;
    justify-content: space-between;
    /* background-color:yellow; */
}
.petik1, .petik2{
    width: 100px;
    height: 90px;
    /* background-color: white; */
}
.petik1{
    align-self: self-start;
}
.petik2{
    align-self: self-end;
    /* background-color: white; */
}
.komen-container{
    width: 100%;
    height: 170px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    /* padding: 20px 0px; */
    /* background-color: blue; */
}
.komen-container .container-isi-komen:nth-last-child(1){
    padding-top: 22px;
}
.komen-container .container-isi-komen:nth-last-child(3){
    padding-top: 20px;
}
.container-isi-komen{
    width: 100%;
    height: auto;
    /* background-color: #841111; */
}
.isi-komen{
    padding: 2%;
    text-align: center;
    font-size: 18px;
    color: #163286;
    /* background-color: #8B5CF6; */
}

.sliderncd{
    width:90%;
    height: auto;
    margin-bottom: 3%;
    /* background-color: #EC4899; */
}
.itemncd{
    width: 360px;
    height: 100px;
    position: relative;
    text-align: center;
    padding: 0 1% 0 1%;
    font-size: 9px;
    border-radius: 10px;
    margin-top: 5%;
    filter: blur(1px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    /* border: 2px solid black; */
    /* background-color: #841111; */
}
.itemncd img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50px;
    background-color: whitesmoke;
}
.itemncd h1{
    width: 200px;
    color: #163286;
    /* background-color: aqua; */
}
.itemncd p{
    width: 200px;
    color: #163286;
    /* background-color: aqua; */
}
.itemncd.is-selected{
    filter: blur(0px);
    font-size: 13px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: end;
}
.itemncd.is-selected h1{
    width: fit-content;
}
.itemncd.is-selected img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50px;
    /* background-color: saddlebrown; */
}
/* ============================================================= */
/* ============================================================= */
/* ============================================================= */

/* ============================================================= */
/* ========================= INSTAGRAM ========================= */
/* ============================================================= */
.cover-instagram-ijb-ncd{
    width: 100%;
    padding-top: 5%;
    z-index: 1;
    position: relative;
    border-radius: 0 0 50px 50px;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
}
.title-instagram-ijb-ncd{
    background-color: transparent;
    /* background-color: aquamarine; */
}
.title-instagram-ijb-ncd h1{
    color: white;
    text-align: center;
    font-size: 36px;
    /* background-color: yellow; */

}
.card-text-product-ncd{
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 3%; */
    /* background-color: orange; */
}
.card-slider-product-row1-ncd{
    --width:300px; --height: 400px; --quantity:10;
    width: 80%;
    height: var(--height);
    overflow: auto;
    -ms-overflow-style: none;
    display: flex;
    justify-content: center;
    border: 2px solid white;
    gap: 2%;
    border-radius: 20px;
    /* background-color: violet; */
}
.card-slider-product-row1-ncd:hover .card_ncd{
    animation-play-state: paused!important;
}
.card-slider-product-row1-ncd .card_ncd:hover{
    filter: grayscale(0)!important;
    filter: contrast(110%)!important;
    width: 320px!important;
    height: 320px!important;
    margin-left: -10px!important;
}
.card-slider-product-row1-ncd .home-instagram-feed-ijb-ncd{
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    display: flex;
    position: relative;
    scroll-snap-align: start;  
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    align-items: center;
    /* background-color: yellowgreen; */
}
.card-slider-product-row1-ncd::-webkit-scrollbar{
    display: none;
}
.card-slider-product-row1-ncd .home-instagram-feed-ijb-ncd .card_ncd {
    filter: grayscale(1);
    width: var(--width);
    height: var(--height);
    position: absolute;
    animation:  autorun 20s linear infinite;
    animation-delay: calc((20s / var(--quantity)) * (var(--position) - 6.5 ));
    height: 300px;
    cursor:pointer;
    /* right: 100%; */
    /* background-color: brown; */
}
@keyframes autorun{
    from{
        left:100%;
    }to{
        left: calc(var(--width) * -1);
    }
}
.card-slider-product-row1-ncd .home-instagram-feed-ijb-ncd .card_ncd .card_image_ncd {
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 0 0;
    /* background: white; */
}
.card-slider-product-row1-ncd .home-instagram-feed-ijb-ncd .card_ncd .card_image_ncd img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.link-instagram-ijb-ncd{
    width: 144px;
    height: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    align-self: center;
    margin-top: 395px;
    border-radius: 20px;
    background-color: white;
}
.link-instagram-ijb-ncd a{
    text-decoration: none;
    color: #163286;
    font-family:'cerapromedium', arial, sans-serif;
}
/* ============================================================= */
/* ============================================================= */
/* ============================================================= */

/* ============================================================= */
/* ======================= STAY CONNECTED ====================== */
/* ============================================================= */

.cover-stay-connected-ncd{
    width: 100%;
    height: 70vh;
    position: relative;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
    /* background-color: #25d366; */
}
.container-stay-connected-ncd{
    width: 100%;
    height: fit-content;
    display: flex;
    position: relative;
    border-radius: 0 0 50px 50px;
    background-color: white;
    padding: 15px 0 5px 0;
    /* background-color: yellow; */
}
.title-stay-connected {
    width: 40%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    padding-right: 5%;
    /* background-color: saddlebrown; */
}
.title-stay-connected .square-header-background-2{
    width: 300px;
    height: 300px;
    position: absolute;
    margin-top: -91%;
    margin-right: 50%;
    border: solid #DCE0ED 27px;
    border-radius: 45px;
    transform:  rotate(45deg);
    /* background-color: #000000; */
}
.title-stay-connected h2, h2-1{
    width: fit-content;
    position: relative;
    font-size: 45px;
    text-align: right;
    color: #163286;
    font-family: 'ceraproboldsuper', arial, sans-serif;
    /* background-color: #25d366;    */
}
.title-stay-connected h2-1{
    background: rgb(22,50,134);
    background: linear-gradient(0deg, rgba(22,50,134,1) 35%, rgba(22,79,182,1) 100%);
    width: fit-content;
    padding: 0 18px;
    color: white;
    position: relative;
    border-radius: 30px;
}
.container-email-content-ncd{
    width: 60%;
    padding: 5% 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* background-color: crimson; */
}
.container-email-content-ncd .full-color-square-ncd-2{
    width: 200px;
    height: 200px;
    position: absolute;
    margin-top: 36%;
    margin-left: 61%;
    border-radius: 18px;
    transform:  rotate(45deg);
    background: rgb(220,224,237);
    background: linear-gradient(207deg, rgba(220,224,237,1) 0%, rgba(255,255,255,1) 72%);
}
.container-email-content-ncd .content-email-connected-ncd{
    position: relative;
    width: fit-content;
    margin-left:5% ;
    display: flex;
    flex-direction: column;
    /* background-color: rgba(43,172,255,0.9221813725490196); */
}
.container-email-content-ncd .content-email-connected-ncd input{
    border-radius: 50px;
    border:  1px solid #163286;
    font-family: 'ceraprobold', arial, sans-serif;
    margin-top: 2%;
    padding: 0 3%;
    width: 20rem;
    height: 2rem;
}
.container-email-content-ncd .content-email-connected-ncd input::placeholder{
    text-align: center;
    color:  #163286;
    font-family: 'ceraprobold', arial, sans-serif;
}
.container-email-content-ncd .content-email-connected-ncd p{
    font-size: 18px;
    color: #163286;
    font-family: 'ceraprolight', arial, sans-serif;
    /* background-color: #25d366; */
}
.content-email-connected-ncd b{
    color: #163286;
    font-family: 'ceraprobold', arial, sans-serif;
}
/* ============================================================= */
/* ============================================================= */
/* ============================================================= */

/* 222222222222222222222222222222222222222222222222222222222222 */
/* 22222222222222222222 HEADER OUR PRODUCT 22222222222222222222 */
/* 222222222222222222222222222222222222222222222222222222222222 */
.container-header-products-ijb{
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
}
.container-header-products-ijb .container-img-hp-ijb-ncd{
    height: 72vh;
    display: flex;
    position: relative;
}
.container-img-hp-ijb-ncd .title-product-header{
    width: 100%;
    height: 100%;
    padding: 3%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: absolute;
    /* background-color: #25d366; */
}
.title-product-header h1{
    font-family:'ceraprobold', arial, sans-serif;
    color: white;
    font-size: 3rem;
}
.title-product-header h2 i{
    font-family:'ceraprobold', arial, sans-serif;
    color: white;
    font-size: 2rem;
    letter-spacing: 1px;
}
.container-header-products-ijb .container-img-hp-ijb-ncd img{
    width: 100%;
    height: 100%;
    object-fit:fill;
    position: relative;
    border-radius: 0 0 50px 50px;
}
.container-header-products-ijb .container-choose-ijb-ncd{
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    /* background-color: yellow; */
}
.container-choose-ijb-ncd .square-background-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    overflow: hidden;
    /* background-color: violet; */
}
.square-background-container .full-color-square-2{
    width: 200px;
    height: 200px;
    position: relative;
    margin-top: 18%;
    border-radius: 18px;
    transform:  rotate(45deg);
    background: rgb(23,51,135);
    background: linear-gradient(9deg, rgba(23,51,135,1) 12%, rgba(41,70,150,1) 100%);
}
.square-background-container .square-header-background-2{
    width: 300px;
    height: 300px;
    position: relative;
    margin-top: -14%;
    margin-right: -3%;
    border: solid #3967BD 27px;
    border-radius: 45px;
    transform:  rotate(45deg);
    /* background-color: #000000; */
}
.container-choose-ijb-ncd .content-choose{
    width: 100%;
    height: 72vh;
    position: relative;
    padding: 3% 5%;
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    /* background-color: red; */
}
.item1, .item3{
    width: 20%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    /* background-color: blueviolet; */
}
.item1 img, .item3 img, .item4 img, .item5 img, .item6 img{
    width: 100px;
    height: 100px;
}
.item1 h3, .item3 h3{
    color: white;
    text-align: center;
}
.item2{
    width: 50%;
    height: 40%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 18px;
    align-content: flex-start;
    /* background-color: black; */
}
.item2shadow{
    display: none;
}
.item2 h2, .item2 h1{
    width: 100%;
    text-align: center;
    height: fit-content;
    color: white;
    /* background-color: violet; */
}
.item2 h2{
    font-size: 33px;
}
.item2 h1{
    font-size: 45px;
}
.item4, .item6{
    width: 20%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: sienna; */
}
.item4 h3, .item6 h3{
    color: white;
    text-align: center;
}
.item5{
    width: 20%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: #163286; */
}
.item5 h3{
    color: white;
    text-align: center;
}
/* 222222222222222222222222222222222222222222222222222222222222 */
/* 2222222222222222222222 DETAIL PRODUCT 2222222222222222222222 */
/* 222222222222222222222222222222222222222222222222222222222222 */
.container-product-detail{
    width: 100%;
    /* height: 150vh; */
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
    /* background-color: violet; */
}
.container-all-items{
    width: 100%;
    height: auto;
    padding: 5%;
    border-radius: 0 0 50px 50px;
    background-color: white;
}
.container-each-items{
    width: 100%;
    height: 400px;
    display: flex;
    padding: 3%;
    position: relative;
    align-items: end;
    gap: 2%;
    border-bottom: 1px solid rgb(22,50,134);
    /* background-color: aqua; */
}
.container-each-items .content-img-product{
    width: 30%;
    height: 36%;
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 0 0 27px 27px;
    background-color: rgb(22,50,134);
    /* background-color: yellow; */
}
.content-img-product img{
    width: 300px;
    height: 300px;
    position: relative;
    object-fit:contain;
    margin-top: -150px;
    /* background-color: #163286; */
}
.container-each-items .content-text-product{
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* background-color:pink; */
}
.container-each-items:nth-child(2) .content-text-product{
    order: -1;
}

.container-each-items:nth-child(3) .content-img-product img{
    margin-top: -190px;
}
.requestquote{
    width: fit-content;
    height: fit-content;
    /* background-color: black; */
}
.container-each-items .content-text-product h1{
    font-family: 'çeraprobold', arial, sans-serif;
    font-size: 36px;
    color: rgb(22,50,134);
}
.container-each-items .content-text-product p{
    font-family: 'çerapromedium', arial, sans-serif;
    color: rgb(22,50,134);
    /* background-color: yellowgreen; */
}
.container-each-items .content-text-product button{
    width: fit-content;
    background-color: red;
    border-radius: 0 0 9px 9px;
    border: 0px;
    cursor: pointer;
    margin-top: 1rem;
    padding: .5rem 3rem;
    color: white;
    font-family: 'çerapromedium', arial, sans-serif;
}
/* ============================================================ */
/* ===========================FOOTER=========================== */
/* ============================================================ */
.container-footer{
    width: 100%;
    height: 34vh;
    overflow: hidden;
    position: relative;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
}
.countainer-form-ncd{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* align-items: center; */
    /* position: relative; */
    /* background-color: turquoise; */
}
.countainer-form-ncd .full-color-square-ncd-3{
    width: 250px;
    height: 250px;
    position: absolute;
    margin-top: 0%;
    margin-left: -5%;
    border-radius: 18px;
    transform:  rotate(45deg);
    background: rgb(22,50,134);
    background: linear-gradient(117deg, rgba(22,50,134,1) 35%, rgba(22,79,182,1) 100%);
}
.container-list-footer-ijb-ncd{
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    gap: 10px;
    /* background-color: yellowgreen; */
}
.list-menu-footer-ijb-ncd {
    width: 100%;
    height: 72px;
    display: flex;
    justify-content:center;
    align-items: center;
    list-style: none;
    gap: 0.5%;
    /* background-color:red */
}
.list-menu-footer-ijb-ncd li {
    width: 117px;
    /* background-color: #25d366;  */
} 
.list-menu-footer-ijb-ncd li a {
    width: 100%;
    height: 30px;
    font-size: 12px;
    text-decoration: none;
    color: white;
    font-family: 'cerapromedium', arial, sans-serif;
    transition: 0.3s; 
    display: flex;
    justify-content: center;
    align-items: center;
    /* cursor: pointer; */
    /* z-index: 1; */
    /* background-color:yellow; */
}
.list-menu-footer-ijb-ncd li a:before {
    content: "";
    position: absolute;
    bottom: -6px;
    width: 5%;
    height: 4px;
    background-color: grey;
    border-radius: 8px 8px 0 0;
    opacity: 0;
    transition: 0.3s;
}
.list-menu-footer-ijb-ncd li a:not(.is-active):hover:before{
    opacity: 1;
	bottom: 20;
}
.list-menu-footer-ijb-ncd li a:not(.is-active):hover{
    color:red;
}
.container-logo-ijb-ncd{
    margin: 0 auto;
    width: 90px;
    height: 90px;
    /* background-color: #000000; */
}
.container-logo-ijb-ncd img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    /* background-color: #0070af; */
}
.countainer-form-ncd p {
    font-family: 'ceraprolight', arial, sans-serif;
    font-size: 18px;
    text-align: center;
    color: white;
    margin-bottom: 10px;
    /* background-color: aquamarine;     */
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 HEADER OUR STORY 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-header-story-ijb{
    width: 100%;
    height: fit-content;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
}
.container-header-story-ijb .container-img-story-ijb-ncd{
    height: 54vh;
    display: flex;
    position: relative;
}
.container-header-story-ijb .container-img-story-ijb-ncd:after{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 39%, rgba(22,50,134,1) 44%, rgba(169,180,210,0) 61%, rgba(255,255,255,0) 100%);
    /* background-color: #fff; */
}
.container-img-story-ijb-ncd .title-story-header{
    width: 100%;
    height: 100%;
    padding: 3%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: absolute;
    z-index: 1;
    /* background-color: #25d366; */
}
.title-story-header h1{
    font-family:'ceraprobold', arial, sans-serif;
    color: white;
    font-size: 3rem;
}
.title-story-header h2 i{
    font-family:'ceraprobold', arial, sans-serif;
    color: white;
    font-size: 2rem;
    letter-spacing: 1px;
}
.container-header-story-ijb .container-img-story-ijb-ncd img{
    width: 100%;
    height: 100%;
    object-fit:cover;
    /* background-color: yellowgreen; */
}
.container-header-story-ijb .container-our-journey-ijb{
    width: 100%;
    /* background-color: yellowgreen; */
}
.container-our-journey-ijb .detail-story-container-ijb{
    width: 100%;
    height: 36vh;
    position: relative;
    /* background-color: #194949; */
}
.detail-story-container-ijb .story{
    width: 100%;
    position: absolute;
    inset: 0 0 0 0;
    display: flex;
    padding: 0 20%;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .5s;
    overflow: hidden;
    /* background-color: slateblue; */
}
.detail-story-container-ijb .story h2{
    color: white;
    text-align: center;
    font-size: 27px;
    /* background-color: #0070af; */
}
.detail-story-container-ijb .story.active{
    opacity: 1;
    z-index: 2;
}
.container-header-story-ijb .tahun-story-container-ijb{
    width: 100%;
    height: 5rem;
    display: flex;
    background-color: rgba(212,209,211,1);
}
.tahun-story-container-ijb .card-story-container-ijb{
    background: rgb(212,209,211);
    background: linear-gradient(90deg, rgba(212,209,211,1) 0%, rgba(253,253,253,1) 91%);
    box-shadow: 15px 0px 0px 0px rgb(212,209,211);
    height: 100%;
    position: relative;
    width: 25%;
    padding-top: 5px;
    text-align: center;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    
}
.card-story-container-ijb:nth-last-child(1) {
    border-radius: 0px;
}
.card-story-container-ijb:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-story-container-ijb p{
    color: #163286;
    font-weight: 100;
    font-family: 'cerapromedium', arial, sans-serif;
    /* background-color: yellow; */
}
.tahun-story-container-ijb .card-story-container-ijb::before{
    transition:left 1s ;
    content: "";
    left: 0;
    position: absolute;
    top: 5px;
    /* background-color: yellowgreen; */
    opacity: 0;
}
.tahun-story-container-ijb .card-story-container-ijb.active::before{
    border-bottom: 15px solid #F5F5F5;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    content: "";
    left: 70%;
    position: absolute;
    top: -15px;
    opacity: 1;
    transition:left 1s;
    /* z-index: 99; */
}
.nexttombol{
    width: 50px;
    height: 50px;
    color: white;
    display: none;
    /* background-color: red; */
}
.prevtombol{
    display: none;
    width: 50px;
    height: 50px;
    /* background-color: blue; */
    color: white;
}
.container-header-story-ijb .container-taglines-ijb-ncd{
    width: 100%;
    height: fit-content;
    display: flex;
    /* background-color: yellow; */
}
.container-taglines-ijb-ncd .content-taglines-ijb-ncd{
    width: 35%;
    display: flex;
    padding: 5% 5%;
    /* background-color: violet; */
}
.container-taglines-ijb-ncd .isi-tagline-container{
    width: 65%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #25d366; */
}
.isi-tagline-container p{
    width: 810px;
    padding-top: 50px;
    color:white;
    font-size: 22px;
    font-family: 'ceraprolight', arial, sans-serif;
    /* background: blue; */
}
.petik1-1, .petik2-2{
    width: 30px;
    height: 25px;
    object-fit: fill;
    /* background-color: red; */
}
.petik2-2{
    margin-bottom: 12%;
    align-self: self-end;
    /* background-color: red; */
}
.tulisan-tagline{
    padding: 18px 0px;
    /* background-color: blue; */
}
.judul-tagline:nth-child(2){
    margin-left: 30px;
}
.judul-tagline:nth-child(3){
    margin-left: 50px;
}
.judul-tagline:nth-child(4){
    margin-left: 80px;
}
.judul-tagline{
    width: 100%;
    height: fit-content;
    display: flex;
    font-size: 63px;
    font-weight: bolder;
    font-family: 'ceraprobold';
    text-align: center;
    line-height: 81%;
    color: white;
    /* background-color: #8B5CF6; */
}
.flipM{
    height: fit-content;
    margin-top: 2px;
    color: white;
    font-weight: bolder;
    font-family: 'ceraprobold';
    transform: rotateX(180deg);
}
.flipE{
    color: white;
    font-weight: bolder;
    font-family: 'ceraprobold';
}
/* 33333333333333333333333333333333333333333333333333333333333 */
/* 3333333333333333333333333 MISSION 3333333333333333333333333 */
/* 33333333333333333333333333333333333333333333333333333333333 */
.container-mission-values-ijb{
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    background-color:transparent;
    /* background-color: #25d366; */
}
.container-mission-values-ijb .container-detail-mission-ijb{
    width: 100%;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
    /* background-color: grey; */
}
.container-detail-mission-ijb .double-container-mission-ijb{
    width: 100%;
    height: fit-content;
    display: flex;
    border-radius: 0 0 50px 50px;
    background-color: white;
}
.double-container-mission-ijb .content-mission-ijb{
    width: 35%;
    display: flex;
    padding: 6% 5%;
    /* background-color: violet; */
}
.content-mission-ijb h1{
    color: #163286;
    font-family: 'ceraproboldsuper', Arial, Helvetica, sans-serif;
    font-size: 45px;
    margin: 0 13%;
    /* background-color: #25d366; */
}
.double-container-mission-ijb .isi-mission-container{
    width: 65%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: aqua; */
}
.isi-mission-container p{
    width: 810px;
    color:#163286;
    font-size: 22px;
    font-family: 'ceraprolight', arial, sans-serif;
    /* background: yellow; */
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 33333333333333333333333333 VALUES 33333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-mission-values-ijb .container-values-ijb-ncd{
    width: 100%;
    height: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
}
.container-values-ijb-ncd .square-background-container-values{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    overflow: hidden;
    /* background-color: violet; */
}
.square-background-container-values .full-color-square-3{
    width: 200px;
    height: 200px;
    position: relative;
    margin-top: 36%;
    border-radius: 18px;
    transform:  rotate(45deg);
    background: rgb(23,51,135);
    background: linear-gradient(9deg, rgba(23,51,135,1) 12%, rgba(41,70,150,1) 100%);
}
.square-background-container-values .square-header-background-3{
    width: 300px;
    height: 300px;
    position: relative;
    margin-top: -14%;
    margin-right: -3%;
    border: solid #3967BD 27px;
    border-radius: 45px;
    transform:  rotate(45deg);
    /* background-color: #000000; */
}
.container-values-ijb-ncd .content-values{
    width: 100%;
    height: 100%;
    position: relative;
    padding: 3% 3%;
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    /* background-color: red; */
}
.values1, .values3{
    width: 333px;
    height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    /* background-color: blueviolet; */
}
.values4, .values6{
    width: 320px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: sienna; */
}
.values2{
    width: 40%;
    height: 270px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    justify-content: center;
    padding-bottom: 1%;
    /* background-color: black; */
}
.values5{
    width: 320px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    /* background-color: #163286; */
}
.values1 p, .values3 p, .values4 p, .values5 p, .values6 p{
    color:white;
    text-align: center;
    margin-top: 5%;
}
.values1 img, .values3 img, .values4 img, .values5 img, .values6 img{
    width: 100px;
    height: 100px;
}
.values1 h3, .values3 h3, .values4 h3, .values6 h3, .values5 h3{
    color:#163286;
    text-align: center;
    background-color: white;
    border-radius: 50px;
    padding: 0 20px;
    margin-top: 5%;
    font-family: 'ceraprobold', arial, sans-serif;
}
.values2shadow{
    display: none;
}
.values2 h1{
    height: fit-content;
    font-size: 45px;
    width: fit-content;
    padding: 0 1.5rem;
    color: #163286;
    border-radius: 50px;
    font-family: 'ceraproboldsuper', arial, sans-serif;
    background-color: white;
    border-radius: 50px;
    text-align: center;
    /* background-color: violet; */
}
/* 3333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 STRATEGIC PARTNER 333333333333333333333 */
/* 3333333333333333333333333333333333333333333333333333333333333 */
.container-strategic-partner-ijb{
    width: 100%;
    height: fit-content;
    overflow: hidden;
    position: relative;
    margin-top: -54px;
    border-radius: 0 0 50px 50px;
    background-color: white;
    /* background: rgb(22,50,134); */
    /* background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%); */
}
.container-strategic-partner-ijb .container-img-strategic-ncd{
    width: 100%;
    height: 80vh;
    display: flex;
    position: relative;
    /* background-color: #25d366; */
}
.container-strategic-partner-ijb .container-img-strategic-ncd:after{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
    /* background-color: #fff; */
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 39%, rgba(22,50,134,1) 44%, rgba(169,180,210,0) 61%, rgba(255,255,255,0) 100%);
}
.container-strategic-partner-ijb .container-img-strategic-ncd img{
    width: 100%;
    height: 100%;
    object-fit:cover;
    object-position: right;
    position: relative;
    /* background-color: yellowgreen; */
}
.container-img-strategic-ncd .title-strategig-header{
    width: fit-content;
    padding: 3%;
    display: flex;
    bottom: 27%;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    /* background-color: #25d366; */
}
.title-strategig-header h1{
    width: fit-content;
    font-family:'ceraprobold', arial, sans-serif;
    color: white;
    font-size: 3rem;
    /* background-color: #25d366; */
}
.title-strategig-header h2 i{
    font-family:'ceraprobold', arial, sans-serif;
    color: white;
    font-size: 2rem;
    letter-spacing: 1px;
    /* background-color: #DCE0ED; */
}
.container-strategic-partner-ijb .container-content-card-sp-ncd{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-shrink: 1;
    align-items: flex-start;
    justify-content: space-evenly;
    position: relative;
    padding-bottom: 2%;
    gap: 18px;
    box-shadow:0px 0px 50px 50px white;
    background-color: white;
}
.card-wow-coffee-ncd, .card-bisi-ncd, .card-cargoLot-ncd, .card-cakravala-ncd{
    width: 30%;
    display: flex;
    margin-top: -100px;
    flex-direction: column;
    position: relative;
    align-items: center;
    padding-bottom: 2%;
    /* background-color:#000000; */
}

.card-wow-coffee-ncd a, .card-bisi-ncd a, .card-cargoLot-ncd a, .card-cakravala-ncd a{
    width: 190px;
    color: #163286;
    text-decoration: none;
    /* background-color: yellowgreen; */
}
.card-wow-coffee-ncd img, .card-bisi-ncd img, .card-cargoLot-ncd img, .card-cakravala-ncd img{
    width: 100%; 
    object-fit: cover;
    border-radius: 100%;
    /* background-color:peru; */
}
.card-wow-coffee-ncd h3 a, .card-bisi-ncd h3 a, .card-cargoLot-ncd h3 a, .card-cakravala-ncd h3 a{
    width: fit-content;
    color:#163286;
    text-align: center;
    text-decoration: none;
    display: flex;
    margin-top: 20px;
    font-family: 'ceraprobold', arial, sans-serif;
    /* background-color: aliceblue; */
}
.card-wow-coffee-ncd p, .card-bisi-ncd p, .card-cargoLot-ncd p, .card-cakravala-ncd p{
    width: 100%;
    margin-top: 20px;
    text-align: center;
    color: #163286;font-size: 0.9rem;
    font-family: 'cerapromedium', arial, sans-serif;
    /* background-color:yellow; */
}
.card-read-more {
    display: block;
    opacity: 0;
    height: 0;
    color: #163286;
    font-family: 'cerapromedium', arial, sans-serif;
    transition: all 0.5s;
    /* background-color: violet; */
}
.card-read-more--open{
    display: block;
    opacity: 1;
    height: auto;
}
.read-more-btn{
    transition: all 0.5s;
    position: absolute;
    bottom: 0;
    cursor: pointer;
    font-family: 'ceraproboldsuper', arial, sans-serif;
    /* background-color: yellow; */
}
.container-button-sp-ijb{
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    background-color: white;
}
.container-button-sp-ijb button{
    padding: 10px 18px;
    height: fit-content;
    border-radius: 30px;
    border: none;
    gap: 9px;
    align-items: center;
    display: flex;
    cursor: pointer;
    color: white;
    z-index: 1;
    background-color: #163286;
}
.container-button-sp-ijb button img{
    height: 100%;
    width: 30px;
    object-fit: cover;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 3333333333333333333333333 OUR TEAM 3333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-our-team-ijb{
    width: 100%;
    height: fit-content;
    overflow: hidden;
    position: relative;
    margin-top: -54px;
    z-index: -1;
    /* border-radius: 0 0 50px 50px; */
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
}
.container-our-team-ijb .container-img-team-ncd{
    width: 100%;
    height: 72vh;
    display: flex;
    position: relative;
    /* background-color: #25d366; */
}
.container-our-team-ijb .container-img-team-ncd::after{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    /* background-color: #fff; */
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,50,134,1) 44%, rgba(169,180,210,0) 61%, rgba(255,255,255,0) 100%);
}
.container-our-team-ijb .container-img-team-ncd img{
    width: 100%;
    height: 100%;
    object-fit:cover;
    position: relative;
    /* filter: blur(3px); */
    /* background-color: yellowgreen; */
}
.container-img-team-ncd .title-team-header{
    width: fit-content;
    padding: 3%;
    display: flex;
    bottom: 27%;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    /* background-color: #25d366; */
}
.title-team-header h1{
    width: fit-content;
    font-family:'ceraprobold', arial, sans-serif;
    color: white;
    font-size: 3rem;
    /* background-color: #25d366; */
}
.title-team-header h2 i{
    font-family:'ceraprobold', arial, sans-serif;
    color: white;
    font-size: 2rem;
    letter-spacing: 1px;
    /* background-color: #DCE0ED; */
}
.container-our-team-ijb .container-point-expert-ijb{
    width: 100%;
    height: 50vh;
    padding: 0 5%;
    position: relative;
    box-shadow:0px 0px 50px 60px #163286;
    background-color:#163286;
    /* background-color: violet; */
}
.container-point-expert-ijb ul.circle-dots{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    margin-top: -50px;
    justify-content: space-between;
    /* background-color: yellow; */
}
ul.circle-dots li{
    width: 360px;
    height: auto;
    font-size: 16px;
    color: white;
    /* background-color: darkgreen; */
}
ul.circle-dots li::marker{
    color: red;
    list-style-type: circle;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 APPROACH FOUNDER 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-approach-founder-ijb{
    width: 100%;
    height: fit-content;
    position: relative;
    padding: 2% 18%;
    /* overflow: hidden; */
    background-color: #163286;
}
.container-approach-founder-ijb .content-approach{
    width: 100%;
    height: 30em;
    /* background-color: red; */
}
.circle-image-founder{
    width: 210px;
    height: 210px;
    background-size: cover;
    border-radius: 50%;
    background-color: #DCE0ED;
    float: right;
    overflow:hidden;
    margin-top: 30px;
    shape-outside: circle();   
}
.content-approach img{
    height: 300px;
    float: right;
    margin-top: -60px;
    position: absolute;
    overflow: hidden;
    right: 19%;
}
.content-approach::before{
    content: '';
    position: absolute;
    /* background-color: #25d366; */
    background-color: transparent;
    width: 220px;
    height: 210px;
    bottom: 7.5%;
    right: 17.7%;
    z-index: 1;
    /* box-shadow: 0 100px 0 1px yellow; */
    box-shadow: 0 100px 0 1px #163286;
    border-radius: 50%;
}
.content-approach .circle-image-founder img{
    height: 300px;
    position: relative;
    left: -7%;
    margin-top: -90px;
    /* width: 200px; */
    /* margin-bottom: 40px; */
    /* object-fit:contain; */
    /* left: 77%; */
    /* transform: translate(-0%); */
    /* margin-left: -30px; */
    /* background-color: brown; */
}
.content-approach h1{
    width: fit-content;
    height: fit-content;
    padding: 0 1%;
    border-radius: 30px;
    color: #163286;
    background-color: white;
}
.content-approach p {
    margin-top: 1%;
    color: white;
}
.content-approach .right-text-founder{
    text-align: right;
    width: 70%;
    margin-top: 5%;
    z-index: 1;
    position: relative;
    /* background-color: violet; */
}
/* ========================================================================== */
/* ========================================================================== */
/* ========================================================================== */
/* F   O   R   M    S   E   C   T   I   O   N */
/* .container-form-request-ijb-ncd{
    position: absolute;
    width: 100%;
    height: 100vh;
    display: none;
} */
.form-input-quotation-ijb .square-background-container-2{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    overflow: hidden;
    /* background-color: violet; */
}
.square-background-container-2 .full-color-square-2{
    width: 200px;
    height: 200px;
    position: relative;
    margin-top: 50%;
    border-radius: 18px;
    transform:  rotate(45deg);
    background: rgb(23,51,135);
    background: linear-gradient(9deg, rgba(23,51,135,1) 12%, rgba(41,70,150,1) 100%);
}
.square-background-container-2 .square-header-background-2{
    width: 300px;
    height: 300px;
    position: relative;
    margin-top: -14%;
    margin-right: 18%;
    border: solid #3967BD 27px;
    border-radius: 45px;
    transform:  rotate(45deg);
    /* background-color: #000000; */
}
.container-form-request-ijb-ncd{
    width: 100%;
    height: 100vh;
    background-color:rgba(0,0,0,0.7);
    padding: 3%;
    z-index: 9;
    top:0;
    left: 0;
    position: fixed;
    display: none;
}
.container-form-request-ijb-ncd.active {
    display: flex;
    align-items: center;
}

.container-form-request-ijb-ncd.active .container-content-form-ijb-ncd{
    transition: all 300ms ease-in-out;
    transform: translate(-50%) scale(1);
}
.container-content-form-ijb-ncd{
    width: 500px;
    height: 540px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    display: flex;
    position: fixed;
    position: absolute;
    border-radius: 30px;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
    z-index: 18;
    transition: all 100ms ease-out;
    scroll-snap-type: y mandatory;
    /* background-color: #AA70BE; */
}
.form-input-quotation-ijb form{    
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2% 5%;
    gap: 4%;
    position: relative;
    /* background-color: #823205; */
}
.form-input-quotation-ijb .close-button-ijb{
    width: 30px;
    height: 30px;
    position: absolute;
    right: -35px;
    top: 0px;
    color: #163286;
    background-color: white;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.form-input-quotation-ijb form h2{
    width: 100%;
    font-family:'poppins-light', arial, sans-serif;
    font-size: 45px;
    color: white;
    text-align: center;
    z-index: 1;
    /* background-color:springgreen; */
}
.form-input-quotation-ijb form p{
    font-size: 15px;
    font-family:'poppins-light', arial, sans-serif;
    color: white;
    text-align: center;
    /* background-color: #194949; */
}
.form-input-quotation-ijb form input,
.form-input-quotation-ijb form button{
    border-radius: 30px;
    text-align: center;
}
.option-box{
    width: 100%;
    height: 15%;
    font-size: 18px;
    border-radius: 30px;
    text-align: center;
    color:white;
    border: white solid;
    background: transparent;
    position: relative;
    appearance: none;
}
option{
    position: absolute;
    color: white;
    background-color: #194949;
    text-align: center;
}
label{
    position: absolute;
}
.subject-box{
    width: 100%;
    height: 15%;
    font-size: 18px;
    color: white;
    z-index: 9;
    border: white solid;
    background: transparent;
}
.tampilan,
.tampilan2{
    display: none;
}
.subject-box::placeholder{
    width: 100%;
    color:white;
    font-weight: 600;
    font-family: 'ceraprobold', arial, sans-serif;
}
.name-box{
    width: 48%;
    height: 15%;
    font-size: 18px;
    color: white;
    border: white solid;
    background: transparent;
    z-index: 9;
    font-family: 'ceraprobold', arial, sans-serif;
}
.name-box::placeholder{
    color:white;
    font-family: 'ceraprobold', arial, sans-serif;
}
.phone-box{
    width: 48%;
    height: 15%;
    font-size: 18px;
    color:white;
    border: white solid;
    background: transparent;
    z-index: 9;
    font-family: 'ceraprobold', arial, sans-serif;
}
.phone-box::placeholder{
    color:white;
    font-family: 'ceraprobold', arial, sans-serif;
}
.submit-box{
    width: 100%;
    height: 10%;
    font-size: 18px;
    border: none;
    color:white;
    cursor: pointer;
    z-index: 9;
    background-color:red;
    font-family: 'ceraprobold', arial, sans-serif;
}
.submit-box:hover{
    color:white;
    cursor: pointer;
    background-color:#194A49;
}
.submit-loading-box{
    width: 100%;
    height: 10%;
    font-size: 18px;
    border: none;
    color:whitesmoke;
    display: none;
    background-color:#194949;
    cursor: wait;
    align-items: center;
    justify-content: center;
    gap: 5%;
    z-index: 9;
    /* background-color: yellow; */
}
.spinner-loading-box{
    width: 27px;
    height: 27px;
    display:inline-block;
    border: 5px solid whitesmoke;
    border-top-color:#FFCBCB;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
    /* background-color:red; */
}
.submit-done-box{
    width: 100%;
    height: 10%;
    font-size: 18px;
    border: none;
    color:whitesmoke;
    display:none;
    background-color: green;
    cursor:pointer;
    align-items: center;
    z-index: 9;
    gap: 10px;
    position: absolute;
    bottom: 0;
    justify-content: center;
}
.checklist-done{
    width: 9%;
    height: 80%;
}
/* 44444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 OUR EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444 */
.container-header-event-ijb{
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
}
.container-header-event-ijb .container-img-event-ijb-ncd{
    height: 72vh;
    display: flex;
    position: relative;
}
.container-img-event-ijb-ncd .title-event-header{
    width: 100%;
    height: 100%;
    padding: 3%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: absolute;
    /* background-color: #25d366; */
}
.title-event-header h1{
    font-family:'ceraprobold', arial, sans-serif;
    color: white;
    font-size: 3rem;
}
.title-event-header h2 i{
    font-family:'ceraprobold', arial, sans-serif;
    color: white;
    font-size: 2rem;
    letter-spacing: 1px;
}
.container-header-event-ijb .container-img-event-ijb-ncd img{
    width: 100%;
    height: 100%;
    object-fit:fill;
    position: relative;
    border-radius: 0 0 50px 50px;
}
/* 44444444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 DETAIL EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444444 */
.container-event-detail{
    width: 100%;
    height: fit-content;
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
    /* background-color: violet; */
}
.container-all-event{
    width: 100%;
    padding: 5%;
    border-radius: 0 0 50px 50px;
    background-color: white;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.container-each-event{
    width: 100%;
    display: flex;
    position: relative;
    align-items: end;
    gap: 2%;
    padding: 3rem 18px 18px 18px;
    border-bottom: 1px solid rgb(22,50,134);
    /* background-color: aqua; */
}
.container-each-event .content-img-event{
    width: 30%;
    height: 100%;
    display: flex;
    padding-bottom: 2%;
    justify-content: center;
    border-radius: 27px 0 27px 0;
    background-color: rgb(22,50,134);
    /* background-color: yellow; */
}
.content-img-event img{
    width: 280px;
    height: 230px;
    object-fit:cover;
    margin-top: -120px;
    border-radius: 0 20px 0 20px;
    /* background-color: #163286; */
}
.container-each-event .content-text-event{
    width: 70%;
    display: flex;
    gap: 20px;
    padding: 5px;
    flex-direction: column;
    overflow: hidden;
    /* background-color:pink; */
}
.content-text-event ul{
    list-style-position: outside;
}
.content-text-event ul li{
    margin-left: 2rem;
    color: #163286;
    font-family: 'cerapromedium', arial, sans-serif;
}
.requestquote{
    width: fit-content;
    height: fit-content;
    /* background-color: black; */
}
.container-each-event .content-text-event h1{
    font-family: 'ceraprobold', arial, sans-serif;
    font-size: 30px;
    color: rgb(22,50,134);
}
.container-each-event .content-text-event p{
    font-family: 'cerapromedium', arial, sans-serif;
    font-size: 17px;
    color: rgb(22,50,134);
    /* background-color: yellowgreen; */
}
.container-each-event .event-colaps-btn{
    width: fit-content;
    background-color: red;
    border-radius: 0 0 9px 9px;
    border: 0px;
    cursor: pointer;
    margin-top: 1rem;
    padding: .5rem 3rem;
    color: white;
    transition: all 1s;
    bottom: 10px;
    z-index: 1;
    font-family: 'cerapromedium', arial, sans-serif;
}
.event-card-read-more{
    display: block;
    opacity: 0;
    height: 0;
    color:#163286;
    font-family: 'cerapromedium', arial, sans-serif;
    transition: all 1s;
    /* background-color: grey; */
}
.event-card-read-more{
    font-size: 17px;
    font-family: 'cerapromedium', arial, sans-serif;
}
.event-card-read-more--open{
    display: block;
    opacity: 1;
    height: fit-content;
    transition: all 1s;;
    /* background-color: pink; */
}

/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ==============================BIG PHONE 1080 PIXEL============================== */
/* ============================== MOBILE LAPTOP VIEW ============================== */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
@media screen and (max-width: 1080px){
/* ================== MENU ================== */
.menu-navbar-ncd{
    height: 80px;
}
.brand-logo-ncd a{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content:unset;
    padding-left: 18px;
}
.brand-logo-ncd a h1{
    width: fit-content;
}
.list-menu li .detailmenu {
    font-size: 12px;
}
.list-menu li .detailmenu:is(:link, :active, :visited).active:before {
    margin-bottom: 10px;
    width: 81px;
}
/* ================================================ */
/* |||||||||||||||||||||||||||||||||||||||||||||||| */
/* ================== HEADER ================== */
.header-img-fullsize-ncd{
    height: 430px;
}
.single-row-content-ncd-1 .full-color-square-ncd{
    margin-top: 180px;
}
.text-header-fliping{
    padding-left: 100px;
}
.text-header-fliping h1{
    font-size: 30px;
}
.text-header-fliping h6{
    font-size: 30px;
}
.single-row-content-ncd-2 .square-header-background{
    width: 250px;
    height: 250px;
    border: solid #DCE0ED 18px;
    margin-left: 60%;
    border-radius: 37px;
    margin-top: -180px;
}
/* ================================================ */
/* |||||||||||||||||||||||||||||||||||||||||||||||| */
/* ============ WHAT ABOUT US SECTION ============= */
.title-about-us{
    font-size: 40px;
}
.petik1, .petik2{
    width: 80px;
    height: 70px;
}
.sliderncd{
    width:800px;
}
.sliderncd{
    margin-bottom:36px;
}
.itemncd{
    width: 300px;
}
.komen-container{
    height: 190px;
}
.komen-container .container-isi-komen:nth-last-child(1){
    padding-top: 50px;
}
.komen-container .container-isi-komen:nth-last-child(3){
    padding-top: 30px;
}
/* ================================================= */
/* ||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ================= STAY CONNECTED ================ */
.cover-stay-connected-ncd{
    height: 400px;
    padding: 0 0 5px 0;
}
.title-stay-connected .square-header-background-2{
    border: solid #DCE0ED 18px;
}
.title-stay-connected h2, h2-1{
    font-size: 36px;
}
/* ================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ===================== FOOTER ===================== */
.container-footer{
    height: 200px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 222222222222222 HEADER OUR PRODUCT 222222222222222 */
.container-header-products-ijb .container-img-hp-ijb-ncd{
    height: 400px;
}
.container-header-products-ijb .container-choose-ijb-ncd{
    height: 450px;
}
.container-choose-ijb-ncd .content-choose{
    height: auto;
}
.item1, .item3, .item2{
    height: 180px;
}
.item4, .item6{
    height: 130px;
    justify-content: end;
}
.item5{
    height: 200px;
    justify-content: end;
}
.item2{
    padding-top: 0px;
}
.item2 h2{
    font-size: 27px;
}
.item2 h1{
    font-size: 36px;
}
.item1 img, .item3 img, .item4 img, .item5 img, .item6 img{
    width: 80px;
    height: 80px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 22222222222222222 DETAIL PRODUCT 22222222222222222 */
.container-all-items{
    padding: 5 0 27px 0;
}
.content-img-product img{
    width: 270px;
    height: 270px;
}
.container-each-items{
    padding: 1%;
    height: fit-content;
}
.container-each-items .content-text-product{
    gap: 20px;
}
/* ======================================================= */
/* 2222222222222222222222222222222222222222222222222222222 */
/* 22222222222222222 FORM DETAIL PRODUCT 22222222222222222 */

/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 HEADER OUR STORY 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-header-story-ijb .container-img-story-ijb-ncd{
    height: 360px;
}
.container-header-story-ijb .container-img-story-ijb-ncd img{
    object-position: -15rem;
}
.container-our-journey-ijb .detail-story-container-ijb{
    height: 270px;
}
.detail-story-container-ijb .story h2{
    font-size: 22px;
}
.tahun-story-container-ijb .card-story-container-ijb.active::before{
    left: 60%;
}
.container-taglines-ijb-ncd .content-taglines-ijb-ncd{
    padding: 5% 2%;
}
.judul-tagline{
    font-size: 45px;
}
.container-taglines-ijb-ncd .isi-tagline-container{
    justify-content: flex-start;
}
.isi-tagline-container p{
    padding-top: 0px;
    font-size: 18px;
    width: 630px;
}
.isi-mission-container p{
    font-size: 18px;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 33333333333333333333333333 VALUES 33333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-values-ijb-ncd .content-values{
    padding: 3% 1%;
}
.values1, .values3, .values4, .values6, .values5{
    width: 30%;
}
.values2{
    width: 36%;
}
.square-background-container-values .full-color-square-3{
    margin-top: 470px;
}
.square-background-container-values .square-header-background-3{
    margin-top: -200px;
    margin-right: -100px;
    border: solid #3967BD 20px;
}
/* 3333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 STRATEGIC PARTNER 333333333333333333333 */
/* 3333333333333333333333333333333333333333333333333333333333333 */
.container-strategic-partner-ijb{
padding-bottom: 15px;
}
.container-strategic-partner-ijb .container-img-strategic-ncd{
    height: 500px;
}

/* 333333333333333333333333333333333333333333333333333333333333 */
/* 3333333333333333333333333 OUR TEAM 3333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-our-team-ijb .container-img-team-ncd{
    height: 450px;
}
.container-our-team-ijb .container-img-team-ncd img{
    object-position: 0 -3rem;
}
.container-our-team-ijb .container-point-expert-ijb{
    padding-bottom: 18px;
    height: fit-content;
}
.container-point-expert-ijb ul.circle-dots{
    gap: 10px;
    align-content: flex-start;
}
ul.circle-dots li{
    width: 300px;
    height: fit-content;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 APPROACH FOUNDER 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-approach-founder-ijb{
    padding: 2% 90px
}
.content-approach img{
    right: 105px;
}
.content-approach::before{
    right: 85px;
}
.container-point-expert-ijb ul.circle-dots{
    justify-content:space-evenly;
}
/* 44444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 OUR EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444 */
.container-header-event-ijb .container-img-event-ijb-ncd{
    height: 400px;
}
/* 44444444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 DETAIL EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444444 */
.container-all-event{
    padding: 5 0 27px 0;
}
.content-img-event img{
    width: 240px;
    height: 240px;
    margin-top: -130px
}
.container-each-event .content-text-event{
    gap: 20px;
}
}
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ============================== BIG PHONE 820 PIXEL ============================= */
/* ============================== MOBILE LAPTOP VIEW ============================== */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
@media screen and (max-width: 820px){
/* ============ WHAT ABOUT US SECTION ============= */

.komen-container{
    height: 175px;
}
.komen-container .container-isi-komen:nth-last-child(1){
    padding-top: 60px;
}
.komen-container .container-isi-komen:nth-last-child(3){
    padding-top: 20px;
}
.isi-komen{
    font-size: 15px;
}    
/* ================================================ */
/* |||||||||||||||||||||||||||||||||||||||||||||||| */
/* ================= STAY CONNECTED ================ */
.cover-stay-connected-ncd{
    height: 300px;
}
.title-stay-connected .square-header-background-2{
    margin-top: -450px;
    margin-right: 80px;
    border: solid #DCE0ED 18px;
}
.title-stay-connected h2, h2-1{
    font-size: 30px;
}
.container-email-content-ncd .content-email-connected-ncd p{
    font-size: 15px;
    padding-right: 100px;
}
.container-email-content-ncd .content-email-connected-ncd p br{
    display: none;
}
.container-email-content-ncd .full-color-square-ncd-2{
    margin-left: 40%;
}
/* ================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ===================== FOOTER ===================== */
.container-footer{
    height: 130px;
}
.list-menu-footer-ijb-ncd {
    height: 45px;
}
.container-logo-ijb-ncd{
    width: 63px;
    height: 63px;
}
.countainer-form-ncd .full-color-square-ncd-3{
    width: 150px;
    height: 150px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 222222222222222 HEADER OUR PRODUCT 222222222222222 */
.container-header-products-ijb .container-img-hp-ijb-ncd{
    height: 330px;
}
.container-header-products-ijb .container-choose-ijb-ncd{
    height: 450px;
}
.title-product-header h1{
    font-size: 2rem;
}
.title-product-header h2 i{
    font-size: 1.5rem;
    letter-spacing: unset;
}
.square-background-container .full-color-square-2{
    width: 150px;
    height: 150px;
    margin-top: 220px;
}
.square-background-container .square-header-background-2{
    width: 200px;
    height: 200px;
    border: solid #3967BD 20px;
}
.item2{
    padding-top: 27px;
}
.item2 h2{
    font-size: 22px;
}
.item2 h1{
    font-size: 30px;
}
.item1 img, .item3 img, .item4 img, .item5 img, .item6 img{
    width: 70px;
    height: 70px;
}
.item1 h3, .item3 h3, .item4 h3, .item5 h3, .item6 h3{
    font-size: 13px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 22222222222222222 DETAIL PRODUCT 22222222222222222 */
.container-each-items .content-text-product{
    width: 60%;
}
.container-each-items{
    align-items: center;
}
.container-each-items .content-img-product{
    width: 40%;
    margin-top: 100px;
}
.content-img-product img{
    width: 250px;
    height: 250px;
}
.container-each-items:nth-child(3) .content-img-product img{
    margin-top: -170px;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 HEADER OUR STORY 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-header-story-ijb .container-img-story-ijb-ncd:after{
    background: linear-gradient(90deg, rgba(22,50,134,1) 9%, rgba(22,50,134,1) 34%, rgba(169,180,210,0) 61%, rgba(255,255,255,0) 100%);
}
.container-header-story-ijb .container-img-story-ijb-ncd img{
    object-position: right;
}
.title-story-header h1{
    font-size: 2rem;
}
.title-story-header h2 i{
    font-size: 1.5rem;
}
.detail-story-container-ijb .story{
    padding: 0 9%;
}
.container-header-story-ijb .tahun-story-container-ijb{
    height: 4rem;
}
.card-story-container-ijb h1{
    font-size: 20px;
}
.card-story-container-ijb p{
    font-size: 12px;
}
.tahun-story-container-ijb .card-story-container-ijb.active::before{
    left:55%;
    border-bottom: 10px solid #F5F5F5;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    top: -10px;
}
.petik1-1, .petik2-2{
    width: 25px;
    height: 20px;
}
.judul-tagline{
    font-size: 36px;
}
.isi-tagline-container p{
    padding-top: 0px;
    font-size: 15px;
    width: 500px;
}
.container-taglines-ijb-ncd .isi-tagline-container{
    justify-content: center;
}
.content-mission-ijb h1{
    font-size: 36px;
}
.isi-mission-container p{
    font-size: 15px;
    width: 500px;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 33333333333333333333333333 VALUES 33333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.values1 img, .values3 img, .values4 img, .values5 img, .values6 img{
    width: 80px;
    height: 80px;
}
.values1 h3, .values3 h3, .values4 h3, .values6 h3, .values5 h3{
    padding: 0 10px;
    font-size: 15px;
}
.values1 p, .values3 p, .values4 p, .values5 p, .values6 p{
    font-size: 15px;
}
.values5{
    height: 300px;
}
.values2{
    padding-bottom: 1.5rem;
}
.values2 h1{
    font-size: 36px;
}
.square-background-container-values .full-color-square-3{
    margin-top: 400px;
}
.square-background-container-values .square-header-background-3{
    margin-top: -240px;
    border: solid #3967BD 18px;
}
/* 3333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 STRATEGIC PARTNER 333333333333333333333 */
/* 3333333333333333333333333333333333333333333333333333333333333 */
.container-strategic-partner-ijb .container-img-strategic-ncd{
    height: 400px;
}
.container-strategic-partner-ijb .container-img-strategic-ncd:after{
    background: linear-gradient(90deg, rgba(22,50,134,1) 9%, rgba(22,50,134,1) 34%, rgba(169,180,210,0) 61%, rgba(255,255,255,0) 100%);
}
.container-strategic-partner-ijb .container-img-strategic-ncd img{
    object-position: -36rem -1rem;
}
.title-strategig-header h1{
    font-size: 2rem;
}
.title-strategig-header h2 i{
    font-size: 1.5rem;
}
.card-wow-coffee-ncd a, .card-bisi-ncd a, .card-cargoLot-ncd a, .card-cakravala-ncd a{
    width: 150px;
}
.card-wow-coffee-ncd h3 a, .card-bisi-ncd h3 a, .card-cargoLot-ncd h3 a, .card-cakravala-ncd h3 a{
    font-size: 14px;
}
.card-wow-coffee-ncd p, .card-bisi-ncd p, .card-cargoLot-ncd p, .card-cakravala-ncd p{
    font-size: 13px;
}

/* 333333333333333333333333333333333333333333333333333333333333 */
/* 3333333333333333333333333 OUR TEAM 3333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-our-team-ijb .container-img-team-ncd{
    height: 360px;
}
.container-our-team-ijb .container-img-team-ncd img{
    object-position: 0rem -2rem;
}
.title-team-header h1{
    font-size: 2rem;
}
.title-team-header h2 i{
    font-size: 1.5rem;
}
ul.circle-dots li{
    width: 200px;
    font-size: 13px;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 APPROACH FOUNDER 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-approach-founder-ijb .content-approach{
    height: fit-content;
    padding-bottom: 36px;
}
.content-approach h1{
    font-size: 1.5rem;
}
.content-approach p{
    font-size: 13px;
}
.circle-image-founder{
    width: 170px;
    height: 170px;
}
.content-approach .circle-image-founder img{
    height: 270px;
}
.content-approach img{
    height: 270px;
    right: 91px;
}
.content-approach::before{
    width: 180px;
    height: 130px;
    right: 75px;
    bottom: 43px;
}
.container-approach-founder-ijb{
    padding: 2% 80px
}
/* 44444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 OUR EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444 */
.container-header-event-ijb .container-img-event-ijb-ncd{
    height: 330px;
}
.title-event-header h1{
    font-size: 2rem;
}
.title-event-header h2 i{
    font-size: 1.5rem;
    letter-spacing: unset;
}
/* 44444444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 DETAIL EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444444 */
.container-each-event{
    /* align-items: center; */
    padding-top: 1rem;
}
.container-each-event .content-text-event{
    justify-content: space-evenly;
    gap: 15px;
}
.content-img-event img{
    width: 180px;
    height: 180px;
}
.container-each-event .content-text-event h1{
    font-size: 20px;
}
}
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ==============================BIG PHONE 768 PIXEL============================== */
/* ================================= TABLET VIEW ================================= */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */ 
    @media screen and (max-width: 768px){
/* ================== MENU ================== */
.menu-navbar-ncd{
    position:sticky;
    top: 0px;
    z-index: 999;
    height: 70px;
    padding: 0px;
}
.brand-logo-ncd{
    width: 50%;
}
.brand-logo-ncd a img{
    width: 40px;
    height: 40px;
}
.list-menu-navbar-ncd{
    width: 100%;
    position: absolute;
    justify-content: flex-end;
    align-items: center;
}
.list-menu-navbar-ncd li{
    position: relative;
    margin-top: 4%;
}
.list-menu{
    position: absolute;
    height: 100vh;
    z-index: -1;
    margin-top: 70px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    transform: translateY(-100%);
    background: rgb(22,50,134);
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
    transition: all 1s;
    overflow-y: hidden;
    background-color: #25d366;
    scroll-snap-type: y mandatory;
}
.list-menu li .detailmenu:is(:link, :active, :visited).active {
    position: relative;
    background-color: red;
    border-radius: 0 18px 0 18px;
}.list-menu li .detailmenu:is(:link, :active, :visited).active:before {
    bottom: -18px;
}
nav ul.slider {
    top: 0;
    transform: translateY(0);
}
.square-background-container-menu{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
}
.square-background-container-menu .square-header-background-4{
    width: 300px;
    height: 300px;
    position: relative;
    margin-top: 100px;
    margin-right: -3%;
    border: solid #3967BD 27px;
    border-radius: 45px;
    transform:  rotate(45deg);
}
.square-background-container-menu .full-color-square-4{
    width: 200px;
    height: 200px;
    position: relative;
    margin-top: 400px;
    border-radius: 18px;
    transform:  rotate(45deg);
    background: rgb(23,51,135);
    background: linear-gradient(9deg, rgba(23,51,135,1) 12%, rgba(41,70,150,1) 100%);
}
.hamburger-menu-ncd{
    z-index: 3;
    display: flex;
}
/* ============================================ */
/* |||||||||||||||||||||||||||||||||||||||||||| */
/* ================== HEADER ================== */
.header-img-fullsize-ncd{
    height: 450px;
}
.single-row-content-ncd-1 .full-color-square-ncd{
    width: 150px;
    height: 150px;
}
.header-img-fullsize-ncd{
    height: 340px;
}
.single-row-content-ncd-1{
    width: 55%;
}
.text-header-fliping{
    padding-top: 100px;
    padding-left: 70px;
}
.text-header-fliping h1{
    font-size: 25px;
}
.text-header-fliping h6{
    font-size: 25px;
}
.single-row-content-ncd-2{
    width: 45%;
}
.single-row-content-ncd-2 .square-header-background{
    width: 200px;
    height: 200px;
    border: solid #DCE0ED 15px;
    margin-left: 60%;
    margin-top: -140px;
    border-radius: 27px;
}
.divider-ijb-ncd .divider-content-ncd-ijb h5{
    font-size: 27px;
}
/* ================================================ */
/* |||||||||||||||||||||||||||||||||||||||||||||||| */
/* ============ WHAT ABOUT US SECTION ============= */
.header-comment-ijb-ncd {
    padding: 0 20px;
    border-radius: 0 0 40px 40px;
}
.title-about-us{
    font-size: 36px;
}
.komen{
    height: fit-content;
}
.petik1, .petik2{
    width: 60px;
    height: 50px;
}
.sliderncd{
    width: 100%;
    margin-bottom:46px;
}
.itemncd{
    width: 250px;
}
.itemncd img{
    width: 40px;
    height: 40px;
}
.itemncd.is-selected{
    padding: 0;
}
.itemncd.is-selected h1{
    font-size: 18px;
}
.komen-container{
    height: 160px;
}
.komen-container .container-isi-komen:nth-last-child(1){
    padding-top: 30px;
}
.komen-container .container-isi-komen:nth-last-child(3){
    padding-top: 20px;
}
.isi-komen{
    font-size: 15px;
}  
/* ====================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ===================== INSTAGRAM ====================== */ 
.card-text-product-ncd{
    height: 360px;
}
.card-slider-product-row1-ncd{
    --width:220px;
    height: 270px;
}
.card-slider-product-row1-ncd .home-instagram-feed-ijb-ncd .card_ncd {
    height: 226px;
    width: 225px;
}
.link-instagram-ijb-ncd{
    margin-top: 265px; 
}
/* ====================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ================= STAY CONNECTED ================ */
.cover-stay-connected-ncd{
    height: 270px;
}
/* ================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ===================== FOOTER ===================== */
.countainer-form-ncd .full-color-square-ncd-3{
    width: 130px;
    height: 130px;
    border-radius: 9px;
    margin-top: 20px;
}
.countainer-form-ncd p {
    font-size: 14px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 222222222222222 HEADER OUR PRODUCT 222222222222222 */
.container-header-products-ijb .container-img-hp-ijb-ncd{
    height: 270px;
}
.container-header-products-ijb .container-choose-ijb-ncd{
    height: 400px;
}
.item1, .item3, .item2{
    height: 170px;
}
.item5{
    height: 190px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 22222222222222222 DETAIL PRODUCT 22222222222222222 */
.container-each-items .content-text-product h1{
    font-size: 27px;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 HEADER OUR STORY 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.judul-tagline{
    font-size: 27px;
}
.isi-tagline-container p{
    padding-top: 0px;
    font-size: 15px;
    width: 450px;
}
.content-mission-ijb h1{
    font-size: 27px;
}
.isi-mission-container p{
    width: 450px;
}
.isi-mission-container p br{
    display: none;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 33333333333333333333333333 VALUES 33333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.values2 h1{
    font-size: 27px
}
.values5{
    height: 360px;
}
.container-values-ijb-ncd .content-values{
    padding: 3% .5%;
}
.values1, .values3, .values4, .values6, .values5{
    width: 32%;
} 
.values2{
    width: 32%;
    padding-bottom: 0;
}
.square-background-container-values .full-color-square-3{
    margin-top: 470px;
}

/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 APPROACH FOUNDER 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-approach-founder-ijb{
    padding: 2% 60px
}
.content-approach img{
    right: 72px;
}
.content-approach::before{
    right: 55px;
    bottom: 41px;
}
/* 44444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 OUR EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444 */
.container-header-event-ijb .container-img-event-ijb-ncd{
    height: 270px;
}
/* 44444444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 DETAIL EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444444 */
.container-each-event .content-img-event{
    padding-bottom: 4%;
    margin-bottom: 5%;
}
}
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ==============================BIG PHONE 576 PIXEL============================== */
/* ============================== MOBILE LARGE VIEW ============================== */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
@media screen and (max-width: 576px){
/* ================== MENU ================== */
.brand-logo-ncd{
    width: 70%;
}
.brand-logo-ncd a img{
    width: 50px;
    height: 50px;
}
.list-menu li .detailmenu {
    font-size: 12px;
}
/* ====================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ======================= HEADER ======================= */
.header-img-fullsize-ncd {
    width: 100%;
    height: 350px;
}
.single-row-content-ncd-1{
    display: flex;
    justify-content: center;
    align-items: center;
}
.single-row-content-ncd-1{
    width: 100%;
    height: 100%;
    position: absolute;
}
.single-row-content-ncd-1 .full-color-square-ncd{
    margin-left: -100px;
}
.text-header-fliping{
    padding: 0;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.single-row-content-ncd-2{
    width: 100%;
    height: 100%;
    order: -1;
    position: relative;
}
.single-row-content-ncd-2 img{
    filter: blur(15px);
    width: 100%;
    height: 100%;
    top: 0%;
    right: 0;
}
.single-row-content-ncd-2 .square-header-background{
    position: absolute;
    z-index: 1;
}
.divider-ijb-ncd{
    height: 50px;
}
.divider-ijb-ncd .divider-content-ncd-ijb h5{
    font-size: 20px;
}
/* ====================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* =============== WHAT ABOUT US SECTION ================ */
.header-comment-ijb-ncd {
    padding:0;
    border-radius: 0 0 30px 30px;
}
.title-about-us{
    font-size: 27px;
}
.petik1, .petik2{
    width: 40px;
    height: 30px;
}
.flickity-page-dots {
    display: none;
}
.sliderncd{
    margin-bottom:10px;
}
.itemncd h1{
    font-size: 10px;
}
.itemncd.is-selected{
    margin-top: 15px;
}
.itemncd.is-selected img{
    width: 60px;
    height: 60px;
}
.itemncd.is-selected h1{
    font-size: 16px;
}
.primary-item-ncd{
    margin-top: 10px;
}
.komen-container{
    height: 170px;
}
.komen-container .container-isi-komen:nth-last-child(1){
    padding-top: 36px;
}
.komen-container .container-isi-komen:nth-last-child(3){
    padding-top: 10px;
}
.isi-komen{
    font-size: 15px;
}  
/* ====================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ===================== INSTAGRAM ====================== */
.cover-instagram-ijb-ncd{
    border-radius: 0 0 30px 30px;
}
.title-instagram-ijb-ncd h1{
    font-size: 27px;
}
.card-slider-product-row1-ncd .card_ncd:hover{
    width: 220px!important;
    height: 220px!important;
}
.card-slider-product-row1-ncd{
    border-radius: 10px;
    height: 270px !important;
}
.card-slider-product-row1-ncd .home-instagram-feed-ijb-ncd .card_ncd {
    height: 201px;
}
.link-instagram-ijb-ncd{
    margin-top: 270px;
}
/* ======================================================= */
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ==================== STAY CONNECTED =================== */
.cover-stay-connected-ncd{
    height: 270px;
}
.title-stay-connected .square-header-background-2{
    margin-top: -420px;
    margin-right: 36px;
    border: solid #DCE0ED 15px;
}
.title-stay-connected h2, h2-1{
    font-size: 20px;
}
.container-email-content-ncd .content-email-connected-ncd{
    margin-left: 0;
}
.container-email-content-ncd .content-email-connected-ncd input{
    width: 18rem;
    height: 1.8rem;
}
.container-email-content-ncd .content-email-connected-ncd p{
    padding: 0 27px 0 0;
}
.container-email-content-ncd .full-color-square-ncd-2{
    width: 180px;
    height: 180px;
    margin-top: 300px;
    margin-left: 100px;
}
/* ================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ===================== FOOTER ===================== */
.container-footer{
    height: 100px;
}
.countainer-form-ncd .full-color-square-ncd-3{
    margin-left: -60px;
    margin-top: 0;
}
.list-menu-footer-ijb-ncd {
    height: 30px;
}
.container-logo-ijb-ncd{
    width: 45px;
    height: 45px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 222222222222222 HEADER OUR PRODUCT 222222222222222 */
.container-header-products-ijb{
    border-radius: 0 0 27px 27px;
}
.container-header-products-ijb .container-img-hp-ijb-ncd img{
    border-radius: 0 0 27px 27px;
}
.container-header-products-ijb .container-img-hp-ijb-ncd{
    height: 200px;
}
.container-header-products-ijb .container-choose-ijb-ncd{
    height: 336px;
}
.title-product-header{
    line-height: 18px;
}
.title-product-header h1{
    font-size: 1.5rem;
    width: fit-content;
}
.title-product-header h2 i{
    font-size: 1rem;
}
.item1 h3, .item3 h3, .item4 h3, .item5 h3, .item6 h3{
    font-size: 12px;
}
.item2 h2{
    font-size: 18px;
}
.item2 h1{
    font-size: 22px;
}
.item1, .item3{
    width: 25%;
    height: 150px;
}
.item2{
    height: 150px;
}
.item4, .item6{
    width: 25%;
    height: 130px;
    justify-content: center;
}
.item5{
    width: 25%;
    height: 160px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 22222222222222222 DETAIL PRODUCT 22222222222222222 */
.container-all-items{
    border-radius: 0 0 27px 27px;
}
.container-each-items{
    justify-content: space-evenly;
}
.container-each-items .content-text-product h1{
    font-size: 23px;
}
.container-each-items .content-text-product p{
    font-size: 12px;
}
.container-each-items .content-text-product button{
    font-size: 12px;
    padding: .2rem 1.5rem;
}
.container-each-items .content-text-product{
    width: 300px;
}
.container-each-items .content-img-product{
    height: 50px;
    margin-top: 100px;
}
.content-img-product img{
    width: 200px;
    height: 200px;
    margin-top: -130px;
}
.container-each-items:nth-child(3) .content-img-product img{
    margin-top: -160px;
}
/* ======================================================= */
/* 2222222222222222222222222222222222222222222222222222222 */
/* 22222222222222222 FORM DETAIL PRODUCT 22222222222222222 */
.form-input-quotation-ijb form h2{
    font-size: 30px; 
}
.option-box, .name-box, .phone-box, .submit-box{
    font-size: 15px;
}
.container-content-form-ijb-ncd{
    width: 400px;
    height: 450px;
}

/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 HEADER OUR STORY 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-header-story-ijb{
    border-radius: 0 0 20px 20px;
}
.container-header-story-ijb .container-img-story-ijb-ncd{
    height: 270px;
}
.tahun-story-container-ijb .card-story-container-ijb{
    padding: 7px 5px;
}
.tahun-story-container-ijb .card-story-container-ijb.active::before{
    top: -9px;
    left: 45%;
}
.card-story-container-ijb h1{
    font-size: 15px;
}
.card-story-container-ijb p{
    font-size: 10px;
}
.detail-story-container-ijb .story h2{
    font-size: 18px;
}
.container-our-journey-ijb .detail-story-container-ijb{
    height: 200px;
}
.container-taglines-ijb-ncd .content-taglines-ijb-ncd{
    width: 27%;
    padding: 5% 1%;
}
.container-taglines-ijb-ncd .isi-tagline-container{
    width: 73%;
    padding: 0 1%;
    justify-content: unset;
}  
.judul-tagline{
    font-size: 20px;
}
.judul-tagline:nth-child(2){
    margin-left: 12px;
}
.judul-tagline:nth-child(3){
    margin-left: 20px;
}
.judul-tagline:nth-child(4){
    margin-left:27px;
}
.petik1-1, .petik2-2{
    width: 15px;
    height: 10px;
}
.petik2-2{
    margin-bottom: 20px;
}
.tulisan-tagline{
    padding: 9px 0;
}
.isi-tagline-container p{
    padding-top: 0px;
    font-size: 12px;
    width: 400px;
}
/* 33333333333333333333333333333333333333333333333333333333333 */
/* 3333333333333333333333333 MISSION 3333333333333333333333333 */
/* 33333333333333333333333333333333333333333333333333333333333 */
.container-mission-values-ijb{
    border-radius: 0 0 20px 20px;
}
.container-detail-mission-ijb .double-container-mission-ijb{
    border-radius: 0 0 20px 20px;
}
.double-container-mission-ijb .content-mission-ijb{
    width: 27%;
}
.content-mission-ijb h1{
    font-size: 20px;
}
.isi-mission-container p{
    font-size: 12px;
    width: 400px;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 33333333333333333333333333 VALUES 33333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.values1 img, .values3 img, .values4 img, .values5 img, .values6 img{
    width: 50px;
    height: 50px;
}
.values1 p, .values3 p, .values4 p, .values5 p, .values6 p{
    font-size: 12px;
}
.values1 h3, .values3 h3, .values4 h3, .values6 h3, .values5 h3{
    font-size: 12px;
}
.values2 h1{
    font-size: 18px
}
.values1, .values3, .values4, .values6, .values5{
    height: 230px;
}
.values2{
    width: 35%;
    height: 200px;
}
.values5{
    width: 27%;
    height: 270px;
}
.square-background-container-values .full-color-square-3{
    margin-top: 360px;
    width: 180px;
    height: 180px;
}
/* 3333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 STRATEGIC PARTNER 333333333333333333333 */
/* 3333333333333333333333333333333333333333333333333333333333333 */
.container-strategic-partner-ijb{
    border-radius: 0 0 20px 20px;
}
.container-strategic-partner-ijb .container-img-strategic-ncd img{
    object-position: -45rem -1rem;
}
.container-strategic-partner-ijb .container-img-strategic-ncd:after{
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,50,134,1) 14%, rgba(169,180,210,0) 61%, rgba(255,255,255,0) 100%);
}
.container-strategic-partner-ijb .container-img-strategic-ncd{
    height: 360px;
}
.container-strategic-partner-ijb .container-content-card-sp-ncd{
    flex-wrap: wrap;
    gap: 20px;
}
.card-wow-coffee-ncd{
    margin-top: -80px;
}
.card-bisi-ncd, .card-cargoLot-ncd, .card-cakravala-ncd{
    margin-top: 0px;
}
.card-wow-coffee-ncd, .card-bisi-ncd, .card-cargoLot-ncd, .card-cakravala-ncd{
    width: 400px;
}
.card-wow-coffee-ncd h3 a, .card-bisi-ncd h3 a, .card-cargoLot-ncd h3 a, .card-cakravala-ncd h3 a{
    font-size: 18px;
}
.card-wow-coffee-ncd p, .card-bisi-ncd p, .card-cargoLot-ncd p, .card-cakravala-ncd p{
    font-size: 14px;
}

.read-more-btn{
    position: relative;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 3333333333333333333333333 OUR TEAM 3333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-our-team-ijb .container-img-team-ncd{
    height: 300px;
}
.container-point-expert-ijb ul.circle-dots{
    gap:15px;
    justify-content: center;
}
ul.circle-dots li{
    width: 250px;
    font-size: 13px;
}
.container-our-team-ijb .container-img-team-ncd img{
    object-position: -6rem -1rem;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 APPROACH FOUNDER 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-approach-founder-ijb{
    padding: 2% 30px
}
.content-approach h1{
    font-size: 1rem;
}
.content-approach .circle-image-founder img{
    height: 200px;
    margin-top: -57px;
}
.circle-image-founder{
    width: 130px;
    height: 130px;
    margin-top: 40px;
    margin-left: 10px;
}
.content-approach img{
    height: 200px;
    right: 39px;
    margin-top: -18px;
}
.content-approach::before{
    width: 140px;
    height: 150px;
    right: 25px;
    bottom: 70px;
}
/* 44444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 OUR EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444 */
.container-header-event-ijb{
    border-radius: 0 0 27px 27px;
}
.container-header-event-ijb .container-img-event-ijb-ncd img{
    border-radius: 0 0 27px 27px;
}
.container-header-event-ijb .container-img-event-ijb-ncd{
    height: 200px;
}

.title-event-header{
    line-height: 18px;
}
.title-event-header h1{
    font-size: 1.5rem;
    width: fit-content;
}
.title-event-header h2 i{
    font-size: 1rem;
}
/* 44444444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 DETAIL EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444444 */
.container-all-event{
    padding: 20px 10px;
    border-radius: 0 0 27px 27px;
}
.content-img-event img{
    width: 150px;
    height: 150px;
    margin-top: -90px;
}
.container-each-event .content-text-event{
    gap: 18px;
}
.container-each-event .content-img-event{
    width: 40%;
}
.container-each-event .content-text-event h1{
    font-size: 18px;
}
.container-each-event .content-text-event p, .event-card-read-more{
    font-size: 12px;
}
.container-each-event .content-text-event button{
    font-size: 12px;
    padding: .2rem 1.5rem;
}
}
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ==============================BIG PHONE 434 PIXEL============================== */
/* ============================== MOBILE LARGE VIEW ============================== */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
@media screen and (max-width: 434px){
/* ================== MENU ================== */
.brand-logo-ncd a h1{
    font-size: 12px;
}
/* ============================================ */
/* |||||||||||||||||||||||||||||||||||||||||||| */
/* ================== HEADER ================== */
.header-img-fullsize-ncd {
    height: 300px;
}
.single-row-content-ncd-1 .full-color-square-ncd{
    width: 120px;
    height: 120px;
}
.divider-ijb-ncd .divider-content-ncd-ijb h5{
    font-size: 15px;
}
/* ====================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* =============== WHAT ABOUT US SECTION ================ */
.header-comment-ijb-ncd {
    border-radius: 0 0 20px 20px;
}
.itemncd.is-selected{
    margin-top: 0px;
    width: 180px;
}
.itemncd{
    width: 180px;
    height: 120px;
}
.itemncd.is-selected{
    margin-top: 5px;
}
.title-about-us{
    font-size: 23px;
}
.petik1, .petik2{
    width: 30px;
    height: 20px;
}
.komen-container{
    height: 230px;
}
.komen-container .container-isi-komen:nth-last-child(1){
    padding-top: 45px;
}
.komen-container .container-isi-komen:nth-last-child(3){
    padding-top: 27px;
}  
/* ====================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ===================== INSTAGRAM ====================== */
.cover-instagram-ijb-ncd{
    border-radius: 0 0 20px 20px;
}
.title-instagram-ijb-ncd h1{
    font-size: 20px;
}
.link-instagram-ijb-ncd h3{
    font-size: 15px;
}
/* ======================================================= */
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ==================== STAY CONNECTED =================== */
.cover-stay-connected-ncd{
    height: 230px;
}
.container-stay-connected-ncd{
    border-radius: 0 0 20px 20px;
    flex-direction: column;
}
.cover-stay-connected-ncd .title-stay-connected{
    width: 100%;
    height: 27%;
}
.container-email-content-ncd{
    width: 100%;
    height: 73%;
    align-items: baseline;
    padding: 10px 0;
}
.title-stay-connected {
    flex-direction: unset;
    align-items: center;
    padding: 0 0px;
    gap: 5px;
}
.title-stay-connected .device1{
    width: fit-content;
}
.title-stay-connected .device2{
    width: fit-content;
}
.title-stay-connected h2-1{
    padding: 0 18px;
}
.title-stay-connected .square-header-background-2{
    border: solid #DCE0ED 12px;
    margin-right: 270px;
    margin-top: -200px;
    width: 200px;
    height: 200px;
}
.container-email-content-ncd .content-email-connected-ncd p{
    padding: 0px 27px;
    text-align: center;
}
.container-email-content-ncd .content-email-connected-ncd{
    align-items: center;
}
.container-email-content-ncd .full-color-square-ncd-2{
    width: 180px;
    height: 180px;
    margin-top: 100px;
    margin-left: 200px;
}
/* ================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ===================== FOOTER ===================== */
.countainer-form-ncd .full-color-square-ncd-3{
    margin-left: -80px;
}
.container-footer{
    height: 90px;
}
.list-menu-footer-ijb-ncd {
    height: 27px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 222222222222222 HEADER OUR PRODUCT 222222222222222 */
.container-header-products-ijb .container-choose-ijb-ncd{
    height: 360px;
}
.container-choose-ijb-ncd .content-choose{
    padding: 3% 0; 
}
.item1, .item3, .item4, .item5, .item6{
    width: 30%;
    height: 100px;
}
.item2{
    order: -1;
    width: 100%;
    height: 70px;
    padding-top: 0;
}
.item2shadow{
    display: block;
    width: 155px;
}
.item1, .item3{
    justify-content:start;
}
.item5{
    margin-top: 50px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 22222222222222222 DETAIL PRODUCT 22222222222222222 */
.container-each-items:nth-child(2) .content-text-product{
    order: unset;
}
.container-each-items{
    flex-direction: column;
}
.container-each-items .content-text-product{
    width: 100%;
    padding: 10px;
}
.container-each-items .content-img-product{
    width: 230px;
    /* height: 50px; */
    margin-top: 120px;
}
.container-each-items:nth-child(3) .content-img-product{
    margin-top: 180px;
}
/* ======================================================= */
/* 2222222222222222222222222222222222222222222222222222222 */
/* 22222222222222222 FORM DETAIL PRODUCT 22222222222222222 */
.form-input-quotation-ijb .close-button-ijb{
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 36px;
    right: 45%;
    bottom: -45px;
    top: unset;
}
.container-content-form-ijb-ncd{
    width: 100%;
    height: 450px;
}
.form-input-quotation-ijb form h2{
    font-size: 27px; 
}
.option-box, .name-box, .phone-box, .submit-box{
    font-size: 13px;
    height: 45px;
}

/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 HEADER OUR STORY 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-header-story-ijb .container-img-story-ijb-ncd{
    height: 200px;
}
.title-story-header h1{
    font-size: 1.5rem;
}
.title-story-header h2{
    width: 72%;
    letter-spacing: 0px;
    font-size: 1rem;
}
.title-story-header h2 br{
    display: none;
}
.title-story-header h2 i{
    display: unset;
    font-size: 1rem;
}
.tahun-story-container-ijb .card-story-container-ijb.active::before{
    border-bottom: 10px solid #F5F5F5;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}
.container-header-story-ijb .tahun-story-container-ijb{
    height: 4.5rem;
}
.container-our-journey-ijb .detail-story-container-ijb{
    height: 250px;
}
.container-header-story-ijb .container-taglines-ijb-ncd{
    flex-direction:column;
}
.container-taglines-ijb-ncd .content-taglines-ijb-ncd{
    width: 100%;
    padding: 4% 0 1% 0;
    justify-content: center;
}
.judul-tagline{
    font-size: 27px;
}
.judul-tagline:nth-child(2){
    margin-left: 20px;
}
.judul-tagline:nth-child(3){
    margin-left: 50px;
}
.judul-tagline:nth-child(4){
    margin-left: 80px;
}
.petik2-2{
    margin-bottom: 25px;
}
.container-taglines-ijb-ncd .isi-tagline-container{
    width: 100%;
    padding: 0 18px;
    justify-content: center;
}
.container-detail-mission-ijb .double-container-mission-ijb{
    flex-direction: column;
}
.isi-tagline-container p{
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.double-container-mission-ijb .content-mission-ijb{
    width: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
}
.content-mission-ijb h1{
    height: fit-content;
    margin: 0;
}
.double-container-mission-ijb .isi-mission-container {
    width: 100%;
    padding: 0px 10px 10px 10px;
}
.isi-mission-container p{
    width: 100%;
    text-align: center;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 33333333333333333333333333 VALUES 33333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.values2{
    height: 180px;
    padding-bottom: 1.5rem;
}
.values2 h1{
    font-size: 14px
}
.values1, .values3, .values4, .values6{
    height: 180px;
    padding: 0 1px;
}
.values5{
    height: 200px;
}
.values1 p, .values3 p, .values4 p, .values6 p, .values5 p{
    font-size: 9px;
}
.square-background-container-values .full-color-square-3{
    margin-top: 250px;
    width: 150px;
    height: 150px;
}
.square-background-container-values .square-header-background-3{
    margin-top: -280px;
    border: solid #3967BD 12px;
}
/* 3333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 STRATEGIC PARTNER 333333333333333333333 */
/* 3333333333333333333333333333333333333333333333333333333333333 */
.container-strategic-partner-ijb .container-img-strategic-ncd{
    height: 342px;
}
.title-strategig-header h1{
    font-size: 1.5rem;
}
.title-strategig-header h2 i{
    font-size: 1rem;
}
.card-wow-coffee-ncd h3 a, .card-bisi-ncd h3 a, .card-cargoLot-ncd h3 a, .card-cakravala-ncd h3 a{
    margin-top: 10px;
}
.card-wow-coffee-ncd a, .card-bisi-ncd a, .card-cargoLot-ncd a, .card-cakravala-ncd a{
    width: 140px;
}

.card-wow-coffee-ncd p, .card-bisi-ncd p, .card-cargoLot-ncd p, .card-cakravala-ncd p{
    margin-top: 10px;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 3333333333333333333333333 OUR TEAM 3333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-our-team-ijb .container-img-team-ncd img{
    object-position: -10rem -1rem;
}
.title-team-header h1{
    font-size: 1.5rem;
}
.title-team-header h2{
    font-size: 1rem;
}
.title-team-header h2 br{
    display: none;
}
.title-team-header h2 i{
    font-size: 1rem;
}
ul.circle-dots li{
    width: 360px;
    font-size: 13px;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 APPROACH FOUNDER 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-approach-founder-ijb{
    padding: 2% 18px;
}
.content-approach p{
    font-size: 13px;
    z-index: 1;
    position: relative;
}
.content-approach img{
    right: 27px;
    margin-top: 45px;
}
.content-approach::before{
    right: 13px;
    bottom: 45px;
}
.circle-image-founder{
    margin: 102px 0 10px 10px;
}
.content-approach .right-text-founder{
    right: 20px;
}
/* 44444444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 DETAIL EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444444 */
.container-each-event{
    flex-direction: column;
    align-items: center;
}
.container-each-event .content-img-event{
    width: 95%;
    height: 100px;
    margin-top: 220px;
}
.content-img-event img{
    width: 300px;
    height: 270px;
    margin-top: -200px;
}
.container-each-event .content-text-event{
    width: 100%;
    padding: 10px;
}
}
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ==============================BIG PHONE 426 PIXEL============================== */
/* ============================== MOBILE LARGE VIEW ============================== */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
@media screen and (max-width: 426px){
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 APPROACH FOUNDER 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.content-approach::before{
    right: 13px;
    bottom: 61px;
}
}
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ==============================BIG PHONE 390 PIXEL============================== */
/* ============================= MOBILE MEDIUM VIEW ============================== */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
@media screen and (max-width: 390px){
/* =============================================================  */
/* =================== WHAT ABOUT US SECTION =================== */
/* =============================================================  */
.komen-container{
    height: 250px;
}
.komen-container .container-isi-komen:nth-last-child(1){
    padding-top: 45px;
}
.komen-container .container-isi-komen:nth-last-child(3){
    padding-top: 27px;
}    
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 APPROACH FOUNDER 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.content-approach::before{
    right: 13px;
    bottom: 90px;
}
.circle-image-founder{
    margin: 102px 0 10px 30px;
}
/* 44444444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 DETAIL EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444444 */
.content-img-event img{
    width: 260px;
    height: 260px;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 33333333333333333333333333 VALUES 33333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.values2 h1{
    font-size: 14px;
    padding: 0 1rem;
}
}
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ==============================BIG PHONE 376 PIXEL============================== */
/* ============================= MOBILE MEDIUM VIEW ============================== */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
@media screen and (max-width: 376px){
/* ================== MENU ================== */
.menu-navbar-ncd{
    height: 54px;
}
.brand-logo-ncd a img{
    width: 40px;
    height: 40px;
}
.brand-logo-ncd a h1{
    font-size: 9px;
}
.hamburger-menu-ncd {
    height: 18px;
}
.hamburger-menu-ncd span{
    width: 21px;
}
.list-menu {
    margin-top: 54px;
}
/* ============================================ */
/* |||||||||||||||||||||||||||||||||||||||||||| */
/* ================== HEADER ================== */
.header-img-fullsize-ncd {
    height: 270px;
}
.divider-ijb-ncd .divider-content-ncd-ijb h5{
    font-size: 14px;
}
/* ====================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ===================== INSTAGRAM ====================== */
.cover-instagram-ijb-ncd{
    border-radius: 0 0 20px 20px;
}
.title-instagram-ijb-ncd h1{
    font-size: 18px;
}
    .card-text-product-ncd{
    align-items: unset;
    height: unset;
    padding: 20px 0;
}
.link-instagram-ijb-ncd{
    width: 100px;
}
.link-instagram-ijb-ncd h3{
    font-size: 12px;
}
/* ======================================================= */
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ==================== STAY CONNECTED =================== */
.container-email-content-ncd .full-color-square-ncd-2{
    margin-left: 140px;
}
/* ================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ===================== FOOTER ===================== */
.list-menu-footer-ijb-ncd li a {
    font-size: 9px;
}
.countainer-form-ncd p {
    font-size: 9px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 222222222222222 HEADER OUR PRODUCT 222222222222222 */
.item2shadow{
    display: block;
    width: 146px;
}
/* .container-header-products-ijb .container-img-hp-ijb-ncd{
    height: 180px;
}
.container-header-products-ijb .container-choose-ijb-ncd{
    height: 810px;
}
.container-choose-ijb-ncd .content-choose{
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center; 
    justify-content: start;
    gap: 20px;
}
.square-background-container .full-color-square-2{
    width: 180px;
    height: 180px;
    margin-top: 630px;
}
.item3{
    order: 3;
}
.item2shadow{
    display: none;
    width: 155px;
}
.item5{
    margin-top: 0px;
}
.item1 img, .item3 img, .item4 img, .item5 img, .item6 img{
    width: 90px;
    height: 90px;
}
.item1, .item3, .item4, .item5, .item6{
    width: 270px;
    height: 100%;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
}*/
.item1, .item3, .item4, .item5, .item6{
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(22,50,134,1) 0%, rgba(22,79,182,1) 46%);
    box-shadow: -15px 12px 10px -10px black,
                10px -10px 10px -1px rgba(0,152,255,0.2);
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 HEADER OUR STORY 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.tahun-story-container-ijb .card-story-container-ijb.active::before{
    border-bottom: 10px solid #F5F5F5;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 33333333333333333333333333 VALUES 33333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.values2 h1{
    font-size: 12px
}
.values5{
    height: 210px;
} 
.values1 h3, .values3 h3, .values4 h3, .values6 h3, .values5 h3{
    font-size: 10px;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 3333333333333333333333333 OUR TEAM 3333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.container-our-team-ijb .container-img-team-ncd img{
    object-position: -18rem -1rem;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 APPROACH FOUNDER 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.content-approach img{
    margin-top:42px;
}
.circle-image-founder{
    margin-top: 100px;
}
.content-approach::before{
    bottom: 76px;
}
.content-approach p{
    font-size: 12px;
    z-index: 1;
    position: relative;
}
/* 44444444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 DETAIL EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444444 */
.content-img-event img{
    width: 240px;
    height: 200px;
    margin-top: -150px;
}
.container-each-event .content-img-event{
    width: 95%;
    height: 80px;
    margin-top: 160px;
}
}
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ============================= BIG PHONE 352 PIXEL ============================= */
/* ============================== MOBILE SMALL VIEW ============================== */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
@media screen and (max-width: 352px){
/* ================== MENU ================== */
.brand-logo-ncd a img{
    width: 36px;
    height: 36px;
}
.brand-logo-ncd a h1{
    font-size: 9px;
}
/* =========================================== */
/* ================== HEADER ================== */
.text-header-fliping h1{
    font-size: 24px;
}
.text-header-fliping h6{
    font-size: 24px;
}
.divider-ijb-ncd .divider-content-ncd-ijb h5{
    font-size: 12px;
}
/* ====================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* =============== WHAT ABOUT US SECTION ================ */
.komen-container{
    height: 180px;
}
.komen-container .container-isi-komen:nth-last-child(1){
    padding-top: 35px;
}
.komen-container .container-isi-komen:nth-last-child(3){
    padding-top: 18px;
}
.isi-komen{
    font-size: 12px;
}
/* ======================================================= */
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ==================== STAY CONNECTED =================== */
.container-email-content-ncd .full-color-square-ncd-2{
    margin-top: 90px;
    margin-left: 120px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 222222222222222 HEADER OUR PRODUCT 222222222222222 */
.item2shadow{
    display: block;
    width: 130px;
}
.item4, .item6{
    justify-content: right;
}
.item1, .item3, .item4, .item5, .item6{
    width: 110px;
    height: 100px;
}
.item1 img, .item3 img, .item4 img, .item5 img, .item6 img{
    width: 60px;
    height: 60px;
}
/* ======================================================= */
/* 2222222222222222222222222222222222222222222222222222222 */
/* 22222222222222222 FORM DETAIL PRODUCT 22222222222222222 */

/* 333333333333333333333333333333333333333333333333333333333333 */
/* 33333333333333333333333333 VALUES 33333333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.values2 h1{
    text-align: center;
}
.values1, .values3, .values4, .values6, .values5{
    height: 210px;
}
.values5{
    height: 230px;
}
.square-background-container-values .full-color-square-3{
    margin-top: 310px;
}
/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 APPROACH FOUNDER 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.circle-image-founder{
    margin-top: 0px;
}
.content-approach img{
    margin-top:-45px;
}
.content-approach::before{
    bottom: 160px;
}
.circle-image-founder{
    margin: 12px 0 10px 10px;
}
/* 44444444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 DETAIL EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444444 */
.content-img-event img{
    width: 220px;
    height: 200px;
    margin-top: -160px;
}
.container-each-event .content-img-event{
    width: 95%;
    height: 60px;
    margin-top: 170px;
}
}
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ============================= BIG PHONE 320 PIXEL ============================= */
/* ============================== MOBILE SMALL VIEW ============================== */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
@media screen and (max-width: 320px){
/* ================== MENU ================== */
.brand-logo-ncd a img{
    width: 30px;
    height: 30px;
}
.brand-logo-ncd a h1{
    font-size: 8px;
}
/* =============================================================  */
/* =================== WHAT ABOUT US SECTION =================== */
/* =============================================================  */
.komen-container{
    height: 200px;
}
.komen-container .container-isi-komen:nth-last-child(1){
    padding-top: 34px;
}
.komen-container .container-isi-komen:nth-last-child(3){
    padding-top: 22px;
}

/* ======================================================= */
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ==================== STAY CONNECTED =================== */
.cover-stay-connected-ncd{
    height: 250px;
}
.container-email-content-ncd .full-color-square-ncd-2{
    /* margin-top: 270; */
    margin-left: 80px;
}
/* ================================================== */
/* |||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ===================== FOOTER ===================== */
.container-logo-ijb-ncd{
    width: 36px;
    height: 36px;
}
/* ================================================== */
/* 22222222222222222222222222222222222222222222222222 */
/* 222222222222222 HEADER OUR PRODUCT 222222222222222 */
.container-header-products-ijb .container-img-hp-ijb-ncd{
    height: 160px;
}
.item2shadow{
    display: block;
    width: 120px;
}
.item1, .item3, .item4, .item5, .item6{
    width: 100px;
    height: 100px;
}
.item1 h3, .item3 h3, .item4 h3, .item5 h3, .item6 h3{
    font-size: 9px;
}
/* ======================================================= */
/* 2222222222222222222222222222222222222222222222222222222 */
/* 22222222222222222 FORM DETAIL PRODUCT 22222222222222222 */

/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 HEADER OUR STORY 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.detail-story-container-ijb .story h2{
    font-size: 15px;
}
.container-our-journey-ijb .detail-story-container-ijb{
    height: 36vh;
}
/* 3333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 STRATEGIC PARTNER 333333333333333333333 */
/* 3333333333333333333333333333333333333333333333333333333333333 */
.title-strategig-header h2{
    font-size: 1rem;
}/* 333333333333333333333333333333333333333333333333333333333333 */
/* 333333333333333333333 APPROACH FOUNDER 333333333333333333333 */
/* 333333333333333333333333333333333333333333333333333333333333 */
.content-approach::before{
    bottom: 188px;
}
.content-approach .right-text-founder{
    right: 0px;
    width: fit-content;
}
/* 44444444444444444444444444444444444444444444444444444444444 */
/* 444444444444444444444444 OUR EVENT 444444444444444444444444 */
/* 44444444444444444444444444444444444444444444444444444444444 */
.container-header-event-ijb .container-img-event-ijb-ncd{
    height: 160px;
}
}
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ============================= WHATSAPP FLOAT BUTTON ============================ */ 

.dd-m-whatsapp {
    position: fixed;
    z-index: 99999;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background-color: #25d366;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    transition: 0.3s all ease;
    cursor: pointer;
    text-decoration: none;
    color: #25d366;
}  
.dd-m-whatsapp:hover {
    -webkit-transform: translateY(-5px);
       -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
         -o-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-box-shadow: 0 5px 15px 2px rgba(37, 211, 102, 0.3);
       -moz-box-shadow: 0 5px 15px 2px rgba(37, 211, 102, 0.3);
            box-shadow: 0 5px 15px 2px rgba(37, 211, 102, 0.3);
} 
.dd-m-whatsapp .icon {
    width: 50%;
    height: 50%;
    display: block;
    fill: #fff;
    -webkit-transform: translateX(1px);
       -moz-transform: translateX(1px);
        -ms-transform: translateX(1px);
         -o-transform: translateX(1px);
            transform: translateX(1px);
}  
.dd-m-whatsapp .icon {
    width: 70%;
    height: 70%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 39 39'%3E%3Cpath d='M10.7 32.8l.6.3c2.5 1.5 5.3 2.2 8.1 2.2 8.8 0 16-7.2 16-16 0-4.2-1.7-8.3-4.7-11.3s-7-4.7-11.3-4.7c-8.8 0-16 7.2-15.9 16.1 0 3 .9 5.9 2.4 8.4l.4.6-1.6 5.9 6-1.5z' fill='%2325d366'/%3E%3Cpath d='M32.4 6.4C29 2.9 24.3 1 19.5 1 9.3 1 1.1 9.3 1.2 19.4c0 3.2.9 6.3 2.4 9.1L1 38l9.7-2.5c2.7 1.5 5.7 2.2 8.7 2.2 10.1 0 18.3-8.3 18.3-18.4 0-4.9-1.9-9.5-5.3-12.9zM19.5 34.6c-2.7 0-5.4-.7-7.7-2.1l-.6-.3-5.8 1.5L6.9 28l-.4-.6c-4.4-7.1-2.3-16.5 4.9-20.9s16.5-2.3 20.9 4.9 2.3 16.5-4.9 20.9c-2.3 1.5-5.1 2.3-7.9 2.3zm8.8-11.1l-1.1-.5s-1.6-.7-2.6-1.2c-.1 0-.2-.1-.3-.1-.3 0-.5.1-.7.2 0 0-.1.1-1.5 1.7-.1.2-.3.3-.5.3h-.1c-.1 0-.3-.1-.4-.2l-.5-.2c-1.1-.5-2.1-1.1-2.9-1.9-.2-.2-.5-.4-.7-.6-.7-.7-1.4-1.5-1.9-2.4l-.1-.2c-.1-.1-.1-.2-.2-.4 0-.2 0-.4.1-.5 0 0 .4-.5.7-.8.2-.2.3-.5.5-.7.2-.3.3-.7.2-1-.1-.5-1.3-3.2-1.6-3.8-.2-.3-.4-.4-.7-.5h-1.1c-.2 0-.4.1-.6.1l-.1.1c-.2.1-.4.3-.6.4-.2.2-.3.4-.5.6-.7.9-1.1 2-1.1 3.1 0 .8.2 1.6.5 2.3l.1.3c.9 1.9 2.1 3.6 3.7 5.1l.4.4c.3.3.6.5.8.8 2.1 1.8 4.5 3.1 7.2 3.8.3.1.7.1 1 .2h1c.5 0 1.1-.2 1.5-.4.3-.2.5-.2.7-.4l.2-.2c.2-.2.4-.3.6-.5s.4-.4.5-.6c.2-.4.3-.9.4-1.4v-.7s-.1-.1-.3-.2z' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
}