/*
Theme Name: MoreLife
Theme URI: https://www.feature3.net
Template: hello-elementor
Author: Feature3 Ltd
Author URI: https://www.feature3.net
Description: Custom theme for MoreLife derived from basic Elementor Hello theme
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 1.0.0.1674391101
Updated: 2023-01-22 12:38:21

*/

/* Scroller animation */
.scroll-down {
    text-align: center;
    background:none;
    position:relative; 
}
.scroll-down a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    transition: opacity .3s;
    padding-top: 85px;
    font-size: .7rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    text-transform:uppercase;
    text-align: center;
    z-index: 2;
}
.scroll-down a span {
    position: absolute;
    top: 0;
    width: 46px;
    height: 76px;
    margin-left: auto;
    border: 4px solid #fff;
    border-radius: 50px;
    box-sizing: border-box;
    left: 50%;
    -webkit-transform: translatex(-50%);
    -moz-transform: translatex(-50%);
    transform: translatex(-50%);
}
.scroll-down a span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    width: 8px;
    height: 8px;
    margin-left: 0;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: dotan 2s infinite;
    animation: dotan 2s infinite;
    box-sizing: border-box;
}
/* Animation css start */
@-webkit-keyframes dotan {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dotan {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 40px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  } 
}



