:root {
    --headColor: #e6c6a0;
    /* --headColor: #ecae8a; */

    --pColor: #333;
    /* #b1b1b1 */
    --pColorLighter: #3e3e3e;
    --pColorLighter2: #ececec;
    --pColorDarker: #464646;
    --bck: white;
    --btncolor: #dac7af;
    --white: white;
    --black: black;
    --color1: #2c4148;
    --color2:  #8c6a6a;;;
    --color2Darker:  #695050;
    --color3: #a9a1a1;
    --color4: #efece8;
    --color5: #888888;
}
html {
  scroll-behavior: smooth;
}

body {
    color: var(--headColor);
    background-color: var(--bck);
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Abhaya Libre';
    font-Size: 3.5em;
    font-weight: 400;
    margin: 0;
    line-height: 0.9;
}

h2 {
    font-family: 'Montserrat';
    font-Size: 2em;
    font-weight: 400;
    margin: 0;
    line-height: 0.9;
}

h3 {
    font-family: 'Montserrat';
    font-Size: 1.5em;
    font-weight: 400;
}
h4 {
    font-family: 'Abhaya Libre';
    font-Size: 1.3em;
    font-weight: 400;
}

h6 {
  font-family: 'Abhaya Libre';
  font-weight: 400;
  font-Size: 1.5em;

}

p, li {
    font-family: 'Montserrat';
    font-Size: 10pt;
    font-weight: 400;
    color: var(--pColor);
    line-height: 16px;
}
ul{
  padding-inline-start: 24px;
}
small {
  font-size: 50%;
}

.text-center {
  text-align: center;
}


b {
  
  font-Size: 9pt;
  font-family: 'Montserrat';
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.head {
  font-weight: 500;
}

.space {
    margin: 5vh 0;
    padding: 10vh 0 0vh;
}
.text-center {
    text-align: center;
}
.flex {
    display: flex;
}

.flexCenter {
    align-items: center;
}
.flexColumn {
  flex-direction: column;
}

.flexRowReversed {
  flex-direction: row-reverse;
}

.flexCenterCenter {
  align-items: center;
  justify-content: center;    
}

.jc-end {
  justify-content: flex-end;
}
.jc-between {
  justify-content: space-between;
}




.contentPadding {
    margin: 0 9.5vw 0 6.5vw;
}

.m-0 {
  margin: 0;
}

.wrapper
{
  margin: 0 -8px;
}

.wrapper > * {
  margin: 0 8px;
}

.wrapperExtend > * {
  flex: 1;
}

.menuwrapper {
    position: fixed;
    z-index: 999;
    width: 100%;
}
.menu {
    display: flex;
    justify-content: space-between;
}

.menuItem {
    background-color: var(--headColor);
    font-family: 'Montserrat';
    border: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all .2s ease-in-out;
    cursor: pointer;
    gap: 10px;
}

.menuItem > div {
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 10px;
}

.menuItem .menuItemSquare {
    width: 50px;
    height: 50px;
    padding: unset;
}
.menuItem {
    color: var(--white);
    display: flex;
}

.posTop {
    top:0;
}
.posBottom {
    bottom:0;
}
.posLeft {
    left: 0;
}
.posRight {
    left: 0;
}

.fade-in {
    animation: fadeIn ease 10s;
    -webkit-animation: fadeIn ease 10s;
    -moz-animation: fadeIn ease 10s;
    -o-animation: fadeIn ease 10s;
    -ms-animation: fadeIn ease 10s;
  }
  @keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-moz-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-webkit-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-o-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-ms-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
  }
}

  .fade-out {
    animation: fadeOut ease 8s;
    -webkit-animation: fadeOut ease 8s;
    -moz-animation: fadeOut ease 8s;
    -o-animation: fadeOut ease 8s;
    -ms-animation: fadeOut ease 8s;
  }

  @keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
    }
  }
  
  @-moz-keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
    }
  }
  
  @-webkit-keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
    }
  }
  
  @-o-keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
    }
  }
  
  @-ms-keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
  }
}

.generalButton {
  display: flex;
  font-family: 'Montserrat';
  background-color: unset;
  border: none;
  font-weight: 500;
  font-size: 0.75rem;
  transition: all .2s ease-in-out;
  cursor: pointer;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.buttonShowMore{
  background-color: var(--color2);
  color: white;
  padding: 5px 15px;
  margin: 5px 0 20px;
}

.buttonShowMore:hover {
  background-color: var(--headColor);
}
.buttonShowMoreDarker {
  background-color: var(--color2Darker);
}

.buttonAction {
  height: 4vh;
  border: 2px solid #dac7af80;
}

.buttonAction:hover {
  border: 2px solid #dac7af;
}

/*lazy load */
img.lazy {
  display: block;
  border: 0;
  opacity: 0;
}
img:not(.initial) {
  transition: opacity 1s;
}
img.initial,
img.loaded,
img.error {
  opacity: 1;
} 

img:not([src]):not([srcset]) {
  visibility: hidden;
}
/*endlazy load*/
input {
  border-radius: 0;
}





/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    background-color: none !important;
    transition: background-color 999999s ease-in-out 0s;
    color: var(--white);
    -webkit-appearance: none;
    -webkit-text-fill-color: var(--white);
}
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active{
    background-color: none;
    transition: background-color 5500s ease-in-out 0s;
    color: var(--white);
    -webkit-appearance: none;
    -webkit-text-fill-color: var(--white);
}

select:-webkit-autofill,
select:-webkit-autofill:active,
select:-webkit-autofill:focus {
    background-color: none;
    transition: background-color 5500s ease-in-out 0s;
    color: var(--white);
    -webkit-appearance: none;
    -webkit-text-fill-color: var();
}


md-content input:-webkit-autofill,
md-content input:-webkit-autofill:active,
md-content input:-webkit-autofill:focus,
md-content textarea:-webkit-autofill,
md-content textarea:-webkit-autofill:focus,
md-content textarea:-webkit-autofill:active,
md-content select:-webkit-autofill,
md-content select:-webkit-autofill:active,
md-content select:-webkit-autofill:focus {
    background-color: none;
    transition: background-color 5500s ease-in-out 0s;
    color: var(--white-text);
    -webkit-appearance: none;
    -webkit-text-fill-color: var(--black-text);
}










@media only screen and (max-width: 1026px) {
    h2 {
        font-family: 'Montserrat';
        font-Size: 1em;
        font-weight: 500;
        margin: 0;
    }

    p {
        font-family: 'Montserrat';
        font-Size: 8pt;
        font-weight: 400;
        color: var(--pColor);
    }
    .menuwrapper {
        bottom: 0;
        height: 100%;
        width: auto;
    }
    .menu {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        height: 100%;
    }
    .space {
      margin: 5vh 0;
      padding: 10vh 0 10vh;
  }

  .menu .contactMenuItem{
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 50px;
    text-align: center;
    margin: 0;
    padding: 10px 0;
  }

}

