html,
body {
    width: 100%;
    overflow-x: hidden;
}

section {
    max-width: 1240px;
    margin: 0 auto 45px auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

article {
    max-width: 1240px;
    margin: 0 auto 45px auto;
    padding: 20px;
	text-align: justify;
}

h2 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px;
}

.banner {
    width: 100%;
    margin-top: -90px;
	/*aspect-ratio: 5 / 2;*/
    object-fit: cover;
	height: 500px;
}

@media screen and (max-width: 600px) {
	.banner {
		height: 300px;
	}
}



/********************************/

header {
    background-color: var(--color-header-bg);
    color: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    overflow-x: hidden;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    box-sizing: border-box;
    height: 100px;
}

header a:hover {
    text-decoration: none;
}

.husj-header.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.husj-header {
    transition: transform 0.3s ease;
}

.header-icons {
    height: 50px;
    background-color: var(--purple);
    display: flex;
    padding: 7px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 10pt;
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}

.header-icons svg {
    fill: var(--white);
    height: 100%;
}

header form {
    gap: 0 !important;
}

.sbox {
    border-radius: 6px;
    border: none;
    padding: 0;
    margin: 0;
    width: 0;
    transition: width 0.5s ease, padding 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.header-icons:hover .sbox,
.header-icons:focus-within .sbox {
    width: 250px;
    padding: 10px;
    opacity: 1;
    visibility: visible;
}

.header-icons:hover {
    gap: 6px !important;
}

.menu-icon,
.close-icon {
    display: none !important;
}

.menu-toggle:not(:checked)~header .lle .menu-icon {
    display: block !important;
}

.menu-toggle:checked~header .lle .close-icon {
    display: block !important;
}

nav {
    display: none;
    padding: 20px;
}

.menu-toggle:checked~nav {
    display: flex;
}

header img {
    width: 70px;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    line-height: 17pt;
    flex: 1 1 auto;
    white-space: nowrap;
    font-family: "Noto Serif", serif;
}

header a {
    color: var(--white);
    text-decoration: none;
}

header a:first-child {
    font-size: clamp(10px, 1.4vw, 18px);
    font-weight: bold;
    line-height: 17pt;
    flex: 1 1 auto;
    white-space: nowrap;
    font-family: "Noto Serif", serif;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.subitems-mobile {
    display: none;
}

nav {
    background-color: rgba(143, 149, 182, 0.9);
    border-bottom: 20px solid var(--red);
    border-top: 1px solid var(--dark);
    position: fixed;
    top: 100px;
    width: 100%;
    padding: 20px;
    padding-left: 0px;
    z-index: 999;
}

nav li {
    list-style: none;
}

nav a {
    color: var(--white);
    font-weight: bold;
    display: block;
    padding: 4px;
    text-decoration: none;
    font-size: 14pt;
}

nav .sub-menu {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    padding: 0;
}

nav .sub-menu a {
    font-weight: normal;
    font-size: 13pt;
}

.menu-header-menu-container {
    flex: 10;
}

.menu-header-menu-container ul {
    display: flex;
    flex-wrap: wrap;
    line-height: 1
}

.menu-item {
    flex: 0 0 33.33%;
}

nav a:hover {
    text-decoration: none;
}

.sub-menu a:hover {
    color: var(--red);
}

.header-contactus {
    flex: 2;
    border-left: 1px solid var(--red);
    padding: 0 10px;
    color: var(--white);
    font-size: 13pt;
}

.header-contactus h3 {
    font-weight: bold;
    font-size: 14pt;
}

@media screen and (max-width: 900px) {
    header {
        padding: 15px 10px;
    }

    header img {
        width: 60px;
    }

    header a:first-child {
        line-height: 13pt;
        white-space: nowrap;
        overflow: hidden;
        gap: 3px;
    }

    a.header-icons,
    label span {
        display: none;
    }

    header .sbox {
        display: none;
    }

    .header-icons.ctc {
        display: none;
        font-size: 0;
    }

    .header-contactus {
        display: none;
    }


    header form {
        display: none !important;
    }

    .menu-toggle:checked~header {

        a>div {
            display: none;
        }

        .header-icons.ctc {
            display: block !important;
        }

        header form.header-icons {
            display: block !important;
        }

        #searchForm {
            display: flex !important;
        }
        

    }

    .header-icons:hover {
        gap: 6px !important;
    }



    /* Show the subitems-mobile container */
    .subitems-mobile {
        flex: 1;
        border-left: 1px solid var(--red);
        padding: 0 10px;
        color: var(--white);
        font-size: 13pt;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    .subitems-mobile li {
        list-style-type: none;
        margin-bottom: 10px;
    }

    .subitems-mobile li:hover {
        color: var(--red);
    }

    .subitems-mobile a {
        font-weight: normal;
        font-size: 10pt;
        list-style-type: none;
        color: var(--white);
        text-decoration: none;
    }

    .subitems-mobile a:hover {
        color: var(--red);
    }

    .menu-header-menu-container .sub-menu {
        display: none !important;
    }

    .menu-header-menu-container {
        flex: 1;
    }

    .menu-header-menu-container ul {
        flex-direction: column;
        padding: 10px;
    }

    .menu-item {
        flex: auto;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 900px) {
    .selected_menu a {
        color: var(--dark-blue);
    }
}


a[aria-current="page"] {      
	color: var(--dark-blue);
}
