@font-face {
    font-family: 'Roboto-condences';
    src: url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap) format('woff2');
}

@font-face {
    font-family: 'Roboto';
    src: url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap) format('woff2');
}

@font-face {
    font-family: 'Avenir-Next-Medium';
    src: url('../fonts/avenir-next-medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir-Next-Regular';
    src: url('../fonts/avenir-next-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'RobotoCondensed-Black';
    src: url('../fonts/RobotoCondensed-Black.ttf') format('truetype');
}

:root {
    --primary-color: #006694;
}

body {
    margin: 0 !important;
    font-family: 'Avenir-Next-Medium';
}

.hero-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 80%;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 5rem;
    margin-bottom: 0rem;
    /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);*/
    margin-top: 2rem;
}

.roboto-condensed-title {
    font-family: 'RobotoCondensed-Black';
    font-optical-sizing: auto;
    font-style: normal;
}

.hero-text-overlay p {
    /*text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);*/
    margin-top: 0;
    font-size: 1.4rem;
    font-family: 'Avenir-Next-Medium';
}

.big-scr {
    display: block !important;
}

.sm-scr {
    display: none !important;
}

.container {
    /*margin: -15rem auto auto;*/
    background: white;
    padding: 40px;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
    border-radius: 12px;
}

.meta {
    color: #555;
    font-size: 15px;
    margin-bottom: 24px;
}

.badge {
    display: inline-block;
    background: #006694;
    color: white;
    padding: 4px 12px;
    font-size: 13px;
    border-radius: 4px;
    margin-right: 8px;
}

.description {
    font-size: 16px;
    line-height: 1.7;
}

.apply-btn {
    display: inline-block;
    background: #006694;
    color: white;
    padding: 5px 24px;
    font-size: 16px !important;
    border: none;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

/*.apply-btn:hover {*/
/*    background: #004d66;*/
/*}*/

@media (max-width: 768px) {
    .hero-text-overlay {
        top: 27%;
    }

    .hero-text-overlay h1 {
        font-size: 2rem;
        margin: 1rem auto -1rem;
    }

    .hero-text-overlay p {
        font-size: 1rem;
        margin: 1rem auto;
    }
    
    .container {
        margin: -5rem auto auto;
    }

    .big-scr {
        display: none !important;
    }

    .sm-scr {
        display: block !important;
    }
}