@font-face {
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  font-family: "Poppins";
  src: url("../../_fonts/Poppins-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-family: "Poppins";
  src: url("../../_fonts/Poppins-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-weight: 600;
  font-style: italic;
  font-stretch: normal;
  font-family: "Poppins";
  src: url("../../_fonts/Poppins-SemiBold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  font-family: "Oswald";
  src: url("../../_fonts/Oswald-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}
:root {
  --website_width: 1440px;
  --website_width_medium: 1300px;
  --website_width_small: 800px;
}

/* font-weight */
/* line-height */
html {
  color: #F1F1F1;
  font-weight: 300;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans_serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.6;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0;
}
html {
  font-size: 16px;
}
@media screen and (min-width: 432px) {
  html {
    font-size: calc(16px + 2 * ((100vw - 432px) / 1008));
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 18px;
  }
}

h1,
.font_size_xxxl,
.about_wrapper .body_text::before {
  font-size: 48.828125px;
}
@media screen and (min-width: 432px) {
  h1,
.font_size_xxxl,
.about_wrapper .body_text::before {
    font-size: calc(48.828125px + 18.004615 * ((100vw - 432px) / 1008));
  }
}
@media screen and (min-width: 1440px) {
  h1,
.font_size_xxxl,
.about_wrapper .body_text::before {
    font-size: 66.83274px;
  }
}

h2,
.font_size_xxl {
  font-size: 39.0625px;
}
@media screen and (min-width: 432px) {
  h2,
.font_size_xxl {
    font-size: calc(39.0625px + 12.3473 * ((100vw - 432px) / 1008));
  }
}
@media screen and (min-width: 1440px) {
  h2,
.font_size_xxl {
    font-size: 51.4098px;
  }
}

h3,
.font_size_xl {
  font-size: 31.25px;
}
@media screen and (min-width: 432px) {
  h3,
.font_size_xl {
    font-size: calc(31.25px + 8.296 * ((100vw - 432px) / 1008));
  }
}
@media screen and (min-width: 1440px) {
  h3,
.font_size_xl {
    font-size: 39.546px;
  }
}

h4,
.font_size_lg {
  font-size: 25px;
}
@media screen and (min-width: 432px) {
  h4,
.font_size_lg {
    font-size: calc(25px + 5.42 * ((100vw - 432px) / 1008));
  }
}
@media screen and (min-width: 1440px) {
  h4,
.font_size_lg {
    font-size: 30.42px;
  }
}

h5,
.font_size_md {
  font-size: 20px;
}
@media screen and (min-width: 432px) {
  h5,
.font_size_md {
    font-size: calc(20px + 3.4 * ((100vw - 432px) / 1008));
  }
}
@media screen and (min-width: 1440px) {
  h5,
.font_size_md {
    font-size: 23.4px;
  }
}

h6,
.font_size_base {
  font-size: 16px;
}
@media screen and (min-width: 432px) {
  h6,
.font_size_base {
    font-size: calc(16px + 2 * ((100vw - 432px) / 1008));
  }
}
@media screen and (min-width: 1440px) {
  h6,
.font_size_base {
    font-size: 18px;
  }
}

figcaption,
.font_size_sm {
  font-size: 12.8px;
}
@media screen and (min-width: 432px) {
  figcaption,
.font_size_sm {
    font-size: calc(12.8px + 1.0461538462 * ((100vw - 432px) / 1008));
  }
}
@media screen and (min-width: 1440px) {
  figcaption,
.font_size_sm {
    font-size: 13.8461538462px;
  }
}

.font_size_xs {
  font-size: 16px;
}
@media screen and (min-width: 432px) {
  .font_size_xs {
    font-size: calc(16px + 2 * ((100vw - 432px) / 1008));
  }
}
@media screen and (min-width: 1440px) {
  .font_size_xs {
    font-size: 18px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans_serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.15;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  min-height: 0vw;
}

.cover_image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #1E1E1E;
}

.inner_wrap {
  padding: 0 32px;
}
@media screen and (max-width: 1024px) {
  .inner_wrap {
    padding: 0 26px;
  }
}
@media screen and (max-width: 768px) {
  .inner_wrap {
    padding: 0 22px;
  }
}
@media screen and (max-width: 375px) {
  .inner_wrap {
    padding: 0 18px;
  }
}

.container, .global_container_full {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.global_container_full {
  max-width: var(--website_width);
}

/* No files to import found in 04_partials//**/
/*.scss */
.error_404_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
.error_404_wrapper .error_404_container {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.error_404_wrapper .error_404_container .error_404_title {
  color: #F8D119;
}
.error_404_wrapper .error_404_container .error_404_text {
  margin-top: 16px;
  margin-bottom: 24px;
}
.error_404_wrapper .error_404_container .error_404_button {
  font-weight: 600;
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  color: #1E1E1E;
  background-color: #F8D119;
}
.error_404_wrapper .error_404_container .error_404_button:hover {
  background-color: #fadb4a;
}
.error_404_wrapper video {
  position: fixed;
  top: 0;
  right: 0;
  min-width: 100vw;
  min-height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero_wrapper {
  position: relative;
  height: 100vh;
  min-height: 650px;
}
.hero_wrapper .hero_container {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero_wrapper .hero_container .hero_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero_wrapper .hero_container .page_title {
  position: absolute;
  top: 15%;
  left: 40%;
  display: flex;
  flex-direction: column;
  transform: translate(-50%);
}
@media screen and (max-width: 1280px) {
  .hero_wrapper .hero_container .page_title {
    left: 50%;
  }
}
@media screen and (max-width: 600px) {
  .hero_wrapper .hero_container .page_title {
    top: 17%;
  }
}
.hero_wrapper .hero_container .page_title .title_nutty,
.hero_wrapper .hero_container .page_title .title_about,
.hero_wrapper .hero_container .page_title .title_websites {
  line-height: 1;
  text-transform: uppercase;
}
.hero_wrapper .hero_container .page_title .title_nutty {
  font-size: 150px;
  margin-left: 206px;
  color: #F8D119;
}
@media screen and (max-width: 1024px) {
  .hero_wrapper .hero_container .page_title .title_nutty {
    font-size: 112.5px;
    margin-left: 154.5px;
  }
}
@media screen and (max-width: 768px) {
  .hero_wrapper .hero_container .page_title .title_nutty {
    font-size: 84px;
    margin-left: 118px;
  }
}
@media screen and (max-width: 600px) {
  .hero_wrapper .hero_container .page_title .title_nutty {
    font-size: 63px;
    margin-left: 87px;
  }
}
@media screen and (max-width: 375px) {
  .hero_wrapper .hero_container .page_title .title_nutty {
    font-size: 48px;
    margin-left: 83px;
  }
}
.hero_wrapper .hero_container .page_title .title_about {
  font-size: 90px;
  margin-top: -31px;
  margin-left: 322px;
  color: #F1F1F1;
}
@media screen and (max-width: 1024px) {
  .hero_wrapper .hero_container .page_title .title_about {
    font-size: 67.5px;
    margin-top: -16px;
    margin-left: 241px;
  }
}
@media screen and (max-width: 768px) {
  .hero_wrapper .hero_container .page_title .title_about {
    font-size: 50.5px;
    margin-top: -11px;
    margin-left: 182px;
  }
}
@media screen and (max-width: 600px) {
  .hero_wrapper .hero_container .page_title .title_about {
    font-size: 38px;
    margin-top: -9px;
    margin-left: 135px;
  }
}
@media screen and (max-width: 375px) {
  .hero_wrapper .hero_container .page_title .title_about {
    font-size: 32px;
    margin-top: -7px;
    margin-left: 112px;
  }
}
.hero_wrapper .hero_container .page_title .title_websites {
  font-size: 200px;
  margin-top: -33px;
  color: #F8D119;
}
@media screen and (max-width: 1024px) {
  .hero_wrapper .hero_container .page_title .title_websites {
    font-size: 150px;
    margin-top: -24.5px;
  }
}
@media screen and (max-width: 768px) {
  .hero_wrapper .hero_container .page_title .title_websites {
    font-size: 112.5px;
    margin-top: -18.5px;
  }
}
@media screen and (max-width: 600px) {
  .hero_wrapper .hero_container .page_title .title_websites {
    font-size: 84px;
    margin-top: -13.5px;
  }
}
@media screen and (max-width: 375px) {
  .hero_wrapper .hero_container .page_title .title_websites {
    font-size: 70px;
    margin-top: -12px;
  }
}
.hero_wrapper .hero_container .page_title_clear {
  opacity: 0.3;
}
.hero_wrapper .hero_container .squirrelwise_logo {
  margin-top: 20px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 164px;
  height: 42px;
  background-image: url("../images/graphics/squirrelwise_logo.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.hero_wrapper .hero_container .squirrelwise_cta {
  position: absolute;
  top: 20px;
  right: 26px;
  width: 339px;
  height: 131px;
  background-image: url("../images/graphics/squirrelwise_cta.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .hero_wrapper .hero_container .squirrelwise_cta {
    top: unset;
    right: unset;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 600px) {
  .hero_wrapper .hero_container .squirrelwise_cta {
    bottom: 32px;
    width: 275px;
    height: 131px;
    background-image: url("../images/graphics/squirrelwise_cta.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.portfolio_link,
.email_link {
  font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans_serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 66px;
  line-height: 1;
  position: relative;
  display: block;
  width: 100%;
  transition: background-color 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #F8D119;
  padding-top: 56px;
  padding-bottom: 56px;
}
@media screen and (max-width: 1024px) {
  .portfolio_link,
.email_link {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .portfolio_link,
.email_link {
    font-size: 36px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media screen and (max-width: 600px) {
  .portfolio_link,
.email_link {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  .portfolio_link,
.email_link {
    font-size: 24px;
  }
}
.portfolio_link:hover,
.email_link:hover {
  background-color: #fadb4a;
}
.portfolio_link .portfolio_text,
.portfolio_link .email_text,
.email_link .portfolio_text,
.email_link .email_text {
  line-height: 1;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  margin: 0 auto;
  color: #1E1E1E;
}
.portfolio_link .portfolio_text::after,
.email_link .portfolio_text::after {
  display: block;
  margin-top: 8px;
  margin-left: 12px;
  content: "";
  width: 52px;
  height: 52px;
  background-image: url("../images/graphics/external_link.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .portfolio_link .portfolio_text::after,
.email_link .portfolio_text::after {
    margin-top: 4px;
    width: 42px;
    height: 42px;
    background-image: url("../images/graphics/external_link.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .portfolio_link .portfolio_text::after,
.email_link .portfolio_text::after {
    display: none;
  }
}
.portfolio_link .email_text::before,
.email_link .email_text::before {
  display: block;
  margin-top: 9px;
  margin-right: 12px;
  margin-left: 12px;
  content: "";
  width: 64px;
  height: 64px;
  background-image: url("../images/graphics/envelop.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .portfolio_link .email_text::before,
.email_link .email_text::before {
    margin-top: 6px;
    width: 50px;
    height: 50px;
    background-image: url("../images/graphics/envelop.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .portfolio_link .email_text::before,
.email_link .email_text::before {
    display: none;
  }
}

.portfolio_link {
  margin-top: -1%;
}

.about_wrapper {
  color: #1E1E1E;
  background-color: #F1F1F1;
}
.about_wrapper .about_container {
  min-height: 700px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 46%;
}
@media screen and (max-width: 1024px) {
  .about_wrapper .about_container {
    min-height: 0;
    background-size: 50%;
  }
}
@media screen and (max-width: 768px) {
  .about_wrapper .about_container {
    background-image: none !important;
  }
}
.about_wrapper .body_text {
  position: relative;
  display: block;
  max-width: 50%;
  padding-left: 122px;
  padding-top: 88px;
  padding-bottom: 88px;
}
@media screen and (max-width: 1024px) {
  .about_wrapper .body_text {
    padding-left: 88px;
  }
}
@media screen and (max-width: 768px) {
  .about_wrapper .body_text {
    max-width: 100%;
    padding-left: 78px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media screen and (max-width: 432px) {
  .about_wrapper .body_text {
    padding-left: 68px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.about_wrapper .body_text::before {
  font-family: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans_serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1;
  position: absolute;
  left: 0;
  display: block;
  content: "Hi,";
}
.about_wrapper .portrait {
  display: none;
}
@media screen and (max-width: 768px) {
  .about_wrapper .portrait {
    display: block;
  }
}
.about_wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.footer_container {
  width: 100%;
  max-width: 519px;
  max-height: 600px;
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .footer_container {
    width: 300px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media screen and (max-width: 432px) {
  .footer_container {
    width: 290px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 320px) {
  .footer_container {
    width: 190px;
  }
}
.footer_container .squirrelwise_banner {
  display: block;
  width: 100%;
  background-image: url("../images/squirrelwise_banner.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 44.7844228095%;
  min-height: 80px;
  height: 0;
}

.copyright {
  display: block;
  padding-bottom: 16px;
  text-align: center;
}
@media screen and (max-width: 432px) {
  .copyright {
    padding-bottom: 32px;
  }
}
/*# sourceMappingURL=main.css.map */
