/*!***************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-1.use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/presentation/style.scss ***!
  \***************************************************************************************************************************************************************************************************/
/**
 * Helper mixins
*/
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Sizes */
/* Colour palette */
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
https://toward.studio/latest/making-css-gradients-smooth
*/
.presentation {
  position: relative;
  height: calc(100vh - 120px);
  background-color: #000000;
  padding: 0 120px;
  overflow: hidden;
  z-index: 2;
}
.presentation__inner {
  margin-top: 48px;
  z-index: 2;
}
.presentation__inner:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  margin-top: 0;
}
.presentation__wrapper {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
.presentation__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.presentation__title {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
  width: 100%;
  max-width: 690px;
}
.presentation__title sup {
  font-size: 19px;
}
.presentation__title {
  font-size: 24px;
}
@media screen and (min-width: 375px) {
  .presentation__title {
    font-size: calc(24px + 24 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  .presentation__title {
    font-size: 48px;
  }
}
.presentation__title {
  line-height: 31px;
}
@media screen and (min-width: 375px) {
  .presentation__title {
    line-height: calc(31px + 31 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  .presentation__title {
    line-height: 62px;
  }
}
.presentation__text {
  font-weight: 400;
  color: #FFCD75;
  width: 100%;
  max-width: 480px;
}
.presentation__text {
  font-size: 14px;
}
@media screen and (min-width: 375px) {
  .presentation__text {
    font-size: calc(14px + 6 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  .presentation__text {
    font-size: 20px;
  }
}
.presentation__text {
  line-height: 20px;
}
@media screen and (min-width: 375px) {
  .presentation__text {
    line-height: calc(20px + 8 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  .presentation__text {
    line-height: 28px;
  }
}
.presentation__img {
  width: 100%;
  max-width: 865px;
  height: auto;
  margin-left: auto;
}
.presentation__img-bg {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
}
.presentation__link-wrap {
  position: relative;
  z-index: 1;
  margin-top: 75px;
}
.presentation__link {
  font-weight: 700;
  padding: 16px 32px;
  border: 1px solid #FFCD75;
  border-radius: 28px;
  margin-right: 16px;
}
.presentation__link:last-child {
  margin-right: 0;
}
.presentation__link {
  font-size: 14px;
}
@media screen and (min-width: 375px) {
  .presentation__link {
    font-size: calc(14px + 4 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  .presentation__link {
    font-size: 18px;
  }
}
.presentation__link {
  line-height: 16px;
}
@media screen and (min-width: 375px) {
  .presentation__link {
    line-height: calc(16px + 5 * ((100vw - 375px) / 1065));
  }
}
@media screen and (min-width: 1440px) {
  .presentation__link {
    line-height: 21px;
  }
}
.presentation__link_default {
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, color-stop(-25.11%, #A36D10), color-stop(41.68%, #FFD475), color-stop(114.29%, #A36D10));
  background: linear-gradient(90deg, #A36D10 -25.11%, #FFD475 41.68%, #A36D10 114.29%);
  color: #000000;
}
.presentation__link_outlined {
  color: #FFCD75;
}
@media (max-height: 760px) {
  .presentation__img {
    max-width: 680px;
  }
}
@media (max-width: 1400px) {
  .presentation__img {
    max-width: 600px;
  }
}
@media (max-width: 1280px) {
  .presentation {
    height: calc(100vh - 100px);
  }
  .presentation__inner:last-child {
    width: 70%;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  .presentation {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .presentation {
    padding: 0 40px;
  }
}
@media (max-width: 480px) {
  .presentation {
    height: 518px;
    padding: 0 20px;
  }
  .presentation__inner {
    margin-top: 40px;
    position: relative;
  }
  .presentation__inner:first-child:after {
    content: "";
    display: block;
    width: 500px;
    height: 40px;
    position: absolute;
    left: -117px;
    bottom: -21px;
    background: -webkit-gradient(linear, left bottom, left top, from(#0C0C0C), to(rgba(33, 33, 33, 0)));
    background: linear-gradient(0deg, #0C0C0C 0%, rgba(33, 33, 33, 0) 100%);
    z-index: 0;
  }
  .presentation__link {
    padding: 11px 21px;
    margin-right: 8px;
  }
  .presentation__link-wrap {
    margin-top: 50px;
  }
}
@media (max-width: 374px) {
  .presentation__link {
    margin-right: 0;
  }
  .presentation__link:last-child {
    margin-top: 10px;
  }
  .presentation__link-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
