:root{
     --primaryColor:#2768AA;
     --primaryColorHover:#223C77;
     --secondaryColor:#25A8E0;
     --textColor:#191E28;
     --backgroundColor:#FFFFFF;
     --font-size:14px;
     --font-family: "Open Sans", serif;
}
html{
    overflow-x: hidden;
}

body{
    font-size: var(--font-size);
    overflow-x: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--backgroundColor);
    color:var( --textColor,#000);
}

/*----------- display ----------------*/

.hide-on-pc {
    @media (width > 992px) {
        display: none;
    }
}

.hide-on-mobile {
    @media (width < 992px) {
        display: none;
    }
}

.hide-on-sm-mobile {
    @media (width < 376px) {
        display: none;
    }
}


.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.grid-center{
    display: grid;
    place-items: center;
}
.center{
    text-align: center;
    align-content: center;
}
.style-font{
    font-family: var(--font-family);
}
.huge-heading{
    font-family: var(--font-family);
    font-size: 4rem;
    font-weight: bold;
    @media (993px <= width <= 1366px) {
         font-size: 3rem;
    }
    @media (width < 992px) {
         font-size: 2rem;
    }
}
.big-heading{
    font-family: var(--font-family);
    font-size: 3rem;
    font-weight: bold;
     @media (width < 992px) {
         font-size: 2rem;
    }
    
}
.heading{
    font-family: var(--font-family);
    font-size: 2rem;
    font-weight: bold;
     @media (width < 992px) {
         font-size: 1.5rem;
    }
    
}
.sub-heading{
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: bold;
     @media (width < 992px) {
         font-size: 1.25rem;
    }
    
}
.mini-heading{
    font-family: var(--font-family);
    font-size: 1.25rem;
     @media (width < 992px) {
         font-size: 1rem;
    }
    
}
.small-text{
    font-size: 0.7rem;
}

.fullvh{
    height: 100vh;
    min-height: 100vh;
}
.text-theme{
    color: var(--primaryColorHover);
}


.water{
        filter: hue-rotate(160deg);
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
        background-size: 101% 106%;
    background-position: center;
}

.btn-theme-rounded{
    border-radius: 50px;
}
.btn-theme-wave{
        /*background-color: var(--primaryColor);*/
        background: url(/assets/img/wavy.png);
        background-size: 200%;
        background-repeat: repeat-x;
        color: var(--backgroundColor);
        transition:all .3s ease;
    &:hover{
        background-position-x:100px;
        color: var(--backgroundColor);
    }
}
.btn-theme{
        background-color: var(--primaryColor);
        color: var(--backgroundColor);
    &:hover{
        background-color: var(--primaryColorHover);
        color: var(--backgroundColor);
    }
}
.btn-theme-black{
        background-color: var(--textColor);
        color: var(--backgroundColor);
    &:hover{
        background-color: var(--primaryColor);
        color: var(--backgroundColor);
    }
}
.btn-theme-white{
        background-color: var(--backgroundColor);
        color: var(--textColor);
    &:hover{
        background-color: var(--primaryColor);
        color: var(--backgroundColor);
    }
}
.invert{
    filter: invert(1);
}
.secondary-bg{
    background-color: #d3d3d3;
    color: var(--primaryColorHover);
}
.dark-bg{
    background-color: var(--textColor) !important;
    color: var(--backgroundColor);
}

.page-banner{

background:var(--url) #00000000;
background-size: contain;
background-repeat:no-repeat;
background-position: center;
background-blend-mode: overlay;
position:relative;
aspect-ratio: 16/5;
margin-top: 77px;
@media (width < 992px){
          margin-top: -60px;
        aspect-ratio: 16 / 28;
}
    &::before {
        content: '';
        display: block;
        position:absolute;
        background:var(--url);
        background-size: cover;
        background-position: center;
        filter: blur(20px);
        z-index: -1;
        width: 100%;
        height: 100%;
    }

}
.page-banner-non-product{
    aspect-ratio: 16 / 3;
    @media (width < 992px){aspect-ratio: 16 / 22;}
}
.custom-bg{

background:var(--url);
background-size: cover;
background-position: var(--bg-pos-x,center) var(--bg-pos-y,center);
background-repeat:no-repeat;
background-blend-mode: overlay;
@media (width < 992px){
    background-position: var(--m-bg-pos-x,center) var(--m-bg-pos-y,center);
}
}
.custom-bg-hero{

background:var(--url), linear-gradient(-90deg, rgba(255,255,255,0) 23%, rgba(255,255,255,1) 100%);
background-size: cover;
background-position: right;
background-repeat:no-repeat;
background-blend-mode: overlay;
}
.custom-bg-hero-mobile{

@media (width < 992px){
background:var(--url), #ffffffbb;
background-size: cover;
background-position: right;
background-repeat:no-repeat;
background-blend-mode: overlay;
}
}

