
:root {
  --font-base: 1rem;
  --font-scale: 1.2;
  --text-xs: calc(var(--font-base) / (var(--font-scale) * var(--font-scale)));
  --text-sm: calc(var(--font-base) / var(--font-scale));
  --text-base: var(--font-base);
  --text-lg: calc(var(--font-base) * var(--font-scale));
  --text-xl: calc(var(--text-lg) * var(--font-scale));
  --text-2xl: calc(var(--text-xl) * var(--font-scale));
  --text-3xl: calc(var(--text-2xl) * var(--font-scale));
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --container-padding: 1rem;
  --container-max: 100%;
  --primary-color: #085696;
  --text-light: #F4F5F7;
  --text-dark: #555;
  --bg-light: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background: var(--bg-light);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-anchor: none;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

._title {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

._title1 {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

._title h1 {
    color: var(--text-light);
    font-family: "Archivo Narrow", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--text-light); 
    border-radius: 4px; 
    padding: 8px 15px 5px 15px;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

._title1 h1 {
    color: var(--primary-color);
    font-family: "Archivo Narrow", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--primary-color); 
    border-radius: 4px; 
    padding: 8px 15px 5px 15px;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Hero */
.cont_container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

.BG_Pic {
    width: 100%;
    height: 540px;
    margin: 0;
    margin-top: 0;
    padding: 0;
    background-image: url('../images/Hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
    display: flex;
    align-items: flex-start;
}

.bod_cont1 {
    display: flex;
    flex-direction: column;
    margin-left: var(--space-md);
    margin-top: var(--space-xl);
    padding: var(--space-md);
    width: fit-content;
}

.bod_cont2 {
    display: flex;
    flex-direction: column;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.75rem;
    align-items: flex-start;
    color: var(--text-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    gap: var(--space-sm);
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.bod_cont2 img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: default;
}

.bod_cont3 {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.bod_cont4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    padding-left: 0;
}

.bod_cont4 p {
    margin: 0;
    color: var(--text-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    font-size: var(--text-base);
    font-family: "Archivo Narrow", sans-serif;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    line-height: 1.3;
}

.bod_cont4 svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 576px) {
    :root {
        --container-padding: 1.25rem;
    }
    
    ._title h1,
    ._title1 h1 {
        font-size: 1.75rem;
    }
    
    .BG_Pic {
        height: 450px;
    }
    
    .bod_cont1 {
        margin-left: var(--space-lg);
        margin-top: var(--space-xl);
    }
    
    .bod_cont2 {
        font-size: 2rem;
        flex-direction: row;
        align-items: center;
    }
    
    .bod_cont2 img {
        width: 100px;
        height: 100px;
    }
    
    .bod_cont4 {
        padding-left: var(--space-lg);
    }
    
    .bod_cont4 p {
        font-size: var(--text-lg);
    }
    
    .bod_cont4 svg {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 768px) {
    :root {
        --font-base: 1.0625rem;
        --container-padding: 1.5rem;
    }
    
    ._title h1,
    ._title1 h1 {
        font-size: 2rem;
    }
    
    .BG_Pic {
        height: 500px;
    }
    
    .bod_cont1 {
        margin-left: 4rem;
        margin-top: 6rem;
    }
    
    .bod_cont2 {
        font-size: 2.25rem;
    }
    
    .bod_cont2 img {
        width: 120px;
        height: 120px;
    }
    
    .bod_cont4 {
        padding-left: 8rem;
    }
    
    .bod_cont4 p {
        font-size: 1.125rem;
    }
    
    .bod_cont4 svg {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 992px) {
    :root {
        --font-base: 1.125rem;
    }
    
    ._title h1,
    ._title1 h1 {
        font-size: 2.25rem;
    }
    
    .BG_Pic {
        height: 560px;
    }
    
    .bod_cont1 {
        margin-left: 5rem;
        margin-top: 7rem;
    }
    
    .bod_cont2 {
        font-size: 2.5rem;
    }
    
    .bod_cont2 img {
        width: 140px;
        height: 140px;
    }
    
    .bod_cont4 {
        padding-left: 10rem;
    }
    
    .bod_cont4 p {
        font-size: 1.25rem;
    }
}

@media (min-width: 1200px) {
    :root {
        --font-base: 1.25rem;
    }
    
    ._title h1,
    ._title1 h1 {
        font-size: 2.5rem;
    }
    
    .BG_Pic {
        height: 600px;
    }
    
    .bod_cont1 {
        margin-left: 6rem;
        margin-top: 8rem;
    }
    
    .bod_cont2 {
        font-size: 2.75rem;
    }
    
    .bod_cont2 img {
        width: 150px;
        height: 150px;
    }
    
    .bod_cont4 {
        padding-left: 12rem;
    }
    
    .bod_cont4 p {
        font-size: 1.375rem;
    }
}

@media (min-width: 1400px) {
    :root {
        --font-base: 1.375rem;
    }
    
    ._title h1,
    ._title1 h1 {
        font-size: 3rem;
    }
    
    .BG_Pic {
        height: 640px;
    }
    
    .bod_cont1 {
        margin-left: 70px;
        margin-top: 110px;
    }
    
    .bod_cont2 {
        font-size: 3rem;
    }
    
    .bod_cont2 img {
        width: 150px;
        height: 150px;
    }
    
    .bod_cont4 {
        padding-left: 160px;
    }
    
    .bod_cont4 p {
        font-size: 1.5rem;
    }
}

@media (hover: none) {
}

@media (prefers-reduced-motion: reduce) {
}