@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@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');
}

body {
    font-family: 'Montserrat';
    background: #fff;
}

.banner-section {
    overflow: hidden;
    background: url(../images/blogs/blog-img.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    background-attachment: fixed;
    margin-bottom: 0;
    height: 70vh;
}

.banner-section .container-fluid {
    padding: 0;
}

.banner-section::before {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, #000000ab, transparent);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
}

.banner-section-infromation {
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0 60px;
}

.banner-section-info h1 {
    font-family: 'Austin News Headline Light';
    font-size: 40px;
    margin-bottom: 0;
}

.banner-call .btn {
    background: #ffffff;
    margin-right: 10px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    color: #000;
}

/* 🔥 Spark Waves */
.banner-call .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1);
    z-index: -1;
    animation: pulse 2s infinite;
}

.banner-call .btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transform: translate(-50%, -50%) scale(1);
    z-index: -1;
    animation: pulse 2s infinite;
}

/* second wave delay */
.banner-call .btn::after {
    animation-delay: 1s;
}

/* animation */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.banner-btn {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.section-title {
    text-align: center;
    ;
}

.section-title h2 {
    font-family: 'Austin News Headline Light';
    font-size: 37px;
    margin-bottom: 5px;
}

.blog-section {
    position: relative;
    overflow: hidden;
}

.blog-information {
    position: relative;
}

.blog-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 206px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.blog-in {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.blog-date {
    text-align: right;
    font-size: 13px;
    font-weight: 400;
    background: #000000ab;
    color: #fff;
    padding: 0 10px;
}

.blog-info .btn {
    background: transparent;
    border-top: 1px solid #a7a7a7;
    border-bottom: 1px solid #a7a7a7;
    border-radius: 0;
    color:#000;
}

.custom-slider-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.custom-slider-arrows button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    transition: 0.3s;
    border: 1px solid #000;
    border-radius: 5px;
}

.custom-slider-arrows button:hover {
    color: #999;
}

.blog-section-information .section-title {
    margin-bottom: 30px;
}

.blog-info {
    background: #f5f5f5;
    box-shadow: 0 0 3px #e9dcdc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-int {
    padding: 10px 13px;
}

.blog-section {
    padding: 80px 0;
}

.news-section {
    position: relative;
    overflow: hidden;
}

.bg-color {
    background: #f5f5f5;
}

.news-section .blog-info {
    background: #ffffff;
}

.blog-img {
    position: relative;
}

.news-section .blog-info .blog-date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #000000ab;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

.blog-title {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000000ab;
    color: #fff;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 5px;
}

.searching-inn-fer {
    text-align: center;
}

.searching-inn-fer .insta-icon-follow {
    max-width: 45px !important;
}

.searching-inn-fer .follows-icon {
    justify-content: center;
}

@media only screen and (max-width: 1295px) {
    .banner-section {
        margin-top: 88px;
    }

    .blog-section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 991px) {
    .banner-section-info h1 {
        font-size: 35px;
    }

    .banner-section {
        margin-top: 66px;
    }

    .banner-section-infromation {
        padding: 0 50px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .searching-inn-fer .insta-icon-follow {
        max-width: 35px !important;
    }
}

@media only screen and (max-width: 767px) {
    .banner-section-info h1 {
        font-size: 31px;
    }

    .banner-section-infromation {
        padding: 0 25px;
    }

    .blog-section {
        padding: 25px 0;
    }

    .searching-inn-fer .section-title h2 {
        font-size: 26px;
    }

    .searching-inn-fer .section-title p {
        font-size: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .banner-section {
        height: 60vh;
    }

    .banner-section-info h1 {
        font-size: 29px;
    }

    .section-title h2 {
        font-size: 27px;
    }

    .blog-section-information .section-title p {
        font-size: 14px;
    }

    .blog-in {
        font-size: 14px;
    }

    .blog-info .btn {
        font-size: 14px;
    }

    .custom-slider-arrows {
        gap: 25px;
    }

    .searching-inn-fer .section-title h2 {
        font-size: 24px;
    }

    .searching-inn-fer .section-title p {
        font-size: 14px;
    }

    .searching-inn-fer .insta-icon-follow {
        max-width: 30px !important;
    }
}