/* 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-v31-latin-regular.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-v31-latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* montserrat-600 - 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: 600;
  src: url("../fonts/montserrat-v31-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* montserrat-600italic - 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: 600;
  src: url("../fonts/montserrat-v31-latin-600italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* montserrat-800 - 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: 800;
  src: url("../fonts/montserrat-v31-latin-800.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* montserrat-800italic - 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: 800;
  src: url("../fonts/montserrat-v31-latin-800italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
body {
  margin: 0;
  font-family: "Montserrat"; }

* {
  box-sizing: border-box; }

.content {
  width: calc(100% - 85px);
  margin-left: 85px;
  padding: 100px 50px; }

h1, h2 {
  color: #4D7074; }

.hero {
  width: calc(100% - 85px);
  margin-left: 85px;
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .hero > h1 {
    background-color: #fff;
    padding: 15px;
    margin: 0;
    color: #4D7074; }
  .hero > h2 {
    background-color: #4D7074;
    padding: 15px;
    margin: 0 0 40px;
    color: #A3B399; }
  .hero.main-bg {
    background-image: url("../img/mainpage/hero.webp"); }

.spin-me {
  width: 200px;
  height: 200px;
  background: #333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  will-change: transform; }

.button {
  height: 50px;
  display: flex;
  text-decoration: none; }

.button-text {
  background-color: #744d5c;
  color: #fff;
  padding: 0 10px;
  height: 50px;
  display: flex;
  align-items: center;
  cursor: pointer; }
  .button-text:hover {
    background-color: #553944; }

.button-icon {
  background-color: #A3B399;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .button-icon > img {
    height: 20px;
    width: 20px; }

.topnavi {
  height: 85px;
  width: 100%;
  border-bottom: 1px solid #D9DADA;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  background-color: #fff; }
  .topnavi > .menu {
    height: 85px;
    display: flex;
    align-items: center; }
    .topnavi > .menu > a {
      padding: 10px;
      border-right: 1px solid #D9DADA;
      color: #4D7074;
      text-decoration: none;
      font-weight: 600; }
      .topnavi > .menu > a:hover {
        color: #A3B399;
        transition: .5s; }
      .topnavi > .menu > a:last-child {
        border: none; }

.sidenavi {
  height: calc(100vh - 85px);
  width: 85px;
  border-right: 1px solid #D9DADA;
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff; }
  .sidenavi > .sidenavi-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 150px); }
    .sidenavi > .sidenavi-content > .slogan > img, .sidenavi > .sidenavi-content > .social > img {
      width: 75px; }

.button75 {
  height: 85px;
  width: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer; }
  .button75 > img {
    width: 85px;
    height: 85px; }
  .button75.dark-button {
    background-color: #4D7074; }
    .button75.dark-button:hover {
      background-color: #A3B399;
      transition: .5s; }
  .button75.light-button {
    background-color: #A3B399; }
    .button75.light-button:hover {
      background-color: #4D7074;
      transition: .5s; }
