/* ========================================================================================================================================================
    First section
======================================================================================================================================================== */
/* ============================================================================ 
  Mobile & Default CSS 
============================================================================ */

/*
  Section
*/

.first-section, .video-container-over {
    min-height: 500px;
    position: relative;
}
  
  /*
    Video
  */
  
  .fullscreen-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
  }
  
  .fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* To fix for Desktop devices*/
    margin-left: -245px;
    transition: height 9999s linear;
  }
  
  /*
    Over video container elements:
      Text over video
  */
  
  .video-container-over {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0, 0) 0%, rgba(0,0,0, .9) 85%, rgba(0,0,0,1) 100%);
  }
  
  .video-container-div {
    width: 100%;
  }
  
  /* IPad vertical*/
  
  /* Portrait Query */
  
  @media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
    .video-container-over {
      height: 100vh;
      position: relative;
    }
  }
  
  /* Text over video */
  
  .video-text-over {
    position: relative;
  }
  
  .video-text-over p {
    font-size: 25pt;
    line-height: 32px;
  }
  
  .video-text-over .first-sous-title {
    font-size: 12pt;
    line-height: 14pt;
  }
  
  /* Buttons */
  
  .btn-homepage {
    font-size: 12pt;
    padding: 14px 20px;
    min-width: 260px;
    margin: 4% 1%;
  }
  
  /* First page buttons */
  
  .btn-homepage-desktop {
    font-size: 12pt;
    padding: 14px 20px;
    min-width: 260px;
    margin: 4% 1%;
  }
  
  /* Social media buttons */
  
  .socialmedia-homepage {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .socialmedia-homepage img {
    width: 40px;
    height: 40px;
  }
  
  /* ============================================================================ 
    Desktop 
  ============================================================================ */
  
  @media only screen and (min-width: 768px) {
    /* Fix margin video background */
    .fullscreen-bg__video {
      margin-left: auto;
    }
    /* */
    .video-container-over {
      /* padding-top: 40vh; */
    }
    /* Text over the video */
    .video-text-over {
      text-align: center;
    }
    .video-text-over p {
      font-size: 26pt;
      line-height: 28px;
    }
    /*  */
    .socialmedia-homepage {
      display: initial;
      bottom: 15px;
      left: 15px;
    }
    .socialmedia-homepage a {
      position: relative;
      width: auto;
      height: auto;
    }
  }
  
  /* Minimum 1080 px screens */
  
  @media only screen and (min-width: 1080px) {
    .btn-homepage-desktop {
      font-size: 14pt;
    }
    .video-text-over {}
    .video-text-over p {
      font-size: 30pt;
      line-height: 32px;
    }
  }
  
  /* Not touch screen fix for video */
  
  @media (hover: hover) and (pointer: fine) {
    .fullscreen-bg__video {
      max-height: none!important;
    }
  }
  
  /* 
    Other Media Queries (For background video fitting)
  */
  
  @media (min-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
      width: 100%;
      height: auto;
    }
  }
  
  @media (max-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
      width: auto;
      height: 100%;
      transition: height 9999s linear;
    }
  }
  
  /*
    Scroll mouse animation
  */
  
  @-webkit-keyframes ani-mouse {
    0% {
      opacity: 1;
      top: 29%;
    }
    15% {
      opacity: 1;
      top: 50%;
    }
    50% {
      opacity: 0;
      top: 50%;
    }
    100% {
      opacity: 0;
      top: 29%;
    }
  }
  
  @-moz-keyframes ani-mouse {
    0% {
      opacity: 1;
      top: 29%;
    }
    15% {
      opacity: 1;
      top: 50%;
    }
    50% {
      opacity: 0;
      top: 50%;
    }
    100% {
      opacity: 0;
      top: 29%;
    }
  }
  
  @keyframes ani-mouse {
    0% {
      opacity: 1;
      top: 29%;
    }
    15% {
      opacity: 1;
      top: 50%;
    }
    50% {
      opacity: 0;
      top: 50%;
    }
    100% {
      opacity: 0;
      top: 29%;
    }
  }
  
  .scroll-btn {
    display: block;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    width: fit-content;
    margin: auto;
  }
  
  .scroll-btn p {
    margin: 8px auto;
    width: auto;
    transform: none;
  }
  
  .scroll-btn>* {
    font-size: 10pt;
    font-weight: normal;
    color: #7f8c8d;
    color: #ffffff;
    letter-spacing: 2px;
    width: 100%;
  }
  
  .scroll-btn>*:hover, .scroll-btn>*:focus, .scroll-btn>*.active {
    color: #ffffff;
  }
  
  .scroll-btn>*:hover, .scroll-btn>*:focus, .scroll-btn>*:active, .scroll-btn>*.active {
    opacity: 0.8;
    filter: alpha(opacity=80);
  }
  
  .scroll-btn .mouse {
    position: relative;
    display: block;
    width: 35px;
    height: 50px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid white;
    border-radius: 23px;
  }
  
  .scroll-btn .mouse>* {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: white;
    border-radius: 50%;
    -webkit-animation: ani-mouse 2.5s linear infinite;
    -moz-animation: ani-mouse 2.5s linear infinite;
    animation: ani-mouse 2.5s linear infinite;
  }




