@import url('reset.css');
@import url('imports.css');

body {
    font-family: 'PP Monument Extended Light', sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
}

b,
h1,
h2,
h3,
h4,
h5,
h6,
footer p {
    font-family: 'PP Monument Extended Black';
}

h1 {
    font-size: 2.2rem;
    line-height: 3.3rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 80px;
}

h3 {
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'PP Monument Extended Regular';
}

a {
    text-decoration: none;
    color: var(--blanco);
    font-family: 'PP Monument Extended Regular';
    transition: all 0.3s ease-in-out;
}

a:hover {
    letter-spacing: 0.3rem;
    color: var(--amarillo);
    transition: all 0.3s ease-in-out;
}

section,
footer {
    padding: 100px 0;
}

.color {
    background-color: var(--amarillo);
}

.amarillo {
    color: var(--amarillo);
}

.rojo {
    color: var(--rojo);
}

.azul {
    color: var(--azul);
}

.verde {
    color: var(--verde);
}

.divButton {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-block;
    border: 2px solid var(--blanco);
    border-radius: 0;
    font-family: 'PP Monument Extended Regular';
    font-size: 0.8rem;
    padding: 20px 40px;
    transition: all 0.5s ease-in-out;
    margin-top: 80px;
    color: var(--blanco);
    text-align: center;
    justify-self: center;
}

.btn-color {
    color: var(--negro);
    border-color: var(--negro);
}

.btn:hover {
    letter-spacing: 0;
}

.btn-color:hover {
    background-color: var(--negro);
    color: var(--blanco) !important;
}


/* --------------------------------
        Responsive Menu 
-------------------------------- */

header {
    background-color: var(--negro);
    height: 100px;
}

.main-header {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--negro);
    padding: 0 0.4rem;
}

.main-logo {
    color: var(--blanco);
    font-family: "PP Monument Extended Black";
    font-size: 32px;
    text-decoration: none;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    margin-top: -100vh;
    transition: all 0.5s ease-in-out;
    background-color: var(--negro);
    z-index: 100;
}

.main-nav.show {
    margin-top: 0;
}

.nav-links {
    background-color: var(--amarillo);
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
}

.nav-links div:last-child {
    display: none;
}

.nav-links address a,
#contact address a {
    color: var(--negro);
    display: block;
    margin-top: 40px;
}

.nav-links h2 {
    margin-bottom: 40px;
}

.nav-links a:hover {
    color: var(--negro);
}

.link-item {
    font-family: 'PP Monument Extended Regular';
    font-size: 3rem;
    margin-top: 4rem;
    line-height: 3rem;
    padding-left: 1rem;
    color: var(--negro);
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

.link-item::after {
    position: absolute;
    content: "";
    background-color: var(--negro);
    bottom: 1.2rem;
    left: 0;
    width: 0%;
    height: 3px;
    transition: 0.5s ease-in-out all;
}

.link-item:hover::after {
    width: 100%;
}

.button-menu {
    z-index: 200;
    width: 40px;
    height: 40px;
    padding: 8px 0;
    border: none;
    display: flex;
    background: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.button-menu span {
    width: 36px;
    height: 4px;
    position: relative;
    background: var(--blanco);
    transform-origin: 4px 0px;
    transition: all 0.5s ease-in-out;
}

.button-menu:hover {
    padding: 2px 0;
    transition: all 0.2s ease-in-out;
}

.button-menu.close:hover {
    padding: 8px 0;
}

.button-menu.close span {
    opacity: 1;
    transform: rotate(45deg) translate(4px, -3px);
    background: var(--negro);
}

.button-menu.close span:nth-child(2) {
    opacity: 0;
    transform: rotate(-45deg) translate(-6px, 9px);
}

.button-menu.close span:nth-child(3) {
    transform: rotate(-45deg) translate(1px, 2px);
}


/* --------------------------------
        Main Section 
-------------------------------- */

main {
    background-color: #1e1e1e;
    min-height: calc(100vh - 100px);
    color: var(--blanco);
    padding-bottom: 3rem;
}

.textoMain {
    padding: 0 3rem;
}

.byn {
    filter: saturate(0);
    transition: all ease-in-out 0.3s;
}

.byn:hover {
    filter: none;
    transition: all ease-in-out 0.3s;
}

#carouselHomeCaptions {
    -ms-flex-align: end;
}

main .btn:hover,
footer a.btn:hover {
    background-color: var(--amarillo);
    color: var(--negro);
    border-color: var(--amarillo);
}

.imgVertical {
    display: none;
}

#aboutSection p {
    font-family: "PP Monument Extended Regular";
    font-size: 1.5rem;
    line-height: 2.5rem;
}

