@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");

body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    /* overflow: hidden; */
}

img {
    max-width: 100% !important;
}

.modal {
    background: transparent;
}

.modal .modal-body {
    padding: 0;
}

.modal .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.modal .btn-close svg {
    width: 10rem;
}

.modal .btn-close:hover {
    color: #fff;
}

@font-face {
    font-family: "Architect Daughter";
    src: url("../fonts/architec/ArchitectsDaughter-Regular.ttf");
}

.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
    background-image: url(../uploads/2021/03/fondo-header-shadowless3.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    margin-top: 1rem;
    height: 9rem;
}

.navbar a:nth-child(1) img {
    width: 100%;
    position: relative;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
}

.navbar a:nth-child(2) img {
    width: 100%;
    position: relative;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
}

.navbar .nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    line-height: 20px;
    text-transform: capitalize;
}

.navbar .nav-link {
    transition: all 1s;
    font-family: 'Architect Daughter', sans-serif !important;
    font-weight: 500;
    fill: #000000;
    color: #000000;
}

.navbar .nav-link:hover {
    color: #FEAC00 !important;
    transform: scale(1.1);
}


@media(max-width: 768px) {
    .navbar {
        height: auto;
    }

    .navbar a:nth-child(1) img {
        top: 0;
        width: 65%;
    }
}