/*
linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8))
*/
/*
0-600px      Phone
600-900px    Table portrait
900-1200px   Table landscape
1200-1800px  normal
1800----     Desktop
*/
/**
$breakpoint
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout + components

*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px); }
  80% {
    transform: translateX(10px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(20px); }
  80% {
    transform: translateX(-10px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInButtom {
  0% {
    opacity: 0;
    transform: translateY(30px); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInShadow {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes rainDrop {
  90% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translateY(95vh); } }

@keyframes heartVibrate {
  0%, 100% {
    transform: scale(0.9); }
  50% {
    transform: scale(1); } }

@keyframes heartIllusory {
  0% {
    opacity: 1;
    transform: scale(0.9); }
  100% {
    opacity: 0;
    transform: scale(1.4); } }

@font-face {
  font-family: 'Noto Color Emoji';
  src: url("../fonts/NotoColorEmoji.ttf") format("truetype"); }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  max-width: 1920px;
  margin: 0 auto;
  font-size: 62.5%; }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.7;
  color: #777;
  padding: 30px; }
  @media (max-width: 56.25em) {
    body {
      padding: 16px; } }

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden; }
  .heading-primary--main {
    font-size: 50px;
    letter-spacing: 20px;
    display: block;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out; }
    @media (max-width: 37.5em) {
      .heading-primary--main {
        letter-spacing: .5rem; } }
  .heading-primary--sub {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 15px;
    display: block;
    animation-name: moveInRight;
    animation-duration: 1s;
    animation-timing-function: ease-out; }

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #7ed56f, #28b485);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: .2rem;
  transition: all .2s; }
  @media (max-width: 56.25em) {
    .heading-secondary {
      font-size: 3rem; } }
  @media (max-width: 37.5em) {
    .heading-secondary {
      font-size: 2.5rem; } }
  .heading-secondary:hover {
    transform: skewY(2deg) skew(15deg);
    text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2); }

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase; }

.paragraph {
  font-size: 1.6rem; }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem; }

.u-center-text {
  text-align: center; }

.u-marign-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-marign-bottom-medium {
  margin-bottom: 4rem !important; }

.u-marign-bottom-big {
  margin-bottom: 8rem !important; }

.emjio {
  font-family: 'Noto Color Emoji';
  font-style: normal; }

.bg-audio {
  height: 12rem;
  width: 30rem;
  margin: 0 auto;
  background-color: #e23c13;
  position: absolute;
  bottom: 1rem;
  right: 3rem; }
  .bg-audio__shape {
    width: 10rem;
    height: 10rem;
    background-color: orangered;
    position: relative;
    top: 50%;
    transform: translate(10%, -50%);
    shape-outside: circle(50% at 50% 50%);
    --weblit-shape-outside: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    --webkit-clip-path: circle(50% at 50% 50%); }

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: .45;
  overflow: hidden; }
  .bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover; }

.btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 20px;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 100px;
  transition: all .2s;
  z-index: 2;
  position: relative; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .3s; }

.btn--white {
  background-color: #fff;
  color: #777; }
  .btn--white::after {
    background-color: #fff; }

.btn--animated {
  animation: moveInButtom .5s ease-out .75s;
  animation-fill-mode: backwards; }

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: #55c57a;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #55c57a;
  padding: 3px;
  transition: all .2s; }

.btn-text:hover {
  background-color: #55c57a;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); }

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0); }

.composition {
  height: 30rem;
  width: 60%;
  margin: 0 auto;
  position: relative; }
  .composition__vibrating--heart {
    height: 30rem;
    width: 100%;
    position: absolute;
    animation-name: heartVibrate;
    animation-duration: 1.5s;
    animation-iteration-count: infinite; }
    .composition__vibrating--heart::before, .composition__vibrating--heart::after {
      content: "";
      display: table;
      height: 23rem;
      width: 15rem;
      position: absolute;
      top: 50%;
      left: 50%;
      background-color: #ef1b11;
      border-radius: 200px 200px 0 0; }
    .composition__vibrating--heart::before {
      transform: translate(-70%, -50%) rotate(-45deg); }
    .composition__vibrating--heart::after {
      transform: translate(-32%, -50%) rotate(45deg);
      box-shadow: 1rem -1.5rem 1rem rgba(0, 0, 0, 0.4); }
  .composition__vibrating--heart:last-child {
    animation-name: heartIllusory;
    animation-duration: 1.5s;
    animation-iteration-count: infinite; }
    .composition__vibrating--heart:last-child::after {
      box-shadow: 0 0 0 !important; }

.rain-box {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1; }
  .rain-box__drop {
    display: inline-block;
    height: 20px;
    width: calc(var(--x) * 0.3px);
    background-color: #fff;
    clip-path: ellipse(2% 40% at 49% 45%);
    transform: translateY(calc((var(--y) + 50) * -1px));
    animation-name: rainDrop;
    animation-delay: calc(var(--y) * 0.01s);
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; }

.story {
  width: 70%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 3px;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  transform: skewX(-12deg); }
  .story__shape {
    width: 15rem;
    height: 15rem;
    float: left;
    shape-outside: circle(50% at 50% 50%);
    --weblit-shape-outside: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    --webkit-clip-path: circle(50% at 50% 50%);
    transform: translateX(-3rem) skewX(12deg);
    position: relative; }
  .story__caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20%);
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transition: all .5s;
    backface-visibility: hidden; }
  .story__text {
    transform: skewX(12deg); }
  .story__image {
    height: 100%;
    transform: translateX(-5rem) scale(1.2);
    backface-visibility: hidden;
    transition: all .5s; }
  .story:hover .story__caption {
    opacity: 1;
    transform: translate(-50%, -50%); }
  .story:hover .story__image {
    opacity: 1;
    transform: translateX(-5rem) scale(1);
    filter: blur(3px) brightness(80%); }

.footer {
  background-color: #333;
  padding: 5rem 0 2rem;
  font-size: 1.5rem;
  color: #f7f7f7;
  text-align: center; }
  .footer__heart-box {
    display: inline-block;
    text-align: center;
    margin: 0 0 0 2rem; }
  .footer__heart {
    width: 7rem;
    height: auto; }
  .footer__signation {
    font-family: 'Allura', cursive;
    font-size: 5rem;
    font-weight: 400;
    display: inline-block; }
  .footer__navigation {
    border-top: 1px solid #777;
    padding-top: 2rem;
    display: inline-block; }
  .footer__list {
    list-style: none; }
  .footer__item {
    display: inline-block; }
    .footer__item:not(:last-child) {
      margin-right: 1.5rem; }
  .footer__link:link, .footer__link:visited {
    color: #f7f7f7;
    background-color: #333;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all .2s; }
  .footer__link:hover, .footer__link:active {
    color: #55c57a;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
    transform: rotate(5deg) scale(1.3); }
  .footer__social-box {
    padding: 2rem 0 0 2.5rem; }
    .footer__social-box::after {
      content: "";
      display: table;
      clear: both; }
  .footer__social-logo {
    display: inline-block;
    float: left;
    width: 4rem;
    shape-outside: circle(50% at 50% 50%);
    --weblit-shape-outside: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    --webkit-clip-path: circle(50% at 50% 50%); }
  .footer__social-text {
    display: inline-block;
    padding-left: 1rem;
    line-height: 4rem;
    float: left;
    font-size: 1.5rem;
    font-weight: 300; }
  .footer__copyright {
    font-weight: 300;
    font-size: 1.5rem; }
    .footer__copyright-svg {
      margin: 0 0.6rem;
      height: 1.4rem; }

.row {
  max-width: 114rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 6rem; } }
  @media (max-width: 56.25em) {
    .row {
      max-width: 50rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0; } }
    @media (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
  .row .col-2-of-3 {
    width: calc(2* ((100% - 2 * 6rem) / 3) + 6rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
  .row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem); }
  .row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem); }

.header {
  height: 70rem;
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.05)), url(../img/station.jpg);
  background-size: cover;
  background-position: bottom;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%); }
  @media (max-width: 37.5em) {
    .header {
      clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); } }
  .header__logo-box {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #fff;
    animation-name: moveInShadow;
    animation-duration: 1s;
    animation-timing-function: ease-out; }
  .header__logo {
    font-family: 'Allura', cursive;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block; }
  .header__logo:first-child {
    transform: translateY(-2px); }
  .header__logo:nth-child(2) {
    transform: translateY(3px); }
  .header__logo:nth-child(3) {
    transform: translateY(-4px); }
  .header__logo:last-child {
    font-size: 16px;
    transform: translateY(-10px); }
  .header__text-box {
    position: absolute;
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%);
    /* text-align: center; */ }

.section-about {
  padding-bottom: 15rem;
  background-size: cover;
  background-position: top; }
  @media (max-width: 56.25em) {
    .section-about {
      margin-top: -5rem; } }

.section-story {
  padding: 15rem 0rem 25rem 0;
  position: relative; }