#whatIdo div.col-12,
#whatIdo div.col-lg-5 {
    margin-bottom: 80px;
}

#whatIdo p {
    line-height: 2rem;
}

footer {
    background-color: var(--negro);
    color: var(--blanco);
    padding-bottom: 0;
}

footer div.col-12,
footer div.col-lg-5,
footer div.col-lg-6 {
    margin: 3rem 0;
}


footer p {
    font-size: 1.5rem;
    line-height: 2.25rem;
}

footer ul {
    line-height: 2.5rem;
    margin: 80px 0;
}

footer .small {
    font-family: 'PP Monument Extended Light';
    font-size: 0.8rem;
    padding: 20px 0;
    margin: 0;
}





/* --------------------------------
About Page 
-------------------------------- */

#about li strong {
    font-family: 'PP Monument Extended Regular';
}

.accordion-button:not(.collapsed) {
    color: var(--negro);
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    z-index: 3;
    border-color: var(--amarillo);
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}






/* --------------------------------
        Contact Page 
-------------------------------- */

#contact main {
    min-height: 100vh;
}

#contact h3 {
    margin-bottom: 80px;
}

.form-label {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.form-control,
.form-select {
    border-radius: 0;
    margin-bottom: 2rem;
}

textarea {
    height: 100px;
}

#contact footer,
#contact footer a {
    color: var(--negro);
}

#contact footer .btn {
    border-color: var(--negro);
}

#contact footer .btn:hover {
    background-color: var(--negro);
    color: var(--blanco);
}







#sectionWork ul li {
    font-size: 0.8rem;
}

#sectionWork ul li:hover {
    cursor: pointer;
}

#sectionWork h2 {
    margin: 1rem 0 0;
}

#sectionWork a {
    color: var(--negro);
}

#sectionWork a:hover {
    color: var(--amarillo);
}

#sectionWork div.col-8 div {
    margin-bottom: 6rem;
}



/*//////////////////////////////////////////////////////////////////
/////////Small devices (landscape phones, 576px and up)/////////////
//////////////////////////////////////////////////////////////////*/

@media (min-width: 576px) {}



/*//////////////////////////////////////////////////////////////////
//////////// Medium devices (tablets, 768px and up) ////////////////
//////////////////////////////////////////////////////////////////*/

@media (min-width: 768px) {
    .nav-links {
        text-align: start;
    }

    .link-item {
        font-size: 2.5rem;
        margin-top: 3.3rem;
        line-height: 2.5rem;
    }

    .nav-links div:last-child {
        display: block;
    }
}



/*//////////////////////////////////////////////////////////////////
//////////// Large devices (desktops, 992px and up) ////////////////
//////////////////////////////////////////////////////////////////*/

@media (min-width: 992px) {

    body {
        text-align: left;
    }

    .textoMain {
        padding: 0 3rem 0 0;
    }

    .divButton {
        justify-content: start;
    }

    main .divButton {
        justify-content: end;
    }

    .link-item {
        font-size: 3rem;
        margin-top: 4rem;
        line-height: 3rem;
    }

    figure,
    .imgVertical {
        position: relative;
        height: calc(100vh - 180px);
        overflow: hidden;
    }

    .imgVertical {
        height: 100vh;
        display: block;
    }

    figure img,
    .imgVertical img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        height: 100%;
        min-width: 100%;
        object-fit: cover;
    }

    .imgVertical img {
        left: -100%;
    }
}



/*//////////////////////////////////////////////////////////////////
///////// X-Large devices (large desktops, 1200px and up) //////////
//////////////////////////////////////////////////////////////////*/

@media (min-width: 1200px) {}



/*//////////////////////////////////////////////////////////////////
//////// XX-Large devices (larger desktops, 1400px and up) /////////
//////////////////////////////////////////////////////////////////*/

@media (min-width: 1400px) {}