body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    /* border-bottom: 1px solid #ccc; */
    box-shadow: 0px 3px 26px -23px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0px 3px 26px -23px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 0px 3px 26px -23px rgba(0, 0, 0, 0.7);
}

.cta-section p {
    font-size: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    width: 320px;
    margin: 0 auto;
}

#main-video {
    width: 100%;
    height: auto;
    max-height: 100vh; 
    object-fit: cover;
    border: solid 20px #fff;
    box-shadow: 0px 3px 30px -19px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0px 3px 30px -19px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 0px 3px 30px -19px rgba(0, 0, 0, 0.7);
}

.video-section {
    text-align: center;
    padding: 10px 40px 40px 40px;
    /* background-color: #f4f4f5; */
}

.video-section h2 {
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    max-width: 900px;
    margin: auto;
    margin-top: 5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.user-stories-section h2 {
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    max-width: 700px;
    margin: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
    width: 100%;
}

.video-section p {
    font-size: 20px;
    /* max-width: 600px; */
    margin: auto;
    line-height: 1.75rem;
}

.video-section p:nth-of-type(2) {
    margin: 0.5rem auto;
}

.video-section .static-content p:last-child {
    margin-bottom: 2.5rem;
}

.video-section h2 .title-decoration {
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-color: #2fda7a;
}

.video-section p .text-decoration {
    font-weight: 400;
    text-decoration-line: underline;
    text-decoration-color: #2fda7a;
}

video {
    width: 100%;
    border: 1px solid #ccc;
    width: -moz-min-content;
    max-width: -webkit-fill-available;
    border-radius: 40px;
}

.video-row {
    border-radius: 40px;
    background: #fff;
    padding: 20px;
    margin-left: 8rem;
    margin-right: 8rem;
}

.text-overlay {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    background-color: #d1faeb;
    color: #110e0e;
    border-radius: 22px;
}

.text-overlay-2 {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    background-color: #d1faeb;
    color: #110e0e;
    border-radius: 22px;
}

h1, h2, p {
    margin: 20px 0;
}

.arrow-container {
    display: flex;
    justify-content: center;
    margin: 35px 0 35px 0;
}

@keyframes arrow-down {
    0% {
        transform: translateY(-20px) scale(.5);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        transform: translateY(20px) scale(1);
        opacity: 0
    }
}

.animate-arrow-down {
    animation: arrow-down 2s infinite;
    margin: 0 25px;
}

.cta-button, .gain-access-btn {
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 9999px;
    background-color: rgba(47, 218, 122, 1);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    font-size: 20px;
    line-height: 1.5rem;
    font-weight: 500;
    color: rgba(252, 252, 252, 1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
    max-width: 350px;
    margin: auto;
}

.cta-button:hover {
    transform: translateY(3px);
}

.form-and-access {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 1024px;
    margin: auto;
}
.gained-access h3{
    font-size: 20px;
    font-weight: 300;
}
.gained-access #counter{
    font-size: 190px;
    font-weight: 300;
    line-height: normal;
    color: #262f40;
    opacity: .4;
    margin-top: 20px;
}
form, .gained-access {
    flex: 1;
    max-width: 50%; 
    box-sizing: border-box;
}
form {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 420px;
}

form label {
    font-size: 18px;
    color: #333;
    text-align: left;
}

form input {
    padding: 15px;
    font-size: 16px;
    border: 2px solid #c1c1c1;
    border-radius: 5px;
    box-sizing: border-box;
    width: 100%;
}

form input::placeholder {
    color: #c1c1c1;
    font-size: 18px;
}

.gained-access {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #2b2b2b;
}
.form-container {
    padding: 20px;
}

.form-container input, .form-container button {
    display: block;
    margin: 10px 0;
}

.phone-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-input-container .phone-flag {
    position: absolute;
    left: 10px;
    top: 28px;
    display: flex;
    align-items: center;
    width: 20px;
}

.phone-input-container input {
    padding-left: 50px; 
}
.hidden {
    display: none;
}

.terms-container {
    display: flex;
    /* align-items: center; */
}

.terms-container p {
    font-size: 14px;
    margin: 0;
    margin-left: 10px;
    text-align: left;
}

.checkbox-container {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 7px;
}

.checkbox-container input {
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    /* background-color: #ccc; */
    border-radius: 50%;
    border: solid 2px #c1c1c1;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #4CAF50;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
#access-notification {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    background-color: #e6f9ef;
    color: #333;
    border: 1px solid #2fda7a;
    border-radius: 8px;
    padding: 10px 20px;
    margin-top: 10px;
    text-align: center;
    display: inline-block;
    max-width: 300px;
    width: 100%;
}

#access-notification.show {
    opacity: 1;
    transform: translateY(0);
}
.features-section {
    background-color: #262f40;
}

