@charset "UTF-8";
/*!
 * Sado Hero Header Effects 
 * Version: 3.0
 * Created: 24 May 2019
 * Last Update: 3 Oct 2019
 * Author: Web_Trendy
 * Copyright 2019 © Web_Trendy (https://codecanyon.net/user/web_trendy)
 * Licensed under Envato (https://codecanyon.net/licenses/standard)
 *
 * "We are born of LOVE, lover is our mother." -Rumi
 *
 */
/*------------------------------------------------------------------
[Table of contents]

1.0 Variables
2.0 General Styles / .sado-header
3.0 Template Styles
4.0 Animations
5.0 Media Queries
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Variables
--------------------------------------------------------------*/
::root {
  --header-height: 100vh; }

/*Yellow*/
/*Dark Gray*/
/*--------------------------------------------------------------
2.0 General Styles
--------------------------------------------------------------*/
.sado-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: all 1000ms cubic-bezier(0.7, 0, 0.3, 1); }
  .sado-header .sado-header-img {
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
    filter: brightness(0.8);
    transition: all 1000ms cubic-bezier(0.7, 0, 0.3, 1); }
  .sado-header .sado-header-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4em;
    box-sizing: border-box;
    color: white;
    will-change: transform;
    transition: all 1000ms cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 999; }
    .sado-header .sado-header-content .header-title {
      font-size: 4em;
      margin: 10px 0px;
      text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
      transition: all 1000ms cubic-bezier(0.7, 0, 0.3, 1); }
    .sado-header .sado-header-content .header-subtitle {
      font-size: 1.5em; }
    .sado-header .sado-header-content .header-scroll {
      display: inline-block;
      position: absolute;
      bottom: 0;
      cursor: pointer;
      padding: 10px;
      box-sizing: border-box;
      overflow: hidden;
      transition: all 1000ms cubic-bezier(0.7, 0, 0.3, 1); }
      .sado-header .sado-header-content .header-scroll img {
        max-height: 100%;
        animation: 5s ease 0s infinite normal both running sado-jello-horizontal; }
  .sado-header.active + .sado-body {
    opacity: 1;
    transition-delay: 300ms; }
  .sado-header + .sado-body {
    transition: all 1000ms cubic-bezier(0.7, 0, 0.3, 1);
    opacity: 0; }

/*--------------------------------------------------------------
3.0 Template Styles
--------------------------------------------------------------*/
/*Template 13*/
.sado-header.sado-header-13 {
  background-color: white;
  height: 100vh;
  overflow: hidden; }
  .sado-header.sado-header-13 .top-half {
    height: 50%;
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    transition: all 1000ms cubic-bezier(0.7, 0, 0.3, 1); }
    .sado-header.sado-header-13 .top-half img {
      position: absolute;
      left: 0;
      width: 100%;
      height: 100vh;
      object-fit: cover; }
  .sado-header.sado-header-13 .bottom-half {
    height: 50%;
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    transition: all 1000ms cubic-bezier(0.7, 0, 0.3, 1); }
    .sado-header.sado-header-13 .bottom-half img {
      position: absolute;
      left: 0;
      width: 100%;
      bottom: 0;
      height: 100vh;
      object-fit: cover; }
  .sado-header.sado-header-13 .sado-header-content {
    align-items: center;
    text-align: center; }
    .sado-header.sado-header-13 .sado-header-content .header-title {
      transform: scale(1); }
    .sado-header.sado-header-13 .sado-header-content .header-subtitle {
      transform: translateY(-50px);
      opacity: 0;
      transition: all 1000ms cubic-bezier(0.7, 0, 0.3, 1);
      color: #333333; }
    .sado-header.sado-header-13 .sado-header-content .header-scroll {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 80%;
      bottom: 30px; }
      .sado-header.sado-header-13 .sado-header-content .header-scroll img {
        margin-bottom: 15px;
        filter: invert(1); }
  .sado-header.sado-header-13.active .top-half {
    transform: translateY(-50%); }
  .sado-header.sado-header-13.active .bottom-half {
    transform: translateY(100%); }
  .sado-header.sado-header-13.active .sado-header-content .header-title {
    text-shadow: none;
    transform: scale(0.8);
    color: #333333; }
  .sado-header.sado-header-13.active .sado-header-content .header-subtitle {
    opacity: 1;
    transform: translateY(0);
    color: #333333; }
  .sado-header.sado-header-13.active .header-scroll {
    opacity: 0; }
  .sado-header.sado-header-13.active + .sado-body {
    transform: translateY(calc(70vh)); }
  .sado-header.sado-header-13 + .sado-body {
    transform: translateY(var(--header-height)); }

/*--------------------------------------------------------------
4.0 Animations
--------------------------------------------------------------*/
@keyframes sado-jello-horizontal {
  0% {
    transform: scale(0.8) translateY(-150%);
    opacity: 0; }
  20%, 80% {
    transform: scale(1) translateY(0px);
    opacity: 1; }
  100% {
    transform: scale(0.8) translateY(150%);
    opacity: 0; } }
/*--------------------------------------------------------------
5.0 Media Queries
--------------------------------------------------------------*/
/*Phone*/
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .sado-header .sado-header-content {
    padding: 2em; }
    .sado-header .sado-header-content .header-title {
      font-size: 2em;
      transform: scale(1.15) !important; }
  .sado-header.active .header-title {
    transform: scale(1) !important; } }
/* Landscape */
@media screen and (max-width: 823px) and (orientation: landscape) {
  .sado-header .sado-header-content {
    padding: 2em; }
    .sado-header .sado-header-content .header-title {
      font-size: 2em; }
    .sado-header .sado-header-content .header-subtitle {
      font-size: 1.2em; } }
@media (min-width: 576px) {
  .sado-header .sado-header-content {
    max-width: 540px; } }
@media (min-width: 768px) {
  .sado-header .sado-header-content {
    max-width: 720px; } }
@media (min-width: 992px) {
  .sado-header .sado-header-content {
    max-width: 960px; } }
@media (min-width: 1200px) {
  .sado-header .sado-header-content {
    max-width: 1140px; } }
/* :) Let's meke internet BEAUTIFUL*/
/*
 _       __     __       ______                    __
| |     / /__  / /_     /_  __/_______  ____  ____/ /_  __
| | /| / / _ \/ __ \     / / / ___/ _ \/ __ \/ __  / / / /
| |/ |/ /  __/ /_/ /    / / / /  /  __/ / / / /_/ / /_/ /
|__/|__/\___/_.___/    /_/ /_/   \___/_/ /_/\__,_/\__, /
                                                 /____/
*/

/*# sourceMappingURL=template13.css.map */