/* ========================================================================================================================================================
    Second section
======================================================================================================================================================== */
/* ============================================================================ 
  Mobile & Default CSS 
============================================================================ */
/*
    Background
*/
.second-bg {
    background: url('https://v0.tooltipmedia.com/wp-content/themes/juan-dev-theme/resources/img/fleur-rouge-ouverte-avec-fond-transparent-et-vue-de-face.png');
    background-attachment: initial;
    background-repeat: no-repeat;
    background-color: #000;
    background-size: contain;
    background-position: 160px 36vh;
    height: 100vh;
    padding-top: 25vh;
    position: relative;
    width: 100%;
    overflow: hidden;
}
/*
    Main Text
*/
.second-main__text {
    font-size: 22pt;
    text-align: center;
    line-height: 32px;
    max-width: 315px;
    margin: auto;
}
/*
    Fix text for spacing in the mobile view
*/
.second-main__text__span {
    display: block;
    margin-top: 20px;
}
/*
    Article section
*/
.second__article-view {
    position: absolute;
    bottom: 6%;
    left: 0;
    right: 0;
}
    .second__article-view p {
        font-size: 10pt;
        text-align: justify;
        margin: 0% 2%;
    }
    @media only screen and (min-width: 620px) {
        .second__article-view p {
            font-size: 12pt;
            text-align: center;
        }
    }
    
    .second__article-btn-container {
        width: 100%;
        text-align: right;
    }
    .second__article-btn-container .btn {
        font-size: 12pt;
    }
    .second__article-btn-container p {
        font-size: 8pt;
        max-width: 100px;
        margin-right: 0%;
        margin-left: auto;
        text-align: center;
    }

/* ============================================================================ 
  Desktop 
============================================================================ */
/* Minimum 769px screens */
@media only screen and (min-width: 769px) {
    /* Background */
    .second-bg {
        background-size: 80%;
        background-position: 175% 46vh;
        padding-top: 35vh
    }
    /*  */
    .second__text-div {
        max-width: 550px;
    }
    .second__article-view {
        position: relative;
        bottom: auto;
        left: auto;
        text-align: initial;
        max-width: 550px;
    }
        .second__article-view p {
            font-size: 12pt;
            text-align: initial;
            margin: 1em 0%;
        }
    .second-main__text {
        font-size: 22pt;
        text-align: initial;
        line-height: 32px;
        max-width: 100%;
        margin: auto;
    }
    .second-main__text__span {
        display: inline-block;
        margin-top: 0px;
    }
    /* Button container */
    .second__article-btn-container {}
        /* Article read button */
        .second__article-btn-container .btn {
            font-size: 12pt;
            padding: 10px 28px;
        }
        .second__article-btn-container .sub-btn__text {
            margin-right: 0%;
            margin-left: auto;
            margin-top: 1%;
            text-align: center;
            max-width: 138px;
            font-size: 10pt;
        }
}

/* Minimum 1080 px screens */
@media only screen and (min-width: 1080px) {
    /* Background */
    .second-bg {
        background-size: 750px;
        background-position: 54vw 25vh;
    }
    /* */
    .second__text-div, .second__article-view {
        margin-left: 10%; 
        max-width: 590px;
    }
    .second-main__text {
        font-size: 24pt;
    }
}





