/*tipografias */
* {
    margin: 0;
    padding: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-family: 'Roboto Condensed', sans-serif;
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}


.Container_general {
    overflow-x: hidden;
    overflow-y: hidden;
}


/*------------HEADER NAV BAR-----------------------------------------------------------------*/


#kunkerstudiosletras {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    font-weight: normal;
    color: #fff;
}

header {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    height: 150px;
}

.kunker-logo {
display: flex;
align-items: center;
margin-left: 15px; 
}

.kunker-logo img{
height: 50px;
margin-right: 10px;
}

.navlist a {
    inset: 0;
    margin: auto;
    width: 100%;
    height: 50px;
    color: white;
    padding-left: auto;
    padding-right: auto;
    margin-left: auto;
    font-size: 14px;
    font-weight: 50;
    transition: all .55s ease;
}

/*----------------------hamburguer menu-------------------------------------------------------------*/

.menuHamburguesa {
    position: absolute;
    top: 10.5px;
    right: 50px;
    cursor: pointer;
    font-size: 15px;
    color: white;
    background: none;
    border: none;
    z-index: 3;
}

nav .fa {
    display: block;
    color: #fff;
    margin: 10px;
    cursor: pointer;
}

.cerrar-menu {
    position: absolute;
    top: 11px;
    right: 10px;
    cursor: pointer;
    font-size: 15px;
    color: white;
    z-index: 3;
}

.cerrar-menu i:hover {
    color: red;
}


.boton-nav {
    position: absolute;
    top: 10px;
    right: 30px;
    cursor: pointer;
    font-size: 15px;
    color: white;
    background: none;
    border: none;
    z-index: 3;
}


@media (max-width: 700px) {

    .boton-nav {
        display: block;
    }

    .navlist {
        position: absolute;
        background: hsla(0, 2%, 11%, 0.1);
        backdrop-filter: blur(2rem);
        height: 100vh;
        width: 150px;
        top: 0;
        right: 0;
        bottom: 0;
        text-align: left;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: end;
        padding: 2rem;
        line-height: 0.2;
        text-decoration: none;
    }

}

/*--------------------------------------------*/

.logo img {
    height: 500px;

}


nav a:hover {
    color: white;
}

/*-----subrayado navbar-----*/


nav a {
    font-weight: 600;
    padding-right: 10px;
    color: red;
    text-decoration: none;
    position: relative;
}


nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 29px;
    width: 0;
    height: 2px;
    background-color: red;
    transition: width 0.5s ease;
    transform-origin: right;
}

nav a:hover::after {
    width: 25%;
    transform-origin: left;
}


nav a:not(:hover)::after {
    width: 0;
}

/*-------------------------------------BODY ----------------------------------------*/


body {
    background: black;
    margin: 0;
    width: 100%;
    height: auto;
    place-items: center;
    overflow-x: hidden;
    overflow-y: scroll;
}


.navlist {
    display: flex;
    padding-right: 40px;
    text-underline-position: auto;
    margin-left: 30px;

}


/*-------------------------------Carrusel HOME INDEX------------------------------------------------------------*/

.containerimages {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: flex;
    position: absolute;
    transform: translate(-50%, 0%);
    left: 50%;
    overflow-x: auto;
    margin: 0 auto;
    top: 230px;
    z-index: 1;

}

.containerimages img {
    object-fit: cover;
    width: cover;
    max-height: cover;

}

.containerimages .wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin: 0;
    padding: 0;

}

.containerimages .wrapper img {
    margin: 3px;
    margin-right: 0px;
    max-height: 100%;
    max-width: 100%;
    flex-grow: 1;
}



.containerimages::-webkit-scrollbar {
    width: 5px;
}

.containerimages::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 50px;
}

.containerimages::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.containerimages::-webkit-scrollbar-track {
    background: none
    }

.containerimages::-webkit-scrollbar-thumb {
    background: #88888850;
  
}


