:root {
    --headColor: #dac7af;
    --bck: white;
    --btncolor: orange;
    --white: white;
    --black: black;
    --color1: orange;
    --color2: #3eafce;
    --color3: #9d5c6e;
    --color4: #00000033; /*outlines*/

}

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

h1 {
  font-family: 'Montserrat';
    font-Size: 3em;
    font-weight: 400;
    margin: 0;v   
}

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

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

h6 {
  font-family: 'Montserrat';
  font-weight: 400;
  font-Size: 1em;

}

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

b {
  
  font-Size: 9pt;
  font-family: 'Montserrat';
  font-weight: 600;
}
.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;
}
.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;
}

.menuwrapper {
  display: flex;
  flex-wrap: wrap;
}

.menu {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.menuItem {
    color: var(--black);
    margin-left: 8vw;
    display: flex;
    align-items: center;
}

.menuItem div p{
  height: 20px;
  border-bottom: 3px solid var(--color2);
  transition: all .2s ease-in-out;
}
.menuItem  div:hover p { 
    border-bottom: 3px solid orange;
}

.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: 8pt;
  transition: all .2s ease-in-out;
  cursor: pointer;
  justify-content: center;
  align-content: center;
  align-items: center;
}


.buttonAction {
  color: var(--white);
  height: 4vh;
  background-color: var(--color1);
  width: 100px;
  border-radius: 20px;
}

.buttonAction:hover {
  background-color: var(--color2);
}


input, textarea {
  height: 35px;
  border-radius: 0;
  border: 1px solid #00000033;
}
textarea {
  min-height: 100px;
}


@media only screen and (max-width: 1026px) {
  h1 {
    font-Size: 2em;
  }

  h4 {
    font-Size: 1em;
  }
  p {
    font-Size: 8pt;
  }
  h6 {
    font-size: 0.8em;
  }
  .menuItem:first-child {
    margin-left: 0;
  }
  .contactMessage {
    width: 100%;
  }
}

