@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;900&family=Playfair+Display:wght@400;500;900&display=swap");
* {
  position: relative;
  box-sizing: border-box;
  padding: 0px;
}

body,
html {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
  overflow: hidden;
}

html {
  background-color: #F1EEE9;
  color: #424D46;
}

em {
  font-style: normal;
}

a {
  text-decoration: none;
  all: unset;
  cursor: pointer;
}

.is-visible {
  display: flex !important;
}

.is-hidden {
  display: none;
}

*::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}

*::-webkit-scrollbar-thumb {
  background-color: #E0E0E0;
}

*::-webkit-scrollbar-button {
  position: absolute;
  display: none;
}

@keyframes loading {
  from {
    transform: translateX(-100px);
  }
  to {
    transform: translateX(1900px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    /* Start with opacity set to 0 */
  }
  100% {
    opacity: 1;
    /* End with opacity set to 1 for the fade-in effect */
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    /* Start with opacity set to 0 */
  }
  100% {
    opacity: 0;
    /* End with opacity set to 1 for the fade-in effect */
  }
}
@keyframes opacityAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacityAnimationReverse {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
  }
}
.elevation-1 {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
  order: 0;
}

.elevation-2 {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  order: 1;
}

.elevation-3 {
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.3);
  order: 2;
}

.elevation-4 {
  box-shadow: 0px 6px 10px 4px rgba(0, 0, 0, 0.15), 0px 2px 3px rgba(0, 0, 0, 0.3);
  order: 3;
}

.elevation-5 {
  box-shadow: 0px 8px 12px 6px rgba(0, 0, 0, 0.15), 0px 4px 4px rgba(0, 0, 0, 0.3);
  order: 4;
}

.button {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  font-size: 24px;
  line-height: auto;
  color: #000000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 331px;
  background-color: #3E90DE;
  border-radius: 15px;
  text-align: center;
  background-color: transparent;
  border: 2px solid #424D46;
}
.button p {
  line-height: 50px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
@media (max-width: 800px) {
  .button {
    width: 100%;
    padding: 0 10%;
  }
}

.button-light {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  font-size: 24px;
  line-height: auto;
  color: #000000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 331px;
  background-color: #3E90DE;
  border-radius: 15px;
  text-align: center;
  background-color: transparent;
  border: 2px solid #999D97;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .button-light {
    width: 80%;
  }
}
.button-light p {
  color: #999D97;
  line-height: 50px;
}
.button-light:hover {
  font-weight: 400;
}
.button-light:hover p {
  color: #424D46;
}

.form-disabled {
  opacity: 0.5;
}

.page-separation {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 675px;
  position: fixed;
  bottom: 0px;
  margin: 0px 156px;
}
@media (max-width: 1366px) {
  .page-separation {
    margin: 0px 118px;
  }
}
@media (max-width: 1280px) {
  .page-separation {
    margin: 0px 78px;
  }
}
.page-separation.separation-side-left {
  align-items: start;
  left: 0px;
}
.page-separation.separation-side-right {
  align-items: end;
  right: 0px;
}
.page-separation .separator-line {
  height: 1px;
  width: 100%;
  background-color: #424D46;
}
.page-separation .separator-text-container {
  position: relative;
  top: -22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 96px;
}
.page-separation .triangle {
  height: 45px;
  width: 45px;
  transform: rotate(45deg);
  background-color: #F1EEE9;
  border-bottom: 1px solid #424D46;
  border-right: 1px solid #424D46;
}
.page-separation .separator-text {
  font-size: 24px;
  font-weight: 200;
  font-family: "Lato";
}

.contact-form {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 20px;
  line-height: auto;
  color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 568px;
}
.contact-form .form-input-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 34px;
}
.contact-form .form-input-container label {
  color: #424D46 #424D46;
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 18px;
  margin-left: 18px;
}
.contact-form .form-input-container textarea,
.contact-form .form-input-container input {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 20px;
  line-height: auto;
  color: #000000;
  width: 100%;
  background-color: #3E90DE;
  border-radius: 15px;
  text-align: left;
  padding: 0px 18px;
  background-color: transparent;
  border: 2px solid #999D97;
  resize: none;
}
.contact-form .form-input-container input {
  height: 50px;
}
.contact-form .form-input-container textarea {
  height: 233px;
  padding: 11px 18px;
}
@media (max-width: 1366px) {
  .contact-form .form-input-container {
    margin-bottom: 18px;
  }
}

.focus-background {
  z-index: -1;
  position: absolute;
  width: 300%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.1s ease-in;
}

