/*main menu*/
@media screen and (min-width: 1024px) {
    /*menu desktop*/
    .menu-item {
        position: relative;
    }
  
    .menu-item a {
        /* padding: 5px; */
        /* width: 100%;
        display: flex; */
        text-decoration: none;
    }
  
    /* .menu-item a:hover {
      font-weight: 700;
    } */
  
    .menu-item .sub-menu {    
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: inherit;
        padding: 0;
        z-index: 300;
        text-align: left;
        background-color: #fff;
        color: #000000;
    }
  
    .sub-menu .menu-item {
        display: flex;
        position: relative;
        width: 100%;
    }
  
    .menu-item:hover > .sub-menu {    
        opacity: 1;
        visibility: visible;
    }
  
    #MainNav > .menu-item {
      padding: 10px 5px;
    }
  
    #MainNav ul.sub-menu {
        text-transform: capitalize;
        width: 170%;
        margin-top: .65rem;
        margin-left: -12%;
        border-radius: 4%;
        border-radius: .25rem;
        font-weight: 500;
        font-size: 0.75rem; 
        line-height: 1rem;
        padding: .50rem;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
        box-shadow: 1px 1px 4px #a9a9a9;
      
        &:after {
          content: '';
          position: absolute;
          border: 1px solid rgba(255, 255, 255, 0);
        }
  
        &:before {
          content: '';
          position: absolute;
          border: 1px solid #ffffff00;
        }
        
        /*triangle side*/
        /*top*/
        &.top:after {
          border-color: #fff transparent;
          border-width: 0 10px 12px 10px;
          top: -12px;
          left: 15%;
        }
    }
  
    #MainNav ul.sub-menu ul.sub-menu {
      top: 0;
      left: 100%;
      margin-top: 0;
      width: 100%;
    }
}

/* #mobile_nav .current-menu-item a {
  color: #1B4A40;
  position: relative;
} */

#mobile_nav .menu-item {
  padding: 10px;
}

#mobile_nav .current-menu-item {
  background-color: #fff;
  color: var(--color-primary);
}

.ico-home::before {
  content: "\f015";
  margin-right: 5px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
}

.ico-about::before {
  content: "\f05a";
  margin-right: 5px;
  font-weight: 900; 
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
}

.ico-team::before {
  content: "\f0c0";
  margin-right: 5px;
  font-weight: 900; 
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
}

.ico-contact:before {
  content: "\f879";
  margin-right: 5px;
  font-weight: 900;
}

.button-top {
    /* font-family: -webkit-pictograph; */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    /* width: 40px; 
    height: 40px; */
    border: 0;
    /* border-radius: 50px;
    box-shadow: none;
    font-size: 18px;
    text-align: center; */
    cursor: pointer;
    transition: opacity .18s ease;
    /* outline: none important; */
}

.button-top-visible {
    opacity: 1;
    pointer-events: auto;
}

/**splide bug**/
.splide__sr {
    display: none;
}

/**wp**/
.aligncenter {
  margin: auto;
}

.alignright {
  float: right;
  clear: both;
}

.alignleft {
  float: left;
  clear: both;
}

.wp-caption.aligncenter {
  text-align: center;
}

.wp-caption.aligncenter img {
  width: 100%;
}


/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (max-width: 1024px) { 	
    .menu-item a {
      padding: 10px 5px;		
  }
}


/**
* @license
*
* Font Family: General Sans
* Designed by: Frode Helland
* URL: https://www.fontshare.com/fonts/general-sans
* © 2025 Indian Type Foundry
*
* General Sans Extralight 
* General Sans ExtralightItalic 
* General Sans Light 
* General Sans LightItalic 
* General Sans Regular 
* General Sans Italic 
* General Sans Medium 
* General Sans MediumItalic 
* General Sans Semibold 
* General Sans SemiboldItalic 
* General Sans Bold 
* General Sans BoldItalic 
* General Sans Variable (Variable font)
* General Sans VariableItalic (Variable font)

*
*/
@font-face {
  font-family: 'GeneralSans-Extralight';
  src: url('../fonts/GeneralSans-Extralight.woff2') format('woff2'),
       url('../fonts/GeneralSans-Extralight.woff') format('woff'),
       url('../fonts/GeneralSans-Extralight.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans-ExtralightItalic';
  src: url('../fonts/GeneralSans-ExtralightItalic.woff2') format('woff2'),
       url('../fonts/GeneralSans-ExtralightItalic.woff') format('woff'),
       url('../fonts/GeneralSans-ExtralightItalic.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans-Light';
  src: url('../fonts/GeneralSans-Light.woff2') format('woff2'),
       url('../fonts/GeneralSans-Light.woff') format('woff'),
       url('../fonts/GeneralSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans-LightItalic';
  src: url('../fonts/GeneralSans-LightItalic.woff2') format('woff2'),
       url('../fonts/GeneralSans-LightItalic.woff') format('woff'),
       url('../fonts/GeneralSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans-Regular';
  src: url('../fonts/GeneralSans-Regular.woff2') format('woff2'),
       url('../fonts/GeneralSans-Regular.woff') format('woff'),
       url('../fonts/GeneralSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans-Italic';
  src: url('../fonts/GeneralSans-Italic.woff2') format('woff2'),
       url('../fonts/GeneralSans-Italic.woff') format('woff'),
       url('../fonts/GeneralSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans-Medium';
  src: url('../fonts/GeneralSans-Medium.woff2') format('woff2'),
       url('../fonts/GeneralSans-Medium.woff') format('woff'),
       url('../fonts/GeneralSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans-MediumItalic';
  src: url('../fonts/GeneralSans-MediumItalic.woff2') format('woff2'),
       url('../fonts/GeneralSans-MediumItalic.woff') format('woff'),
       url('../fonts/GeneralSans-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans-Semibold';
  src: url('../fonts/GeneralSans-Semibold.woff2') format('woff2'),
       url('../fonts/GeneralSans-Semibold.woff') format('woff'),
       url('../fonts/GeneralSans-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans-SemiboldItalic';
  src: url('../fonts/GeneralSans-SemiboldItalic.woff2') format('woff2'),
       url('../fonts/GeneralSans-SemiboldItalic.woff') format('woff'),
       url('../fonts/GeneralSans-SemiboldItalic.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans-Bold';
  src: url('../fonts/GeneralSans-Bold.woff2') format('woff2'),
       url('../fonts/GeneralSans-Bold.woff') format('woff'),
       url('../fonts/GeneralSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans-BoldItalic';
  src: url('../fonts/GeneralSans-BoldItalic.woff2') format('woff2'),
       url('../fonts/GeneralSans-BoldItalic.woff') format('woff'),
       url('../fonts/GeneralSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 700.0;
*
* available axes:
'wght' (range from 200.0 to 700.0
*/
@font-face {
  font-family: 'GeneralSans-Variable';
  src: url('../fonts/GeneralSans-Variable.woff2') format('woff2'),
       url('../fonts/GeneralSans-Variable.woff') format('woff'),
       url('../fonts/GeneralSans-Variable.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 700.0;
*
* available axes:
'wght' (range from 200.0 to 700.0
*/
@font-face {
  font-family: 'GeneralSans-VariableItalic';
  src: url('../fonts/GeneralSans-VariableItalic.woff2') format('woff2'),
       url('../fonts/GeneralSans-VariableItalic.woff') format('woff'),
       url('../fonts/GeneralSans-VariableItalic.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
  font-style: italic;
}