/* ========================================================================================================================================================
    Third section
======================================================================================================================================================== */
/* ============================================================================ 
  Mobile & Default CSS 
============================================================================ */
/*
    Background
*/
.third-bg {
    background: url('https://v0.tooltipmedia.com/wp-content/themes/juan-dev-theme/resources/img/fruit-citron-tombant-dans-l-eau-noir-avec-effet.jpg');
    background-attachment: initial;
    background-repeat: no-repeat;
    background-color: #000;
    background-size: contain;
    background-position: 0px 0px;
    height: 100vh;
    padding-top: 45vh;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/*
    Text
*/
.third-text {
    width: 100%;
    text-align: center;
    font-size: 18pt;
    padding: 0% 4%;
    max-width: 600px;
    margin: auto;
    line-height: 30px;
}
/* Fix title position */
@media only screen and (min-width: 600px) {
    .third-text {
        margin-top: 20%;
    }
}

.third-text-block {
    display: block;
    margin-top: 45px;
}

/* Background for non screen devices */
.third-section {
    background-color: #000; 
    position: relative;
}
    .third-section .bg-image {
        background: url('https://v0.tooltipmedia.com/wp-content/themes/juan-dev-theme/resources/img/fruit-citron-tombant-dans-l-eau-noir-avec-effet.jpg');
        background-attachment: initial;
        background-repeat: no-repeat;
        background-color: #000;
        background-size: contain;
        background-position: 0px 0px;
        height: 100vh;
        width: 100%;
    }
    .third-section .hide-in__touchable-screen .third-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -100%);
        width: 80%;
        margin-top: 0%;
    }




/* 
    Scrolling effects 
*/
/* Blur effect */
.blur-initial-state {
    filter: blur(0px);
    -webkit-filter: blur(0px);
    transition: all .5s ease-in;
}
.blur-effect {
    filter: blur(3px);
    -webkit-filter: blur(2px);
}

/* Opacity effect */
.opacity-initial-state {
    opacity: 0;
    transition: all .5s ease-in;
}
.opacity-effect {
    opacity: 1;
}

/* ============================================================================ 
  Desktop 
============================================================================ */
/* Minimum 769px screens */
@media only screen and (min-width: 769px) {
    .third-section .hide-in__touchable-screen .third-text {
        max-width: 780px;
        line-height: 100%;
    }
    .third-section .hide-in__touchable-screen .third-text-block {
        margin-top: 5px;
    }
}

/* Minimum 1080 px screens */
@media only screen and (min-width: 1080px) {
    .third-section .bg-image {
        background-size: cover;
        background-position-y: 100%;
    }
    .third-section .hide-in__touchable-screen p {
        font-size: 22pt;
    }
    .third-section .hide-in__touchable-screen .third-text {
        max-width: none;
        width: 90%;
    }
    
}






/* ========================================================================================================================================================
    Fourth section
======================================================================================================================================================== */
/* ============================================================================ 
  Mobile & Default CSS 
============================================================================ */

/*
    Background
*/

.fourth-bg {
    background: url('https://v0.tooltipmedia.com/wp-content/themes/juan-dev-theme/resources/img/mac-apple-laptop-ordinateur-portable-avec-coleurs-sortant-de-son-ecran.png');
    background-attachment: initial;
    background-repeat: no-repeat;
    background-color: #000;
    background-size: contain;
    background-position: -75px 66vh;
    height: 100vh;
    padding-top: 20vh;
    position: relative;
    width: 100%;
    overflow: hidden;
}

@media only screen and (min-width: 630px) {
    .fourth-bg {
        background-position: -160px 50vh;
    }
}

/*
    Text
*/

.fourth-title {
    font-size: 50pt;
    margin: auto;
    text-align: center;
}

.fourth-small-text {
    margin: auto;
    text-align: center;
}

.fourth-md-text {
    font-size: 15pt;
    margin: 55px auto;
    text-align: center;   
    line-height: 25px; 
}



