html {
    box-sizing: border-box;
    line-height: 1.4em;
    font-size: 16px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

:root {
    --color-maroon-medium: #6c2b6a;
    --color-maroon-dark: #330d33;

    --hero-bg: #f5f7f9;
    --dark-teal: #0c4860;
    --navy: #003869;
    --navy-blue: #1b4696;
    --deep-purple: rgb(110, 12, 107);
    --accent: #007284;
  --brand: #007284;
  /* teal */


    --teal-bright: #52c2d2;
    --accent-soft: #e9fcfe;
    --text-main: #1f2933;
    --text-muted: #6b7280;
    --card-bg: #ffffff;
    --border-subtle: #e5e7eb;
    --shadow-soft: 0 18px 35px rgba(15, 23, 42, 0.12);
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
}


a:-webkit-any-link {
    cursor: pointer;
    text-decoration: none;
}

body {
    margin: 0px;
    font-family: AvenirNextCyr-Regular, NunitoSans, FoundersGroteskRegular, sans-serif, Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
    max-width: 100%;
    color: rgb(34, 34, 34);
    background-color: #f7f8f8;
    font-size: clamp(1rem, 1vw + 0.2rem, 1.1rem);
    box-sizing: border-box;
}

@media only screen and (max-width: 820px) {
    body {
        font-size: 1.2rem;
    }
}


main {
    box-sizing: border-box;
    margin: 10px;

}

.max-width-container {
  max-width: 1200px;
  margin: 0 auto;
}

@media only screen and (min-width: 820px) {
    main {
        margin: 20px;
        margin-left: 25px;
        margin-right: 25px;
    }
}

@media only screen and (min-width: 1200px) {
    main {
        margin-left: 60px;
        margin-right: 60px;
    }
}


img {
    max-width: 100%;
    height: auto;
}


h1,
h2,
h3,
h4 {
    letter-spacing: 2px;
    margin-left: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-family: AvenirNextCyr-Regular, NunitoSans, FoundersGroteskRegular, sans-serif, Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.3em;
}

h1 {
    color: var(--deep-purple);
    font-size: 1.9em;
    /* color: #103062; 
    COLOR: #124d8d;

    color: #1b4696; - nice blue*/
    font-weight: 600;

}

h2 {
    /* color: #007284; */
    color: var(--color-maroon-medium);
    font-size: 1.5em;
}


h3 {
    font-size: 1.2em;
    color: #0092cc;
}

p {
    line-height: 1.4em;
}



ul {
    text-align: left;
    margin: 0px;
    list-style-type: none;
    padding-inline-start: 0px;
}



li {
    padding-bottom: 5px;
}


figcaption {
    font-size: 0.9em;
    color: #555;
    margin-top: 6px;
}

video {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
}

.scrollmenu,
.sidenav {
    background-color: var(--color-maroon-medium);
    width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav>div {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;

}

nav a {
    color: white;
    text-decoration: none;
}

footer {
    background-color: var(--color-maroon-dark);
    color: white;
    margin-top: 70px;
    margin-bottom: 0px;
    padding: 20px;
    font-size: .9rem;
}
.border-top {
  border-top: 1px solid #5800aa8d;
  margin-top:30px;
}

#footer-flex li {
    padding: 8px;
}

/* Links */
.footer-links {
    text-align: left;
    padding-left: 15px;
    /* ✅ slight indentation on mobile */
}

.footer-links a {
    text-decoration: none;
    color: white;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Social icons */
.footer-social {
    text-align: center;
    padding: 20px;
}

.footer-social a {
    color: white;
    padding: 20px;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #00bcd4;
}

/* Back to top button */
.footer-backtotop {
    text-align: center;
    padding: 10px;
}

.footer-backtotop button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-backtotop button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Desktop/tablet view: 3 columns */
@media (min-width: 720px) {
    #footer-flex {
        display: flex;
        justify-content: flex-start;
        padding: 15px;
    }

    #firstFooterCol {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        padding-right: 4%;
    }

    #secondFooterCol {

        padding-left: 4%;
    }
}



/* Footer bottom */
.footer-notes {
    font-size: 0.9rem;
    margin-top: 20px;
    text-align: center;
}


.grid-container {
    display: grid;
    justify-content: center;
    grid-template-columns: auto;
}

.grid-item-image {
    width: 100%;
    text-align: center;
}

