/* 
Theme Name: Our Solution Child 
Theme URI: -
Description: Our theme child 
Theme Author: 1234-kind
Author URI: https://ourbetatesting.my.id
Template: hello-elementor 
Version: 1.0.0
Text Domain: our-solution-child
License: GNU General Public License or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
*/


/* Global Default start */
*{
  font-family: "Metropolis", Sans-serif !important;
}
#content p{
  margin-bottom: 0;
}
.fullwidth{
  --fullW: clamp(15px, 4vw, 65px);
  padding-left: var(--fullW) !important;
  padding-right: var(--fullW) !important;
}
/* Global Default end */

/* Template CSS start */

/* Desktop and Mobile start */
.desktop{
	display: block;
}
.mobile{
	display: none;
}
/* Desktop and Mobile end */

/* Logo Strip CSS start */
.our-icon{
  --boxSize: 20px;
  --trX: 0;
  --trY: 1;
  --lef: 0;
  --rot: 0;
  width: var(--boxSize);
  height: var(--boxSize);
  position: relative;
  overflow: hidden;
}

.tri-strip {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  
  &:before, &:after{
    content: '';
    display: block;
  }
  
  &> .line, &:before, &:after{
    width: 100%;
    height: calc(100% / 5);
    background-color: #084c8d;
    mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNSA1Ij4KCTxwYXRoIGQ9Ik0zIDBIMjJDMjYgMSAyNiA0IDIyIDVIM0MtMSA0LTEgMSAzIDAiIGZpbGw9IiMwMDAiLz4KPC9zdmc+');
    mask-clip: padding-box;
    mask-repeat: no-repeat;
    position: relative;
    transition: all .15s;
    left: var(--lef);
    translate: var(--trX) calc((var(--boxSize) * -1) + (var(--boxSize) * var(--trY)));
    rotate: var(--rot);
  }
}
#navMobileIcon:checked ~ .tri-strip{
  &> .line{
    --lef: -100%;
  }
  &:before{
    --rot: 45deg;
    --trY: 1.35;
  }
  &:after{
    --rot: -45deg;
    --trY: 0.7;
  }
}
/* Logo Strip CSS end */

/* Arrow Element Css start */
.arrow-css > *:after{
  --size: 10px;
  --border: 2px;
  --deg: 45deg;
  content: '';
  display: block;
  height: 10px;
  width: 10px;
  border-width: 2px 2px 0 0;
  border-color: #4D4D4D;
  border-style: solid;
  rotate: 45deg;
  position: relative;
  left: -4px;
}
/* Arrow Element Css end */

/* btn start */
.our-button{
  --padTB: 20px;
  --fonH: 28px;
  position: relative;
  width: 340px;
  height: max-content;
  font-size: 22px;
  line-height: var(--fonH);
  background-color: #FACB0C;
  border-radius: calc(var(--padTB) * 2 + var(--fonH));
}
#content .our-button > a{
  color: #4D4D4D;
  padding: var(--padTB) 60px var(--padTB) 44px;
  display: flex;
  border-radius: inherit;
  align-items: center;
  column-gap: 20px;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 500;
}
/* btn end */


/* Template CSS end */

html{
  display: flex;
  justify-content: center;
}
/* Full Width 1920px & 1280px*/
body{
  --cntMax: 1280px; /* max width */
  width: min(1920px, 100%);
  position: relative;
}
body > :is(#site-header, #content, #site-footer){
  margin: 0 min(5.5vw, 35px);
}

