html,
body {
    height: 100%;
    margin: 0;
}

body {
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 60px;
}

.actionclock-download,
.actionclock-about {
    min-height: calc(100vh - 60px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;

    img {
        max-height: 60vh;
        max-width: 100%;
        object-fit: contain;
    }

    i {
        font-size: 4rem !important;
        line-height: 1;
        font-weight: 900;
    }
}

.actionclock-download {
    width: 100%;
    background-image: url('/assets/images/actionclock/actionclock-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    .container {
        width: 100% !important;
        line-height: 1;
    }

    .row {
        display: flex;
        justify-content: flex-end;
        gap: 20px;
    }

    .col-sm-4 {
        flex: 0 0 auto;
    }
}

.titulo {
    font-size: 3.5rem !important;
    font-weight: 900;
    line-height: 1;
}

.actionclock-about {
    .container {
        width: 100%;
    }

    .row {
        align-items: center;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    p {
        font-size: 18px !important;
        font-weight: 600 !important;
        line-height: 1.1;
    }

    i {
        font-size: 2rem !important;
        line-height: 1;
        font-weight: 900;
    }

    .actionclock-features {
        margin-top: 2.5rem;

        .row {
            margin-bottom: 1.5rem !important;
        }

        .col-auto {
            padding-right: 1rem;
        }
    }
}

.icon-flip i {
    display: inline-block;
    transition: transform 0.2s ease;
}

.icon-flip:hover i {
    transform: scaleX(-1);
}

.form-control{
  border: none!important;
}

label {
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}