/* aule.co */

/* Variables */
:root {
    --primary-color: #74dcba;
    --primary-color-light: #e3f8f1;
    --primary-color-dark: #3faa8a;
    --primary-color-darker: #14513d;

    --light-color-10: #eeeeee;
    --light-color-20: #dddddd;

    --black-color: #000000;
    --white-color: #ffffff;

    --border-radius: 0.25rem;
}

html {
    scroll-behavior: smooth;
}

/* Body settings */
* {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
}

/* *********************************************** */

/* COMPONENTS SECTION */

/* Navbar */
.navbar {
    width: 100%;
    height: 80px;
    background-color: var(--primary-color);
    position: fixed;
    z-index: 1000;
}

.navbar .navbar__container {
    display: flex;
    height: 100%;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.navbar .navbar__container .navbar__container__logo {
    display: flex;
    flex: 1;
}

.navbar__container__logo img {
    width: 35px;
    height: auto;
    margin-right: 10px;
}

.navbar .navbar__container .navbar__container__navigation {
    display: flex;
    align-items: center;
}

.navbar__container__navigation .navbar__container__navigation-item {
    text-decoration: none;
    color: var(--primary-color-darker);
    font-weight: 700;
    border-radius: var(--border-radius);
    padding: 10px 10px;
    margin-right: 10px;
    transition: 0.1s all ease-in-out;
}

.navbar__container__navigation .navbar__container__navigation-item:hover {
    background: rgba(255, 255, 255, 0.3);
}

.navbar__drawer {
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.navbar .navbar__drawer-container {
    width: 300px;
    height: 100vh;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    right: 0;
    top: 0;
    background-color: var(--white-color);
    z-index: 1000;
    text-align: center;
    padding: 20px;
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.3);
    transform: translateX(310px);
    transition: 300ms all ease;
}

.navbar .drawer-open {
    transform: translateX(0px);
}

.navbar .navbar__drawer-container .navbar__close-drawer {
    margin-bottom: 30px;
    font-size: 30px;
    cursor: pointer;
}

.navbar .navbar__drawer-container__navigation {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.navbar .navbar__drawer-container__navigation-item {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    color: var(--primary-color-dark);
    transition: 300ms all ease;
    text-decoration: none;
    font-weight: 600;
}

.navbar .navbar__drawer-container__navigation-item:hover {
    background-color: var(--primary-color-light);
}

.navbr .navbar__drawer-container__logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbar__drawer:hover {
    background-color: var(--primary-color-dark);
}

/* Hero */
.hero {
    width: 100%;
    height: 600px;
    background-color: var(--primary-color-light);
    background-image: url(../assets/hero_1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero__container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

/* Jumbotron */
.jumbotron {
    width: 100%;
    height: 150px;
    background-color: var(--primary-color);
    position: relative;
}

.jumbotron .jumbotron-card {
    max-width: 1200px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -60px;
    padding: 30px;
    background-color: var(--white-color);
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color-darker);
    font-weight: 700;
    border-radius: calc(var(--border-radius) * 4);
    border: 1px solid var(--light-color-20);
}

/* Caraousel */
.carousel {
    width: 100%;
    margin-top: 60px;
    position: relative;
}

.carousel .carousel__container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    overflow: auto;
    scrollbar-width: 0;
    scroll-behavior: smooth;
}

.carousel .carousel__container::-webkit-scrollbar {
    display: none;
}

.carousel .carousel__left-button {
    position: absolute;
    left: 3%;
    top: 40%;
    background-color: var(--primary-color-dark);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    user-select: none;
}

.carousel .carousel__right-button {
    position: absolute;
    right: 3%;
    top: 40%;
    background-color: var(--primary-color-dark);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    user-select: none;
}

.carousel .carousel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    margin: 70px 20px;
}

.carousel .carousel__container img {
    width: 230px;
    height: auto;
    object-fit: cover;
}

/* Manual */
.manual {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    overflow: hidden;
}

.manual__container {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.manual__container .button {
    margin-top: 20px;
}

.manual img {
    width: 25%;
    height: auto;
    border: 4px solid var(--primary-color-darker);
    border-radius: calc(var(--border-radius) * 2);
    margin-left: 30px;
}

/* INFO */
.info {
    width: 100%;
    max-width: 1366px;
    display: flex;
    margin: 80px auto 0 auto;
    overflow: hidden;
}

.info__green {
    width: 50%;
    padding: 50px;
    background-color: var(--primary-color);
}

.info__gray {
    width: 50%;
    padding: 50px;
    background-color: var(--light-color-10);
}

/* VALUES */
.values {
    width: 100%;
    max-width: 1200px;
    margin: 100px auto 0 auto;
}

.values-flex {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
}

.values-flex .text-logo-2 {
    margin-top: 30px;
}

.values .values-card {
    width: 250px;
    height: 350px;
    border: 3px solid var(--primary-color-darker);
    border-radius: calc(var(--border-radius) * 4);
    overflow: hidden;
    position: relative;
}

.values .values-card .values-card__top {
    width: 100%;
    height: 30px;
    background-color: #FFBF23;
    border-bottom: 3px solid var(--primary-color-darker);
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.values .values-card .values-card__body {
    padding: 20px;
    font-size: 0.8125rem;
}

.values .values-card .values-card__top .circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--black-color);
    margin-right: 5px;
}

.values .values-card img {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 70px;
}

/* GALLERY */
.gallery {
    width: 100%;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-img {
    width: 55%;
    margin-bottom: -3.5%;
    z-index: 100;
}

.gallery-jumbotron {
    width: 100%;
    padding: 50px;
    background-color: var(--primary-color);
}

.gallery-jumbotron .text-header {
    margin-top: 30px;
}

.gallery-jumbotron .flex .gallery-label {
    background-color: var(--primary-color-dark);
    color: var(--white-color);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 50px;
    margin: 5px;
    cursor: pointer;
    transition: 300ms all ease;
}

.gallery-jumbotron .flex {
    flex-wrap: wrap;
}

.gallery-jumbotron .flex .gallery-label:hover {
    background-color: var(--primary-color-darker);
}

.gallery-jumbotron .flex .gallery-card {
    width: 250px;
    height: 350px;
    border: 3px solid var(--primary-color-darker);
    border-radius: calc(var(--border-radius) * 4);
    overflow: hidden;
    margin: 10px 20px;
}

/* FOOTER */
.footer {
    width: 100%;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-img {
    width: 60%;
    margin-bottom: -4%;
    z-index: 100;
}

.footer .footer-jumbotron {
    width: 100%;
    padding: 50px;
    background-color: var(--primary-color-darker);
}

.footer .footer-jumbotron>* {
    color: var(--white-color);
}

.footer-jumbotron .flex {
    flex-wrap: wrap;
}

.footer-jumbotron .footer-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    font-weight: 600;
    color: var(--white-color);
    text-align: center;
}

.footer-card i {
    font-size: 40px;
    margin-bottom: 20px;
}

.footer-jumbotron .copyright .text-logo-2 {
    color: var(--white-color) !important;
}


/* *********************************************** */
/* UTILITY CLASSES */

.w-100 {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.image-responsive {
    max-width: 100%;
    height: auto;
}

/* Flex */
.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-column {
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.m-20 {
    margin: 20px;
}

/* *********************************************** */
/* ELEMENT CLASSES */

/* Button */
.button {
    text-decoration: none;
    color: var(--white-color);
    font-weight: 700;
    background-color: var(--primary-color-dark);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border: 0;
    cursor: pointer;
}

.button.button__primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Typography */
.display-1 {
    font-size: 3rem;
    margin: 0;
    color: var(--primary-color-darker);
    font-weight: 900;
}

.text-logo-1 {
    margin: 0;
    font-weight: 900;
    color: var(--primary-color-darker);
}

.text-logo-2 {
    margin: 0;
    font-weight: 700;
    color: var(--primary-color-darker);
}

.text-header {
    margin: 0;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-color-darker);
}

.text-parraf {
    margin: 0;
    line-height: 2;
}

.text-primary {
    color: var(--primary-color-darker);
}

.text-white {
    color: var(--white-color) !important;
}

.text-center {
    text-align: center !important;
}

/* MEDIA QUERIES */

@media screen and (max-width: 1200px) {
    .info__gray .flex img {
        display: none;
    }
}

@media screen and (max-width: 760px) {
    .navbar__container__logo .flex {
        text-align: center;
    }

    .manual img,
    article {
        display: none;
    }

    .manual__container {
        max-width: 100%;
        text-align: center !important;
        align-items: center;
    }
}

@media screen and (max-width: 670px) {
    .info {
        flex-direction: column;
    }

    .info .info__green,
    .info__gray {
        width: 100%;
    }
}

@media screen and (max-width: 580px) {
    .navbar__container__logo {
        justify-content: space-around;
    }

    .navbar__container__navigation {
        display: none !important;
    }

    .navbar__drawer {
        display: flex;
    }

    .hero {
        background-position: center;
    }

    .hero__container {
        text-align: center !important;
        align-items: center;
    }

    .values-flex {
        justify-content: center;
    }
}

@media screen and (max-width: 380px) {
    .display-1 {
        font-size: 2.5rem;
    }

    .footer .footer-jumbotron .text-header {
        font-size: 2.2rem;
    }

    .gallery-jumbotron,
    .footer-jumbotron {
        padding: 0;
    }
}