/* Style Header Section start */
#site-header{
  --iconSize: 20px;
  --logoSize: 285px;
  --gap: 100px;
}
#site-header > .our-icon{
	display: none;
}
#site-header > .header-inner{
  max-width: 100%;
  column-gap: var(--gap);
  position: relative;
}
#site-header > .header-inner > .site-branding{
  flex-basis: var(--logoSize);
}
#site-header > .header-inner > .site-navigation{
  display: flex;
  width: calc(100% - var(--logoSize) - var(--gap));
  justify-content: space-between;
  align-items: center;
}
#site-header .site-navigation a{
  color: var(--e-global-color-primary);
}
#site-header > .header-inner #searchSection{
  flex-basis: -moz-available;
  padding: 0 30px 0 54px;
  flex-shrink: 9;
}
#searchSection, #searchFooter {
  --radius: 50px;
  width: calc(100% - 80px);
  height: 100%;
  position: relative;
  display: grid;
  align-items: center;
  align-items: center;
  z-index: 3;
  
  &> div{
    grid-column: 1/-1;
    grid-row: 1/-1;
  }
  &:before{
    content: '';
    display: block;
    width: 19px;
    height: 19px;
    grid-column: 1/-1;
    grid-row: 1/-1;
    position: relative;
    z-index: 2;
    background-color: red;
    justify-self: end;
    margin-right: 20px;
    background: url('https://belimandiri.com/wp-content/uploads/2025/07/search-ikan.svg') center no-repeat;
  }
  &.turnOff{
    overflow: hidden;
  }
  &.turnOn{
    overflow: auto;
  }
  & .searchResult{
    transition: all .5s allow-discrete;
  }
  &.turnOff .searchResult{
    opacity: 0;
    top: -150px;
    z-index: -9;
  }
  &.turnOn .searchResult{
    opacity: 1;
    top: calc(100% - 15px);
    z-index: 0;
  }
  & input {
    --pad: 27px 23px;
    border-radius: var(--radius);
    font-weight: 500;
    border: 1px solid #AAA;
    box-shadow: 4px 4px 10px #0000000f;
    padding: var(--pad);
    width: -moz-available;
    width: -webkit-fill-available;
    max-height: 40px;
    z-index: 1;
    position: relative;
    font-size: var(--e-global-typography-text-font-size);
    &:placeholder-shown {
      padding: var(--pad);
      color: #C1C1C1;
      font-size: var(--e-global-typography-text-font-size);
    }
  }
}
.searchResult, .relatedProd {
  overflow: hidden;
  background-color: white;
  &> .resultItems a {
    display: grid;
    min-height: 70px;
    padding: 10px;
    grid-template-columns: min(20%, 120px) auto;
    column-gap: 20px;
    border-bottom: 1px solid #efefef;
    &> img {
      object-fit: contain;
    }
    &> .resultName:hover,
    .resultName {
      color: black;
    }
    & .result-title {
      font-size: 18px;
      font-weight: bold;
    }
    & .result-click {
      font-size: 16px;
      display: flex;
      align-items: center;
      &:after {
        content: '››';
        padding-left: 15px;
        padding-bottom: 3px;
      }
    }
  }
}
.inaproc-menu{
  flex-basis: 145px;
  height: 40px;
}

/* Style Header Section end */

