html,
body {
    font-family: 'Baloo Tamma 2', cursive;
    font-size: 16px;
}

body {
    max-width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* -------------- APP ------------- */

.c-app {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: var(--primary-title-text);
    font-size: 1.4rem;
    cursor: default;
    overflow-y: auto;
}

/* ------------- HEADER ------------- */

.c-app__header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 0;
    z-index: 1;
}


.c-logo {
    display: flex;
    align-items: center;
    transition: .2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-app__header--fixed .c-logo {
    opacity: 0;
    pointer-events: none;
}

.c-logo__img {
    max-width: 2em;
    pointer-events: none;
}

.c-logo__tittle-box {
    display: flex;
    align-items: center;
}

.c-logo__title {
    color: var(--primary-title-text);
    font-size: 1.3em;
    margin: 0;
}

.c-nav {
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--tertiary-title-text);
    background: rgb(var(--main-color));
    transition: .1s cubic-bezier(0.23, 1, 0.320, 1);
    border-radius: 5rem;
    padding: 10px 30px;
    width: 90%;
    z-index: 999;
}

.c-app__header--fixed .c-nav {
    position: fixed;
    top: 1rem !important;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(var(--main-color), .97);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.c-nav__logo {
    text-transform: uppercase;
}

.c-nav__container {
    display: flex;
    align-items: center;
}

.c-nav__item {
    cursor: pointer;
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: .85em;
    color: var(--tertiary-title-text);
}
.c-nav__item:hover {
    color: rgb(var(--accent-color));
}

/* ------------- CONTENT ------------- */

.c-app__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* ------------- SECTIONS ------------- */

.c-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(var(--secundary-color));
    text-align: center;
    min-height: 100vh;
    width: 100%;
    padding: 60px;
    overflow: hidden;
}

.c-section__title {
    font-size: 3.5em;
    color: var(--tertiary-title-text);
    margin: 0;
    line-height: 80px;
    opacity: .7;
}

.c-section__title__animated {
    height: 100px;
    overflow: hidden;
}

.c-section__title__animated > h3 {
    height: 100%;
}

.c-section__title__animated--first {
    transition: margin-top .5s cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

.c-section__title-small {
    font-size: 3em;
    margin: 0;
}

.c-section__description {
    max-width: 500px;
}

.c-section__container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.c-section__container__content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-section__container.c-section__container--left-content {
    flex-direction: row-reverse;
}

.c-section__container.c-section__container--left-content .c-section__message-box {
    text-align: left;
}
    
.c-section__container.c-section__container--left-content .c-section__img__mobile {
    right: -5%;
    left: auto;
}

.c-section__container.c-section__container--left-content .c-section__img__tablet {
    right: 15%;
    left: auto;
}

.c-btn-pump {
    position: absolute;
    bottom: 2em;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    cursor: pointer;
    z-index: 99;
}

.c-btn-pump__icon {
    font-size: 1.5em;
}

/*  SECTION-WELCOME */

.c-section--welcome {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(var(--secundary-color)), rgb(var(--accent-color), .2));
}

.c-section__descrption {
    font-size: 1.1rem;
}

.c-section__message {
    font-size: .7em;
    color: var(--light-text);
}

.c-section__cards {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
}


.c-section__cards__item {
    width: 20em;
    margin: 0 5px;
    transition: .2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-section__cards__item--large {
    width: 20em;
}

.c-section__cards__item--medium {
    width: 15em;
}

.c-section__cards__item--small {
    width: 10em;
}


.c-section__cards__item img, 
.c-section__cards__item video {
    box-shadow: 0 5px 10px #0000002f;
    width: 100%;
    border-radius: .3rem;
}

/*  SECTION-FEATURES */

.c-section--features {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(rgb(var(--main-color), .5), rgb(var(--secundary-color)), rgb(var(--main-color), .5));
    min-height: 300px;
    padding: 0;
}

.c-section__container--features {
    position: inherit;
    top: auto;
    left: auto;
    transform: none;
    height: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
}

.c-section__card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 40px;
    font-size: 1em;
    color: var(--tertiary-title-text);
}

.c-section__card__img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
    width: 3em;
}

.c-section__card__img--blue {
    color: rgb(var(--accent-color));
}

.c-section__card__img--yellow {
    color: rgb(var(--yellow-color));
}

.c-section__card__img--red {
    color: rgb(var(--red-color));
}

.c-section__card__img--green {
    color: rgb(var(--green-color));
}

.c-section__card__title {
    margin: 1rem 0;
    font-size: 1em;
    color: var(--tertirary-title-text);
    font-weight: bold;
    text-transform: uppercase;
}

.c-section__card__description {
    color: var(--text-smooth);
    font-size: .8em;
    margin: 0;
}


/*  SECTION-INFO-PARTS */

