@charset "utf-8";
/* CSS Document */

.MainContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 150px;
    height: calc(100% - 130px);
}

.content {
    width: 65%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
}

.Dog1 {
    display: block;
    height: calc(100% - 130px);
    width: 50%;
}

.BCDog {
    position: absolute;
    height: 95%;
    bottom: 0;
}

.PromTxt {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: max-content;
    left: 50%;
}

.BgLogo {
    display: flex;
    justify-content: center;
    width: 100%;
}

.imgBgLogo {
    width: 80%;
}

.PromTxt h2 {
    width: 100%;
    text-align: center;
    color: #3498db;
    padding-top: 25px;
    font-size: 2.5em;
    letter-spacing: .2em;
    font-family: "Asenine";
}

.PromTxt .chevdown {
    width: 100%;
    text-align: center;
    color: #3498db;
    padding-top: 20px;
    font-size: 3.5em;
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
        /* Inicial, mitad y final */
    }

    40% {
        transform: translateY(-20px);
        /* Brinco hacia arriba */
    }

    60% {
        transform: translateY(-10px);
        /* Brinco hacia abajo */
    }
}

.PromTxt .chevdown a:any-link {
    color: #3498db;
    text-decoration: none;
}

.PromTxt .chevdown i {
    animation: bounce 2s infinite;
}

@media screen and (max-width:2560px) {

    .BCDog {
        display: flex;
        height: 95%;
        margin-bottom: 0;
        margin-top: auto;
    }

    .PromTxt h2 {
        font-size: 2.1em;
        letter-spacing: .1em;
    }

}

@media screen and (max-width:2400px) {}

@media screen and (max-width:1920px) {

    .Dog1 {
        display: block;
        height: calc(100% - 130px);
        width: 50%;
    }

    .BCDog {
        position: absolute;
        height: 90%;
        bottom: 0;
    }

    .PromTxt {
        display: block;
        position: relative;
        width: max-content;
        left: 50%;
    }

    .imgBgLogo {
        width: 75%;
    }

    .PromTxt h2 {
        font-size: 1.9em;
        letter-spacing: .1em;
    }

    .PromTxt h2 {
        font-size: 2em;
        letter-spacing: .1em;
    }

    .PromTxt .chevdown {
        font-size: 2.5em;
        font-weight: 500;
    }

}

@media screen and (max-width:1700px) {

    .Dog1 {
        width: 80%;
        left: 10%
    }

    .PromTxt h2 {
        font-size: 1.8em;
        letter-spacing: .1em;
    }
}

@media screen and (max-width:1400px) {}

@media screen and (max-width:1024px) and (orientation:portrait) {
    .MainContainer {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin-bottom: unset;
        height: 100%;
    }

    .Dog1 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        max-width: 100%;
    }

    .BCDog {
        position: absolute;
        bottom: 0;
        height: 95%;
        width: auto;
    }

    .contenthd {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .PromTxt {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        left: 0;
        bottom: 30px;
    }

    .BgLogo {
        height: auto;
    }

    .imgBgLogo {
        width: 80%;
    }

    .PromTxt h2 {
        padding-top: 25px;
        font-size: 4em;
        letter-spacing: .1em;
    }

    .PromTxt .chevdown {
        font-size: 5em;
    }
}


@media screen and (max-width:600px) and (orientation:portrait) {

    .BCDog {
        height: auto;
        width: 98%;
    }

    .BgLogo {
        width: 100%;
    }

    .imgBgLogo {
        width: 90%;
    }

    .PromTxt {
        bottom: unset;
    }

    .PromTxt h2 {
        padding-top: 25px;
        font-size: 2em;
        letter-spacing: .1em;
    }

    .PromTxt .chevdown {
        font-size: 2em;
    }
}