/* Style Footer Section start */
#site-footer{
  background-color: #0A4C8F;
  color: white;
  padding-top: 100px;
  padding-bottom: 15px;
  border-radius: 30px 30px 0 0;
}
#site-footer :is(h3, h4, h5, h6){
  color: white;
}
#site-footer > .footer-inner{
  --rightSide: 442px;
  max-width: var(--cntMax);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
}
#site-footer > .footer-inner .footer-header{
  margin-top: 0;
  margin-bottom: 30px;
  font-size: clamp(22px, 5vw, 26px);
  line-height: clamp(28px, 5.5vw, 32px);
}
#site-footer > .footer-inner ol{
  --icon: url('https://belimandiri.com/wp-content/uploads/2025/07/point-maps-icon.svg');
  --iconSize: 16px 20px;
  padding: 0;
  list-style: none;
}
#site-footer > .footer-inner li{
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 8px;
}
#site-footer > .footer-inner li > p{
  margin-bottom: 5px;
}
#site-footer > .footer-inner :is(p, div){
  font-size: var(--e-global-typography-text-font-size);
}
#site-footer > .footer-inner li:before{
  content: '';
  display: block;
  width: 100%;
  height: auto;
  background-image: var(--icon);
  background-repeat: no-repeat;
  background-size: var(--iconSize);
  margin-top: 3px;
}
#site-footer > .footer-inner .call-us{
  --icon: url('https://belimandiri.com/wp-content/uploads/2025/07/contact-icon.svg');
  --iconSize: 16px 16px;
}
#site-footer > .footer-inner .email-us{
  --icon: url('https://belimandiri.com/wp-content/uploads/2025/07/mail-at-logo.svg');
  --iconSize: 18px 14px;
  
  &:before{
    margin-top: 5px;
  }
}
#site-footer > .footer-inner > .site-branding{
  max-width: var(--rightSide);
  position: relative;
}
#site-footer > .footer-inner > .searchbar{
  max-width: var(--rightSide);
  height: max-content;
}
#site-footer > .footer-inner > .searchbar input{
  height: 50px;
}
#site-footer > .footer-inner > :where(.site-branding, .searchbar){
  justify-self: right;
  align-self: end;
}
#site-footer > .footer-inner > .footer-follow-us, .searchbar{
  padding: 10px 0;
  align-self: end;
  margin-top: 50px;
}
#site-footer > .footer-inner > .footer-follow-us{
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 20px;
}
#site-footer > .footer-inner > .footer-follow-us img{
  height: 26px;
}
#site-footer > .footer-inner > .footer-follow-us> a:last-child{
  display: flex;
}
#site-footer > .footer-inner > .footer-follow-us> a:last-child > img{
  height: 20px;
}
#site-footer > .footer-inner > .copyright{
  margin-top: 100px;
  grid-column: 1/-1;
}


@media (width <= 768px){
  .desktop{
    display: none;
  }
  .mobile{
    display: block;
  }
  
  /*  Mobile Header Style CSS start  */
  #site-header{
    --gap: 30px;
    --logoSize: 220px;
    display: grid;
    grid-template-columns: var(--logoSize) var(--iconSize);
    justify-content: space-between;
    align-items: center;
    
    &> .our-icon{
      grid-column: 2/3;
      grid-row: 1/2;
    }
	  &> .our-icon{
		  display: block;
	  }
    &> .header-inner{
      grid-column: 1/2;
      grid-row: 1/2;
    }
    &> .header-inner > .site-navigation{
      display: none;
      
      &> .menu-bmi-menu-container{
        display: none;
      }
      &> #searchSection{
        height: auto;
      }
    }
    &> .header-inner #searchSection{
      padding: 0;
    }
    &:has(#navMobileIcon:checked){
      & .site-navigation{
        display: grid;
        position: absolute;
        top: 100%;
        width: 100dvw;
        left: calc(-1 * (min(5.5vw, 35px)) - var(--fullW));
        padding: var(--fullW);
        height: 100dvh;
        background-color: #fff;
        z-index: 5;
        align-content: center;
        grid-template-columns: 100%;
        row-gap: 30px;
        justify-items: center;
      }
      & #searchSection{
        display: grid;
      }
      & .inaproc-menu{
        display: block;
      }
    }
  }
  /*  Mobile Header Style CSS end  */
  
  #site-footer > .footer-inner{
    row-gap: 35px;
  }
  #site-footer > .footer-inner > .footer-follow-us, .searchbar{
    margin-top: unset;
  }
  #site-footer > .footer-inner > .footer-follow-us{
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 15px;
  }
  #site-footer > .footer-inner > .footer-follow-us > span{
    flex-basis: 100%;
  }
  #searchFooter, #searchSection{
    width: 100%;
    
    &:before{
      width: 14px;
      height: 14px;
      margin-right: 10px;
      background-size: contain;
    }
    & input{
      --pad: 15px 10px;
    }
  }
}