.features-section h2 {
    line-height: 1.75;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.feature {
    display: flex;
    max-width: 1024px;
    margin: auto;
}

.feature:nth-child(odd) {
    flex-direction: row;
}

.feature:nth-child(even) {
    flex-direction: row;
}

.feature-text {
    flex: 1;
    padding: 20px;
    margin: auto;
}

.feature-text p {
    max-width: 440px;
    font-size: 20px;
    color: #fff;
    font-weight: 200;
    line-height: 1.5;
}

.feature-image-container {
    position: relative;
    flex: 1;
    max-width: 100%;
    height: 600px;
    overflow: hidden;
}

.feature-image-gradient-first {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #C1C1C1, rgba(193, 193, 193, 0));
    border-radius: 12px;
    max-width: 600px;
    max-height: 250px;
    transform: translateY(-50%);
}

.feature-image-gradient-second {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #C1C1C1, rgba(193, 193, 193, 0));
    border-radius: 12px;
    max-width: 300px;
    max-height: 500px;
    transform: translateY(-50%);
}

.feature.first .feature-image-container img {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 330px;
    max-height: 400px;
    border-radius: 12px;
    transform: translateY(-50%);
}

.feature.second .feature-image-container img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 600px;
    max-height: 360px;
    border-radius: 12px;
    transform: translateY(-50%);
}

.user-stories-section {
    padding: 40px;
    padding: 40px 0 40px 0;
    background-color: #f9f9f9;
    text-align: center;
    padding-bottom: 5rem;
}

.user-stories-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-cards-container {
    display: flex;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 1rem;
}

.user-card {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 25px;
    padding: 32px 25px;
    margin: 0 10px;
    text-align: left;
    flex: 0 0 calc(100% / 3 - 20px);
    max-width: calc(100% / 3 - 20px);
    scroll-snap-align: center;
    box-sizing: border-box;
}

.user-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 5%;
    margin-bottom: 10px;
}

.title-info h3 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(17 14 14 / var(--tw-text-opacity));
}

.title-info p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgb(193 193 193 / var(--tw-text-opacity));
}

.storie {
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgb(17 14 14 / var(--tw-text-opacity));
}

.slider-button {
    background-color: #fff;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.slider-button.prev {
    left: 10px;
}

.slider-button.next {
    right: 10px;
}

.cta-section {
    padding: 40px;
    background-color: #fff;
    text-align: center;
    margin-bottom: 5rem;
}

.cta-section h2 {
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    max-width: 1024px;
    margin: auto;
    margin-top: 5rem;
    margin-bottom: 2rem;
    width: 100%;
}

footer {
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #ccc;
}

footer .logo {
    margin: 4rem auto;
}

footer p {
    margin: 0 auto;
    color: #110e0e;
    font-size: 14px;
}

footer a {
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 300;
    color: #110e0e;
}

footer a:hover {
    text-decoration: underline;
}

.subfooter {
    margin-top: 5rem;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-around;
    padding: 40px;
}

.subfooter p {
    margin: 5px 0;
    font-size: 16px;
}



@media (min-width: 769px) {
    .video-section {
        padding-bottom: 96px;
    }

    .feature.second .feature-text {
        padding-left: 70px;
    }
}


