* {
    margin: 0;
    background: #181719;
    align-items: center;
    max-width: 1400px;
}
/*Encabezado*/
.encabezado {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 30px;
    justify-content: space-between;
}

.encabezado > nav ul {
    overflow: hidden;
    list-style-type: none;
}

.boton {
    display: none;
}

.btn_int {
    color: white;
    border-color: white;
    font-family: 'Crimson Pro';
    text-transform: uppercase;
    border-style: solid;
    text-align: center;
    padding: 3px;
}

.encabezado > nav ul li {
    float: left;
}

nav ul li a {
    color: white;
    text-decoration: none;
    margin-right: 30px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 540;
    font-size: 15px;
    line-height: 20px;
    display: block;
}

nav > ul li a:hover {
    text-decoration: underline;
}

.container {
    display: flex;
    margin: 50px;
}
/*Contenedor de modern*/
.container1 {
    flex: 1;
    align-items: center;
    justify-content: space-evenly;
    padding: 10%;
}

.text-modern {
    color: white;
    font-family: 'Lora';
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 61px;
}

.text-pmodern {
    padding-top: 20px;
    color: white;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
}

/*Contenedor de la imagen*/
.container2 {
    flex: 1;
}

/*Contenedor de la tarjeta de la diseñadora*/
.card {
    position: absolute;
    width: 26%;
    height: 24%;
    left: 64%;
    top: 65%;
    justify-content: space-between;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
}

.card > img {
    margin: 10px;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 3px solid #C4C4C4;
    border-radius: 50%;
}

.cont-card {
    margin: 10px;
    color: white;
}

#name {
    font-family: 'Montserrat';
}

#role {
    margin-top: 10px;
    color: gray;
    font-family: 'Montserrat';
}

#text-designer {
    margin-top: 20px;
    color: white;
    font-family: 'Lora';
}

@media screen and (max-width:1300px) {
    .btn_int {
        margin-left: 30px;
    }
    .container {
        margin: 0px;
    }

    .container2 {
        padding-right: 30px;
    }

    .card {
        width: 33%;
        height: 28%;
        left: 73%;
        top: 70%;
    }
}

@media screen and (max-width:900px) {
    .encabezado {
        flex-direction: column;
        margin: 0;
    }

    .nav-menu {
        color: white;
        width: 100%;
        height: 100%;
        margin: 0;
        position: fixed;
        left: 100%;
    }

    .encabezado > nav ul li {
        display: block;
        float: none;
    }

    .encabezado > nav ul li a {
        text-align: center;
        margin: 50px;
    }

    .boton {
        width: 100%;
        display: block;
        background: #181719;
    }

    .boton .bt-menu {
            display: block;
            text-decoration: none;
            font-weight: bold;
            box-sizing: border-box;
    }

    .boton span {
        float: right;
        color: white;
    }
    .container {
        flex-direction: column;
    }

    .card {
        width: 50%;
        height: 28%;
        left: 30%;
        top: 140%;
    }

    .cont-card {
        font-size: 14px;
    }
.icon-close {
    display: none;
}

.boton {
    float: right;
    border: none;
    cursor: pointer;
}
.nav-menu_visible {
    left: 0;
}
.icon-close_visible {
    display: block;
    color: white;
}
}