:root {
    --colors-background: #0F0F0F;
    --colors-background-light: #191919;
    --colors-background-lighter: #1E1E1E;
    --colors-text: #FFF;
    --colors-nav-link: #FFF;
    --colors-link: #F1C232;
    --colors-text-footer: #c8c8c8;
    --colors-danger: #f00;

    --font-size-tiny: 0.25rem;
    --font-size-very-small: 0.5rem;
    --font-size-small: 0.75rem;
    --font-size-medium: 1rem;
    --font-size-big: 1.5rem;
    --font-size-bigger: 2rem;
    --font-size-large: 3rem;
    --font-size-very-large: 4rem;
    --font-size-huge: 5rem;
}

* {
    font-family: "Segoe UI";
    margin: 0;
    padding: 0;
    border: 0;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.element {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-scroll {
    overflow: scroll;
}

html {
    background-color: var(--colors-background);
}

header {
    top: 0;
    position: sticky;
    z-index: 99999999999;
}

.navbar {
    padding: 1vh 5vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom: 0.25vh solid var(--colors-link);
}

.navbar-logo {
    height: 100px;
}

.navbar a {
    text-decoration: none;
    color: var(--colors-nav-link);
    font-size: var(--font-size-big);
    text-align: center;
}

.navbar a:hover {
    color: var(--colors-link);
}

/*main */
main h1 {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.title-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
    height: 50vh;
    min-height: 100px;
    background-color: var(--colors-background);
    background-image: url('../images/FOCUS-MH-min.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover, contain;
    border-bottom: 1px solid white;
}

.title,
.subtitle {
    padding: 1vh 2vw;
    color: var(--colors-text);
    font-weight: bolder;
    text-align: center;
}

.title {
    font-size: var(--font-size-very-large);
    text-shadow: 1px 1px 2px black;
    padding-top: 3vh;
}

.subtitle {
    font-size: var(--font-size-large);
}

.titleInfo {
    color: white;
    text-shadow: 1px 1px 3px black;
    font-size: 25px;
}

.info {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 20px
}

.leftItem, .center-item, .rightItem {
    display: flex;
    margin-bottom: 5vh;
    width: 30vw;
    gap: 3vh;
}

.leftItem, .rightItem {
    display: flex;
    flex-direction: column;
    text-align: center;
}

h2 {
    text-align: center;
}

.center-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.center-item img {
    max-width: 30vw;
    object-fit: cover;
    align-self: center;
    border-radius: 10px;
    border: solid 1px white;
}

.webButton {
    background-color: var(--colors-link);
    color: black;
    margin-bottom: 5vh;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    width: 200px;
    text-align: center;
    align-self: center;
}

.webButton:hover {
    background-color: #bd9a2a;
}


/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    border-top: 0.25vh solid var(--colors-link);
    padding: 2.5vh 5vh;
}

footer p {
    color: var(--colors-text-footer);
}

.footer-contact {
    color: var(--colors-text);
}

.footer-social-links {
    display: flex;
    color: var(--colors-text);
    gap: 2vw;
    margin-bottom: 2.5vh;
}

.footer-social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--colors-text);
    background-color: var(--colors-background);
    height: 40px;
    width: 40px;
}

.footer-social-links a:hover {
    color: var(--colors-background);
    background-color: var(--colors-link);
    border: 0 hidden var(--colors-background);
    border-radius: 1.5vh;
}

.footer-copyright {
    color: var(--colors-text-footer);
    font-size: var(--font-size-small);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

footer iframe {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-copyright a {
    text-decoration: none;
    color: var(--colors-link);
}

.footer-copyright a {

}

.footer-location-contact {
    color: var(--colors-text);
}

.footer-info {
    margin-bottom: 2.5vh;
}

footer.row {
    justify-content: space-between;
    align-items: center;
}