
body {
    padding-top: 330px;
}

.sticky-shrinknav-menu {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    height: 3rem;
    line-height: 3rem;
    width: 100%;
    background-color: #820628;
    transition: all 0.5s ease;
}
/* Small only */
@media screen and (max-width: 39.9375em) {
    .sticky-shrinknav-menu {

        height: auto;
        line-height: auto;

    }

}

.sticky-shrinknav-menu li {
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sticky-shrinknav-menu li:hover {
    box-shadow: 0 0 0 1px #fefefe;
}

.sticky-shrinknav-menu a {
    color: #fefefe;
}

.sticky-shrinknav-header-title {
    transition: all 0.3s ease;
    position: relative;
    -webkit-transform: translateY(-1.875rem);
    -ms-transform: translateY(-1.875rem);
    transform: translateY(-1.875rem);
    margin-bottom: 0;
    color: #fefefe;
}

.sticky-shrinknav-header {
    width: 100%;
    height: 300px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: url("../img/bg.jpg") top left fixed;
    background-size: cover;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 99999;
}

body.sticky-shrinknav-wrapper {
    padding-top: 130px;
    margin-top: 50px;
    z-index: 99999;
}

img.rank {
    margin: 0 auto;
    display: block;
}

body.sticky-shrinknav-wrapper .sticky-shrinknav-header {
    height: 3.75rem;
    background-color: rgba(23, 121, 186, 0.9);
}

body.sticky-shrinknav-wrapper .sticky-shrinknav-header .sticky-shrinknav-header-title {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: all 0.3s ease;
}

.hero-full-screen {
    height: 100vh;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: url("../img/bg.jpg") center center no-repeat;
    background-size: cover;
}

.hero-full-screen .middle-content-section {
    color: #fefefe;
    margin-top: 24rem;
    margin-left: 45px;
    text-shadow: black 1px 1px 1px;
}

/* Small only */
@media screen and (max-width: 39.9375em) {
    .hero-full-screen .middle-content-section {
        margin-top: 17rem;
        margin-left: 60px;
        font-size: small;
    }
}

.hero-full-screen .top-content-section {
    width: 100%;
}

.hero-full-screen .bottom-content-section {
    padding: 1rem;
    opacity: 0;
}

.hero-full-screen .bottom-content-section svg {
    height: 3.75rem;
    width: 3.75rem;
    fill: #fefefe;
}

.hero-full-screen .top-bar {
    background: transparent;
}

.hero-full-screen .top-bar .menu {
    background: transparent;
}

.hero-full-screen .top-bar .menu-text {
    color: #fefefe;
}

.hero-full-screen .top-bar .menu li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-full-screen .top-bar .menu a {
    color: #fefefe;
}

/*contacto*/
.contact-panel-button {
    background: #0a0a0a;
    color: #fefefe;
    width: auto;
    padding: 0.25rem 1.25rem;
    text-align: center;
    position: absolute;
    top: -30px;
    right: 20px;
    transition: background 0.25s ease-in-out;
}

.contact-panel-button:after {
    content: "⥣";
    margin-left: 5px;
}

.contact-panel-button:hover {
    background: #242424;
    color: #f0f0f0;
}

.is-active .contact-panel-button:after {
    content: "⥥";
}

.contact-panel {
    padding: 1rem;
    z-index: 1;
    background: #0a0a0a;
    width: 350px;
    height: 375px;
    position: fixed;
    bottom: -375px;
    right: 20px;
    transition: bottom 0.5s ease-in-out;
}

.contact-panel label {
    color: #fefefe;
    width: 100%;
}

.contact-panel input[type="text"],
.contact-panel input[type="email"],
.contact-panel textarea {
    background: #303030;
    border: #0a0a0a;
    transition: background 0.3s ease-in-out;
}

.contact-panel input[type="text"]:focus,
.contact-panel input[type="email"]:focus,
.contact-panel textarea:focus {
    background: #fefefe;
}

.contact-panel .contact-panel-actions {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-panel .submit-button {
    margin-bottom: 0;
}

.contact-panel .cancel-button {
    margin-bottom: 0;
    padding: 0.75rem 1rem;
    color: #fefefe;
    transition: background 0.25s ease-in-out;
}

.contact-panel .cancel-button:hover {
    background: #242424;
    color: #f0f0f0;
}

.contact-panel.is-active {
    bottom: 0;
}

@media screen and (max-width: 39.9375em) {
    .contact-panel {
        width: 100%;
        right: 0;
    }
}
footer {
    background-color: #820628;
    padding: 0 25px;
    color: white;
    margin-top: 50px;
}
footer p{
    line-height: 1;
    text-align: left;

}
footer a{
    color: white;
}
/* Small only */
@media screen and (max-width: 39.9375em) {
    footer {
        padding: 0;
        margin-top: 20px;
    }
    footer p{
        line-height: 1;
        margin-bottom: 0.5rem;
        font-size: small;
    }
    footer h5{
        line-height: 1;
    }

}


.simple-subscription-form {
    background: #0c3e5f;
    color: #fefefe;
    padding: 2rem;
    border-radius: 0;
}
logo{
    font-family: AMBROSIA_DEMO;
    font-size: 1.3rem;
    color: #820628;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;

}
.simple-subscription-form .button {
    margin-bottom: 0;
    border-radius: 0 0 0 0;
}


.newsletter-subscribe {
    background: #fefefe;
    height: 200px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1rem;
}

.newsletter-subscribe .input-group-field {
    border-radius: 5000px 0 0 5000px;
    position: relative;
    -webkit-transform: translateX(0.5rem);
    -ms-transform: translateX(0.5rem);
    transform: translateX(0.5rem);
}

.newsletter-subscribe .input-group {
    margin-bottom: 0;
}

.newsletter-subscribe .newsletter-subscribe-inner {
    text-align: center;
}

.newsletter-subscribe .input-group-button .button {
    border-radius: 5000px;
    position: relative;
    -webkit-transform: translateX(-0.5rem);
    -ms-transform: translateX(-0.5rem);
    transform: translateX(-0.5rem);
    min-width: 25vw;
}

@media print, screen and (min-width: 40em) {
    .newsletter-subscribe {
        padding: 0 3rem;
    }
}

@media print, screen and (min-width: 64em) {
    .newsletter-subscribe {
        padding: 0 6rem;
    }
}




