@font-face {
  font-family: "GT-Alpina-Standard-Light";
  font-weight: 100;
  src: url("/GT-Alpina-Standard-Light.woff2") format("woff2");
}
:root {
  --headerHeight: 80px;
}
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  list-style: none;
  margin: 0;
  outline: none;
  border: none;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
}

::selection {
  background-color: #2e2e2e;
  color: #c7c7c7;
}

a {
  color: inherit;
  font-family: inherit;
  font-size: var(--m-font);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration: unset;
}


button {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  font-size: 25px;
  background: inherit;
  cursor: pointer;
  /* text-transform: uppercase; */
}
button:hover{
  color: olive;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  touch-action: manipulation;
}

body {
  font-family: "GT-Alpina-Standard-Light";
}

header {
  position: fixed;
  padding: 20px 26px;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--headerHeight);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  z-index: 10;
}



.socials {
  display: flex;
  gap: 10px;
}

.logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
}

main {
  padding: 20px 26px;
  position: relative;
  top: var(--headerHeight);
  padding-top: 10%;
  height: calc(100vh - var(--headerHeight));
  width: 100vw;
}

.grid-half-vertical {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
}

p {
  max-width: 35ch;
}

.grid_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* background-color: pink; */
}

.grid_right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
#mobileMenu button{
  font-size: 35px;
}
.top {
  display: flex;
  flex-direction: column;
  font-size: 36px;
}

.bottom {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
}

img {
  height: 600px;
  /* top: -50px; */
}

h2 {
  margin-bottom: 10px;
}

.bottom div {
  margin-bottom: 5px;
}

.sandwich {
  display: none;
}

#mobileMenu {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  font-size: 30px;
  z-index: 10;
}

#mobileMenu.visible {
  display: flex;
}

#closeMobileMenu {
  position: fixed;
  top: 14px;
  right: 8px;
}

#sandwich {
  display: none;
}

    .costWrap {
      grid-template-columns: 1fr auto 28px;
    }
    .chf{
      margin-right: 5px;
    }

    .costWrap {
      border-bottom: 1px solid black;
      width: 100%;
      max-width: 600px;
      display: grid;
      grid-template-columns: 1fr auto 80px;
    }



.mobile {
  display: none;
}

@media (max-width: 860px) {
  header {
    padding: 10px;
  }

  #sandwich {
    display: block;
  }

  .mobile {
    display: flex;
  }

  main {
    height: 100%;
    padding: 0 20px 0;
    margin-top: 100px;
  }

  img {
    width: 50%;
    height: unset;
    top: 50px;
  }

  .socials {
    display: none;
  }

  .grid_right {
    justify-content: center;
    align-items: center;
    padding-right: unset;
  }

  .grid-half-vertical {
    display: flex;
    flex-direction: column;
  }

  .emailBtn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: white;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid black;
  }

  .top {
    font-size: 30px;
    margin-bottom: 30px;

  }
}