body {
    background-image: url(Contacto.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", system-ui;
    font-weight: 400;
    font-style: normal;
}
header {
    display: flex;
    justify-content: space-around;
    min-height: 80px;
    background-color: #1D1D1B;
    color: #FFFFFF;
    align-items: center;
    padding: 20px;
    font-weight: 600;
}
.logo {
    display: flex;
    height: 80px;
}
img {
    margin-right: 20px;
}
li {
    display: inline-block;
    text-align: left;
    margin-right: 50px;
}
a {
    display: flex;
    color: #FFFFFF;
    justify-content: center;
    text-decoration: none;
    padding: 20px;
}
a:hover {
    background-color: #1068A7;
    justify-content: center;
    transition: .5s;
}
.menu-barra {
    font-size: 30px;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check {
    display: none;
}
h1 {
    font-size: 50px;
    color: #FFFFFF;
    text-shadow: 0 0 20px #FFFFFF;
    text-align: center;
    margin-top: 25px;
    padding: 10px;
}
.dueño {
    display: flex;
    justify-content: center;
    align-items: center;
}
form {
    padding: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 20px #1068a7;
    border: #FFFFFF solid;
    border-radius: 25px;
    text-align: center;
    width: 500px;
    margin-right: 20px;
}
.formulario {
    display: flex;
    flex-direction: column;
    text-align: center;
}
input {
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 20px;
    margin-right: 10px;
    background-color: #FFFFFF;
    border: none;
    color: #1D1D1B;
    outline: none;
    height: 10px;
    width: 216px;
}
input::placeholder {
    color: #1068A7;
}
textarea {
    padding: 17px;
    border-radius: 20px;
    margin-bottom: 20px;
    background-color: #FFFFFF;
    border: none;
    color: #1D1D1B;
    outline: none;
    font-family: "Roboto", system-ui;
    font-weight: 400;
    font-style: normal;
}
textarea::placeholder {
    color: #1068A7;
}
.boton {
    background-color: #1068A7;
    color: #FFFFFF;
    border: none;
    border-radius: 20px;
    height: 30px;
}
.boton:hover {
    background-color: #1D1D1B;
    color: #FFFFFF;
    cursor: pointer;
}
.medios {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 20px #1068A7;
    color: #FFFFFF;
    border: #FFFFFF solid;
    border-radius: 20px;
    padding: 15px;
    width: 700px;
    margin-left: 20px;
}
.medio-01 {
    margin-left: 10px;
}
.medio-02 {
    margin-left: 20px;
}
iframe {
    border-radius: 20px;
}
footer {
    display: flex;
    justify-content: space-around;
    text-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    background-color: #1D1D1B;
    color: #FFFFFF;
    width: 100vw;
}
.company {
    display: block;
}
.company p {
    max-width: 500px;
    margin: 10px auto;
    font-size: 14px;
    font-style: italic;
}
.creator {
    padding: 10px 0;
    text-align: center;
}
.creator p {
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}
.creator span {
    text-transform: uppercase;
}

/**laptop grande**/
@media screen and (min-width: 1200px) {
    body {
        background-size: cover;
        background-position: center;
    }
    .medios {
        width: 500px;
    }
    iframe {
        width: 800px;
        height: 100px;
    }
    footer {
        position: absolute;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .company {
        margin-top: 0;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}

/**laptop chica 01**/
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .logo {
        padding: 20px;
        height: 50px;
    }
    .menu-barra {
        display: block;
    }
    ul {
        position: fixed;
        background-color: #1D1D1B;
        width: 100%;
        height: 70vh;
        top: 80px;
        right: -2000px;
        justify-content: center;
        text-align: center;
        transition: all .5s;
        z-index: 1;
    }
    nav ul li {
        display: block;
        margin: 50px;
        line-height: 30px;
    }
    header {
        padding: 10px;
    }
    nav ul li a {
        font-size: 20px;
        padding: 15px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .dueño {
        margin-top: 0;
        padding: 30px;
        flex-wrap: wrap;
    }
    form {
        width: 600px;
        margin-left: 0;
        margin-right: 0;
    }
    input {
        width: 550px;
    }
    .medios {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
        width: 600px;
    }
    .medio-02 {
        margin-left: 10px;
    }
    iframe {
        width: 600px;
        height: 250px;
    }
    footer {
        position: relative;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 98.5vw;
    }
    .company {
        margin-top: 0;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}

/**laptop chica 02**/
@media screen and (max-width: 1024px) {
    .logo {
        padding: 20px;
        height: 50px;
    }
    .menu-barra {
        display: block;
    }
    header {
        padding: 10px;
    }
    ul {
        position: fixed;
        background-color: #1D1D1B;
        width: 100%;
        height: 70vh;
        top: 80px;
        right: -2000px;
        justify-content: center;
        text-align: center;
        transition: all .5s;
        z-index: 1;
    }
    nav ul li {
        display: block;
        margin: 50px;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .dueño {
        margin-top: 0;
        padding: 30px;
        flex-wrap: wrap;
    }
    form {
        width: 600px;
        margin-left: 0;
        margin-right: 0;
    }
    input {
        width: 550px;
    }
    .medios {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
        width: 600px;
    }
    .medio-02 {
        margin-left: 10px;
    }
    iframe {
        width: 600px;
        height: 250px;
    }
    footer {
        position: relative;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .company {
        margin-top: 0;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}
/**celular**/
@media screen and (max-width: 767px) {
    .logo {
        padding: 20px;
        height: 50px;
    }
    .menu-barra {
        display: block;
    }
    header {
        padding: 10px;
    }
    ul {
        position: fixed;
        background-color: #1D1D1B;
        width: 100%;
        height: 90vh;
        top: 80px;
        right: -1000px;
        justify-content: center;
        text-align: center;
        transition: all .5s;
        z-index: 1;
    }
    nav ul li {
        display: block;
        margin: 50px;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .dueño {
        margin-top: 0;
        padding: 0 30px;
        flex-wrap: wrap;
    }
    form {
        width: 400px;
        margin-left: 0;
        margin-right: 0;
    }
    input {
        width: 350px;
    }
    .medios {
        display: block;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
        width: 400px;
    }
    .medio-02 {
        margin-left: 10px;
    }
    iframe {
        width: 390px;
        height: 250px;
    }
    footer {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 97vw;
    }
    .company {
        margin-top: 10px;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}

/**celular grande**/
@media screen and (max-width: 425px) {
    .logo {
        padding: 20px;
        height: 50px;
    }
    .menu-barra {
        display: block;
    }
    header {
        padding: 10px;
    }
    ul {
        position: fixed;
        background-color: #1D1D1B;
        width: 100%;
        height: 90vh;
        top: 80px;
        right: -1000px;
        justify-content: center;
        text-align: center;
        transition: all .5s;
        z-index: 1;
    }
    nav ul li {
        display: block;
        margin: 50px;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .dueño {
        margin-top: 0;
        padding: 0 30px;
        flex-wrap: wrap;
    }
    form {
        width: 300px;
        margin-left: 0;
        margin-right: 0;
    }
    input {
        width: 250px;
    }
    .medios {
        display: block;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
        width: 300px;
    }
    .medio-02 {
        margin-left: 10px;
    }
    iframe {
        width: 300px;
        height: 250px;
    }
    footer {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .company {
        margin-top: 10px;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}

/**celular mediano**/
@media screen and (max-width: 375px) {
    .logo {
        padding: 20px;
        height: 50px;
    }
    .menu-barra {
        display: block;
    }
    header {
        padding: 10px;
    }
    ul {
        position: fixed;
        background-color: #1D1D1B;
        width: 100%;
        height: 90vh;
        top: 80px;
        right: -1000px;
        justify-content: center;
        text-align: center;
        transition: all .5s;
        z-index: 1;
    }
    nav ul li {
        display: block;
        margin: 50px;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .dueño {
        margin-top: 0;
        padding: 0 30px;
        flex-wrap: wrap;
    }
    form {
        width: 300px;
        margin-left: 0;
        margin-right: 0;
    }
    input {
        width: 250px;
    }
    .medios {
        display: block;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
        width: 300px;
    }
    .medio-02 {
        margin-left: 10px;
    }
    iframe {
        width: 300px;
        height: 250px;
    }
    footer {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .company {
        margin-top: 10px;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}

/**celular pequeño**/
@media screen and (max-width: 320px) {
    .logo {
        padding: 10px;
        height: 50px;
    }
    .menu-barra {
        display: block;
    }
    header {
        padding: 10px;
    }
    ul {
        position: fixed;
        background-color: #1D1D1B;
        width: 100%;
        height: 90vh;
        top: 80px;
        right: -1000px;
        justify-content: center;
        text-align: center;
        transition: all .5s;
        z-index: 1;
    }
    nav ul li {
        display: block;
        margin: 50px;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .dueño {
        margin-top: 0;
        padding: 0 30px;
        flex-wrap: wrap;
    }
    form {
        width: 250px;
        margin-left: 0;
        margin-right: 0;
    }
    input {
        width: 200px;
    }
    .medios {
        display: block;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
        width: 250px;
    }
    .medio-02 {
        margin-left: 10px;
    }
    iframe {
        width: 250px;
        height: 250px;
    }
    footer {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .company {
        margin-top: 10px;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}

/**tablet-ipad**/
@media screen and (min-width: 768px) and (max-width: 991px) {
    .logo {
        padding: 20px;
        height: 50px;
    }
    .menu-barra {
        display: block;
    }
    header {
        padding: 10px;
    }
    ul {
        position: fixed;
        background-color: #1D1D1B;
        width: 100%;
        height: 90vh;
        top: 80px;
        right: -1000px;
        justify-content: center;
        text-align: center;
        transition: all .5s;
        z-index: 1;
    }
    nav ul li {
        display: block;
        margin: 50px;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .dueño {
        margin-top: 0;
        padding: 0 30px;
        flex-wrap: wrap;
    }
    form {
        width: 600px;
        margin-left: 0;
        margin-right: 0;
    }
    input {
        width: 550px;
    }
    .medios {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
        width: 600px;
    }
    .medio-02 {
        margin-left: 10px;
    }
    iframe {
        width: 600px;
        height: 200px;
    }
    footer {
        position: relative;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .company {
        margin-top: 0;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}