.hero-gradient-theme{
    --url:url('/assets/img/hero-bg.png');
background:var(--url);
background-repeat: repeat-x;
background-size: contain;
background-position: center top;
background-blend-mode: normal;
background-blend-mode: soft-light;

}
.gradient-theme{
background: linear-gradient(0deg, var(--primaryColor) 0%, var(--primaryColorHover) 100%);
}
/*---------- cards ---------------*/

.skewed-card-theme {  
border: 1px solid var(--textColor);
padding:1rem;
height: auto;
min-height: 231px;
transform: skew(-15deg);
@media (width < 992px){
    scale:0.9;
    
    height: auto;
min-height: auto;
margin-bottom:1rem;
}
}

.card-theme {  

border: 1px solid var(--textColor);
border-radius: 20px;
  padding:1rem;
  min-height: 231px;
}

.card-theme-image { 
    
    & img{
        height: 60px;
        aspect-ratio: 1;
    }
 }

.product-card{
    width:auto;
    min-height: 364px;
    aspect-ratio: 1;
    position: relative;
    & .product-image{
        position: absolute;
        top:0;
        left:0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
    & .product-content{
        text-align: center;
        padding: 1rem;
        opacity:1;
        transition: all .1s ease;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: end;
        background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 60%);
    }
     &:hover{
        & .product-content{
            opacity: 1;
        }
    }
}



.icon-card {  display: grid;
  grid-template-columns: 0.2fr 1.8fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "icon-card-image icon-card-title"
    "icon-card-image icon-card-title"
    "icon-card-image icon-card-desc"
    "icon-card-image icon-card-desc"
    "icon-card-image icon-card-desc";
}

.icon-card-image { 
    display: grid;
        place-items: center;
    grid-area: icon-card-image; }

.icon-card-title { grid-area: icon-card-title; }

.icon-card-desc { grid-area: icon-card-desc; }




/*------------------------*/
.hero-section-container {  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    ". . . . ."
    "hero-content hero-content hero-content hero-content hero-content"
    "hero-content hero-content hero-content hero-content hero-content"
    "hero-3d-element hero-3d-element hero-3d-element hero-3d-element hero-3d-element"
    "hero-3d-element hero-3d-element hero-3d-element hero-3d-element hero-3d-element"
    "hero-3d-element hero-3d-element hero-3d-element hero-3d-element hero-3d-element";
    @media (width < 992px) {
         display: flex;
         flex-direction: column;
         justify-content: space-evenly;
    }
}

.hero-content { grid-area: hero-content; }

.hero-3d-element { grid-area: hero-3d-element; }

/*--------------- custom class-------------------*/
.grid-container-about {  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  @media (width < 992px) {
    display: flex;
    flex-direction: column;
  }
}
.image-section { 
    border:1px solid var(--primaryColor);
    border-radius: 10px;
    grid-area: 1 / 1 / 5 / 5; 
overflow: clip;}

.desc { 
    padding: 1rem;
     border:1px solid var(--primaryColor);
    border-radius: 10px;
    background-color: var(--backgroundColor);
    grid-area: 3 / 4 / 6 / 6; }






.navbar-glass {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: saturate(180%) blur(20px);
}
.whatsapp-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: forestgreen;
    color: var(--backgroundColor);
    font-size: 2rem;
    display: grid;
    place-content: center;
    & a{
        color: var(--backgroundColor);
        text-decoration: none;
    }
}

.wave-y-bg{
     background:url('/assets/img/wavy.png');
     background-repeat: repeat-x;
     background-size: contain;
     @media (width < 992px) {
        background-size: cover;
     }
}


.footer-bg{
    background:url('/assets/img/wave-top.png');
    background-repeat: repeat-x;
    background-size: cover;
}

.footer-grid-container {
    padding-top: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "footer-left footer-center-top footer-right"
        "footer-left footer-center-bottom footer-right";

    @media (width < 992px) {
        display: flex;
        flex-direction: column;
    }
}

.footer-left {
    grid-area: footer-left;
    color: #000;
}

.footer-right {
    grid-area: footer-right;
    color: #000;
}

.footer-center-bottom {
    display: grid;
    place-items: center;
    grid-area: footer-center-bottom;
    color: #000;
}

.footer-center-top {
    border-radius: 0 0 20px 20px;
    display: grid;
    place-items: center;
    grid-area: footer-center-top;
    color: #000;
}

.social-link {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;

    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;

    background: var(--_bg);

    &:hover {
        border: 1px solid var(--primaryColor);
        color: var(--primaryColor);}

}

section{
scroll-margin-top: 150px;
}
.text-end-d-start-m{
        text-align: right;
        @media(width<992px){
           text-align: left;
        }
    }