* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #551858;
    color: #fff;
    line-height: 1.6;
    font-family: 'Quicksand', sans-serif;
    padding: 0 1.5em;
}

.container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5em;
}

ul {
    list-style: none;
    padding: 0;
}

.logo {
    text-align: center;
    font-size: 3em;
}

.logo span {
    color: #b647bc;
}

.contact-wrapper {
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, .3);
}

.contact-wrapper > * {
    padding: 1em;
}

.contact-form {
    background: #a53d9f;
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-form form label {
    display: block;
}

.contact-form form p {
    margin: 0;
    padding: 1em;
}

.contact-form form .block {
    grid-column: 1 / 3;
}

.contact-form form button,
.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: .7em;
    border: none;
    background: none;
    outline: 0;
    color: #fff;
    border-bottom: 1px solid #ffffff;
}

.contact-form form button {
    background: #240624;
    border: 0;
    text-transform: uppercase;
    padding: 1em;
}

.contact-form form button:hover,
.contact-form form button:focus {
    background: #5f155b;
    color: #fff;
    transition: background-color 1s ease-out;
    outline: 0;
}

/* CONTACT INFO */
.contact-info {
    background: #000;
}

.contact-info h4, .contact-info ul, .contact-info p {
    text-align: center;
    margin: 0 0 1rem 0;
}

/* LARGE SIZE */
@media(min-width: 700px) {
    body {
        padding: 0 4em;
    }
    .contact-wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr;
    }
    .contact-wrapper > * {
        padding: 2em;
    }
    .contact-info h4,
    .contact-info ul,
    .contact-info p {
        text-align: left;
        padding: 1em;
    }
}

h3{
    font-size: 25px;
}

a{
    color: #fff;
    text-decoration: none;
}

footer {
    background-color: #1d1c1c;
}

.foot-content {
    width: 100%;
    padding: 50px 20px 10px;
}

.redes-sociales {
    display: flex;
    justify-content: center;
}

.redes-sociales a {
    text-decoration: none;
    padding: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 50%;
}

.redes-sociales a i {
    font-size: 2em;
    color: #692e81;
    opacity: 0.9;
}

.redes-sociales a:hover {
    background-color: #692e81;
    transition: 0.5s;
}

.redes-sociales a i:hover {
    color: #fff;
    transition: 0.5s;
}

.footnav {
    margin: 20px 0;
}

.footnav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

.footnav ul li a {
    color: #fff;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
}

.footnav ul li a:hover {
    opacity: 1;
}

.footabj {
    background-color: #292929;
    padding: 10px;
    text-align: center;
}

.footabj p{
    color: #fff;
}

.diseño {
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0 5px;
}

@media (max-width: 700px){
    .footnav ul {
        flex-direction: column;
    }

    .footnav ul li{
        width: 100%;
        text-align: center;
        margin: 10px;
    }
}

header {
    overflow: hidden;
    background-color: #3e0d41;
    padding: 10px 50px 10px 0;
}

header a {
    float: left;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 20px;
    line-height: 25px;
    border-radius: 4px;
}

header a.logo {
    font-size: 30px;
    font-weight: bold;
}

header a:hover {
    background-color: #631667;
    color: rgb(255, 255, 255);
    font-weight: 600;
    transition: all 1s ease;
}

header a.active {
    background-color: rgb(174, 21, 194);
    color: #fff;
}

.header-right {
    float: right;
    margin-top: 10px;
    margin-right: 30px;
}

@media screen and (max-width: 600px) {
    header a {
        float: none;
        display: block;
        text-align: left;
    }
    .header-right {
        float: none;
    }
}

img{
    width: 70px;
}

.header-logo{
    display: flex;
    text-align: center;
    align-items: center;
    margin-left: 15px;
}

.header-logo span p{
    margin-left: 25px;
    color: #fff;
}