﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

.container-mozi {
    width: 100vw;
    padding: 24px 64px;
}

.hero {
    background-image: url('/images/hero-bg.png');
}

.hero h1 {
    font-size: 56px;
    color: #ffffff;
}
.hero h2 {
 font-size: 56px;
 color: #ffffff;
}

.hero p {
    color: #ffffff;
}

.hero a {
    width: 100%;
    height: 42px;
    max-width: 350px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 64px;
    color: #ffffff;
    font-weight: 600;
    transition: 0.3s;
}

.hero a:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

.hero a i {
    font-size: 20px;
}

.hero .fa-apple {
    font-size: 26px;
}

.hero .play-store-link {
    background-color: #CD189A;
}

.hero .apple-store-link {
    background-color: #B53CD3;
}

.hero a > img {
    width: 20px;
}

.apps-container {
    padding: 48px 64px;
}

    .apps-container h4,
    .apps-container p {
        color: #464646;
    }

    .apps-container p {
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        width: 70%;
    }

.app-card {
    width: 30%;
    max-width: 395px;
}

    .app-card img {
        width: 100%;
    }

.container-description {
    width: 100%;
    max-width: 1360px;
    position: relative;
    margin: 0 auto;
}

    .container-description > div {
        background: #7F44CD;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        width: 50%;
        padding: 100px 50px;
    }

    .container-description p {                
        color: #ffffff;
    }

footer {
    padding: 88px 0 48px;
}

    footer h5 {
        color: #6B6B6B;
        font-size: 18px;
    }

    footer p {
        color: #7F44CD;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

        footer p.small {
            color: #6B6B6B;
            font-size: 12px;
            font-weight: 400;
        }

.social-icons i {
    font-size: 24px;
    color: #6B6B6B;
}

.terms .hero {
    padding: 42px 64px;
}

    .terms .hero > div {
        max-width: unset;
    }

.terms-container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 72px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: justify;
    font-weight: 600;
    color: #6B6B6B;
}

.terms-container li {
    margin-bottom: 10px;
    text-align: justify;
}

.terms-container p {
    font-weight: 400;
    margin-bottom: unset;
}

.apps-carousel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;    
}

.checkmark-list li > p {
    margin-left: 8px;
}

.checkmark-list li::marker {
    content: "\2713";
}

@media (max-width: 1366px) {
    .hero h1 {
        font-size: 46px;        
    }
    .container-mozi {
        padding: 48px 20px;
    }

    .hero > img {
        width: 50%;
        transition: 0.5s;
    }
}

@media (max-width: 1024px) {
    .hero > img {
        display: none;
    }

    .hero h1, 
    .hero p {
        text-align: center;
    }

    .hero > div {
        align-items: center;
    }

}

@media (max-width: 768px) {
    
    .apps-container h4 {
        text-align: center;
    }


    .apps-carousel {
        flex-direction: column;
        align-items: center;
        padding: 10%
    }

    .app-card {
        width: 100%;
        max-width: none;
    }

    .container-description > div {
        width: 100%;
        background-color: #7f44cddb;        
        position: unset;
        transform: unset;
    }
    .container-description > img {
        width: 100%;
    }
    .hero h1 {
        font-size: 26px;
    }
    .hero h2 {
        font-size: 36px;
    }
}

.heart {
    display: table;
    margin-right: auto;
    margin-left: auto;
}


.lds-heart,
.lds-heart div,
.lds-heart div:after,
.lds-heart div:before {
    box-sizing: border-box;
}

.lds-heart {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    transform: rotate(45deg);
    transform-origin: 40px 40px;
}

    .lds-heart div {
        top: 28px;
        left: 28px;
        position: absolute;
        width: 32px;
        height: 32px;
        background: #57219D;
        animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    }

        .lds-heart div:after,
        .lds-heart div:before {
            content: " ";
            position: absolute;
            display: block;
            width: 32px;
            height: 32px;
            background: #57219D;
        }

.lds-heart div:before {
    left: -24px;
    border-radius: 50% 0 0 50%;
}

.lds-heart div:after {
    top: -24px;
    border-radius: 50% 50% 0 0;
}

@keyframes lds-heart {
    0% {
        transform: scale(0.95);
    }

    5% {
        transform: scale(1.1);
    }

    39% {
        transform: scale(0.85);
    }

    45% {
        transform: scale(1);
    }

    60% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(0.9);
    }
}

