*,
h1,
h2,
h3,
h4,
h5,
p,
ul,
figure {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "Montserrat", sans-serif;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*========================*/
/* efecto aparecer */
/*========================*/
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}


/*===================*/
/* nav */
/*===================*/
.header-navbar {
    background-color: #35bab1;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 10;
}

.navbar .container .custom-logo-link .custom-logo {
    width: 161px;
    margin-right: 1rem;
    height: auto;
}

@media (max-width: 991px) {
    .navbar .container .custom-logo-link .custom-logo {
        width: 102px;
    }
}

.navbar-nav {
    gap: 15px;
    padding: 10px 0px;
    justify-content: flex-end;
}

.navbar-nav li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;

    &:hover {
        color: #ffffff;
    }
}

.nav-link:focus,
.nav-link:hover {
    color: #ffffff !important;
}

@media (max-width: 767px) {
    .navbar-nav li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
    }
}

.navbar-nav li {
    position: relative;
    cursor: pointer;
}

@media (max-width: 767px) {
    .navbar-nav li {
        padding-bottom: 5px;
    }
}

.navbar-nav>li::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0%;
    background-color: #ffffff;
    bottom: -1px;
    left: 0px;
    transition: 0.3s all;
}

.navbar-nav>li:hover::after {
    width: 100%;
}

.navbar-toggler-icon {
    /* filter: invert(1); */
    border: none;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler svg path {
    fill: #ffffff;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.svgEnlaceNav {
    display: none;
}

@media (max-width: 767px) {
    .svgEnlaceNav {
        display: inline;
        margin-bottom: 1px;
        height: 10px;
    }
}

.svgEnlaceNav path {
    fill: #ffffff;
}

/*===================*/
/* Hero 2*/
/*===================*/
._hero2-contHero {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: calc(100dvh - 76px);
    overflow: hidden;
    margin-top: 76px;
}

@media (max-width: 991px) {
    ._hero2-contHero {
        background-position-x: 55%;
        height: calc(100dvh - 54px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 54px;
    }
}

._hero2-imgBack {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

@media(max-width: 991px) {
    ._hero2-imgBack {
        object-position: 72%;
    }
}

._hero2-filtro {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #0000003d;
    z-index: 1;
}

._hero2-contTitulos {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

._hero2-iconoBeforeTitulo {
    filter: drop-shadow(2px 2px 2px #00000065);
    ;
}

._hero2-beforeTitulo {
    text-align: start;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {
    ._hero2-beforeTitulo {
        font-size: 1.2rem;
    }
}

._hero2-titulo {
    text-align: start;
    font-size: 7rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {
    ._hero2-titulo {
        font-size: 3.8rem;
    }
}

._hero2-subTitulo {
    text-align: start;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {
    ._hero2-subTitulo {
        font-size: 1.5rem;
    }
}

._hero2-flechaHero {
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-top: auto;
    cursor: pointer;
    animation: upDown 2s ease-in-out infinite;
    z-index: 2;
}


@keyframes upDown {
    0% {
        transform: translateY(0) translateX(-50%);
    }

    50% {
        transform: translateY(-10px) translateX(-50%);
    }

    100% {
        transform: translateY(0) translateX(-50%);
    }
}