@media screen and (max-width: 768px) {
    header .logo{
        max-width: 190px;
    }
    .video-section {
        padding: 20px 30px 30px 30px;
}
    .video-row {
        border-radius: 0;
        background: transparent;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
}
    video {
        width: 100%;
        border: none;
        width: -moz-min-content;
        max-width: 100%;
        border-radius: 0;
    }
        #main-video {
        height: auto;
        max-height: none;
        border: none;
    }
    .text-overlay {
        top: 40px;
        padding: 5px;
        font-size: 12px;
        width: 60%;
    }
    .form-and-access {
        flex-direction: column;
    }
    .gained-access #counter{
        font-size: 110px;
    }
    form {
        max-width: 100%;
        order: 2;
    }
    #gained-access{
        max-width: 100%;

    }
    .video-section h2 {
        font-size: 20px;
        line-height: 1.45;
        max-width: 270px;
    }
    .video-section p {
        font-size: 16px;
    }
    .feature:nth-child(odd) {
        display: block;
        flex-direction: column;
        text-align: center;
    }
 
    .feature:nth-child(even) {
        display: grid;
    }
    .feature-image-container {
        height: 280px;
    }
    .feature-image-gradient-first {
    top: 50%;
    left: 30%;
    max-height: 200px;
    transform: translateY(-50%);
    }
    .feature.first .feature-image-container img {
    top: 50%;
    left: 40%;
    max-width: 205px;
    max-height: 250px;
    }
    .feature-text {
        padding: 10px 20px;
    }
    .feature.second .feature-image-container {
        height: 300px;
        order: 2;
    }
    .feature.second .feature-text {
        padding: 10px 20px;
        text-align: center;
    }
    .features-section h2 {
        font-size: 20px;
    }
    .feature-text p {
        font-size: 16px;
    }
    .feature-image-gradient-second {
        left: -40%;
        max-width: 300px;
        max-height: 500px;
    }
    .feature.second .feature-image-container img {
        left: 0;
        max-width: 300px;
        max-height: 200px;
    }

    .user-stories-section h2 {
        font-size: 20px;
        line-height: 1.5;
        max-width: 300px;
        margin-top: 30px;
    }
    .user-card {
        flex: 0 0 100%; 
        max-width: 100%;
    }


    .user-cards-container {
        padding: 20px 5%;
    }
    .cta-section h2 {
        font-size: 30px;
        line-height: 1.25;
        font-weight: 600;
        max-width: 300px;
        margin: auto;
        margin-top: 5rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    footer {
        padding: 0 10px;
    }
    footer p {
            font-size: 12px;
        }
    .subfooter {
            padding: 40px 10px;
            flex-direction: column-reverse;
        }
    .sublinks {
            display: flex;
            flex-direction: column;
        }
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    align-items: center;
    border: solid 4px #91f2cf;
    border-radius: 25px;
    transition:all 200ms linear;
    transform: scale(0.8) !important;
    /* padding: 40px 0px; */
    /* width: 30% !important; */
}

.swiper-slide.swiper-slide-active{
    transform: scale(1) !important;
}

.icon-wrapper {
    border: solid 3px #c1c1c1;
    border-radius: 100px;
    line-height: 100%;
    padding: 20px;
}

.slide-content .icon-square {
    border-right: solid 1px #c1c1c1;
    padding: 40px 35px;
}

.slide-content i.fi {
    font-size: 60px;
    color: #c1c1c1;
}

.metric-slide-content {
    text-align: left;
    padding-left: 80px;
    padding-right: 80px;
}

.metric-slide-content h3 {
    color: #fcfcfc;
    font-weight: 300;
    font-size: 28px;
}

.metric-slide-content .counter-title {
    color: #2fda7a;
    font-weight: 700;
    font-size: 42px;
}

.underline {
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-color: #2fda7a;
}

header.main-header {
    box-shadow: 0px 3px 26px -23px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 3px 26px -23px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 3px 26px -23px rgba(0,0,0,0.5);
}

.main-logo-wrapper {
    text-align: center;
    width: 100%;
}

.video-wrapper {
    max-width: 860px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    border: solid 20px #fff;
    border-radius: 50px;
    box-shadow: 0px 3px 26px 27px rgba(244,244,245,0.5);
    -webkit-box-shadow: 0px 3px 26px 27px rgba(244,244,245,0.5);
    -moz-box-shadow: 0px 3px 26px 27px rgba(244,244,245,0.5);
    position: relative;
}

#second-page-video-full {
    display: none;
}

.second-page-video {
    cursor: pointer;
}

.video-wrapper video {
    border-radius: 50px;
}

.content-section-1 p {
    font-size: 20px;
    margin-top: 35px;
}

.metric-section {
    background-color: #262f40;
    padding-top: 95px;
    padding-bottom: 110px;
}

.metric-content h3 {
    font-size: 48px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 40px;
}

.metric-content {
    padding-bottom: 50px;
}

.metric-content p {
    font-size: 20px;
    color: #fff;
    font-weight: 300;
}

.content-section-2 {
    padding: 96px 0;
}

.potential-profits {
    padding: 20px 32px;
    max-width: 318px;
    margin: 48px auto;
    text-align: center;
    border: solid 2px #c1c1c1;
    border-radius: 44px;
    box-shadow: inset -6px -5px 2.5px #00000040, 2px 4px 4px #ffffff40;
}

.potential-profits h4 {
    font-size: 30px;
    font-weight: 600;
    color: #110e0e;
    margin-bottom: 5px;
}

.potential-profits .profit-text {
    color: #2fda7a;
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 0;
}

.content-section-2 h3 {
    color: #262f40;
    font-size: 48px;
    font-weight: 600;
}

.content-section-2 p {
    font-size: 20px;
    color: #262f40;
}

.main-footer {
    background-color: #f4f4f5;
    border-top: solid 1px #c1c1c1;
}

.footer-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.main-bottom-footer {
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: solid 1px #c1c1c1;
}

@media (min-width: 992px) {
    .main-header {
        height: 95px;
        display: flex;
        align-items: center;
    }
    .main-header-logo {
        line-height: 95px;
    }
}

