:root {
  --black: #000000;
  --charcoal: #424141;
  --darkGrey: #928F8F;
  --grey: #B8B5B5;
  --lightGrey: #F1F0F0;
  --white: #ffffff;
  --orange: #EC6F45;
  --lightOrange: #FAD2A8;
  --yellow: #FFD600;
  --goldYellow: #EBA63F;
  --blue: #0040FF;
  --lightBlue: lightblue;
  --green: #438945;
  --lightGreen: #69B26B;
  --red: #E40C2B;
}

* {
  padding: 0;
  border: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
}

body {
  font-size: 1vw;
  font-family: sans-serif;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--lightGrey);
  overscroll-behavior: contain;
}

/*GLOBAL BUTTON CLASSES*/
.gBtnOrange {
  display: flex;
  align-items: center;
  background-color: var(--orange);
  padding: 0.3vw 0.7vw 0.3vw 0.7vw;
  color: var(--white);
  border-radius: 0.2vw;
  font-size: 90%;
  cursor: pointer;
  border: solid 1px var(--orange)
}

.gBtnWhite {
  display: flex;
  align-items: center;
  background-color: var(--white);
  padding: 0.3vw 0.7vw 0.3vw 0.7vw;
  color: var(--charcoal);
  border-radius: 0.2vw;
  border: 1px solid var(--grey);
  font-size: 90%;
  cursor: pointer;
}
.gBtnWhite:hover {
  background-color: var(--orange);
  color: var(--white);
  border: solid 1px var(--orange);
}
.gBtnWhite.selected{
    background-color: var(--orange);
    color: var(--white);
    border: solid 1px var(--orange);
}

/*LANDING PAGE*/
#landingPage{
  flex-flow: column nowrap;
  justify-content: center;
  background-color: var(--white);
  height: 100%;
  width: 100%;
}
#landingPage .landingPageBody{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  height: Calc(100% - 60px);
  width: 100%;
}
#landingPage .landingPageInfoCon{
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  height: 50%;
  width: 40%;
  position: relative;
  padding: 30px;
  margin-bottom: 50px;
}
#landingPage .landingPageInfoCon h1{
  margin-bottom: 20px;
  font-size: 40px;
  text-align: center;
  color: var(--charcoal);
}
#landingPage img{
  height: 90%;
  width: auto;
}
#landingPage .landingPageLogo{
  width: 150px;
  height: auto;
}
#landingPage .landingPageBtnCon{
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  align-items: center;
}
#landingPage .landingPageBtnCon .gBtnOrange{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  height: 30px;
  width: 80%;
  font-size: 20px;
  border-radius: 15px;
}
#landingPage .landingPageBtnCon .gBtnOrange:hover{
  box-shadow: 0 0 10px grey;
}
#landingPage .landingPageBtnCon .gBtnWhite{
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--orange);
  color: var(--charcoal);
  height: 30px;
  width: 80%;
  font-size: 20px;
  border-radius: 15px;
  margin-top: 20px;
}
#landingPage .landingPageBtnCon .gBtnWhite:hover{
  background-color: var(--lightOrange);
  border: 1px solid var(--white);
  color: var(--orange);
}


@media only screen and (max-width: 1000px){

  #landingPage .landingPageInfoCon{
    height: 50%;
    width: 80%;
    padding: 0px;
    margin-bottom: 50px;
  }
  #landingPage .landingPageInfoCon h1{
    margin-bottom: 20px;
    font-size: 40px;
    text-align: center;
    color: var(--charcoal);
  }
  #landingPage .imgBertus{
    display: none;
  }
}
