*:root {
    --color-white: white;
    --color-black: #26303f;
    --color-blue: #125899;
    --color-darkBlue: #01122c;
    --color-org: #EF6D26;
    --color-light: #F3F3F3;
    --color-blackOff: #939393;
    --color-bg: #EBECF0;
    --color-orgdark: #FA5302;
    --color-green: #3ab54a;
    --lightgreen: #e9ffec;
    --lightblue: #4f8ffc;
}

body{
    font-family: 'Poppins';
    color:var(--color-black);
}
a{text-decoration: none;}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.container{
    max-width: 1300px;
}
.font_15 {
    font-size: 15px;
}
/* Header Css start*/
.sub_header {
    background: var(--color-blue);
    color:var(--color-white);
}
.sub1 ul li a {
    color: var(--color-white);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.social_sub ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
    .social_sub ul li a {
        width: 25px;
        height: 25px;
        background-color: var(--color-light);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 3px;
        color: var(--color-black);
        font-size: 13px;
    }
.sub1 ul li a i {
    width: 25px;
    height: 25px;
    border-radius: 3px;
    background-color: var(--color-white);
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.webHeader {
    background: var(--color-white);
    display: block;
    width: 100%;
    font-family: poppins,sans-serif;
    font-size: 14px;
    line-height: 1;
    padding: 1px 0 2px;
}
.navbar-collapse{
    flex-grow:inherit;
}

.webHeader .head-menu{
    display: flex;
}

.webHeader .navbar {
    padding: 3px 0 2px 0;
}
.navbar-nav li a {
    color: var(--color-black);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link{
    color: var(--color-org);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{
    color: var(--color-org);
}
.logo img{
    width:120px;
}
.webHeader .navbar-nav .nav-link {
    color: var(--color-black);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 15px;
}
.call-opt {
    margin: 0px;
    color: #ffffff;
    line-height: 1;
}
.call-opt .call-icons {
    background: var(--color-org);
    padding: 10px;
    border-radius: 4px;
}
.call-opt .call-icons svg {
    animation: hithere 1s ease infinite;
}
@keyframes hithere {
    30% {
        transform: scale(1.2)
    }

    40%,60% {
        transform: rotate(-20deg) scale(1.2)
    }

    50% {
        transform: rotate(20deg) scale(1.2)
    }

    70% {
        transform: rotate(0deg) scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}
.free-deals {
    display: inline-flex;
    flex-direction: column;
    color: var(--color-black);
    margin-left: 10px;
    font-size: 12px;
    gap: 5px;
}
.call-opt .call-tfn {
    color: var(--color-black);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.mobileMenu {
    display: none;
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 24px;
    transition: .2s;
    overflow: hidden;
}

.mobileMenu span {
    display: block;
    height: 2px;
    text-indent: -9999px;
    background: #304478;
    position: absolute;
    top: 50%;
    right: 20%;
    left: 20%;
    transition: .2s;
}
.mobileMenu span:before {
    top: -7px;
    transition-property: top,transform;
}
.mobileMenu span:before, .mobileMenu span:after {
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #304478;
    transition-duration: .2s,.2s;
    position: absolute;
    left: 0;
}
.mobileMenu span:after {
    bottom: -7px;
    transition-property: bottom,transform;
}
/* Home page banner*/
.home-banner {
    background: url(/images/blog-banner.png) center no-repeat;
    background-size: cover;
    height: 500px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-banner .banner-titile{
    font-size: 50px;
    color: var(--color-white);
    text-transform: capitalize;
    padding: 0 20px;
    line-height: 65px;
    margin-bottom: 15px;
    margin-top: 15px;
    text-align: center;
    text-shadow: 0.1em 0.1em 0 hsl(211.16deg 83.23% 30.39%);
}

.category .heading{
    margin: 0;
    padding:15px 0;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-black);
}

.thum-box{
    border: 1px solid #dce0e0;
    position: relative;
    margin-bottom: 30px;
}

.thum-box a{
    color:var(--color-black);
    height: 100%;
    text-decoration: none;
    
}
.thum-box img{
    width:100%;
    height: 200px;
}

.thum-box .post-intery-cont{
    padding: 20px;
}

    .thum-box .post-intery-cont .post-titile {
        margin: 0;
        padding: 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--color-black);
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

.post-meta{
    color: #999;
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: 0px;
    line-height: 20px;
    display: flex;
    justify-content: space-between; text-align: center;
    font-weight: 300;
}
.post-date{
display: inline-flex;
gap:5px;
}


/* Detail Page Css*/

.detail-banner {
    background-size: cover !important;
    height: 500px;
}

.detail-banner:after{
    top: 0;
    left: 0;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: linear-gradient(to bottom,rgba(0,0,0,.2) 0%,rgba(0,0,0,0) 18%,rgba(0,0,0,0) 28%,rgba(0,0,0,.4) 120%);
}


.content-wrap{
    margin: 0px;
    position: absolute;
    height: auto;
    width: 100%;
    bottom: 0px;
    z-index: 1;
    padding-bottom: 30px;
}

.content-wrap .post-title{
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 40px;
    color:var(--color-white);
}

.single-post-meta-wrapper{
    color:var(--color-white);
    font-size: 14px;
}

.divide{
    position: relative;
    margin: 0 5px;
}
.divide:after {
    position: relative;
    top: 3px;
    left: 0px;
    height: 15px;
    content: no-close-quote;
    width: 1px;
    margin-right: 4px;
    background: #ddd;
    display: inline-block;
    transform: rotate(25deg);
}

ul.breadcrumb {
    padding: 20px 15px 20px 0;
    list-style: none;
    width: 100%;
    margin: 0 auto;
    background: none;
    font-weight: 500;
}
ul.breadcrumb li {
    display: inline;
    font-size: 14px;
}
ul.breadcrumb li a {
    color: var(--color-blue);
    text-decoration: none;
}

ul.breadcrumb li + li:before {
    padding: 0 8px;
    color: black;
    content: "/\00a0";
}
.detail-sec h2 {
    font-size: 30px;
    font-weight: 500;
}
.detail-sec h3 {
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 15px;
}
.detail-sec p{
    font-size: 14px;
}
.detail-sec img{
    max-width: 100%;
}
 
/* Recent Post section Css */
.recent-post
{
    position: sticky;
    overflow: hidden;
    top:10px;
}

.recent-post .title{
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 15px;
}

.post-list li{
    margin-bottom: 15px;
    padding-bottom: 10px;
}
.post-list li a{
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-decoration: none;

}
.post-list li .title{
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    color: var(--color-black);
    margin-bottom: 15px;
    padding: 0;
}
.post-list li img{
    width: 125px;
    transition: all 0.4s ease 0s;
    height:80px;
}

.post-list .post-meta{
    justify-content: initial;
    gap: 15px;
}


/* Footer Css Start */
.footer {
    background:var(--color-darkBlue);
    color: var(--color-white);
    margin-top: 20px;
    color:var(--color-white);
}
    .footer p{
        margin-bottom:0;
    }
    .footer-title {
        position: relative;
        display: inline-flex;
        font-size: 20px;
        font-weight: 500;
    }
.footer_ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
    .footer_ul li a {
        color: var(--color-white);
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 15px;
    }
.footer_ul2 {
    gap: 20px;
}
.footer_bottom {
    background: var(--color-white);
    color: var(--color-black);
}
.footer_ul_bottom li a {
    color: var(--color-black);
    font-size: 15px;
}
.footer_icon {
    width: 40px;
    height: 40px;
    background-attachment: fixed;
    background-color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 24px;
}
.contact-through a {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 5px;
}
.icon-f {
    background-color: var(--color-org);
    color: var(--color-black);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.icon-f:hover {
    background: var(--color-darkBlue);
    color: var(--color-white);
}

.color-org{
    color: var(--color-org);
}
.footer-ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-ul li a {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
}

.social-links a {
    background-color: var(--color-org);
    color: var(--color-black);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.social-links a:hover {
    background: var(--color-darkBlue);
    color: var(--color-white);
}
.about-sec{
    font-size: 14px;
    font-weight: 300;
}



@media(max-width: 992px) {
    .footer-title {
        font-size: 17px;
        font-weight: 500;
    }
    .offerBox-mobile {
        padding: 0 10px;
        background: #f8d630;
        font-size: 14px;
        color: var(--color-black);
        display: flex;
        font-weight: 500;
        justify-content: space-between;
        align-items: center;
    }

    .offerBox-mobile .tfn a {
        color: var(--color-black);
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        padding: 3px 0px;
        border-radius: 4px;
        display: flex;
        align-items: center;
    }
    .call-opt {
        display: none!important;
    }

    .webHeader .navbar-brand img {
        width: 90px;
    }
    .webHeader .head-menu{
        display: block;
    }
    .mobileMenu {
        display: block;
        right: 5px;
    }
    #headerCntr .mobileMenuBox {
        display: none;
        width: 100%;
        position: fixed;
        left: -200%;
        top: 0;
        background: #fff;
        z-index: 3;
        height: 100vh;
    }
    .mobile_head {
        background: #014991;
        overflow: hidden;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: absolute;
        width: 100%;
        left: 0;
    }

    .mobile_head h4 {
        font-size: 16px;
        padding: 10px 15px;
        margin: 0;
    }
    .mobile_head .close {
        padding: 4px 10px;
        font-size: 20px;
        color: #fff;
        opacity: 1;
    }
    #headerCntr .mobileMenuBox ul {
        list-style: none;
        padding: 16px;
        margin-top: 25px;
    }

    .webHeader .navbar-light .navbar-toggler{
        float: right;
    border: none;
    padding: 0;
    }

    .webHeader .navbar-nav{
    border-top: 1px solid #ddd;
    margin-top: 10px;
}

        .webHeader .navbar-nav .nav-link {
            padding: 8px 5px;
            border-bottom: 1px dashed #ccc;
        }
.webHeader .navbar-toggler:focus{
    box-shadow: none;
}

/* Banner css start */

.home-banner, .detail-banner{
height: 180px;
}
.home-banner .banner-titile, .content-wrap .post-title{
    font-size: 25px;
    line-height: normal;
}

.category .heading{
    font-size: 20px;
}

/*.paginations{
    margin-bottom: 20px;
}*/

ul.breadcrumb{
    padding: 10px 0;
}

ul.breadcrumb li + li:before{
    padding: 0 3px;
}
.detail-sec h3 {
    font-size: 20px;
 
}
.recent-post{
    margin-top: 20px;
}
    .agency-logo ul {
        flex-flow: wrap;
        gap: 10px;
        padding: 0;
        margin: 0;
    }
    .agency-logo li a.tln-logo {
        background-position: 0px -52px;
        width: 351px;
        background-size: 100%;
    }

}



/* Pagenation*/

.paginationNav {
    font-size: 1.2em;
    display: inline-block;
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    border-radius: 5px;
    padding:10px 20px;
}


    .paginationNav a {
        display: inline-block;
        color: #aaaaaa;
        height: 30px;
        width: 30px;
        margin-right: 10px;
        text-align: center;
        line-height: 25px;
        padding: 3px;
        background: #eaeaea;
        border-radius: 50%;
    }
        .paginationNav a.prev i {
            margin-right: 2px;
        }

        .paginationNav a.next i {
            margin-left: 2px;
        }

        .paginationNav a.active {
            background-color: var(--color-blue);
            color: var(--color-white);

        }

    .paginationNav span {
        padding: 0 10px;
        color: #aaaaaa;
        width: 80px;
        display: inline-block;
    }

.know-stat .know-stat-text {
    background: #EFC627;
    background: linear-gradient(#ff1200,#920837);
    position: relative;
    padding: 3px 9px;
    z-index: 2;
    font-family: 'Rajdhani', sans-serif !important;
    border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    color: #fff;
}
.know-stat {
    position: absolute;
    top: -5px;
    left: 6px;
    font-weight: 700;
    font-size: 11px;
    text-transform: capitalize;
    background-color: #f2b41f;
    color: #333;
    border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
}

.agency-logo {
    background: var(--color-white);
    padding: 10px 0;
    clear: both;
}

    .agency-logo ul {
        display: flex;
        justify-content: center;
        flex-flow: wrap;
    }

    .agency-logo li {
        display: inline-block;
        margin: 0 5px;
    }

        .agency-logo li a {
            display: block;
            background-size: 100%;
            background: url(/images/sprit-foot.png) 0 0 no-repeat;
        }

            .agency-logo li a.arc-logo {
                background-position: 0 0px;
                width: 95px;
                height: 45px;
            }

            .agency-logo li a.iata-logo {
                background-position: -91px 0px;
                width: 95px;
                height: 45px;
            }

            .agency-logo li a.asta-logo {
                background-position: -183px 0px;
                width: 205px;
                height: 45px;
            }

            .agency-logo li a.tln-logo {
                background-position: 15px -52px;
                width: 420px;
                height: 45px;
            }