.rs-range::-webkit-slider-runnable-track  {
    width: 100%;
    height: 1px;
    cursor: pointer;
    box-shadow: none;
    background: #000;
    border-radius: 0px;
    border: 0px solid #010101;
}

.rs-range:focus {
    outline: none;
}

.rs-range::-moz-range-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    box-shadow: none;
    background: #000;
    border-radius: 0px;
    border: 0px solid #010101;
}

.rs-range::-webkit-slider-thumb {
    box-shadow: none;
    border: 0px solid #000;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    height: 42px;
    width: 22px;
    border-radius: 22px;
    background: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -20px;
}

.rs-range::-moz-range-thumb {
    box-shadow: none;
    border: 0px solid #000;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    height: 42px;
    width: 22px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 1);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -20px;
}

.rs-range::-moz-focus-outer {
    border: 0;
}

.rs-range {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 29px;
    width: 600px;
    appearance: none;
    -webkit-appearance: none;
    border: solid 4px #110e0e;
    border-radius: 50px;
}

.rs-label::after {
    content: "bpm";
    display: block;  
    font-size: 20px;
    letter-spacing: 0.07em;
    margin-top: -5px;
}

.rs-label {
    position: relative;
    transform-origin: center center;
    display: block;
    width: 98px;
    height: 98px;
    background: transparent;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    padding-top: 22px;
    box-sizing: border-box;
    border: 2px solid #000;
    margin: 20px auto 0;
    color: #000;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 36px;
}

.range-days {
    text-align: center;
    color: #110e0e;
    font-size: 22px;
    margin-top: 15px;
}

.range-day-value {
    font-weight: bold;
}

.full-loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: #fff;
    display: none;
    align-items: center;
    z-index: 100;
}

.full-loader-content {
    width: 100%;
}

.loader-text-1, .loader-text-2 {
    text-align: center;
}

@media (max-width: 768px) {
    .text-overlay-2 {
        width: 89%;
    }
    .swiper-wrapper {
        margin-left: -39%;
    }

    .slide-content .icon-square {
        padding: 10px;
    }

    .swiper-slide {
        width: 75% !important;
    }

    .metric-slide-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .metric-slide-content h3 {
        font-size: 15px;
    }

    .metric-slide-content .counter-title {
        font-size: 26px;
        margin-top: 0;
    }

    .slide-content {
        width: 100%;
    }

    .slide-content i.fi {
        font-size: 30px;
    }

    .icon-wrapper {
        padding: 5px;
    }

    .rs-range {
        width: 100%;
    }

    .content-section-2 h3,
    .metric-content h3 {
        font-size: 22px;
    }

    .metric-content p {
        font-size: 16px;
    }

    .metric-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .content-section-2 p {
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .video-wrapper,
    .video-wrapper video {
        border-radius: 0;
    }

    .video-wrapper {
        border: none;
    }

    .content-section-1 p {
        margin-top: 15px;
        font-size: 18px;
    }
}
  
  .slide-effect {
    position: relative;
    /* overflow: hidden; */
    width: 100%;
    /* height: 40px; */
    /* display: flex;
    justify-content: center;
    align-items: center; */
  }
  
  .slideDown, .slideDown2 {
    position: relative;
    opacity: 1;
  }

  .text, .slideUp, .slideUp2 {
    position: relative;
    opacity:0;
  }
  
  .text {
    top:40px;
    font-weight: bold;
    animation: slideUp ease .2s forwards;
  }
  
  .slideDown {
    top:-40px;
    /* left:5px; */
    animation: slideDown ease .8s forwards .2s;
  }

  .slideDown2 {
    top:-40px;
    /* left:5px; */
    animation: slideDown2 ease .8s forwards .4s;
  }
  
  .slideUp {
    /* top:40px;
    left:10px; */
    animation: slideUp ease .8s forwards .2s;
  }

  .slideUp2 {
    /* top:40px;
    left:10px; */
    animation: slideUp2 ease .8s forwards .4s;
  }
  
  .loader-text-2 {
    display: none;
  }
  
  @keyframes slideUp {
    0% {transform: translateY(0);}
    100% {transform: translateY(-40px);opacity:1;}
  }

  @keyframes slideUp2 {
    0% {transform: translateY(0);}
    100% {transform: translateY(-40px);opacity:1;}
  }
  
  @keyframes slideDown {
    0% {transform: translateY(0);}
    100% {transform: translateY(40px);opacity:0;}
  }

  @keyframes slideDown2 {
    0% {transform: translateY(0);}
    100% {transform: translateY(40px);opacity:0;}
  }


  
  @media only screen and (max-width: 600px) {
    .slide-effect, .text, .slideDown, .slideUp {
      /* font-size: 15px; */
    }
  }  