/* ============================================================================ 
  Desktop 
============================================================================ */
/* Minimum 769px screens */
@media only screen and (min-width: 769px) {
    .fourth-bg {
        background-size: 580px;
        background-position: 5% 50vh;
    }
    .fourth-title {
        font-size: 90pt;
    }
    .fourth-small-text {
        font-size: 22pt;
        
    }
    .fourth-md-text {
        font-size: 24pt;
        line-height: 36px;
        max-width: 650px;
        margin: 25px auto;
    }
        .fourth-md-text br {
            display: none;
        }
}

/* Minimum 1080 px screens */
@media only screen and (min-width: 1080px) {
    .fourth-bg {
        background-size: 580px;
        background-position: 8% 50vh;
    }
}








/* ========================================================================================================================================================
    Fifth section
======================================================================================================================================================== */
/* ============================================================================ 
  Mobile & Default CSS 
============================================================================ */

/*
    Background
*/
.fifth-bg {
    background-color: #000;
    min-height: 180vh;
    padding-top: 40vh; 
    position: relative;
    width: 100%;
    overflow: hidden;
}


/*
    Title
*/
.fifth-title {
    max-width: 300px!important; 
    margin-left: 0px!important;
    padding-left: 5%;
}

/*
    Image sequence
*/
#img__seq-1__container {
    /*height: 170vh;*/
}
.img__sequence {
    width: 100%!important;
}

/*
    Video replace for touch devices
*/
.touch-device__video {
    max-width: 1080px;
}
    .touch-device__video video {
        width: 100%;
    }



/* ============================================================================ 
  Desktop 
============================================================================ */
/* Minimum 769px screens */
@media only screen and (min-width: 769px) {
    .div-img__seq-1 {
        text-align: center;
    }
    .img__sequence {
        max-width: 640px;
        vertical-align: top;
    } 
    /*  */
    .fifth-title {
        max-width: none!important;
    }
}

/* Minimum 1080 px screens */
@media only screen and (min-width: 1080px) {
    #img__seq-1__container {
        text-align: center;
        max-width: 1580px;
    }
    .fifth-title, .div-img__seq-1 {
        display: inline-block;
    }
    .fifth-title {
        padding-left: 0%;
        font-size: 28pt;
    }
}

/* IPad Pro Landscape query */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1.5) {

    .fifth-title {
        padding-left: 5%;
        font-size: 30pt;
    }
}

@media only screen and (min-width: 1650px) {
    /*.img__sequence {
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        margin-left: 14em;
    }
    .fifth-title {
        padding-left: 0%;
        font-size: 30pt;
    }*/
}












/* ========================================================================================================================================================
    Sixth section
======================================================================================================================================================== */
/* ============================================================================ 
  Mobile & Default CSS 
============================================================================ */
/*
    Background
*/
.sixth-bg {
    background-color: #000;
    position: relative;
    min-height: 200vh;
    width: 100%;
    overflow: hidden;
}

/*
    Title
*/
.sixth-title {
    position: relative;
    max-width: 325px!important;
    margin-right: 0px!important;
    margin-left: auto;
    text-align: right;
    padding-right: 5%;
}

/*
    Drawing area
*/
.panel-drawing {
    position: relative;
    width: 320px;
    margin: auto;
}
    .panel-drawing svg {
        width: 100%;
        min-height: 2500px;
    }
    .panel-drawing path {
        width: 100%;
    }

/*
    Story Parts
*/
/* Home */
.story-panel__home {
    width: 100px;
    height: 100px;
    margin: auto;
}
    .story-panel__home img {
        width: 100%;
        height: 100%;
    }

/* Mountains */
.story-panel__mountains {
    position: absolute;
    top: 340px;
    right: 0;
    width: 200px;
    height: 85px;
}
    .story-panel__mountains div {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .story-panel__mountains img {
        position: absolute;
        height: auto;
    }
    .story-panel__mountains img:nth-child(1) {
        left: 0%;
        bottom: 0%;
        width: 45%;
    }
    .story-panel__mountains img:nth-child(2) {
        left: 26%;
        bottom: 62%;
        width: 18%;
    }
    .story-panel__mountains img:nth-child(3) {
        width: 33%;
        bottom: 25%;
        left: 32%;
    }
    .story-panel__mountains img:nth-child(4) {
        left: 53%;
        bottom: -13%;
        width: 50%;
    }
    
#trigger__mountain {
    position: absolute;
    top: 300px;
}
    #trigger__mountain .first {
        margin-top: 0px;
    }
    #trigger__mountain .second {
        margin-top: 20px;
    }
    #trigger__mountain .third {
        margin-top: 40px;
    }
    #trigger__mountain .fourth {
        margin-top: 60px;
    }