@media only screen and (min-width:900px) {
    .grid-container {
        grid-template-columns: auto auto;
    }
}

@media only screen and (min-width:900px) {
    .module-grid.grid-container {
        grid-template-columns: 1fr 2fr;
    }
}

.flexbox-container {
    display: flex;
    /*declare any HTML element with class "flexbox-container" to be a flex container*/
    flex-direction: column;
    /*define the number of columns in the flex container - here we start with just one column - 'mobile first' approach*/

    /*padding: 10px;
    max-width: 100%;
    gap:20px;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
*/
}



#navBar {
    flex-direction: row;
}

@media only screen and (min-width: 900px) {
    .flex-container {
        flex-direction: row;
    }

    .push-right {
        margin-left: auto;
    }

}

.textBlock {
    color: rgb(30, 30, 30);
    text-align: justify;
}


.button {
    color: white;
    /*
    background-color: #1b4e96;*/
    background-color: #0896a0;
    border: 1px solid #008073;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.button:hover {
    background-color: #1770e5;

}

#conf-logo {
    width: 100px;
    height: auto;
}

.important-notice {
    color: rgb(132, 94, 0);
}


@font-face {
    font-family: FoundersGroteskRegular;
    src: url(fonts/founders_grotesk/FoundersGrotesk-Regular.otf);
}


@font-face {
    font-family: NunitoSans;
    src: url(fonts/nunito_sans/NunitoSans-VariableFont_YTLC\,opsz\,wdth\,wght.ttf);
}

@font-face {
    font-family: AvenirNextCyr-Medium;
    src: url(fonts//avenir/AvenirNextCyr-Medium.ttf);
}

@font-face {
    font-family: AvenirNextCyr-Regular;
    src: url(fonts//avenir/AvenirNextCyr-Regular.ttf);
}

.shamrock {
    content: "\2618";
    font-size: 1.2em;
    color: green;
    vertical-align: middle;
    padding-right: 4px;
}


.svg_codes_container {
    display: none;
}


.centered-section {
    margin-top: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
}

.centered-section-header {
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    width: 100%;
    /* color: #246c8c; */




}

.larger_paragraph_text {
    font-size: 1.2em;
    font-weight: 600;
    color: #246c8c;

}

.xl_paragraph_text {
    font-size: 1.6em
}


@media only screen and (min-width: 800px) {


    .centered-section {
        max-width: 920px;
        margin-top: 40px;
    }

    .larger_paragraph_text {
        max-width: 600px;

    }
}


.sponsor_logo_card {
    max-width: 260px;

}


.briansNotes {
    margin-top: 40px;
    font-style: italic;
    color: rgb(14, 59, 16);
    font-size: 0.9em;
}



#logo-svg {


    .cls-1,
    .cls-2,
    .cls-3 {
        fill: #fff;
    }

    .cls-4 {
        fill: #246c8c;
    }

    .cls-2 {
        stroke-width: 6px;
    }

    .cls-2,
    .cls-5,
    .cls-3 {
        stroke-miterlimit: 10;
    }

    .cls-2,
    .cls-3 {
        stroke: #266c8c;
    }



    .cls-3 {
        stroke-width: 10px;
    }

}

#navBar {
    color: white;
    cursor: pointer;
}

/* SLide out Nav Bar */


.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #6c2b6a;
    overflow-x: hidden;
    transition: 0.2s;
    padding-top: 60px;
    text-align: left;
    cursor: pointer;
}

.sidenav a {
    padding: 8px 8px 16px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid rgb(10, 62, 105);
    border-width: 100%;

}

.sidenav a:hover {
    color: #e5ffd2;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

@media only screen and (min-width:768px) {
    .hiddenOnMediumScreens {}
}

@media only screen and (max-width: 768px) {
    header {}
}




div.scrollmenu {
    background-color: white;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow: auto;
    overflow-y: hidden;
    white-space: nowrap;
    /* keep items in a single line */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    padding-left: 10px;
    padding-right: 10px;
}

.scrollmenu::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

div.scrollmenu a {
    display: inline-block;
    color: #351325;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

.navLink {
    color: white;
    cursor: pointer;

}

div.scrollmenu a:hover {
    background-color: #fcffff;
    color: #6a0767;
}


.inline {
    display: inline;
}

.centered-text {
    text-align: center;
}

#programme {
    margin-left: auto;
}
