/*---------------------------
    -- Basic layout
-----------------------------*/
.container{
    margin: 0 auto;
    max-width: 1140px;
    padding: 1rem;
}
@media (min-width: 992px) {
    .container {
        padding: 2rem 2rem 1rem;
    }
}

/* Header */
header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #018265;
}
.header-wrapper{
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1680px;
    padding: .5rem 1rem;
    position: relative;
}
@media (min-width: 992px) {
    .header-wrapper{
        padding: 1rem 2rem;
        flex-direction: row;
    }
}

.header-logo-link{
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
@media (min-width: 992px) {
    .header-logo-link{
        flex-direction: row;
        gap: 1.5rem;
        height: 35.2px;
    }
}
.header-logo{
    height: auto;
    width: 157px;
}
.header-partner-logos{
    height: auto;
    width: 114px;
}
@media (min-width: 992px) {
    .header-logo{
        width: 170px;
    }
    .header-partner-logos{
        width: 170px;
    }
}
.hero-image{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 35vh;
    background-image: url('../img/MH_2025_TEMA_2048x1152.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
   
}
@media (min-width: 768px) {
    .hero-image{
        height: 70vh;
    }
}
footer{
    padding-bottom: 2rem;
}
.footer-content{
    border-radius: 6px;
    padding: 2rem 2rem 0;
    text-align: center;
    width: 100%;
    background-color: #222;
}
.footer-content-wrapper{
    padding: 1rem;
}
.footer-legal{
    column-gap: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
    row-gap: 12px;
}
.footer-partner-logos{
    align-items: center;
    display: flex;
    justify-content: center;
}
.footer-partner-logos img{
    height: auto;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
.footer-partner-logos a{
    flex: 0 0 25%;
    max-width: 25%;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-partner-logos a{
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}
/* Vide hero 
.hero-video-container {
    display: none;
}
@media (min-width: 992px) {
    .hero-video-container{
        display: block;
        height: calc(100vh - 93px);
        max-height: 850px;
        min-height: 100%;
        overflow: hidden;
    }
}
.hero-video-wrapper{
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    top: 0;
}
.hero-video-wrapper iframe{
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
*/

/*---------------------------
    -- Typography
-----------------------------*/
body{
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 300;
    background-color: #181818;
}

.hero-image h1{
    color: #fff;
    font-size: 2.8rem;
    line-height: 2.8rem;
    margin-bottom: 40px;
    padding: 70px 15px 0 15px;
    text-align: center;
    text-shadow: 0 1px 7px rgba(0, 0, 0, .3);
}
@media (min-width: 992px) {
    .hero-image h1{
        max-width: 798px;
        padding: 0;
    }
}
@media (min-width: 768px) {
    .hero-image h1 {
        font-size: 4.5rem;
        line-height: 4.5rem;
        margin-bottom: 40px;
        padding: 0 60px;
    }
}

/*---------------------------
    -- Content elements
-----------------------------*/
.call-outs{
    position: relative;
    z-index: 2;
    justify-content: space-between;
    width: 100%;
}
@media (min-width: 992px) {
    .call-outs{
        display: flex;
        margin-top: -8%;
    }
}
.call-out{
    display: flex;
    align-items: center;
    border-radius: 6px;
    background-color: #272727;
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, .2);
    margin-bottom: 16px;
    padding: 20px 15px;
    color: inherit;
    text-decoration: none;
    transition: all .3s ease;
}
@media (min-width: 992px) {
    .call-out {
        flex-direction: column;
        margin-bottom: 0;
        padding: 1.25rem 0;
        width: calc(33.33333% - 16.66667px);
    }
}
.call-out:hover{
    color: #018265;
}
.icon-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #f3f2ec;
    border-radius: 50%;
    margin-right: 1.125rem;
    padding: 15px;
}
@media (min-width: 992px) {
    .icon-wrapper {
        height: 113px;
        width: 113px;
    }
}
.icon-wrapper img{
    flex: 0 0 auto;
    height: 100%;
    max-width: 200%;
}
.callout-full-width{
    border-radius: 6px;
    background-color: #272727;
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, .2);
    padding: 2rem;
}