/* Forest */
.story-panel__forest {
    position: absolute;
    width: 220px;
    height: 85px;
    top: 656px;
    left: 0px;
}
    .story-panel__forest div {
        position: relative;
        height: 100%;
        width: 100%;
    }
    .story-panel__forest img {
        position: absolute;
        height: auto;
    }
    .story-panel__forest img:nth-child(1) {
        width: 28%;
        bottom: 0%;
        left: 0%;
    }
    .story-panel__forest img:nth-child(2) {
        width: 18%;
        bottom: 50%;
        left: 17%;
    }
    .story-panel__forest img:nth-child(3) {
        width: 26%;
        bottom: -13%;
        left: 25%;
    }
    .story-panel__forest img:nth-child(4) {
        width: 13%;
        bottom: 57%;
        left: 26%;
    }
    .story-panel__forest img:nth-child(5) {
        width: 24%;
        bottom: 24%;
        left: 44%;
    }
    .story-panel__forest img:nth-child(6) {
        width: 25%;
        bottom: -43%;
        left: 54%;
    }


/* Forest 2 */
.story-panel__forest-2 {
    position: absolute;
    width: 100px;
    height: 50px;
    top: 810px;
    left: 206px;
}
    .story-panel__forest-2 div {
        position: relative;
        height: 100%;
        width: 100%;
    }
    .story-panel__forest-2 img {
        position: absolute;
        height: auto;
    }
    .story-panel__forest-2 img:nth-child(1) {
        width: 48%;
        bottom: 15%;
        left: 0%;
    }
    .story-panel__forest-2 img:nth-child(2) {
        width: 52%;
        bottom: -25%;
        left: 30%;
    }
    .story-panel__forest-2 img:nth-child(3) {
        width: 50%;
        bottom: 23%;
        left: 60%;
    }

#trigger__forest {
    position: absolute;
    top: 650px;
}
    #trigger__forest .t1 {
        margin-top: 0px;
    }
    #trigger__forest .t2 {
        margin-top: 30px;
    }
    #trigger__forest .t3 {
        margin-top: 60px;
    }
    #trigger__forest .t4 {
        margin-top: 90px;
    }
    #trigger__forest .t5 {
        margin-top: 120px;
    }






/* Ocean */
.story-panel__ocean {
    position: absolute;
    width: 300px;
    height: 190px;
    top: 1225px;
    left: -15px;
}
    .story-panel__ocean div {
        position: relative;
        height: 100%;
        width: 100%;
    }
    .story-panel__ocean img {
        position: absolute;
    }
    .story-panel__ocean img.fish {
        height: auto;
        width: 15%;
    }
    .story-panel__ocean img:nth-child(1) {
        height: auto;
        width: 95%;
        bottom: 0%;
        left: 0%;
    }
    .story-panel__ocean img:nth-child(2) {
        left: 0%;
        top: 0%;
    }
    .story-panel__ocean img:nth-child(3) {
        left: 10%;
        top: 15%;
    }
    .story-panel__ocean img:nth-child(4) {
        left: 21%;
        top: 4%;
    }
    .story-panel__ocean img:nth-child(5) {
        left: 38%;
        bottom: 1%;
    }
    .story-panel__ocean img:nth-child(6) {
        left: 60%;
        top: 3%;
    }
    .story-panel__ocean img:nth-child(7) {
        left: 71%;
        top: 22%;
    }
    .story-panel__ocean img:nth-child(8) {
        left: 56%;
        bottom: -25%;
    }
    .story-panel__ocean img:nth-child(9) {
        left: 78%;
        bottom: 0%;
    }
    .story-panel__ocean img:nth-child(10) {
        left: 75%;
        bottom: -13%;
    }
