/* 
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

html,
body {
    overflow: hidden;
    font-family: "Libre Baskerville", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #EDE9E5;
    color: #29241F;
}

main {
    width: 50vw;
    background-color: #fff;
    border-radius: 1.5rem;
    padding: 3rem;
}

main p {
    color: #54504C;
}

main a {
    color: #54504C;
    transition: all ease-in-out .5s;
}

main a:hover {
    color: #FF9636
}

@media (max-width:700px) {
    main {
        width: 90vw;
    }
} */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');
html,
body {
    font-family: "Noto Sans", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #29241F;
    color: #FFFFFF;
    overflow-x: hidden;
}


/*tokens*/

.white {
    color: #FFFFFF;
}

.orange {
    color: #FFB16A
}

.orange_bg {
    background-color: #FFB16A;
}

.brown {
    color: #29241F;
}

.old-standard-tt-regular {
    font-family: "Old Standard TT", serif;
    font-weight: 400;
    font-style: normal;
}

.old-standard-tt-bold {
    font-family: "Old Standard TT", serif;
    font-weight: 700;
    font-style: normal;
}

.old-standard-tt-regular-italic {
    font-family: "Old Standard TT", serif;
    font-weight: 400;
    font-style: italic;
}

.noto-sans {
    font-family: "Noto Sans", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.bold {
    font-weight: 600;
}

.italic {
    font-style: italic;
}

.btn-primary {
    font-family: "Noto Sans", serif;
    border: none
}

.btn-primary:hover {
    background-color: #FFB16A75;
}

h6 {
    letter-spacing: 5px;
    font-size: .85rem;
    text-transform: uppercase;
}


/*hero banner & weps*/

.hero-banner {
    width: 100vw;
    height: 100vh;
    background: url(../img/portada.JPG) center/cover;
    position: relative;
}

@media(max-width:800px) {
    .hero-banner {
        height: auto;
    }
    .tagline {
        padding: 3rem 2rem;
    }
}

.weps {
    width: 100vw;
    height: 100vh;
    background: url(../img/weps.JPG) center/cover;
    position: relative;
}


/* .methodology {
    width: 100vw;
    height: auto;
    padding: 3rem auto;
    background: url(../img/metodologias.JPG) center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.methodology figure {
    height: 100%;
}

.methodology img {
    height: 100%;
    object-fit: cover;
}

.hero-banner .container,
.weps .container,
.methodology .container {
    position: relative;
    z-index: 1;
}

.hero-banner:before,
.weps:before,
.methodology:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    background: rgb(52, 46, 40);
    background: radial-gradient(circle, rgba(41, 36, 31, 0) 0%, rgba(41, 36, 31, 1) 100%);
    display: block;
    z-index: 0;
}

.hero-banner:after,
.weps:after,
.methodology:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 50%;
    width: 100%;
    background: rgb(52, 46, 40);
    background: linear-gradient(180deg, rgba(41, 36, 31, 0) 0%, rgba(41, 36, 31, 1) 100%);
    display: block;
}

.link {
    color: #FFFFFF;
    text-decoration: none;
    transition: all ease-in-out .5s;
}

.link:hover {
    color: #FFB16A;
}

.social {
    border: 1px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    border-radius: .25rem;
}

.social:hover {
    background-color: #FFB16A;
    border-color: #FFB16A;
}

.weps .tagline:before {
    content: '“';
    position: absolute;
    top: 1rem;
    left: -10rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 400;
    font-size: 24rem;
    color: #ffffff50;
}

.methodology-card {
    background-color: #544F4A;
    flex: 30%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: .25rem;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.methodology-card h3 {
    text-align: center;
    padding: .5rem 1rem;
    font-size: 1rem;
}

@media (min-width:800px) {
    .tagline {
        width: 75%;
        margin: auto;
        position: relative;
    }
    .hero-banner .tagline {
        top: -3rem;
    }
}


/*institutions*/

.institutions li {
    flex: calc(100 / 6);
    border-radius: 10000px!important;
    overflow: hidden;
    padding: 1rem;
}

.institutions li img {
    max-width: 100%;
}

@media(max-width:800px) {
    .logos li {
        flex: 30%;
        max-height: 120px;
        overflow: hidden;
    }
    .logos li img {
        width: 100px;
        height: 100px;
        object-fit: contain;
    }
    .guidelines {
        padding: 0 2rem;
    }
}

.expertise {
    position: relative;
    z-index: 9;
}


/*services*/

.service-card {
    background-color: #544F4A;
    border-radius: .25rem;
    padding-bottom: 2rem;
}

@media (min-width:800px) {
    .service-card {
        flex: 20%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding-bottom: initial;
    }
}

.service-card h3 {
    text-align: center;
    padding: .5rem 1rem;
    font-size: 1rem;
}


/*professionals*/

.professional-card {
    background-color: #544F4A;
    flex: 20%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: .25rem;
}

.professional-card figure {
    display: flex;
    justify-content: center;
    align-items: center;
}

.professional-card h3 {
    text-align: center;
    padding: .5rem 1rem;
    font-size: 1rem;
}


/*mobile*/

@media (max-width:800px) {
    section {
        max-width: 100vw!important;
    }
    .service-card {
        max-width: 100%;
    }
    .service-card img {
        width: 100%!important;
    }
    .methodology-card {
        flex: 100%;
    }
    .navbar-brand {
        max-width: 60vw;
    }
    .navbar-brand img {
        max-width: 100%;
        width: initial!important;
    }
    .navbar-toggler {
        background-color: #FFB16A;
        border-radius: .25rem;
        color: #FFFFFF;
    }
    .navbar-toggler:hover {
        background-color: #ffffff;
        color: #FFB16A;
    }
    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        position: absolute;
        top: 70px;
        background: #544f4ac6;
        width: 100vw;
        left: -16px;
        padding: 2rem;
    }
    .navbar-collapse ul li {
        padding-bottom: 1rem;
    }
    .social {
        width: 40px;
        height: 40px;
    }
}