@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');
}

.desktop-banner {
    display: block;
}

.tab-banner {
    display: none;
}

.mobile-banner {
    display: none;
}

.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 */
    }
}

.privacy-policy-content {
    font-family: 'Euclid Circular A Regular';
}

.policy-content {
    padding: 10px;
    border: 1px solid #cdcdcd;
    border-radius: 10px;
}

.padding-space-extra {
    padding: 60px 0;
}
.back-home-page{
    background:#f4511e;
    color:#fff;
}
@media only screen and (max-width: 991px) {
    .desktop-banner {
        display: none;
    }

    .tab-banner {
        display: block;
    }

    .mobile-banner {
        display: none;
    }

    .banner-section-information h1 {
        font-size: 37px;
    }

    .banner-section-information {
        left: 35px;
    }
}

@media only screen and (max-width: 565px) {
    .desktop-banner {
        display: none;
    }

    .tab-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .banner-section-information h1 {
        font-size: 30px;
    }

    .banner-section-information {
        left: 20px;
        bottom: 10px;
    }
}