#trigger__ocean {
    position: absolute;
    top: 1125px;
}
    #trigger__ocean .t1 {
        margin-top: 0px;
    }
    #trigger__ocean .t2 {
        margin-top: 20px;
    }
    #trigger__ocean .t3 {
        margin-top: 40px;
    }
    #trigger__ocean .t4 {
        margin-top: 60px;
    }
    #trigger__ocean .t5 {
        margin-top: 80px;
    }
    #trigger__ocean .t6 {
        margin-top: 100px;
    }






/* Village */
.story-panel__village {
    position: absolute;
    width: 250px;
    height: 130px;
    top: 1900px;
    left: 0px;
}
    .story-panel__village div {
        position: relative;
        height: 100%;
        width: 100%;
    }
    .story-panel__village img {
        position: absolute;
        height: auto;
    }
    .story-panel__village img.man {
        height: auto;
        width: 15%;
    }
    .story-panel__village img:nth-child(1) {
        width: 25%;
        top: 18%;
        left: 0%;
    }
    .story-panel__village img:nth-child(2) {
        width: 15%;
        top: 0%;
        left: 18%;
    }
    .story-panel__village img:nth-child(3) {
        width: 28%;
        top: 30%;
        left: 24%;
    }
    .story-panel__village img:nth-child(4) {
        width: 18%;
        top: 7%;
        left: 39%;
    }
    .story-panel__village img:nth-child(5) {
        width: 25%;
        top: 20%;
        left: 53%;
    }
    .story-panel__village img:nth-child(6) {
        top: 66%;
        left: 75%;
    }
    .story-panel__village img:nth-child(7) {
        top: 55%;
        left: 93%;
    }
    .story-panel__village img:nth-child(8) {
        top: 53%;
        left: 108%;
    }
    .story-panel__village img:nth-child(9) {
        top: 84%;
        left: 100%;
    }
    .story-panel__village img:nth-child(10) {
        width: 14%;
        top: -9%;
        left: 4%;
    }
    .story-panel__village img:nth-child(11) {
        width: 22%;
        top: -30%;
        left: 28%;
    }
    .story-panel__village img:nth-child(12) {
        width: 15%;
        top: -3%;
        left: 58%;
    }
    .story-panel__village img:nth-child(13) {
        width: 50%;
        top: 120%;
        left: -5%;
    }
#trigger__village {
    position: absolute;
    top: 1775px;
}
    #trigger__village .t1 {
        margin-top: 0px;
    }
    #trigger__village .t2 {
        margin-top: 20px;
    }
    #trigger__village .t3 {
        margin-top: 40px;
    }
    #trigger__village .t4 {
        margin-top: 60px;
    }
    #trigger__village .t5 {
        margin-top: 80px;
    }
    #trigger__village .t6 {
        margin-top: 200px;
    }
    #trigger__village .t7 {
        margin-top: 220px;
    }
    #trigger__village .t8 {
        margin-top: 230px;
    }
    #trigger__village .t9 {
        margin-top: 240px;
    }
    


/*
    End story
*/
.end-story {
    text-align: center;
    padding-bottom: 65%;
}
    .end-story img {
        height: auto;
        max-width: 150px; 
        margin-bottom: 2%;
    }
    .end-story p {
        text-align: center;
        font-size: 18pt;
        line-height: 20pt;
    }


/*
    Story animations
*/
/* General */
/*      */
.initial-state__fade-in__x-reverse {
    opacity: 0;
    transform: translateX(-20px);
    transition: all .5s linear;
}
.initial-state__fade-in__x-short {
    opacity: 0;
    transform: translateX(20px);
    transition: all .5s linear;
}
.initial-state__fade-in__x {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s linear;
}
.animation__fade-in__x {
    opacity: 1;
    transform: translateX(0px);
}
/*      */
.initial-state__fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all .3s ease-in-out;
}
.animation__fade-in {
    opacity: 1;
    transform: translateY(0px);
}




/* ============================================================================ 
  Desktop 
============================================================================ */
/* Minimum 769px screens */
@media only screen and (min-width: 769px) {
    .sixth-title {
        max-width: 380px!important;
        padding-right: 6%;
    }
    .end-story {
        padding-bottom: 45%;
    }
        .end-story p {
            font-size: 14pt;
        }
}

/* Minimum 1080 px screens */
@media only screen and (min-width: 1080px) {
    .sixth-title {
        max-width: 500px!important;
        font-size: 28pt;
    }
    .end-story {
        padding-bottom: 25%;
    }
}