.focus-background-visible {
  background: rgba(0, 0, 0, 0.1921568627);
  z-index: 1;
}

.focus-background-active {
  z-index: 1;
}

.is-focused {
  z-index: 2;
}

@keyframes animate {
  0% {
    z-index: 1;
  }
  99% {
    z-index: 1;
  }
  100% {
    z-index: 0;
  }
}
.notification {
  position: absolute;
  z-index: 13;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  min-width: 375px;
  border-radius: 5px;
  overflow-wrap: break-word;
  background-color: rgba(0, 0, 0, 0.8);
  white-space: normal;
  color: white;
  box-shadow: 0px 8px 12px 6px rgba(0, 0, 0, 0.15), 0px 4px 4px rgba(0, 0, 0, 0.3);
  order: 4;
}
.notification .notif-title {
  font-family: "Playfair+Display";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.15px;
  font-size: 21px;
  line-height: auto;
  color: #000000;
  color: white;
  padding: 8px 38px 8px 15px;
}
.notification .notif-text {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25px;
  font-size: 14px;
  line-height: auto;
  color: #000000;
  color: white;
  padding: 0px 15px 12px 15px;
}
@media (max-width: 1366px) {
  .notification .notif-text {
    font-size: 12px;
  }
}
.notification .notif-cross {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

body {
  background-color: #F1EEE9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-item {
  flex: 1;
  height: 100%;
  width: 40%;
}

.content {
  display: flex;
  width: 100%;
  flex-direction: row;
}
.content div:nth-child(1) {
  margin-left: 10%;
}
.content div:nth-child(1) .img {
  margin: 0;
}
.content div:nth-child(2) {
  background: pink;
  margin-right: 10%;
}

.page-usage nav.header-nav.carousel-nav {
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 800px) {
  .page-usage nav.header-nav.carousel-nav {
    background-color: rgba(241, 238, 233, 0.5607843137);
  }
}

nav.header-nav.carousel-nav {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 20px;
  line-height: auto;
  color: #000000;
  color: #999D97;
  width: 568px;
  position: fixed;
  bottom: 160px;
  display: flex;
  justify-content: space-between;
  font-weight: lighter;
  height: 50px;
  line-height: 50px;
  border-radius: 20px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #F1EEE9;
  /*
  text-shadow: 
  $shadowOffset $shadowOffset $shadowSmallBlur $background,
  $shadowOffset (-$shadowOffset) $shadowSmallBlur $background,
  (-$shadowOffset) $shadowOffset $shadowSmallBlur $background,
  (-$shadowOffset) (-$shadowOffset) $shadowSmallBlur $background;
  */
  cursor: pointer;
}
@media (max-width: 1366px) {
  nav.header-nav.carousel-nav {
    font-size: 19px;
  }
}
@media (max-width: 1280px) {
  nav.header-nav.carousel-nav {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  nav.header-nav.carousel-nav {
    font-size: 14px;
    bottom: 200px;
  }
}
@media (max-width: 800px) {
  nav.header-nav.carousel-nav {
    box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.3);
    width: 80%;
    font-size: 12px;
    margin-top: 10%;
    bottom: 50px;
    align-self: center;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 330px) {
  nav.header-nav.carousel-nav {
    font-size: 10px;
    padding-left: 18px;
    padding-right: 18px;
  }
}
nav.header-nav.carousel-nav p.header-nav-item.header-nav-item-horizontal {
  margin: 0;
}
nav.header-nav.carousel-nav p.header-nav-item.header-nav-item-horizontal.selected {
  height: 80%;
  margin: 0;
  font-weight: normal;
  color: #424D46;
  border-bottom: 1px solid #424D46;
}

@media (min-width: 1024px) {
  .menu-icon {
    display: none;
  }
}
@media (max-width: 1024px) {
  .menu-icon {
    display: flex;
  }
}

.main-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 65px;
  margin-bottom: 76px;
  margin-top: 20px;
  font-family: "Lato";
}
@media (max-width: 1366px) {
  .main-header {
    margin-bottom: 10px;
  }
}
.main-header .header-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  flex: 1;
  justify-content: left;
  margin-left: 156px;
  height: 65px;
  align-items: center;
}
.main-header .header-logo .header-logo-item {
  font-weight: 600;
  color: #999D97;
  font-size: 18px;
}
.main-header .header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.main-header .header-nav .header-nav-item {
  position: relative;
  color: #424D46;
  font-family: "Lato";
  font-size: 24px;
  font-weight: lighter;
  margin: 0px 26px;
  height: 65px;
  line-height: 65px;
  cursor: pointer;
}
.main-header .header-nav .header-nav-item.selected {
  border-bottom: 1px solid #424D46;
}
@media (max-width: 1024px) {
  .main-header .header-nav {
    display: none;
  }
}
@media (max-width: 1366px) {
  .main-header {
    height: 50px;
  }
  .main-header .header-logo {
    margin-left: 118px;
    height: 50px;
  }
  .main-header .header-nav .header-nav-item {
    font-size: 18px;
    margin: 0px 18px;
    height: 50px;
    line-height: 50px;
  }
}
@media (max-width: 1280px) {
  .main-header .header-logo {
    margin-left: 78px;
  }
}
@media (max-width: 800px) {
  .main-header .header-logo {
    margin-left: 10%;
  }
}

