/*!* ----------------------------------------------------*/
/*        GENERAL STYLING*/
/*------------------------------------------------------- *!*/

/* Fonts & colors to be used
------------------------------------*/
/*font-family: 'Open Sans', sans-serif;*/
/*font-family: 'Raleway', sans-serif;*/

/*icons - tomato -> color: #f25858;*/

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
}

h1,h2
{
    font-size: 1.875rem;
}

a, .btn {
    font-size: 0.8125rem;
}

html {
    scroll-behavior: smooth;
}

/* ----------------------------------------------------
         PAGE SPECIFIC STYLING
------------------------------------------------------- */

/*        NAVIGATION STYLING
------------------------------------------------------- */

.navbar-toggler:focus {
    box-shadow: none;
}
.js-invisible {
    opacity: 0;
}

.js-hide-this {
    opacity: 0;
    transition: opacity 1s ease 0s;
}

.js-show-this {
    opacity: 1;
    transition: opacity 1s ease 0s;
}

.c-btn-orange {
    background-color: #f25858;
    color: white;
}


/*        HEADER STYLING
------------------------------------------------------- */
.home {
    background-image: url('../../images/landing_page_top_bg.jpg');
    background-size: cover;
    background-position: center center;
}

/* White line after header*/
header h1::after {
    width: 8rem;
    height: 0.1rem;
    background: #f1f1f1;
    margin: 15px auto 15px auto;
    display: block;
    content: ' ';
}

/* Link/button colors*/
header div button:last-of-type,
header div a:last-of-type {
    background-color: #f25858;
    color: white;
}

/* Mouse animation */
.scroller {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    width: 1.125rem;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.mouse {
    height: 1.875rem;
    width: 1.125rem;
    border-radius: 0.75rem;
    transform: none;
    border: 0.125rem solid white;
    top: 1.0625rem;
}

.wheel {
    height: 0.3125rem;
    width: 0.125rem;
    display: block;
    margin: 0.3125rem auto;
    background: white;
    position: relative;
}

.wheel {
    -webkit-animation: mouse-wheel 1.2s ease infinite;
    -moz-animation: mouse-wheel 1.2s ease infinite;
}

@-webkit-keyframes mouse-wheel {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(0.375rem);
        -ms-transform: translateY(0.375rem);
        transform: translateY(0.375rem);
    }
}

@-moz-keyframes mouse-wheel {
    0% {
        top: 0.0625rem;
    }
    50% {
        top: 0.125rem;
    }
    100% {
        top: 0.1875rem;
    }
}

@-webkit-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

/*        PAGE CONTENT STYLING
------------------------------------------------------- */

/* First section */

section p {
    text-align: justify;
}

section ul {
    text-align: justify;
}

li i {
    width: 1.8125rem;
    color: #f25858;
}

li.row {
    margin-bottom: 0.8125rem;
}

.img-side-left {
    max-width: 80%;
    max-height: 90%;
}

#features {
    max-width: 90%;
}

.flex-dont-grow {
    flex: 0 0 0.75rem;
}

/* Second section */
.js-row-before-footer {
    background-color: #faf7f7;
}

.large-icon {
    font-size: 50px;
    color: #f25858;

}
/* Animations */
.animate__animated.animate__fadeInLeft,
.animate__animated.animate__fadeInRight {
    --animate-duration: 3s;
}

.animate__animated.animate__fadeIn {
    --animate-duration: 6s;
}
/*        FOOTER
------------------------------------------------------- */
footer {
    padding:20px;
    background-color: rgb(211, 207, 207);}


/* -------------------------------------------------------
        "PRIVACY POLICY" SPECIFIC
------------------------------------------------------- */
.card p {
    text-align: justify;
}

.card {
    color: #878787;
}

.card h1 {
    font-size: 1.875rem;
}

@media (min-width: 360px) {
    .card h1 {
        font-size: 3.125rem;
    }
}


/* -------------------------------------------------------
        MEDIA QUERIES
------------------------------------------------------- */

@media (min-width: 360px) {
    h1 {
        font-size: 3.125rem;
    }
}

@media (min-width: 768px) {
    p, .btn {
        font-size: 0.9375rem;
        line-height: 1.5rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.75rem;
    }
    h2 {
        font-size: 3.125rem;
    }
    p {
        font-size: 1.0625rem;
        line-height: 1.875rem;
    }
    .c-btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1.25rem;
        border-radius: 0.3rem;
    }
}
