/* montserrat-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('./fonts/montserrat-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-300italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 300;
  src: url('./fonts/montserrat-300italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/montserrat-400.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url('./fonts/montserrat-400italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/montserrat-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url('./fonts/montserrat-700italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  /* width: 100%;
  height: 100%; */
  overflow-x: hidden;
}

.landingpage {
  display: block;
  /* width: 100%;
  height: 100%; */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
  overflow-x: hidden;
}

.nav {
  position: relative;
  height: 50px;
  width: 100%;
  background-color: #333;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  height: 50px;
  padding: 0 30px;
  font-size: 18px;
}

.nav > .nav-links > a {
  display: inline-block;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: #efefef;
}

.nav > .nav-links > a:hover {
  background-color: rgb(150, 150, 150);
}

.nav .active {
  background-color: rgb(150, 150, 150);
}

.nav > #nav-check {
  display: none;
}

.first {
  text-align: center;
}
.content {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding-top: 50px
}

h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
}

.title {
  margin: 0;
  padding-bottom: 7px;
  font-size: 28px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
}

.subtitle {
  display: block;
  font-size: 16px;
  margin-bottom: 12px;
}

.first,
.section {
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.section {
  padding-top: 10px;
  padding-bottom: 50px;
}

.image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 60vh;
  object-fit: contain;
  object-position: center;
  border: 1px solid #efefef
}

.link-holder {
  position: relative;
  margin: 0;
  padding-top: 25px;
  padding-bottom: 25px;

}

.link-holder::after {
  content: '';
  position: absolute;
  left: -100%;
  right: -100%;
  bottom: 0;
  height: 1px;
  background: #efefef;
}

.link-orth {
  display: inline-block;
  padding: 12px 20px;
  background: #cab380;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in;
}

.link-orth:hover {
  background: #ab976c;
}

.link-ther {
  display: inline-block;
  padding: 12px 20px;
  background: #74B626;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in;
}

.link-ther:hover {
  background: #6FA92B;
}

.link-fam {
  display: inline-block;
  padding: 12px 20px;
  background: #909090;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in;
}

.link-fam:hover {
  background: #A8A8A8;
}

.sticky {
  position: fixed;
  top: 0;
  z-index: 20;
}

@media screen and (max-height: 640px) {
  .image {
    max-height: 65vh;
  }
}

@media screen and (max-width: 768px) {

  .titlefirst {
    padding-top: 145px;
  }
  .nav > .nav-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
  }
  .nav > .nav-btn > label {
    display: block;
    padding: 13px;
  }
  .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }

  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    margin-top: 10px;
    border-top: 2px solid #eee;
  }

  .nav > .nav-btn > label > span:first-of-type {
    margin-top: 0;
  }

  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #333;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow: hidden;
    top: 50px;
    left: 0px;
  }
  .nav > .nav-links > a {
    display: block;
    width: 100%;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: 150px;
  }
}

@media screen and (min-width: 1024px) {
  .content {
    paddint-top: 80px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .nav > .nav-links {
    padding: 0 64px;
  }

  h1 {
      font-size: 72px;
  }

  .title {
      font-size: 42px;
      margin-top: 8px;
  }

  .subtitle {
      font-size: 24px;
  }

  .link-holder {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .link-orth,
  .link-ther,
  .link-fam {
    min-width: 450px;
  }
}