@media screen and (max-width: 767px) {
    .containerimages .wrapper img {
        max-height: 150%;
        transform: none;
        
    }
}



.containerimages .wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.containerimages .wrapper img {
    margin: 3px;
    margin-right: 0px;
    max-height: 100%;
    max-width: 100%;
    flex-grow: 1;
}


@media (max-width: 600px) {
    .containerimages .wrapper {
        flex-direction: column;
        align-items: center;
        
    }

    .containerimages .wrapper img {
        margin: 3px;
        margin-bottom: 0px;
        max-width: 100%;
        max-height: 100%;
        flex-grow: unset;
        
    }
}


/*----------------------------textos About us--------------------------------------------------------------------------------*/

.textaboutus {
    font-size: 14px;
    padding: 2vw 5vw;
    justify-content: center;
    color: #fff;
    min-height: 100vh;
    margin-top: 70px;

}


.aboutus-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 8px 0;

}

@media screen and (max-width: 768px) {
    .textaboutus {
        font-size: 12px;
        padding: 2vw 5vw;
    }
}

/*-----------------------------------------Concept art-----------------------------------------------------------------------------*/

ul {
    list-style-type: none;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
div,
a {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    padding: 50px 0;
}

.gallery-list {
    flex-basis: calc((100% - 10px) / 2);
}

.gallery-image {
    width: 100%;
    height: auto;
    margin: 2px;

    cursor: pointer;
}


.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-close {
    width: 30px;
    height: 30px;

    position: absolute;

    right: 5px;
    top: 5px;

    cursor: pointer;
}


/* animation  */

.gallery-image:hover {
    transform: scale(1.01);
}

.gallery-image {
    transition: all 150ms ease-in-out;
}

.modal-image {
    transition: all 150ms ease-in-out;
}

@keyframes animation {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

.modal-image {
    animation: animation 0.2s ease-in-out;
}

/* media  */

@media screen and (max-width: 620px) {
    .gallery-list {
        flex-basis: calc((100% - 10px) / 1);
    }

    .modal-item {
        max-width: 90%;
    }
}



/*----------------------------------------Contact form------------------------------------------------------------------------------*/


#formulario {
    background-image: none;
    background-color: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

#formulario {
    background: linear-gradient(-45deg, #ee7752, #e93434, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;

}

#formulario nav {
    background: none;
}

form {
    background: #1414141a;
    inset: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 3vw 4vw;
    width: 100%;
    max-width: 650px;
    border-radius: 30px;
    justify-content: center;
    flex-direction: column;
}

form h3 {
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
}

form input,
form textarea {
    border: 0;
    margin: 10px 0;
    padding: 10px;
    outline: none;
    max-width: 500px;
    min-width: min-content;
    max-height: 250px;
    min-height: 50px;
    background: #dadada;
    font-size: 16px;
    display: flex;
}

form button {
    padding: 15px;
    background: #ff0116;
    color: #fff;
    font-size: 18;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
}


/*----------------------------------------Footer------------------------------------------------------------------------------*/


footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    height: auto;
    font-family: "Open Sans";
    padding-top: 5px;
    color: #fff;
    z-index: 1;
}


@media (max-width: 768px) {
    .footer-bottom .footer-content {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .footer-bottom .footer-content {
        max-height: 200px;
    }
}



.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 2rem;
}

.footer-content p {
    max-width: 500px;
    height: -10px;
    margin: 5px auto;
    line-height: 0px;
    font-size: 10px;
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;

}

.socials li {
    margin: 0 10px;
}

.socials a {
    text-decoration: none;
    color: #fff;
}

.socials a i {
    font-size: 1.1rem;
    transition: color .4s ease;

}

.socials a:hover i {
    color: red;
}

.footer-bottom {
    background: #000;
    padding: 10px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
    margin: 10px 0;
}

.footer-bottom span {
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}