*, 
*::before, 
*::after {
    box-sizing: inherit;
}

@font-face {
  font-family: Poppins;
  src: url(./fonts/Poppins-Regular.ttf);
  font-weight: normal;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  box-sizing: border-box;
  font-family: Poppins, Arial, sans-serif;
  overscroll-behavior-y: none;
  background: #000;
}

a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.45, 0.13, 0.24, 0.99);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  padding: 32px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: url(./vipava-valley.jpeg) no-repeat center center;
  background-size: cover;
  z-index: 5;
}

.site-header .site-branding {
  color: #fff;
}

.site-header .site-branding .site-subtitle {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
}

.site-header .site-branding .site-title {
  margin-top: 0;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 40.5373px;
  line-height: 42px;
}

.site-header .site-branding .site-description {
  margin-right: 35px;
  margin-bottom: 44px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

.btn {
  position: relative;
  margin-top: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 39px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 35px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  border-radius: 40px;
  color: #000;
  border: none;
  background-color: #55e04b;
}

.btn::after {
  position: absolute;
  right: 25px;
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 9V9C9.76142 9 12 11.2386 12 14V19.5' stroke='black' stroke-width='2.5'%3E%3C/path%3E%3Cpath d='M17 12V12C14.2386 12 12 14.2386 12 17V19.5' stroke='black' stroke-width='2.5'%3E%3C/path%3E%3Cpath d='M2 9L7.25 4.66987L7.25 13.3301L2 9Z' fill='black'%3E%3C/path%3E%3Cpath d='M22 12L16.75 7.66987L16.75 16.3301L22 12Z' fill='black'%3E%3C/path%3E%3C/svg%3E");
  margin-left: 13px;
  margin-top: 2px;
}

.site-header .overlay {
  background: linear-gradient(0deg, #000000 12.72%, rgba(0, 0, 0, 0) 75.18%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}