.main-header-small {
  width: 0px;
  height: 0px;
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.main-header-small .menu-icon {
  position: fixed;
  top: 9px;
  right: 9px;
  width: 40px;
  height: 40px;
  fill: #424D46;
}
.main-header-small.opened .background-menu-opened {
  animation: opacityAnimation 0.2s linear forwards;
  pointer-events: all;
}
.main-header-small.opened .header-nav-small {
  display: flex;
  pointer-events: all;
}
.main-header-small.opened .menu-icon {
  display: none;
}
.main-header-small .header-nav-small {
  position: fixed;
  display: none;
  top: 0px;
  height: 100%;
  right: 0px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 0px 78px;
  z-index: 12;
  width: 300px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.main-header-small .header-nav-small .header-nav-item-small {
  position: relative;
  color: #424D46;
  font-family: "Lato";
  font-size: 24px;
  font-weight: lighter;
  margin: 15px 0px;
  height: 53px;
  line-height: 53px;
  text-align: right;
  width: 200px;
  cursor: pointer;
  transition: padding-right 0.2s cubic-bezier(1, 0, 0, 1) 0.2s;
  padding-right: 0px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.main-header-small .header-nav-small .header-nav-item-small:hover {
  padding-right: 30px;
  transition: padding-right 0.2s cubic-bezier(1, 0, 0, 1);
}
.main-header-small .header-nav-small .header-nav-item-small.selected {
  padding-right: 30px;
}
.main-header-small .header-nav-small .header-nav-item-small::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 50px;
  background-color: #999d97;
  transition: transform 0.3s cubic-bezier(1, 0, 0, 1);
  transform: scaleY(0);
}
.main-header-small .header-nav-small .header-nav-item-small:hover::after {
  transform: scaleY(1);
  transition: transform 0.3s cubic-bezier(1, 0, 0, 1) 0.1s;
}
.main-header-small .background-menu-opened {
  display: none;
  position: fixed;
  z-index: 12;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.7764705882);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  animation: opacityAnimationReverse 0.2s linear forwards;
  pointer-events: none;
}

.main-container {
  width: 100%;
  position: relative;
}

.page-container {
  width: 100%;
  position: absolute;
  opacity: 0;
}

.show-page {
  animation: fadeIn 0.5s ease-in forwards;
}

.hide-page {
  pointer-events: none;
  animation: fadeOut 0.5s ease-in forwards;
}

.page-content {
  width: 100%;
  padding: 0px 156px;
  display: flex;
  flex-direction: column;
}
.page-content.page-carousel {
  padding-left: 0px;
  padding-right: 0px;
}
@media (max-width: 1366px) {
  .page-content {
    padding: 0px 118px;
  }
}
@media (max-width: 1280px) {
  .page-content {
    padding: 0px 78px;
  }
}

h2 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 40px;
}

h1 {
  font-size: 92px;
  font-weight: 300;
  font-family: "Playfair Display";
  margin: 0px;
  text-shadow: 2px 2px 40px #F1EEE9, 2px -2px 40px #F1EEE9, -2px 2px 40px #F1EEE9, -2px -2px 40px #F1EEE9;
}
@media (max-width: 1440px) {
  h1 {
    margin-bottom: 5px;
  }
}
@media (max-width: 1366px) {
  h1 {
    margin-bottom: 0px;
  }
}

.main-title {
  font-size: 92px;
  font-weight: 300;
  font-family: "Playfair Display";
  margin: 0px;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .main-title {
    margin-bottom: 5px;
  }
}
@media (max-width: 1366px) {
  .main-title {
    margin-bottom: 0px;
  }
}

