@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;700&display=swap');

body,
html {
  font-family: 'Work Sans', sans-serif !important;
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  backface-visibility: hidden;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 100%;
  line-height: 1.5;
  color: #111;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  background-color: #fff;
  position: relative;
}

::-webkit-scrollbar {
  width: 6px !important;
}
::-webkit-scrollbar-track {
  background: white !important;
}
::-webkit-scrollbar-thumb {
  background: #d69b2a !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #111;
}
pre {
  width: 100vw;
  display: block;
  margin: 0 auto;
  padding-left: 20vw;
}
input,
textarea,
select,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.main-container {
  width: 85vw;
  height: 100%;
  min-height: 100vh;
  margin-left: auto;
  position: relative;
  z-index: 100;
}
.container-with-background-image {
  width: 100%;
  height: 100vh;
  position: relative;
  background-position: center center;
  background-size: cover;
}

.mb-2vh {
  margin-bottom: 2vh;
}
.mt-2vh {
  margin-top: 2vh !important;
}

/**********
BG IMG FIXED
**********/
.background-image-fixed {
  position: fixed;
  z-index: 0;
}
.background-image-fixed--first {
  width: 30vw;
  height: auto;
  right: 0;
  top: 20vh;
}
.background-image-fixed--second {
  width: 20vw;
  height: auto;
  left: 20vw;
  top: 60vh;
}
.background-image-fixed--third {
  width: 20vw;
  height: auto;
  left: 40vw;
  top: 10vh;
}

.four-o-four {
  width: 100%;
  padding: 25vh 0;
  background-color: #fff;
  text-align: center;
}
.four-o-four__title {
  margin-bottom: 5vh;
}
.four-o-four__link {
  display: block;
  width: max-content;
  height: max-content;
  padding: 1.5vh 2vw;
  background-color: #d29723;
  font-size: 1.3em;
  color: #fff;
  margin: 0 auto;
  border-radius: 2rem;
}
.four-o-four__link:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1600px) {
  body {
    font-size: 80%;
  }
}
@media only screen and (max-width: 1366px) {
  body {
    font-size: 75%;
  }
}
@media only screen and (max-width: 1280px) {
  body {
    font-size: 60%;
  }
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: 70%;
  }
  .main-container {
    width: 100vw;
    margin-left: 0;
    z-index: 100;
  }
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 100%;
  }
}

@media only screen and (max-width: 420px) {
  body {
    font-size: 60%;
  }
}
