* {
    scroll-behavior: smooth;
    padding: 0;
    list-style: none;
    margin: 0;
    font-family: "Lato", sans-serif;
    box-sizing: border-box;
}

/* HEADER */

nav {
    height: 80px;
    width: 100%;
    background-color: black;
}

label.Kcolor {
    font-size: 35px;
    font-weight: bold;
    color: rgb(204, 72, 94);
    padding: 0 100px;
    line-height: 80px;
}

nav ul {
    float: right;
    margin-right: 40px;
}

nav li {
    display: inline-block;
    margin: 0 8px;
    line-height: 80px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    border: 1px solid transparent;
    padding: 7px 10px;
    border-radius: 3px;
}

a:hover {
    border: 1px solid rgb(204, 72, 94);
    transition: .5s;
}

nav #icon {
    color: white;
    font-size: 30px;
    line-height: 80px;
    float: right;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

@media (max-width: 1048px){

    label.Kcolor {
        font-size: 32px;
        padding-left: 60px;
    }

    nav ul {
        margin-right: 20px;
    }

    nav a {
        font-size: 17px;
    }
}

@media (max-width: 909px){

    nav #icon {
        display: block;
    }

    nav ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 80px;
        left: -100%;
        transition: all .5s;
        text-align: center;
    }

    nav li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    nav a {
        font-size: 20px;
    }

    a:hover {
        border: none;
        color: rgb(204, 72, 94);
    }

    nav ul.show {
        left: 0;
        background-color: black;
    }
}

/* KLASSY */

.size {
    background-color: black;
    height: 95vh;
}

.wordcolor {
    color: white;
    text-align: center;
    font-size: 20px;
}

/* CONTACTO */

.bi-geo-alt-fill {
    display: inline-block;
}

.bi-telephone-fill {
    display: inline-block;
}

.bi-envelope-fill {
    display: inline-block;
}

.bi-calendar3 {
    display: inline-block;
}

adress p {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 7px;
}

adress i {
    background-color: rgb(204, 72, 94);
    margin: 4px 8px 8px 0;
    color: white;
    border-radius: 3px;
    text-align: center;
    width: 20px;
    min-width: 20px;
    padding: 5px 0;
}

.contactStyle {
    text-transform: uppercase;
    color: rgb(204, 72, 94);
}

.buttonStyle {
    background-color: rgb(204, 72, 94);
    color: white;
    text-transform: uppercase;
    width: 100px;
    border-radius: 3px;
    height: 40px;
    border: none;
}


/* FOOTER */

footer {
    background-color: black;
}


footer a {
    color: white;
    text-decoration: none;
    transition: all 0.5s linear;
}

footer a:hover {
    color: #D43188;
}

.wordcolorfooter {
    color: white;
}

.bi-facebook {
    color: rgb(24, 104, 225);
    font-size: xx-large;
}

.bi-instagram {
    color: #D43188;
    font-size: xx-large;
}

.bi-tiktok {
    color: #24ECE7;
    font-size: xx-large;
}

.bi-arrow-up-square-fill {
    color: white;
    font-size: x-large;
}