﻿
.page-min-height {
    min-height: 80vh !important;
}

/* #region Header */

.header-container {
    background-image: url("../Images/HeaderBackground.jpg");
    background-size: cover;
    height: 15vh;
}

.logo-image {
    height: auto;
}

.header-layout {
    display: flex;
}

.header-item-layout {
    align-items: center;
    display: flex;
    flex: 1 auto;
}

/* #endregion */


/* #region Footer */

.footer-container {
    background-color: #506f7b;
    min-height: 20vh;
    height: auto;
    vertical-align: middle;
}

.footer-div {
    flex-direction: column;
    display: flex;
    padding-bottom: 1em;
    padding-top: 1em;
}

.footer-icao-logo-image {
    width: 40%;
}

.footer-icec-logo-image {
    width: 50%;
}

.footer-label {
    font-size: clamp(1rem, 1.7vw, 1rem);
    color: white !important;
    font-weight: normal !important;
    text-decoration: none !important;
    white-space: nowrap;
}

    .footer-label :hover {
        color: white !important;
    }

.footer-layout {
    display: flex;
    gap: 0 2em;
}

.footer-item-layout {
    align-items: center;
    display: flex;
    flex: 1 auto;
    flex-wrap: wrap;
    gap: 1em 1em;
    margin-top: 1em;
}

    .footer-item-layout:nth-child(2) {
        justify-content: flex-end;
    }

.footer-item-all-layout{
    justify-content: center;
}

/* #endregion */


/*ipad*/
@media (max-width:1024px) {


    /* #region Header */

    .header-container {
        height: 10vh;
    }

    .logo-image {
        width: 80%;
    }

    /* #endregion */


    /* #region Footer */

    .footer-container {
        /* height: auto;*/
        min-height: 15vh;
    }

    .footer-layout {
        height: 100%;
    }

    .footer-computer-layout {
        display: none;
    }

    .footer-item-layout:nth-child(2) {
        justify-content: center;
    }

    /* #endregion */

}



