/* SECTION ABOUT */
.image-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

@media only screen and (max-width:800px) {
    .image-text {
        flex-direction: column;
        gap: 8rem;
    }
    .image-text div:first-child {
        width: 100% !important;
    }
    .image-text div:first-child div{
        display: block;
        margin: 0 auto;
    }
    .image-text div:last-child {
        width: 100% !important;
        padding: 2rem !important;
    }
}

.image-text div:first-child {
    width: 35%;
}

.image-text div:last-child {
    width: 65%;
    border-radius: 20px;
    /* background-color: rgba(0, 0, 0, .5); */
    background-color: #14181bf6;
    box-shadow: 5px 5px 20px 10px rgba(0, 0, 0, .3);
    padding: 4rem;
}

.image-text div:last-child img {
    height: 10rem;
    display: block;
    margin: 0 auto;
}


/* CONTENT */

.s-features-contents{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    margin-bottom: 10rem;
}

/* Reviews */
.row.testimonials {
    padding: 0;
}
.slick-slide {
    height: 300px;
}




/* Plans */
.s-pricing{
    padding: 10rem 0 8rem;
}
.plans {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.plans a img{
    width: calc(100vw/5);
    max-width: unset;
    -webkit-filter: drop-shadow(5px 5px 5px #888888);
    filter: drop-shadow(5px 5px 5px #888888);
}

@media only screen and (max-width:900px) {
    .plans {
        flex-wrap: wrap;
    }

    .plans a img{
        width: unset;
        max-width: 100%;
    }
}

/* Download now */
.s-download {
    padding-top: 10rem;
}
#download .btn--primary {
    background: var(--color-secondary);
    box-shadow: 0px 0px 60px -10px var(--color-secondary);
}

.download-flex {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.download-flex > img {
    height: 35rem;
}

.download-flex > div {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.download-flex > div > a > img{
    max-height: 50rem;
    max-width: 40rem;
}

.download-flex > div > img{
    height: 10rem;
}

/* EXTRAS */
/* Mobile Button */

#download-mobile {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    z-index: 600;
    transform: translate(-50%, 0);
    transition: all 1s ease;
}
#download-mobile a {
  box-shadow: 0px 0px 60px -10px var(--color-secondary);
}

#download-mobile.link-is-visible {
    transform: translate(-60%, 0);
}


@media only screen and (max-width:900px) {
    #download-mobile {
        display: block;
    }

    footer {
        padding-bottom: 10rem !important;
    }
}

/* Custom List */
ul.better-list {
    margin-bottom: 0;
}
ul.better-list li {
    font-size: 1.7rem;
    line-height: 3rem;
    list-style-type: none;
    background: url('../images/icons/icon-circle-check.svg') no-repeat left top;
    padding-left: 24px;
    background-position: left .4rem;
    background-size: 1.8rem;
}

/* BOOM-BOOM animation */
.boom-boom {
    animation: boom-boom 5s ease-in-out infinite;
    -webkit-animation: boom-boom 5s ease-in-out infinite;
}

@keyframes boom-boom {

    0% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
    5% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }
    10% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
    15% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }
    20% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/* Hover Zoom */
.hover-zoom-200 {
    transition: all .2s ease;
}
.hover-zoom-200:hover {
    transform: scale(1.05);
}