ul {
  list-style-type: disc;
  font-family: "Lato";
  font-weight: 400;
  font-size: 24px;
  color: #424D46;
  margin-bottom: 83px;
}

.main-text {
  width: 568px;
  font-family: "Lato";
  font-weight: 400;
  font-size: 24px;
  color: #424D46;
  margin-bottom: 83px;
}

@media (min-width: 1366px) {
  .main-text {
    font-size: 24px;
    margin-bottom: 83px;
    width: 640px;
  }
  .main-title {
    font-size: 78px;
  }
}
@media (max-width: 1366px) {
  .main-text {
    font-size: 24px;
    margin-bottom: 83px;
  }
  .main-title {
    font-size: 78px;
  }
}
@media (max-width: 1280px) {
  .main-text {
    font-size: 22px;
    margin-bottom: 83px;
  }
  .main-title {
    font-size: 64px;
  }
}
@media (max-width: 1024px) {
  .main-text {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .page-content {
    padding: 0 10%;
  }
  .main-title {
    margin-bottom: 0px;
    font-size: 36px;
  }
  h2 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .main-text {
    font-size: 14px;
  }
}
@media (max-width: 330px) {
  .page-content {
    padding: 0 10%;
  }
  .main-title {
    font-size: 25px;
  }
  h2 {
    font-size: 15px;
    margin-bottom: 7px;
  }
}
.page-image {
  pointer-events: none;
  width: 100vw;
}
@media (max-width: 1024px) {
  .page-image img {
    z-index: -1;
    opacity: 0.3;
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
}
.page-image img {
  pointer-events: none;
  position: fixed;
  bottom: 0px;
  width: 100%;
}

.page-usage .page-image img {
  opacity: 1;
  filter: blur(0px);
  -webkit-filter: blur(0px);
}
@media (min-width: 800px) {
  .page-usage .page-image img {
    left: 0;
  }
}
@media (max-width: 800px) {
  .page-usage .page-image img {
    right: -150px;
  }
}

@media (max-width: 800px) {
  .page-usage .carousel-content:nth-child(3) .page-image img {
    right: -550px;
  }
}

.nav-item-custom {
  cursor: pointer;
}

.carousel-content {
  padding-left: 156px;
  padding-right: 156px;
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  opacity: 0;
}
.carousel-content.carousel-hide {
  animation: fadeOut 0.5s ease-in forwards;
}
.carousel-content.carousel-display {
  animation: fadeIn 0.5s ease-in forwards;
}
@media (max-width: 1366px) {
  .carousel-content {
    padding: 0px 118px;
  }
}
@media (max-width: 1280px) {
  .carousel-content {
    padding: 0px 78px;
  }
}
@media (max-width: 800px) {
  .carousel-content {
    padding: 0px 10%;
  }
}
@media (max-width: 330px) {
  .carousel-content {
    padding: 0px 10%;
  }
}

.page-content-right {
  align-items: end;
}

.page-content-left {
  align-items: start;
}

.page-content-right .carousel-content {
  align-items: end;
}

.page-content-left .carousel-content {
  align-items: start;
}

.page-content-right .page-image {
  pointer-events: none;
}
.page-content-right .page-image img {
  pointer-events: none;
}

.page-contact .main-title {
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .contact-form {
    width: 100%;
  }
}
#waiting-widget {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0px;
  bottom: 500px;
  opacity: 0;
}
#waiting-widget .waiting-widget-inner {
  position: fixed;
  border-radius: 100%;
  opacity: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 2px solid #424D46;
  background-color: rgba(255, 255, 255, 0.641);
  width: 74px;
  height: 74px;
}
#waiting-widget .waiting-widget-inner .navigation-hourglass {
  animation: rotatingHourglass 1s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.scroll-widget {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0px;
}
.scroll-widget#scroll-widget-down {
  bottom: 50px;
}
.scroll-widget#scroll-widget-up {
  top: 100px;
}
.scroll-widget#scroll-widget-up .scroll-widget-inner {
  transform: rotate(180deg);
}
.scroll-widget .scroll-widget-inner {
  position: fixed;
  border-radius: 100%;
  opacity: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid #424D46;
  background-color: #F1EEE9;
  width: 48px;
  height: 48px;
}
.scroll-widget .scroll-widget-inner img {
  position: absolute;
  width: 24px;
}
.scroll-widget .scroll-widget-inner .navigation-arrow {
  opacity: 1;
}

@keyframes rotatingHourglass {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}/*# sourceMappingURL=style.css.map */