/*===============================================
                Flights By Regions
=================================================*/

/*** Intro Two Section ***/
.intro-two {
    padding: 170px 0 30px 0;
    text-align: center;
    position: relative;
}

.intro-two::before {
    position: absolute;
    content: '';
    top: 0px;
    right: -180px;
    height: 700px;
    width: 700px;
    border-radius: 50%;
    background: #aa00ff;
    filter: blur(150px);
    opacity: 0.08;
    z-index: -1;
}

.intro-two::after {
    position: absolute;
    content: '';
    top: 0px;
    left: -180px;
    height: 700px;
    width: 700px;
    border-radius: 50%;
    background: #006dda;
    filter: blur(150px);
    opacity: 0.08;
    z-index: -1;
}

.intro-two .text h1 {
    color: #1c2437;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.05px;
    margin-bottom: 20px;
}

.intro-two .text p {
    color: #444444;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/*** Regions Categories Section ***/
.regions-categories {
    padding: 30px 0 100px 0;
}

.regions-card {
    height: 200px;
    width: 100%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #fafafa;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.regions-card::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00173f;
    overflow: hidden;
    border-radius: 10px;
    opacity: 0.7;
    transition: all 0.3s;
    z-index: -1;
}

.regions-card:hover::before {
    opacity: 0.75;
    transition: all 0.3s;
}

.regions-card img {
    position: absolute;
    top: 0;
    left: 0;
    height: 200px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.3s;
    z-index: -2;
}

.regions-card:hover img {
    transform: scale(1.2);
    filter: blur(2px);
    transition: all 0.3s;
}

.regions-card h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-align: center;
    margin: 0;
}

.regions-card h3 span {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.25px;
    display: block;
}

/*===============================================
                    Blog Page
=================================================*/
.blog-categories {
    padding: 30px 0 100px 0;
}

.category-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 70%;
    margin: 0 auto 50px auto;
}

.category-list a {
    color: #444444;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 5px;
    text-decoration: none;
    background: #ffffff;
    box-shadow: 5px 5px 20px rgba(73, 95, 255, 0.07);
    display: inline-block;
}

.category-list a.active {
    color: #ffffff;
    background: #006dda;
}

.blog-category-card {
    padding: 24px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0px 25px rgb(0 0 0 / 1%);
}

.blog-category-card .thumbnail {
    position: relative;
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
}

.blog-category-card .thumbnail .category {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #006dda;
    font-weight: 500;
    background: #ffffff;
    padding: 6px 18px;
    border-radius: 5px;
    display: inline-block;
    z-index: 3;
}

.blog-category-card .thumbnail img {
    transition: all 0.2s;
    z-index: 0;
}

.blog-category-card:hover .thumbnail img {
    transform: scale(1.2);
    transition: all 0.2s;
}

.blog-category-card a:hover {
    color: #00173f;
    transition: all 0.3s;
}

.meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: auto;
    margin-top: 20px;
}

.meta-info a {
    color: #5d5d5d;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.meta-info a:hover {
    color: #006dda;
    transition: all 0.3s;
}

.meta-info span {
    height: 16px;
    width: 1px;
    background: #a0a0a0;
}

.subscription-block.v2 {
    padding: 0 0 70px 0;
    text-align: center;
    background: transparent;
    box-shadow: none;
}

.subscription-block.v2 h4 {
    color: #1c2437;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
}
/*===============================================
                Responsive Style
=================================================*/
@media (max-width: 1199.98px) {
    .intro-two::before,
    .intro-two::after {
        height: 600px;
        width: 600px;
    }

    .intro-two .text h1 {
        font-size: 2.5rem;
    }

    .intro-two .text p {
        font-size: 20px;
    }
}

@media (max-width: 991.98px) {
    .intro-two::before,
    .intro-two::after {
        height: 500px;
        width: 500px;
    }

    .intro-two .text h1 {
        font-size: 2.2rem;
    }

    .intro-two .text p {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .intro-two {
        padding: 130px 0 0 0;
    }

    .intro-two::before,
    .intro-two::after {
        height: 300px;
        width: 300px;
    }

    .intro-two .text h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .intro-two .text p {
        font-size: 16px;
        line-height: 1.55;
    }

    .regions-card {
        width: 90%;
        margin: auto;
    }

    .category-list {
        max-width: 100%;
        gap: 10px;
        margin-bottom: 35px;
    }

    .category-list a {
        font-size: 14px;
        width: 45%;
        text-align: center;
    }

    .blog-category-card {
        padding: 20px;
    }

    .blog-category-card .thumbnail {
        margin-bottom: 20px;
    }

    .blog-category-card .thumbnail .category {
        top: 18px;
        right: 18px;
        font-size: 14px;
        padding: 5px 16px;
    }

    .blog-category-card a {
        font-size: 1.25rem;
    }

    .meta-info {
        gap: 5px;
        margin-top: 15px;
    }
    .meta-info a {
        font-size: 14px;
        font-weight: 500;
    }
    .blog-categories {
        padding: 30px 0 60px 0;
    }
    .subscription-block.v2 {
        padding: 0 0 40px 0;
    }
    .subscription-block.v2 h4 {
        color: #1c2437;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .subscription-block.v2 h4 br {
        display: none;
    }
}