.c-section--info-parts {
    overflow: hidden;
}

.c-section__container--info-parts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    overflow: visible;
}

.c-section__img {
    position: relative;
}

.c-section__img::before {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    height: 2em;
    background-color: rgb(40 40 40);
    box-shadow: 0 10px 20px #00000020;
    width: 3em;
}


.c-section__img::after {
    content: '';
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    height: .5rem;
    background-color: rgb(40 40 40);
    box-shadow: 0 10px 20px #0000004d;
    width: 50%;
    border-radius: .5rem;
}

.c-section__img img {
    width: 100%;
    box-shadow: 0 5px 10px #0000001e;
    border-radius: .5rem;
    border-radius: .5rem;
    border: 5px solid rgb(40 40 40);
}

.c-section__img .c-section__img__desktop {
    border: 5px solid rgb(40 40 40);
}

.c-section__img__tablet {
    position: absolute;
    width: 50% !important;
    bottom: 0;
    left: 15%;
    background-color: rgb(30, 30, 30);
    box-shadow: -3px 5px 10px rgb(0, 0, 0, .3) !important;
    border: 5px solid rgba(0, 0, 0, 0.8);
}

.c-section__img__mobile {
    position: absolute;
    width: 20% !important;
    bottom: 0;
    left: -2%;
    background-color: rgb(30, 30, 30);
    padding-bottom: .5em;
    box-shadow: -3px 5px 10px rgb(0, 0, 0, .3) !important;
    border: 5px solid rgba(0, 0, 0, 0.8);
}

.c-section__message-box {
    max-width: 500px;
    color: var(--text-smooth);
    font-size: .9em;
    text-align: left;
    padding: 20px 40px;
}

.c-section__container--animation-right .c-section__message-box {
    text-align: end;
}

.c-section__message-box h3 {
    color: var(--tertiary-title-text);
    opacity: .7;
}


.c-section__message-box__title {
    font-size: 2em;
    color: var(--tertiary-title-text);
    opacity: 1 !important;
}


/*  SECTION-INFO-ADDITIONAL */

.c-section--info-additional {
    background: rgb(var(--primary-color));
    color: rgb(210, 220, 230);
}

.c-section__container--info-additional {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: auto;
}

.c-section--info-additional .c-section__title {
    color: #fff;
    opacity: 1;
}

.c-card-question {
    margin: 20px;
}

/* ------------- FOOTER ------------- */

.c-app__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8em;
    flex-direction: column;
    min-height: 550px;
    background-color: #111;
    overflow: hidden;
}

.c-app__footer__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px 60px;
}

.c-app__footer__box {
    display: flex;
    flex-direction: column;
    justify-content: start;
    max-width: 350px;
    margin: 10px;
}

.c-app__footer__box__title {
    color: rgb(230, 230, 230);
    text-transform: uppercase;
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.c-app__footer__box__text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--light-color);
    width: max-content;
    white-space: nowrap;
    margin-bottom: 10px;
}

.c-app__footer__box__text span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.c-app__footer__box__text i {
    margin-right: 10px;
}

.c-app__footer__container--info {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: var(--light-color);
}

.c-app__footer .c-logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.c-app__footer .c-logo__title { 
    color: var(--title-color);
    font-size: 1em;
    font-weight: normal;
}

.c-app__footer .c-logo__img {
    max-width: 1.3em;
    pointer-events: none;
} 


@media (max-width: 1600px) {

    .c-app__header {
        max-width: 1000px;
    }
}

@media (max-width: 1200px) {

    .c-app__header {
        max-width: 800px;
    }


    .c-section {
        padding: 40px 0;
    }

    .c-section__container--info-additional {
        grid-template-columns: repeat(2, 1fr);
    }

    .c-section__container--info-parts {
        flex-direction: column;
    }

    .c-section__container.c-section__container--info-parts.c-section__container--animation-right {
        flex-direction: column-reverse;
    }

    .c-section__message-box {
        text-align: center !important;
    }

    .c-section__img {
        margin-bottom: 60px !important;
    }
    
    .c-section__img__tablet,
    .c-section__img__mobile {
        opacity: 1;
    }

    .c-section__img__mobile {
        right: 0;
    }
}

@media (max-width: 768px) {


    .c-app {
        font-size: 1rem;
    }

    .c-app__header {
        padding: 10px 20px;
    }

    .c-nav {
        top: 4rem;
    }

    .c-section__container {
        opacity: 1;
        padding: 0 20px;
    }

    .c-section__cards {
        display: none;
    }

    .c-section__container.c-section__container--left-content {
        flex-direction: column-reverse;
    }

    .c-section__container--info-parts {
        flex-direction: column-reverse;
    }

    .c-app__footer__box {
        align-items: center;
    }
}