@font-face {
    font-family: 'Euclid Circular A Regular';
    src: url(/font/Euclid\ Circular\ A\ Regular.woff) format('woff'),
        url(/font/Euclid\ Circular\ A\ Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'Austin News Headline Light';
    src: url(../font/Austin\ News\ Headline\ Light.woff) format('woff'),
        url(../font/Austin\ News\ Headline\ Light.woff2) format('woff2');
}

.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section .container-fluid {
    padding: 0;
}

.banner-section::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: 9;
    background: linear-gradient(1deg, #000000, transparent, transparent);
    width: 100%;
    height: 100%;
}

.banner-section-information {
    position: absolute;
    bottom: 23px;
    left: 72px;
    font-family: 'Austin News Headline Light';
    color: #fff;
    z-index: 9;
}

.banner-section-information .banner-blog-home {
    font-family: 'Euclid Circular A Regular';
}

.banner-section-img {
    animation: zoomEffect 10s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
        /* Normal size */
    }

    100% {
        transform: scale(1.1);
        /* Zoom in slightly */
    }
}

.desktop-banner {
    display: block;
}

.tab-banner {
    display: none;
}

.mobile-banner {
    display: none;
}

.padding-space-extra {
    padding: 50px 0;
}

.job-opening {
    font-family: 'Euclid Circular A Regular';
}

.career-option-point {
    margin-bottom: 13px;
}

button.btn {
    width: 100%;
}

.career-btn.active {
    background-color: #fd9f3c;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 0 2px #fff;
}

.career-option-for-point {
    margin-right: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.job-point-career {
    background-color: #e3e3e3;
    padding: 10px 0;
    border-radius: 5px;
}

.job-point-career h3 {
    padding: 0 20px;
    font-size: 22px;
    font-weight: 600;
    color: #f7a740;
    margin-bottom: 0;
    text-transform: uppercase;
}

.job-opening-cnt {
    color: #000;
    padding: 20px 35px 0 35px;
}

.job-title-point-openings {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 20px;
}

.info-item {
    font-size: 14px;
    margin-right: 20px;
}

.job-opening-cnt h5 {
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 20px;
}

.job-opening-cnt h5::before {
    position: absolute;
    bottom: -6px;
    left: 0;
    border-bottom: 2px solid #fff;
    content: "";
    width: 16%;
}

.job-opening-cnt ul {
    padding-left: 20px;
}

.job-opening-cnt ul li {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

a.btn.apply-btn {
    background: #fd9f3c;
    color: #fff;
    margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
    .container {
        max-width: 830px;
    }

    .desktop-banner {
        display: none;
    }

    .tab-banner {
        display: block;
    }

    .mobile-banner {
        display: none;
    }

    .section-title h2 {
        font-size: 25px;
    }
}
@media only screen and (max-width: 565px) {
    .desktop-banner{
        display:none;
    }
    .tab-banner{
        display:none;
    }
    .mobile-banner{
        display:block;
    }
}