
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
}
body {
    width:100%;
    font-family: Open Sans, Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.accent {
    color: #DA291C;
}


.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.navbar--container {
    width: 100%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}
.navbar--sticky {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
.navbar--container img {
    max-width: 150px;
}
.navigation--arrows {
    width: 98%;
    display: flex;
    justify-content: space-between;
    position: fixed; 
    left: 50%;
    transform: translateX(-50%);
    bottom: 50%; 
    z-index: 10;
}
#nextButton,
#prevButton {
    padding: 15px;
    color: #DA291C;
    background-color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
}
.video--container {
    width:100%;
    height:100vh;
    background-color: #000000;
}
#video {
    margin: 0 auto;
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.body--container {
    width:100%;
    height:100vh;
    background-image: url(../assets/mendigo.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.about--container {
    width:100%;
    height:100vh;
    background-image: url(../assets/graffiti.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.work--container {
    width:100%;
    height:100vh;
    background-image: url(../assets/contrato.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.location--container {
    width:100%;
    height:100vh;
    background-image: url(../assets/juego.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contact--container {
    width:100%;
    height:100vh;
    background-image: url(../assets/mendigo.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
form {
    margin: 20px 0px 0px 0px;
}
label {
    font-size: 14px;
}
input, textarea {
    width: 100%;
    margin: 5px 0px;
    resize: none;
    border-radius: 4px;
    border: 1px solid black;
}

.navbar--container--menu a{
    font-size: 14px;
    color: #000000;
    text-decoration: none;
}
.navbar--container--menu a:hover{
    color: #DA291C;
}
.body--title {
    margin: 40px 0px 0px 80px;
}
.body--title--black {
    color: #000000;
    font-size: 32px;
    font-weight: 800;
    padding: 5px 25px;
    display: inline-block;
    background-color: #ffffff;
}
.body--title--red {
    color: #DA291C;
    font-size: 32px;
    font-weight: 800;
    padding: 5px 25px;
    margin: 0px 0px 0px 32px;
    display: inline-block;
    background-color: #ffffff;
}
.body--content,
.about--content,
.work--content,
.location--content,
.contact--content {
    width: 505px;
    font-size: 16px;
    line-height: 20px;
    padding: 20px;
    margin: 32px 0px 0px 80px;
    background-color: #ffffff;
}
.about--content--intro p:first-child,
.work--content--intro p:first-child,
.location--content--intro p:first-child {
    font-size: 24px;
}
.send--content--intro {
    text-align: center;
}
.body--content--timer {
    width: 70%;
    margin: 40px auto 16px auto;
    display: flex;
    justify-content: space-between;
}

.time {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
}

.colon,
.hours p:first-child,
.minutes p:first-child,
.seconds p:first-child {
    font-size: 64px;
    font-weight: 800;
    padding: 0px 0px 20px 0px;
}

.body--content--counter {
    width:100%;
    font-weight: 800;
    text-align: center;
    margin: 0px 0px 32px 0px;
}
.body--content--cta {
    width:100%;
    margin: 32px 0px 16px 0px;
    text-align: center;
}
.cta, input[type="submit"] {
    font-weight: 800;
    color: #ffffff;
    padding: 15px 80px;
    background-color: #DA291C;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .container {
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .navbar--container {
        width: 100%;
        background-color: #ffffff;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    .navbar--sticky {
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
    .navbar--container img {
        max-width: 150px;
    }
    .navigation--arrows {
        width: 98%;
        display: flex;
        justify-content: space-between;
        position: fixed; 
        left: 50%;
        transform: translateX(-50%);
        bottom: 50%; 
        z-index: 10;
    }
    #nextButton,
    #prevButton {
        padding: 15px;
        color: #DA291C;
        background-color: #ffffff;
        border-radius: 4px;
        cursor: pointer;
    }
    .video--container {
        width:100%;
        height:100vh;
        background-color: #000000;
    }
    #video {
        margin: 0 auto;
        width: 100vw;
        height: 100vh;
        object-fit: contain;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }
    .body--container {
        width:100%;
        height:100vh;
        background-image: url(../assets/mendigo.jpg);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
    }
    .about--container {
        width:100%;
        height:100vh;
        background-image: url(../assets/graffiti.jpg);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
    }
    .work--container {
        width:100%;
        height:100vh;
        background-image: url(../assets/contrato.jpg);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
    }
    .location--container {
        width:100%;
        height:100vh;
        background-image: url(../assets/juego.jpg);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
    }
    .contact--container {
        width:100%;
        height:100vh;
        background-image: url(../assets/mendigo.jpg);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
    }
    form {
        margin: 20px 0px 0px 0px;
    }
    label {
        font-size: 14px;
    }
    input, textarea {
        width: 100%;
        margin: 5px 0px;
    }
    .navbar--container--menu a{
        font-size: 14px;
        color: #000000;
        text-decoration: none;
    }
    .navbar--container--menu a:hover{
        color: #DA291C;
    }
    .body--title {
        margin: 40px 0px 0px 80px;
    }
    .body--title--black {
        color: #000000;
        font-size: 32px;
        font-weight: 800;
        padding: 5px 25px;
        display: inline-block;
        background-color: #ffffff;
    }
    .body--title--red {
        color: #DA291C;
        font-size: 32px;
        font-weight: 800;
        padding: 5px 25px;
        margin: 0px 0px 0px 32px;
        display: inline-block;
        background-color: #ffffff;
    }
    .body--content,
    .about--content,
    .work--content,
    .location--content,
    .contact--content {
        width: 505px;
        font-size: 16px;
        line-height: 20px;
        padding: 20px;
        margin: 32px 0px 0px 80px;
        background-color: #ffffff;
    }
    .about--content--intro p:first-child,
    .work--content--intro p:first-child,
    .location--content--intro p:first-child {
        font-size: 24px;
    }
    .body--content--timer {
        width: 70%;
        margin: 40px auto 16px auto;
        display: flex;
        justify-content: space-between;
    }
    
    .time {
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 16px;
        text-transform: uppercase;
    }
    
    .colon,
    .hours p:first-child,
    .minutes p:first-child,
    .seconds p:first-child {
        font-size: 64px;
        font-weight: 800;
        padding: 0px 0px 20px 0px;
    }
    
    .body--content--counter {
        width:100%;
        font-weight: 800;
        text-align: center;
        margin: 0px 0px 32px 0px;
    }
    .body--content--cta {
        width:100%;
        margin: 32px 0px 16px 0px;
        text-align: center;
    }

    .cta, input[type="submit"] {
        font-weight: 800;
        color: #ffffff;
        padding: 15px 80px;
        background-color: #DA291C;
        border-radius: 8px;
        border: none;
        cursor: pointer;
    }
}

@media (max-width: 900px) {
    .container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .navbar--container {
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    .navbar--sticky {
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    .navbar--container img {
        max-width: 150px;
    }
    .navigation--arrows {
        width: 90%;
        height: 45px;
        display: flex;
        justify-content: space-between;
        position: fixed; 
        left: 50%;
        transform: translateX(-50%);
        top: 22.5%;  
        z-index: 10;
    }
    #nextButton,
    #prevButton {
        padding: 15px;
        color: #DA291C;
        background-color: #ffffff;
        border-radius: 4px;
        cursor: pointer;
    }
    .body--container {
        width:100%;
        height: auto;
        background-image: url(../assets/mendigo.jpg);
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .about--container {
        width:100%;
        height: auto;
        background-image: url(../assets/graffiti.jpg);
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .work--container {
        width:100%;
        height: auto;
        background-image: url(../assets/contrato.jpeg);
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .location--container {
        width:100%;
        height: auto;
        background-image: url(../assets/juego.jpeg);
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .contact--container {
        width:100%;
        height: auto;
        background-image: url(../assets/mendigo.jpg);
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    form {
        margin: 20px 0px 0px 0px;
    }
    label {
        font-size: 14px;
    }
    input, textarea {
        width: 100%;
        margin: 5px 0px;
    }
    .body--content--box,
    .about--content--box,
    .work--content--box,
    .location--content--box,
    .contact--content--box {
        width: 90%;
        margin: 375px auto 0px auto;
        background-color: #FFFFFF;
    }
    .body--title {
        width: 90%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .body--title--black {
        color: #000000;
        font-size: 24px;
        font-weight: 800;
        padding: 5px 0px;
        margin: 0px 0px 0px 0px;
        display: inline-block;
        background-color: white;
    }
    .body--title--red {
        color: #DA291C;
        font-size: 22px;
        font-weight: 800;
        padding: 5px 0px;
        margin: 0px 0px 0px 0px;
        display: inline-block;
        background-color: white;
    }
    .body--content,
    .about--content,
    .work--content,
    .location--content,
    .contact--content {
        width:90%;
        margin: 0 auto;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        background-color: #ffffff;
    }
    .body--content--intro,
    .about--content--intro,
    .work--content--intro,
    .location--content--intro,
    .contact--content--intro {
        width: 100%;
        text-align: center;
    }
    .about--content--intro p:first-child,
    .work--content--intro p:first-child,
    .location--content--intro p:first-child {
        font-size: 16px;
    }
    .body--content--timer {
        width: 60%;
        margin: 40px auto 16px auto;
        display: flex;
        justify-content: space-between;
    }
    .time {
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 16px;
        text-transform: uppercase;
    }
    
    .colon,
    .hours p:first-child,
    .minutes p:first-child,
    .seconds p:first-child {
        font-size: 64px;
        font-weight: 800;
        padding: 0px 0px 20px 0px;
    }
    .body--content--counter {
        width:100%;
        font-weight: 800;
        text-align: center;
        margin: 0px 0px 32px 0px;
    }
    .body--content--cta {
        width:100%;
        margin: 32px 0px 16px 0px;
        text-align: center;
    }
    .cta, input[type="submit"] {
        font-weight: 800;
        color: #ffffff;
        padding: 15px 80px;
        background-color: #DA291C;
        border-radius: 8px;
        border: none;
        cursor: pointer;
    }
}

@media (max-width: 600px) {
    body {
        overflow: scroll;
    }
    .container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .navbar--container {
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    .navbar--sticky {
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    .navbar--container img {
        max-width: 150px;
    }
    .navigation--arrows {
        width: 90%;
        height: 45px;
        display: flex;
        justify-content: space-between;
        position: fixed; 
        left: 50%;
        transform: translateX(-50%);
        top: 17.25%;  
        z-index: 10;
    }
    #nextButton,
    #prevButton {
        padding: 15px;
        color: #DA291C;
        background-color: #ffffff;
        border-radius: 4px;
        cursor: pointer;
    }
    .body--container {
        width:100%;
        height: auto;
        background-image: url(../assets/mendigo.jpg);
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .about--container {
        width:100%;
        height: auto;
        background-image: url(../assets/graffiti.jpg);
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .work--container {
        width:100%;
        height: auto;
        background-image: url(../assets/contrato.jpg);
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .location--container {
        width:100%;
        height: auto;
        background-image: url(../assets/juego.jpg);
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .contact--container {
        width:100%;
        height: auto;
        background-image: url(../assets/mendigo.jpg);
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    form {
        margin: 20px 0px 0px 0px;
    }
    label {
        font-size: 14px;
    }
    input, textarea {
        width: 100%;
        margin: 5px 0px;
    }
    .body--content--box,
    .about--content--box,
    .work--content--box,
    .location--content--box,
    .contact--content--box {
        width: 90%;
        margin: 175px auto 0px auto;
        background-color: #FFFFFF;
    }
    .body--title {
        width: 90%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .body--title--black {
        color: #000000;
        font-size: 24px;
        font-weight: 800;
        padding: 10px 0px 0px 0px;
        margin: 0px 0px 0px 0px;
        display: inline-block;
        background-color: white;
    }
    .body--title--red {
        color: #DA291C;
        font-size: 22px;
        font-weight: 800;
        padding: 0px 0px 0px 0px;
        margin: 0px 0px 0px 0px;
        display: inline-block;
        background-color: white;
    }
    .body--content,
    .about--content,
    .work--content,
    .location--content {
        width:90%;
        margin: 0 auto;
        padding: 10px 0px 0px 0px;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        background-color: #ffffff;
    }
    .body--content--intro,
    .about--content--intro,
    .work--content--intro,
    .location--content--intro,
    .contact--content--intro {
        width: 100%;
    }
    .about--content--intro p:first-child,
    .work--content--intro p:first-child,
    .location--content--intro p:first-child {
        font-size: 16px;
    }
    .body--content--timer {
        width: 90%;
        margin: 40px auto 16px auto;
        display: flex;
        justify-content: space-between;
    }
    .time {
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 16px;
        text-transform: uppercase;
    }
    
    .colon,
    .hours p:first-child,
    .minutes p:first-child,
    .seconds p:first-child {
        font-size: 64px;
        font-weight: 800;
        padding: 0px 0px 20px 0px;
    }
    .body--content--counter {
        width:100%;
        font-weight: 800;
        text-align: center;
        margin: 0px 0px 16px 0px;
    }
    .body--content--cta {
        width:100%;
        margin: 32px 0px 16px 0px;
        text-align: center;
    }
    .cta, input[type="submit"] {
        font-weight: 800;
        color: #ffffff;
        padding: 15px 80px;
        background-color: #DA291C;
        border-radius: 8px;
        border: none;
        cursor: pointer;
    }
}