@font-face {
    font-family: 'CenturyGothic';
    src: url("fonts/centurygothic.ttf");
}

@font-face {
    font-family: 'CenturyGothicBold';
    src: url("fonts/centurygothic_bold.ttf");
}

@font-face {
    font-family: 'Roboto';
    src: url("fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: 'RobotoBold';
    src: url("fonts/Roboto-Bold.ttf");
}

:root {
    --color-primary: 31, 36, 48;
    --color-font: 30, 30, 30;
    --color-white: 255, 255, 255;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    padding: 0px;
    margin: 0px;
}

h2 {
    font-family: CenturyGothic;
    font-size: 36px;
    color: rgb(var(--color-primary));
}

h1 {
    font-family: CenturyGothic;
    font-size: 48px;
    color: rgb(var(--color-white));
    margin: 0px;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.header {
    height: 70px;
    width: 100dvw;
    background-color: white;
    padding: 20px 100px;
}

.header-logo {
    height: 100%;
    width: auto;
}

.header-icon {
    width: 24px;
    height: 24px;
    color: rgb(var(--color-primary));
    display: block;
}

.hero {
    width: 100dvw;
    height: calc(100dvh - 70px);
    background-image: url("images/HeroImageMain.jpg");
    background-size: cover;
    background-position: center;
    padding: 150px 100px;
}

.hero-box {
    align-items: start;
}

.hero-logo {
    width: 430px;
    height: auto;
}

@media screen and (width <= 1920px) {
    .hero-logo {
        width: 290px;
    }

    h2 {
        font-size: 24px !important;
    }

    h1 {
        font-size: 48px !important;
    }
}

@media screen and (width <= 600px) {
    .header {
        padding: 20px !important;
    }

    .hero {
        padding: 100px 20px 20px 20px !important;
        align-items: center;
    }
    
    .hero-logo {
        width: 200px;

    }

    h2 {
        font-size: 17px !important;
        margin-bottom: 0px;
    }

    h1 {
        font-size: 36px !important;
    }

    .hero-box {
        padding: 40px; 
        background-color: rgba(var(--color-white),0.1);
        backdrop-filter: blur(5px);
        width: 100%;
        align-items: center;
    }
}