@font-face {
  font-family: 'Bebas Neue';
  src: url('./fonts/BebasNeueBook.woff2') format('woff2'),
       url('./fonts/BebasNeueBook.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: #b9e4ae;
  margin: 0;
  padding: 0;
  font-family: 'Bebas Neue';
}

#page-home {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#page-home .background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  text-align: center;
  z-index: 1;
}

#page-home .background img {
  display: inline-block;
  min-width: 100%;
}

#page-home .logo {
  background-color: white;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 185px;
  border-radius: 0 0 70px 70px;
  z-index: 2;
}

#page-home .vector {
  position: absolute;
  z-index: 2;
}

#page-home .vector.vector-1 {
  bottom: -40px;
  left: -50px;
}

#page-home .vector.vector-2 {
  bottom: 150px;
  left: calc(50% + 300px);
}

#page-home .container {
  position: relative;
  z-index: 3;
}

#page-home .flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 700px;
  height: 100vh;
}

#page-home .flex-wrapper .left {
  position: relative;
}

#page-home .flex-wrapper .left .left-image {
  position: relative;
  width: 340px;
  height: 310px;
  border-radius: 20px 20px 20px 100px;
  overflow: hidden;
}

#page-home .flex-wrapper .left .left-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#page-home .flex-wrapper .right {
  position: relative;
  margin-left: 25px;
  bottom: -25px;
  z-index: 2;
}

#page-home .flex-wrapper .right .right-title {
  color: white;
  font-size: 49px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 12.5px;
  position: relative;
  left: -100px;
}

#page-home .flex-wrapper .right .right-description p {
  color: white;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.4;
}

#page-home .flex-wrapper .right .right-description p span {
  display: block;
  font-size: 30px;
  margin-bottom: 10px;
}

#page-home .flex-wrapper .right .right-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#page-home .flex-wrapper .right .right-actions a {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 25px 0 20px;
  border-radius: 5px 25px;
  text-decoration: none;
  transition: all .3s;
  margin-bottom: 8px;
}

#page-home .flex-wrapper .right .right-actions a:last-child {
  margin: 0;
}

#page-home .flex-wrapper .right .right-actions a svg {
  display: inline-block;
  position: relative;
  top: -1px;
}

#page-home .flex-wrapper .right .right-actions a svg path {
  transition: all .3s;
}

#page-home .flex-wrapper .right .right-actions a span {
  color: #a18fbe;
  font-size: 24px;
  font-weight: normal;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 8px;
  position: relative;
  bottom: -1px;
  transition: all .3s;
}

#page-home .flex-wrapper .right .right-actions a:hover {
  background-color: #a18fbe;
}

#page-home .flex-wrapper .right .right-actions a:hover svg path {
  fill: white;
}

#page-home .flex-wrapper .right .right-actions a:hover span {
  color: white;
}

@media (max-width: 1023px) {
  #page-home {
    height: unset;
    overflow: hidden;
  }

  #page-home .logo {
    width: 250px;
    height: 150px;
  } 

  #page-home .logo img {
    width: 120px;
  }

  #page-home .vector {
    display: none;
  }

  #page-home .flex-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 180px 0 60px;
    height: unset;
    min-height: unset;
  }

  #page-home .flex-wrapper .left .left-image {
    width: 300px;
    height: 280px;
  }

  #page-home .flex-wrapper .right {
    width: 100%;
    text-align: center;
    margin: 40px 0 0;
    bottom: unset;
  }

  #page-home .flex-wrapper .right .right-title {
    font-size: 35px;
    letter-spacing: 4px;
    left: 0;
  }

  #page-home .flex-wrapper .right .right-description p {
    font-size: 16px;
  }

  #page-home .flex-wrapper .right .right-description p span {
    font-size: 21px;
  }

  #page-home .flex-wrapper .right .right-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}