/* Minimum 1650 px screens */
@media only screen and (min-width: 1650px) {
    .sixth-title {
        max-width: 585px!important;
        font-size: 30pt;
    }
}















/* ========================================================================================================================================================
    Seventh section
======================================================================================================================================================== */

/* ============================================================================ 
  Mobile & Default CSS 
============================================================================ */

/*
    Background
*/

.seventh-bg {
    background-color: #000;
    min-height: 100vh;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 40vh;    
    padding-bottom: 20vh;
}

/*
    Text
*/
.seventh-title {
    font-size: 20pt;
    margin: auto;
    text-align: center;
    padding: 0% 0.4em;
}

/*
    Content
*/
.seventh-section {
    font-size: 14pt;
}
    /* Contact options */
    .seventh-section .contact-options {
        margin-top: 4em;
    }
    .seventh-section .contact-options p {
        max-width: 685px;
        margin-left: auto;
        margin-right: auto;
    }


.seventh-section ul {
    max-width: 310px;
    margin-top: 4em;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4em;    
    padding-left: 5%;
}
/* Responsive FIX */
@media only screen and (min-width: 515px) {
    .seventh-section ul {
        max-width: 500px;
    }    
}
    .seventh-section ul li {
        margin: 4% auto;
    }

.seventh-section .btn-container {
    text-align: center;
}
    .btn-container .btn {
        padding: 15px 26px;
        font-size: 14pt;   
    }




/* ============================================================================ 
  Desktop 
============================================================================ */
/* Minimum 769px screens */
@media only screen and (min-width: 769px) {
    /* */
    .seventh-section {
        font-size: 14pt;
    }
        .seventh-section ul {
            max-width: none;
            text-align: center;
            padding-left: 0%;
        }
        .seventh-section ul li {
            margin: .5em auto;
        }
        .seventh-section .btn-container .btn {
            font-size: 12pt;
            padding: 10px 26px;
        }
        .seventh-section .contact-options p {
            max-width: 780px;
            font-size: 12pt;
        }
    /* */
    .seventh-title {
        font-size: 18pt;
    }
}

/* Minimum 1080 px screens */
@media only screen and (min-width: 1080px) {
    .seventh-title {
        font-size: 22pt;
    }
}













/* ========================================================================================================================================================
    Eigth section
======================================================================================================================================================== */
/* ============================================================================ 
  Mobile & Default CSS 
============================================================================ */
/*
    Background
*/
.eigth-bg {
    background-color: #000;
    height: fit-content;
    padding-top: 20vh;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/*
    Content
*/
.eigth-section {
    overflow: hidden;
    min-height: 700px;
    background-color: #000;
}
    .eigth-section hr {
        border-top: 1px solid #995E00;
        width: 80%;
        margin-bottom: 4em;
        max-width: 380px;
    }
    .eigth-section .eigth-paragraph {
        text-align: justify;
        font-size: 12pt;
    }
    .eigth-section .eigth-p-container {
        max-width: 660px;
        margin: auto;
    }


/* Title */
.eigth-title {
    font-weight: bold;
    text-align: center;
}

/* */
.eigth-sub-title {
    text-align: center;
    font-size: 18pt;
}


.eight-seo-container {
    padding: 4% 0%;
    background-color: #111;
    margin-top: 15em;
}
    .eight-seo-container p {
        font-size: 9pt;
        text-align: justify;
    }




/* ============================================================================ 
  Desktop 
============================================================================ */
/* Minimum 769px screens */
@media only screen and (min-width: 769px) {
    /* */
    .eigth-section {
        font-size: 20pt;
    }
        .eigth-section hr {
            max-width: 650px;
            margin-top: 1em;
        }
        .eigth-section .eigth-paragraph {
            font-size: 12pt;
        }
        .eigth-section .eigth-p-container {
            max-width: 700px;
            margin: auto;
            font-size: 24pt;
        }
    /*  */
    .eigth-title {
        font-size: 24pt;
    }
    .eigth-sub-title {
        font-size: 18pt;
    }

    .eight-seo-container {
        margin-top: 0em;
    }
}

/* Minimum 1080 px screens */
@media only screen and (min-width: 1080px) {
}