.banner{
    background-color: #333;
    height: 320px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.banner:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    background: radial-gradient(circle farthest-corner at left center, #0000007a 0%, #23142100 100%);
}
.banner .bancont{
        display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    position: relative;
    z-index: 1;
}
.banner .bancont h1{
    color: #fff;
    position: relative;
}
.banner .bancont:after{
    content: '';
    position: absolute;
    left: 20px;
    bottom: 10px;
    display: block;
    width: 50px;
    height: 0;
    border-bottom: 2px dashed #e51d28;
}
.banner .bancont:before{
    content: '\f072';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: .875rem;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 20px;
    color: #ffffff;
}
.breadcrumb{
    padding: 0;
    margin: 0;
    background-color: transparent;
}
.breadcrumb-item a{
    color: #f7f7f7;
}
.breadcrumb-item+.breadcrumb-item::before{
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #ccc;
    font-size: 0.8rem;
    margin-top: 2px;
}
.breadcrumb-item.active {
    color: #fff;
    opacity: .75;
}


.maincontent{
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.maincontent .breadcrumb{
	font-size:.875rem;
}
.maincontent .breadcrumb-item a,
.maincontent .breadcrumb-item.active{
	color: #6c757d;
}


.process{
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #fef3f4;
}
.hdcap{
    color: #e51d28;
    font-weight: 600;
    margin-bottom: 0;
}
.prohdcol{
    color: #666;
}
.process .stepcol{
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 30px;
    display: flex;
    flex-flow: wrap;
    flex: 1 0;
    margin-top: 1rem;
    position: relative;
    border-bottom: 1px solid #ccc;
}
.process .stepcol .stepicon{
    width: 100px;
    min-width: 100px;
    padding-right: 40px;
    margin-top: 2rem;
}
.process .stepcol .stepcont{
    width: calc(100% - 100px);
}
.process .stepcol .stepcont h4{
    font-size: 1rem;
}
.process .stepcol .stepcont p{
    color: #666;
    font-size: .875rem;
}
.process .stepcol .stepcont .step{
    color: #e51d28;
    font-weight: 600;
}
.process .stepcol .steppro{
    width: 24px;
    height: 24px;
    background-color: #c3c3c3;
    position: absolute;
    bottom: -12px;
    left: 115px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.process .stepcol .steppro:after{
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #666;
    border-radius: 50%;
}



.values{
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.values .valuemain{
    margin: 0 -10px;
}
.values .valuecol{
    flex: 1 0 33.3333%; 
    padding: 10px;
}
.values .valuebox{
    padding: 0;
    height: 100%;
    border-radius: .3rem;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.values .valuebox:hover{
    transform: translateY(-3px);
}
.values .valuecol .valicon{
    width: 50px;
    margin-bottom: 1rem;
}
.values .valuecol h4{
    font-size: 1rem;
    font-weight: 700;
}
.values .valuecol p{
    color: #666;
    font-size: .875rem;
}



.ovimg{
    position: relative;
}
.ovimg .galbtn{
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: #fff;
    color: #333;
    border-radius: 3rem;
    width: 180px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.ovimg .galbtn i{
    margin-right: 3px;
    position: relative;
    top: 1px;
}
.ovimg .galbtn:hover{
    color: #e51d28;
}
.loungeinfo{
    padding: 3rem 0;
    background-color: #fef3f4;
}
.loungeinfo h5{
    margin-bottom: 5px;
    font-size: 1rem;
}
.amlist{
    display: flex;
    flex-flow: wrap;
}
.amlist li{
    width: 50%;
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.amlist li img{
    width: 26px;
    margin-right: 10px;
}

@media(max-width:575px){
.amlist li{
    width: 100%;
}
.amlist li img{
    width: 22px;
}
}

.viewbtn{
    color: #e51d28;
    display: inline-block;
    border: 1px solid;
    padding: 10px 15px;
    border-radius: 0.3rem;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.viewbtn i{
    margin-left: 5px;
    position: relative;
    top: 1px;
}
.viewbtn:hover{
    color: #fff;
    background-color: #e51d28;
}




.myform input,
.myform select,
.myform textarea{
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ededed;
    outline: 0;
    color: #666;
    font-size: .875rem;
    border-radius: .3rem;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.myform input:focus,
.myform select:focus,
.myform textarea:focus{
    border-color: #e51d28;
}
.myform label{
    font-size: .875rem;
    color: #9E9E9E;
    margin-bottom: 5px;
}
.myform .btnsubmit{
    border: none;
    background-color: #e51d28;
    color: #fff;
    padding: 0 15px;
    width: 100%;
    height: 45px;
    cursor: pointer;
    border-radius: 0.3rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.myform .btnsubmit:hover{
    background-color: #F44336;
}



/*************FLIGHTS******************/
.innernav{
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    font-size: .875rem;
}
.innernav ul{
    display: flex;
    align-items: center;
    overflow: auto;
}
.innernav ul li{
    margin: 0 10px;
}
.innernav ul li a{
    color: #e51d28;
    background-color: #fff8f8;
    padding: 8px 20px;
    display: flex;
    white-space: nowrap;
    border-radius: .3rem .3rem 0 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.innernav ul li a:hover{
    background-color: #fde7e7;
}
.innernav ul li a .icon{
    margin-right: 8px;
}
.innernav ul li.active a{
    color: #fff;
    background-color: #e51d28;
}
.flightfilter{
    display: flex;
    flex-flow: wrap;
    background-color: #fff;
    padding: 10px 8px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    border-radius: 0.5rem;
    font-size: .875rem;
}
.flightfilter .inputcol {
    padding: 0 10px;
    flex: auto;
    margin: 8px 0;
}
.flightfilter .btncol{
    padding: 0 10px;
    max-width: 200px;
}
.innernav ul.typeselect{
    margin: 0 -5px;
    margin-bottom: 0.5rem;
}
.innernav ul.typeselect li{
    padding: 0 5px;
    margin: 0;
}
.innernav ul.typeselect li button{
    color: #666;
    padding: 3px 12px;
    border-radius: .3rem;
    background-color: rgb(229 29 40 / .1);
    font-size: .8rem;
    cursor: pointer;
    border: none;
}
.innernav ul.typeselect li button:hover{
    background-color: rgb(229 29 40 / .2);
}
.innernav ul.typeselect li button.active{
    background-color: #222;
    color: #fff;
}
.innernav ul.typeselect li button.active:before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    display: inline-flex;
    font-weight: 600;
    margin-right: 10px;
}
.selfilter{
    color: #666;
    padding: 0 10px;
    border-radius: 0.3rem;
    background-color: transparent;
    font-size: .8rem;
    cursor: pointer;
    border: 1px solid #ccc;
    height: 30px;
    outline: 0;
}
.daylist{
    display: flex;
    align-items: center;
}
.daylist li{
    padding: 0 5px;
}
.daylist li button {
    font-size: 12px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 0.3rem;
    background-color: #fff8f8;
    color: #e51d28;
    outline: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.daylist li button:hover,
.daylist li button:focus,
.daylist li.active button{ 
    background-color: rgb(229 29 40 / 20%);
}

.flylist{
    font-size: 1rem;
    overflow: auto;
}
.flylist .headrow,
.flylist .datarow{
    display: flex;
    align-items: center;
    flex-flow: nowrap;
    width: max-content;
    min-width: 100%;
    justify-content: space-between;
}
.flylist .headrow .col,
.flylist .datarow .col{
    min-width: 130px;
}
.flylist .headrow .col:first-child,
.flylist .datarow .col:first-child{
    min-width: 130px;
}
.flylist .headrow .col:last-child,
.flylist .datarow .col:last-child{
    min-width: 240px;
    position: relative;
}
.flylist .headrow{
    font-weight: 600;
}
.flylist .datarow{
    margin: 10px 0;
    background-color: #fff;
    border: 1px solid rgb(229 29 40 / 10%);
    padding: 15px 0;
    border-radius: 0.5rem;
    color: #666;
}
.flylist .datarow h6{
    display: none;
}
.flylist .datarow .flimg{
    display: flex;
    justify-content: center;
	padding:0;
	width:100px;
}
.flylist .datarow .flimg img{
    height: 50px;
}
.flylist .daylist{
    display: flex;
    font-size: .7rem;
    margin: 0 -2px;
}
.flylist .daylist li{
    background-color: #555;
    color: #fff;
    border-radius: .3rem;
    padding: 2px 5px 1px;
    margin: 0 2px;
}
.flylist .green{
    color: green;
}
.flylist .red{
    color: red;
}
.flylist .orange{
    color: orange;
}

@media(max-width:767px){
.flylist .headrow{
    display: none;
}
.flylist .datarow{
    flex-flow: wrap;
    width: 100%;
}
.flylist .datarow h6{
    display: block;
    font-size: .8rem;
    margin: 0;
}
.flylist .datarow .col{
    flex: 1 0 33.333%;
    max-width: 33.333%;
    min-width: auto;
    margin-bottom: 0.5rem;
}
.flylist .datarow .col:last-child{
    margin: 0;
    flex: 1 0 100%;
    max-width: 100%;
}
}

@media(max-width:575px){
.flightfilter .inputcol{
    width: 100%;
}
.flightfilter .btncol{
    max-width: 100%;
    width: 100%;
}
.flightfilter .btncol .btn{
    width: 100%;
}
.flightfilter .daylist{
    margin: 0 -5px;
    overflow: hidden;
    overflow-x: auto;
}
.flightfilter .daylist li{
    flex: 1 0 auto;
}
.flightfilter .daylist li button{
    width: 100%;
    height: 30px;
}
.innernav ul li{
    margin: 0 5px;
}
.innernav ul li a{
    padding: 8px 10px;
}
}

@media(max-width:420px){
.flylist .datarow .col{
    flex: 1 0 50%;
    max-width: 50%;
}
}

.text-in p{
    text-align: inherit !important;
}
.card-body{
    position: relative;
    padding: 15px;
}
.b-15{
    position: absolute;
    bottom: 18px;
}
p{
    color: #666;

}
.sub-head{
    padding-bottom: 10px;
}


.table-responsive{
    border-radius: .5rem;
    box-shadow: inset 0 0 0 1px #f1f1f1;
}
.mytable {
    border-collapse: collapse;
    width: 100%;
    display: inline-table;
}

.mytable th {
    font-weight: 600;
    background-color: rgb(229 29 40 / .1);
    color: #4e393a;
}
.mytable tbody{
    color: #666;
}
.mytable td, .mytable th {
  border: 1px solid #dddddd6b;
  text-align: left;
  padding: 10px;
}
.mytable tr{
    transition: 0.3s;
}
.mytable.hover tr:hover{
  cursor: pointer;
     background-color: #e51d2812;
}
.mytable.striped tr:nth-child(even) {
      background-color: #e51d2812;
}
.mytable p{
    margin-bottom: 0;
}
.trans-list{
    display: flex;
    margin: -10px;
}
.trans-list li{
    flex: 1 0 33.333%;
    max-width: 33.3333%;
        padding: 10px;
}
.trans-card{
       border-radius: 10px;
    overflow: hidden;
    /* background: #f0f0f0; */
    transition: 0.3s;
    box-shadow: 0px 13px 35px -28px rgb(31 31 31 / 41%);
/*        min-height: 410px;*/
}
.trans-con{
        padding: 15px 20px;
}
.trans-card:hover{
    transform: translateY(-5px);
        box-shadow: 0px 15px 28px -8px rgb(31 31 31 / 41%);
}
    
.trans-card img {
  transition: transform .5s ease;
}
.trans-img{
    overflow: hidden;
    position: relative;
}

.trans-img h5{
      background: #e51d289c;
    color: white;
    padding: 10px;
    border-radius: 8px;
    position: absolute;
    font-size: 1.1rem;
    bottom: 10px;
    left: 17px;
    /* display: flex; */
    width: 90%;
}
.trans-con p{

        margin-bottom: 18px;
}

  .cu-bx{
        display: flex;
    flex-flow: wrap;
  }
  .cu-bx1{
    padding: 10px;

    width: 50%;
 

  }
    .cu-bx1 p{
        margin-bottom: 0;
           text-align: center;
    
    border-radius: 8px;
    color: white;
    padding: 20px;
    background-image: url(../img/images/cu-bag.jpg);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
        background-size: cover;
    }
     .cu-bx1 p:before{
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        left: 0;
        right: 0;
        background-color: #000000cf;
        border-radius: 8px;
     }
     .cu-bx1 span{
        position: relative;
     }



.airline-details{
    display: flex;
}
.airline-bx{
    padding: 20px;
    justify-content: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.airline-bx img{
    /*margin: auto;*/
    margin-bottom: 15px;
    max-height: 40px;
    max-width: fit-content;
}
.airline-bx h5{
    font-size: 1rem;
    margin: 0;
}
.airline-bx a{
    font-size: 0.9rem;
}
.airline-head{
    display: flex;
}

.h-border{
    border-bottom: 1px dashed #d0d0d0;
    margin-bottom: 20px;
}
.f-end{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.air-details p{
    margin-bottom: 3px;
}

@media(max-width:575px){
.airline-bx{
    align-items: center;
}
}


/*accordion*/
/*rewriting default style*/
#accordion{width: 100%}
#accordion .card-body p{
    color: #666;
}
#accordion .card-body h6{
    font-size: 1rem;
    padding-bottom: 10px;
    position: relative;
}
#accordion .card-body h6:after{
        content: '';
    position: absolute;
    height: 3px;
    width: 35px;
    background-color: #e51d28;
    left: 0;
    border-radius: 8px;
    margin-top: 24px;
}





.card-link, .card-header, .acc-more{    transition: all .4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all .4s ease;}
.card-header {
    background-color: white;
    border-bottom: none;
    padding: 8px 1.25rem 8px 60px;
}



.gen-acco .card{ 
    border-radius: .3rem;
    margin-bottom: 15px;
    border: 1px solid #f1f1f1;
}


/*open*/
.gen-acco .card-link{display: block; background:#ffe0e2; color: #333;}

/*closed*/
.gen-acco .card-link.collapsed{color:#333 !important;background: #fff8f8; color: #333 !important }
.gen-acco .card-link.collapsed:hover{ background: #ffe0e2}




/*gen-acco*/
.gen-acco .card-header .card-link {
    padding:8px 30px 8px 60px;
    width: 100%;
    text-align: left;
    font-weight: 500; 
    position: relative;
}
.gen-acco .card-header .datelink{
    padding: 10px 15px;
}
.gen-acco .card-header .datelink .newbadge{
    position: absolute;
    right: 15px;
    top: -10px;
    font-size: 10px;
    background-color: #E91E63;
    color: #fff;
    padding: 2px 6px 0;
    border-radius: 1rem;
}
.gen-acco .card-header .datelink .accdate{
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background-color: rgb(229 29 40 / 8%);
    color: #e51d28;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 600;
    line-height: normal;
}
.gen-acco .card-header .datelink .title{
    margin: 0;
    margin-left: 100px;
    font-size: .875rem;
    font-weight: 600;
    padding-right: 15px;
}
.gen-acco .card-header{
    padding: 0;
    position: relative;
}
.ac-more-div{
    width: 44px;
    height:100%; 
    text-align: center; 
    background:rgb(229 29 40 / 8%); 
    position: absolute; 
    left: 0; 
    top:0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.acc-more{
    color:#e51d28;
    font-size: 16px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.collapsed .acc-more  { 
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}

.gen-acco .card-header .angle{
    position: absolute;
    right: 15px;
    color: #999;
    font-size: .8rem;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}
.gen-acco .card-header .angle.active{
    transform: rotateX(180deg);
}

.gen-acco .infolist{
    display: flex;
    flex-flow: column;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}
.gen-acco .infolist li i{
    color: #e51d28;
    margin-right: 8px;
    margin-top: -3px;
}
.gen-acco .infolist li span{
    margin-left: 6px;
}
.gen-acco .btn{
    padding: 8px 15px;
}

@media(max-width:575px){
.gen-acco .card-header .datelink .accdate{
    position: unset;
    justify-content: flex-start;
    background-color: transparent;
    margin-bottom: 3px;
}
.gen-acco .card-header .datelink .title{
    margin: 0;
}
}





.parking-list{
    display: flex;
    flex-flow: wrap;
    margin: -10px;
}
.parking-list li{
    flex: 1 0 33.3333%;
    padding-right: 20px;
    padding: 10px;
}

.parking-head{
        padding: 10px 12px;
    text-align: center;
    background-color: rgb(229 29 40 / .1);
    color: #e51d28;
    font-size: 1rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}
.parking-head i{
    margin-right: 8px;
}
.parking-con{
    padding: 10px 15px;
}
.parking-head img{
    width: 36px;
    margin-right: 10px;
}
.parking-table{
    width: 100%;
}
.parking-table th,.parking-table td{
    padding: 6px 0;
}
.pb-50{
    padding-bottom: 50px;
}
.parking-table td{
    color: #666;
}
.lost{
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    border:1px solid #f1f1f1;
    margin-bottom: 20px;
}
.lost-head{
    background: #e51d28;
    color: white;
    padding: 10px 30px;
    display: flex;
}
.lost-head img{
    margin-right: 10px;
    width: 24px;
}
.lost-con{
    padding: 0 30px;
}



.newsupdates{
   position: absolute;
    z-index: 1;
    bottom: 30px;
/*    left: 4rem;*/
    width: 520px;
    /* padding-right: 80px; */
    font-size: .85rem;
    overflow: hidden;
}
.newsupdates h6{
    color: #f7f7f7;
    font-size: .7rem;
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 0.3rem 0.3rem 0 0;
    margin: 0;
    margin-left: 10px;
    background-color: #e91e63;
    background: linear-gradient(90deg, #e91e63, #ff9800, #f44336, #ffc107);
    background-size: 400% 400%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.newsupdates a{
    display: flex;
    align-items: center;
    color: #ddd;
    background-color: rgba(0 0 0 / 60%);
    border-radius: 0.3rem;
}
.newsupdates a .date{
    display: inline-flex;
    color: #FF9800;
    padding: 0 10px;
    height: 30px;
    align-items: center;
    font-size: .7rem;
    border-right: 1px solid rgb(255 255 255 / 20%);
    width: 100px;
}
.newsupdates a .content {
    margin-left: 15px;
    height: 50px;
    display: flex;
    align-items: center;
        width: calc( 100% - 100px );
}
.newsnext, .newsprev{
    left: auto;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: rgb(3 169 244);
    border-radius: 50%;
    color: #fff !important;
    opacity: .75;
    margin: 0;
    top: auto;
    bottom: 0;
    transition: all .3s ease;
        box-shadow: none;
}
.newsnext:after, .newsprev:after{
        color: #fff !important;
}
.newsprev{
    right: 40px;
}
.newsnext:after, .newsprev:after{
    font-size: 1rem;
}
.newsnext:hover, .newsprev:hover{
    background-color: rgb(255 255 255 / 40%);
    opacity: 1;
}



.quicklist li:hover a{
    border: 1px solid #e51d28;
}
.news-all{
    color: #fff !important;
    background-color: #e51d28;
    padding: 8px 28px;
    border-radius: 0.5rem;
    /* text-align: center; */
    margin: auto;
    margin-top: 20px;
    transition: 0.3s;

}
.news-all a{
    color: white !important;
}
.news-all:hover{
    background-color: #3bc2ff;
}
.map-h{
    font-size: 1.7rem !important;
    padding-bottom: 1rem;
}
.airportmap p{
    max-width: 800px;
    text-align: center;
    font-size: 0.95rem;
    color: white;
}

@media(max-width:575px){
    .newsupdates {
    position: relative;
    /* position: absolute; */
    z-index: 1;
    bottom: -10px;
    /* left: 4rem; */
    width: 100%;
    padding: 0 30px;
    font-size: .85rem;
    overflow: hidden;
    /* margin: auto; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* flex-flow: column; */
    left: 0;
}
}



.gen-list {
    display: flex;
    flex-flow: column;
    padding-bottom: 25px;
    color: #666;
}
.gen-list li {
    position: relative;
    padding-left: 30px;
    margin: 5px 0;
}
.gen-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #e51d28;
    border: 1px solid #e51d28;
    position: absolute;
    left: 0;
    font-size: 10px;
    width: 16px;
    height: 16px;
    line-height: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 3px;
}
.num-list{
    display: flex;
    flex-flow: column;
    color: #666;
    padding-left: 15px;
    margin-top: 0;
    line-height: 1.8;
    font-size: .875rem;
}
.imi-head{
    background: #e51d28;
    max-width: fit-content;
    padding: 3px 8px;
    color: white;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 400;
}
.careers-list{
    display: flex;
    flex-flow: wrap;
    margin: -10px;
}
.careers-list li{
    padding: 10px;
}
.career-icon{
    
    padding: 10px 0;
        
}
.careers{
    padding: 25px 17px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 8%);
    background: #380808;
    color: white;
}
.career-icon img{
    width: 20px;
   margin-right: 10px;
}
.icon1{
    color: #ffffffcf;
    padding-bottom: 8px;
    font-size: 0.875rem;
    display: flex;
}
.career-btn{
    color: #e51d28;
    border-radius: 8px;
    border: 1px solid #e51d28;
    font-size: 0.9rem;
    transition: 0.3s;
    display: flex;
    max-width: 100px;
    height: 30px;
    justify-content: center;
    align-items: center;
}
.career-btn:hover{
    background-color: #e51d28;
    color: white;
}
.careers h5{
    color: #e9e9e9;
}

.mb-30{
    margin-bottom: 30px;
}
.job-apply{
        color: #fff;
    background-color: #e51d28;
    border: 1px solid transparent;
    padding: 6px 15px;
    border-radius: 0.5rem;
    border: 1px solid #e51d28;
    margin-right: 10px;
    font-size: 0.9rem;
    transition: 0.3s;
}
.job-back{
       color: #e51d28;
    background-color: transparent;
    border: 1px solid #e51d28;
    padding: 6px 15px;
    border-radius: 0.5rem;
    border: 1px solid #e51d28;
    margin-right: 10px;
    font-size: 0.9rem;
    transition: 0.3s;
}
.job-apply:hover {
    background-color: #F44336;
    border: 1px solid #F44336;
    color: white;
}
.job-back:hover {
    background-color: #F44336;
    border: 1px solid #F44336;
    color: white;
}
.add1{
    display: flex;
    padding-bottom: 20px;
}
.add1 p{
    margin-bottom: 0;
}
.add-icon{
    width: 45px;
}
.con-bag{
        background: #e51d28;
    border-radius: 50px;
    color: white;
    display: flex;
    height: 30px;
    width: 30px;
    font-size: .8rem;
    justify-content: center;
    align-items: center;
}
.a-center{
    display: flex;
    align-items: center;
}
.address{
    background: #e51d2826;
    padding: 20px 18px;
    border-radius: 8px;
}
.con-img{
    width: 500px;
    margin: auto;
}
.map iframe{
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 250px;
}
.still{
        font-size: 2rem;
    padding-bottom: 10px;
}
.still span{
        color: #e51d28;
}
.still1:before{
     position: absolute;
    content: '';
    height: 180px;
    width: 325px;
    background-color: #e7f2ff;
    border-radius: 0 10px 10px 0;
    z-index: -1;
}
.still1{
    height: 100%;
    display: flex;
    align-items: center;
}
.news-list{
    display: flex;
    flex-flow: wrap;
    margin: -10px;
}
.news-list li{
    padding: 10px;
}
.news-list .mycard:hover .morebtn i{
    animation: moveRight 1s infinite;
}
.news-img{
    border-radius: 10px;
}
.news-date{
    color: #e51d28;
    font-size: .8rem;
    display: inline-block;
    font-weight: 600;
}
.gallery-list{
    display: flex;
    flex-flow: wrap;
    margin: -10px;
}
.gallery-list li{
    flex: 1 0 25%;
    max-width: 25%;
    padding: 10px;
}
.gallery-list li .destcard{
    max-height: none;
}

.in-gallery-list{
    display: flex;
    flex-flow: wrap;
    margin: -10px;
}
.in-gallery-list li{
    flex: 1 0 25%;
    max-width: 25%;
    padding: 10px;
}
.ingallery{
    display: flex;
    flex-flow: wrap;
    margin: -15px;
}
.ingallery .galcol{
    padding: 15px;
}
.galimg{
    position: relative;
    max-height: 200px;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    height: 100%;
    cursor: zoom-in;
    display: flex;
    border: 1px solid #f1f1f1;
}
.galimg .imgover {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 50%;
    font-size: .875rem;
    padding: 10px;
    background: rgba(0,0,0,.4);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
    display: flex;
    align-items: flex-end;
    color: #fff;
}
.galimg .imgover p{
    color: #fff !important;
    margin-bottom: 0;
}
.galimg:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.galimg:after{
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0 0 0 / .25);
    opacity: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.galimg:hover:after{
    opacity: 1;
}
.galimg.video:after{
    opacity: 1;
    content: '\f144';
    font-size: 2.5rem;
}
.galimg.pdf:after{
    opacity: 1;
    content: '\f1c1';
    font-size: 2.5rem;
}
.galimg .imgholder{
    display: flex;
    width: 100%;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.galimg:hover .imgholder{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.ingallery .destcard{
    max-height: none;
}


.gallery {
    display: flex;
    position: relative;
    height: 100%;
}

.gallery .gallery-overlay {
  background: rgb(0 0 0 / 52%);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 8px;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.gallery:hover .gallery-overlay{
  opacity: 1;
}


.fa-image{
        font-size: 2rem;
    color: white;
}

.gallery-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.gallery:hover .gallery-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}



.fadeIn-bottom{
  top: 80%;
}
.gallery-image{
    border-radius: 8px;
    box-shadow: 6px 5px 20px #00000024;
}
.gallery-bag{
        background: #fef3f4;
}
.gallery-head{
    text-align: center;
    padding-bottom: 15px;
}








.airsearch{
    position: relative;
    margin-bottom: 20px;
}
.airsearch input{
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ededed;
    outline: 0;
    border-radius: 0.3rem;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    padding-right: 40px;
}
.airsearch input:focus{
    border-color: #ccc;
}
.airsearch button{
    width: 40px;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    font-size: 1rem;
    background-color: transparent;
    color: #666;
}
.airsearch button:hover{
    color: #e51d28;
}



/*******CARDLIST***********/
.cardlist{
    display: flex;
    flex-flow: wrap;
    margin: 0 -10px;
}
.cardlist .cardcol{
    flex: 1 0 20%;
    max-width: 20%;
    padding: 10px;
    width:100%;
}
.cardlist .cardcol.big{
    max-width: 300px;
}
.cardlist .cardcol.large{
    max-width: 350px;
}
.cardlist .cardcol .mycard:hover .cardimg img{
    transform: none;
}
.cardlist .cardcol .mycard.focus{
    background-color: rgb(229 29 40 / .1);
}
.cardlist .cardcol .cardcont{
    padding: 10px;
    text-align: center;
}
.cardlist .cardcol .cardcont h5{
    margin-bottom: 0;
    font-size: .9rem;
}
.cardlist .cardcol .cardcont p{
    margin-bottom: 0;
    font-size: .8rem;
    color: #215d7a;
    font-weight: 600;
    max-height: none;
}
.cardlist .cardcol .cardcont p span{
    display: block;
    color: #666;
    font-weight: 400;
}

.imgop30{
    opacity: .3;
}

@media(max-width:991px){
.cardlist .cardcol{
    flex: 1 0 25%;
    max-width: 25%;
}
}

@media(max-width:767px){
.cardlist .cardcol{
    flex: 1 0 33.333%;
    max-width: 33.333%;
}
}

@media(max-width:575px){
.cardlist .cardcol{
    flex: 1 0 50%;
    max-width: 50%;
}
}


/********NUMBER-LIST************/
.numblist{
    display: flex;
    flex-flow: wrap;
    margin: 0 -10px;
}
.numblist li{
    flex: 1 0 25%;
    max-width: 25%;
    padding: 10px;
}
.numblist li .numbox{
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 10px;
    text-align: center;
    border-radius: 0.3rem;
    height: 100%;
    border: 1px solid #f1f1f1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.numblist li .numbox p{
    margin-bottom: 0;
}
.numblist li .numbox .value{
    font-size: 2rem;
    font-weight: 800;
    color: #e51d28;
}
.numblist li .numbox p span{
    display: block;
    font-size: .75rem;
}

@media(max-width:767px){
.numblist li{
    flex: 1 0 50%;
    max-width: 50%;
}    
}


.imgbox{
    border-radius: .5rem;
    overflow: hidden;
    padding: 0;
}
.imgbox img{
    width: 100%;
}

.tabnote{
    color: #999;
    font-style: italic;
}




/*=========MAP=========*/
.kial-map{
    width: 100%;
    height: 100%;
    border: none;
}
.map-container{
    height:500px;
    width: 100%;
    background-color: white;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
}

.reccocon{
    background-color: #fef3f4;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.headrow{
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
}



.tabbed-content .nav-tabs {
    display:none;
}
.tabbed-content .nav-tabs li{
    margin-bottom: .5rem;
}
.tabbed-content .nav-tabs .nav-link{
    padding: 8px 15px;
    border-radius: 0.3rem;
    color: #666;
    border: none;
    font-size: .8rem;
    font-weight: 600;
    background-color: rgb(229 29 40 / .1);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.tabbed-content .nav-tabs .nav-link i{
    margin-right: .5rem;
    transition: none;
}
.tabbed-content .nav-tabs li:first-child .nav-link{
    border-left: 1px solid #ddd;
}
.tabbed-content .nav-tabs .nav-item.show .nav-link,.tabbed-content .nav-tabs .nav-link.active{
    color: #fff;
    background-color: rgb(229 29 40);
}
.tabbed-content .nav-tabs .nav-link img{
    width: 2rem;
    margin-right: .5rem;
}


@media(max-width:1200px){
.tabbed-content .tab-content .ingallery .galcol{
    flex: 1 0 33.333%;
    max-width: 33.333%;
}
}

@media(max-width:991px){
.tabbed-content .tab-content .ingallery .galcol{
    flex: 1 0 50%;
    max-width: 50%;
}
}

@media(max-width:380px){
.tabbed-content .tab-content .ingallery .galcol{
    flex: 1 0 100%;
    max-width: 100%;
}
}


.tabbed-content .card .collapse{
    display:block;
}


@media(min-width:768px) {
.tabbed-content{
    display: flex;
    flex-flow: wrap;
}
.tabbed-content .nav-tabs {
    width: 280px;
    display: flex;
    flex-flow: column;
    border: none;
}

.tabbed-content .tab-content{
    width: calc(100% - 280px);
}

.tabbed-content .card {
    border: none;
}

.tabbed-content .card .card-header {
    display:none;
}  
.tabbed-content .card .card-body{
    padding-top: 0;
}
.tabbed-content .card .gen-acco .card-body{
    padding-top: 15px;
}

.tabbed-content .card .gen-acco .card-header{
    display: block;
}


.tabbed-content .card .gen-acco .collapse:not(.show){
    display: none;
}
.tabbed-content .card .gen-acco .card{
    border: 1px solid #f1f1f1;
}

.tabbed-content .myaccordion .card {
    border: none;
}

.tabbed-content .myaccordion .card .card-header {
    display:block;
}  

.tabbed-content .myaccordion .card .collapse{
    display: block;
    border: none;
}
.tabbed-content .myaccordion .card .collapse:not(.show){
    display:none;
    border: 1px solid #ddd;
    border-top: none;
}
.tabbed-content .myaccordion .tab-content > .tab-pane {
    display: block !important;
    opacity: 1;
}
}

@media(max-width:767px){
.tabbed-content .nav-tabs{
    display: flex;
    flex-flow: nowrap;
    overflow: hidden;
    overflow-x: auto;
    border: none;
    margin: 0 -5px;
}
.tabbed-content .nav-tabs li{
    padding: 0 5px;
    flex: none;
}

.tabbed-content .card-header button, .tabbed-content .card-header button:focus{
    padding: 8px 15px;
    border-radius: 0.3rem;
    color: #666;
    border: none;
    font-size: .8rem;
    font-weight: 600;
    background-color: rgb(229 29 40 / .1);
    display: flex;
    align-items: center;
    width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.tabbed-content .card-header button:hover{
    color: #e51d28;
}
.tabbed-content .card-header button i{
    margin-right: .5rem;
    color: #e51d28;
}
.tabbed-content .card-header button:hover i{
    color: #333;
}
.tabbed-content .card-header {
    padding: 0;
    margin-bottom: 0 !important;
}
.tabbed-content .card {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.1) !important;
    border-radius: .5rem !important;
    color: #666;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
}




.intabnav{
    justify-content: center;
    flex-flow: nowrap;
    overflow: hidden;
    overflow-x: auto;
}
.intabnav li.nav-item{
    flex: none;
}

@media(max-width:767px){
.intabnav{
    justify-content: flex-start;
}
}


.stickysec{
    position: sticky;
    top: 100px;
}



.pdftoolbar button{
    display: inline-flex;
    align-items: center;
    margin: 5px;
    background-color: rgb(229 29 40 / .1);
    color: #e51d28;
}
.pdftoolbar button:hover{
    background-color: rgb(229 29 40 / .2);
    color: #8b0d13;
}
.pdftoolbar i {
    font-size: 20px;
    margin:0;
}
.pdftoolbar span {
    margin-right: 0.5em;
    margin-left: 0.5em;
    width: 4em !important;
    font-size: 12px;
    text-align: center;
}
.pdftoolbar .btn-sm {
    padding: 0.12rem 0.25rem;

}
.pdftoolbar {
    width: 100%;
    height: auto;
    background: #ffefef;
    padding: 6px 0;
    border-radius: 0.5rem 0.5rem 0 0;
}
.pdfjs-viewer{
    height: 750px;
    border-radius: 0 0 0.5rem 0.5rem;
}
.pdfoptions{
    display: flex;
    flex-flow: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
    max-width: 700px;
    margin: auto;
}

.daylist li.btnli{
    background:transparent;
    padding:0;
}
.daylist li .infobtn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: .7rem;
    background-color: #e51d28;
    color: #fff;
    opacity: .6;
}
.daylist li .infobtn:focus,
.daylist li .infobtn:hover{
    background-color:#b3000a;
}
.tooltip{
    font-size: .8rem;
}


/*-----------------PROCEDURE-------------------*/

.stepcard .icon{
    width: 40px;
    margin-bottom: 1rem;
}
.stepcard .steps{
    position: unset;
    display: inline-flex;
    font-weight: 500;
}
.stepcard h3{
    font-size: 1.2rem;
}
.stepcard .stepmenu{
    display: flex;
    flex-flow: column;
}
.stepcard .stepmenu li a{
    color: #666;
    display: flex;
    padding: 5px 15px;
    padding-right: 30px;
    background-color: #fbfbfb;
    border: 1px solid #eee;
    border-radius: 0.3rem;
    margin: 3px 0;
    position: relative;
}
.stepcard .stepmenu li a:hover{
    background-color: #fff;
    color: #333;
}
.stepcard .stepmenu li a:after{
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    position: absolute;
    right: 0;
    top: 0;
    font-size: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 100%;
    background-color: rgb(229 29 40 / 5%);
    border-radius: 0.3rem;
    color: #e41d28;
}


/*-----------------SECURITY-------------------*/
.prodbox{
    display: flex;
    flex-flow: column;
}
.prodbox .proimg{
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #eee;
    margin-bottom: 10px;
}
.prodbox .proimg img{
    width: 100%;
}
.prodbox .proname{
    margin-bottom: 1rem;
    font-size: .85rem;
    line-height: normal;
}



/*---------------AIRLINE-DETAILS-----------------*/
.airlogo{
    width: 200px;
    padding: 0 15px;
}
.airlogo img{
    width: 100%;
    border: 1px solid rgb(229 29 40 / .1);
    padding: 10px;
    border-radius: 0.3rem;
}
.airmenu{
    padding: 0 15px;
    flex: 1 0;
}
.airmenu .airlinks{
    display: flex;
    flex-flow: nowrap;
    justify-content: flex-end;
    margin: 0 -10px;
}
.airmenu .airlinks li{
    padding: 0 10px;
}
.airmenu .airlinks li a{
    padding: 8px 15px;
    border-radius: 0.3rem;
    color: #e51d28;
    border: none;
    font-size: .8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    background-color: rgb(229 29 40 / .2);
}
.airmenu .airlinks li a:hover{
    color: #333;
    background-color: rgb(229 29 40 / .1);
}

@media(max-width:991px){
.airdetnav{
    flex-flow: column;
}
.airmenu .airlinks{
    justify-content: flex-start;
    margin-top: 1rem;
}
}



/*---------------HISTORY----------------*/
.history{
    display: flex;
    flex-flow: column;
}
.history .histbox{
    display: flex;
    flex-flow: column;
}
.histbox .histyear{
    flex: 1 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 0;
}
.histbox .histyear:before,
.histbox .histyear:after{
    content: '';
    position: absolute;
    left: 0;
    right:0;
    margin: auto;
    height: 44px;
    width: 0;
    border-right: 2px dashed black;
    opacity: .2;
}
.histbox .histyear:before{
    top:0;
}
.histbox .histyear:after{
    bottom: 0;
}
.histbox .histdet{
    flex: 1 0 70%;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.histbox .histyear .yearbox .icon {
    position: absolute;
    top: 44px;
    width:32px;
    height:32px;
    border-radius:1rem;
    color: #000;
    background-color: #fff;
    display:flex;
    align-items: center;
    justify-content: center;
    font-size:.8rem;
    box-shadow: 0 0 15px rgb(0 0 0 / 15%);
    animation: pulse 1s infinite;
}
.histbox .histyear .yearbox{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgb(229 29 40 / 5%);
    color: #e51d28;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    box-shadow: 0 0 0 5px rgb(229 29 40 / 20%)
}
.histbox .histyear .yearbox h3{
    margin: 0;
}
.histvideo{
    border-radius: .5rem;
    overflow: hidden;
    width: 600px;
    max-width: 100%;
    margin: auto;
    cursor: pointer;
}
.histvideo .videocon{
    position: relative;
}
.histvideo .videocon:after{
    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgb(0 0 0 / 50%);
}

@media(max-width: 575px){
.histbox .histyear .yearbox{
    width: 120px;
    height: 120px;
}
}

.bod.cardlist .cardcol{
    max-width:180px;
}
.bod.cardlist .cardcol h5{
    font-size:.8rem;
}


.unisearch{
    display: flex;
    height: 30px;
    position: relative;
    width: 220px;
}
.unisearch input{
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: 0;
    background-color: transparent;
    padding-right: 30px;
}
.unisearch .srbtn{
    width: 30px;
    background-color: transparent;
    color: #e51d28;
    border-radius: 0.3rem;
    position: absolute;
    right: 0;
    height: 100%;
}
.unisearch .srbtn:hover{
    color: #333;
}

@media(max-width:1050px){
.innernav{
    flex-flow:column;
}
.unisearch{
    margin:10px 0;
}
}

.mycol{
	flex:1 0 50%;
}


.event-head{
        display: flex;
    justify-content: space-between;
}


.event-head .head1{
        width: calc( 100% - 500px );
}

.event-head .head2{
            width: 500px;
    display: flex;
    gap: 10px;
}


.t-list{
    margin: 30px 0;
}

.t-list li{
        padding: 20px 0;
    /* border-top: 1px solid red; */
    border-bottom: 1px dashed #00000029;
}

.t-head{
        display: flex;
    gap: 35px;
}

.t-head p:nth-child(1){
        border-right: 1px solid #00000024;
    padding-right: 25px;
}

.t-head p{
        font-weight: 700;
    color: #da2128;
}

@media(max-width: 767px){
    .t-head {
    display: block;
    
}
.t-head p:nth-child(1){
        border-right: none;
        margin-bottom: 0;
}
}


.eve{
	width: 900px	
}
.head2 .select-options li {
    padding: 8px 8px;
}


@media(max-width: 767px){
    .event-head {
    display: block;
}
	.event-head .head2 {
    display: block;
		    display: block;
    width: 100%;
}
	.eve {
    width: 100%;
}
	.theyyam ul{
    max-width: 100%;
		}
	.theyyam ul li{
    text-indent: 0;
    padding-left: 18px !important;
		}
	
	
	    
	
	
}


.ingallery.zoom .mycard:hover img{
			transform: scale(1.1) !important;
		}





.arts .float-right{
			       width: 400px;
    border-radius: .3rem;
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    z-index: 9;
	    margin-top: 10px;
		}

.arts .fa-image{
position: absolute;
    z-index: 9;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.3rem;
    background-color: #e51d28;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
	transition: .3s;
	cursor: pointer;
}
.arts .fa-image:hover{
	    background-color: #b3111a;

}

.artbg{
    min-height: 300px;
    margin-bottom: 20px;
    border-radius: .5rem;
    background-position: center;
	position: relative;
	cursor: pointer;
	    background-size: cover;
}
		
		
		
		
		
		
		@media(max-width: 767px){
		.arts .float-right{
			    width: 100%;
		}
		
		}
		
		.arts p{
			text-align: justify;
		}
		.arts .head-sec{
			
			padding-bottom: 10px;
		}
		.arts .head-sec p{
		          margin-bottom: 0;
    /* background-color: #e51d281c; */
    padding: 5px 3px;
    border-radius: 1rem;
    color: #333;
    font-size: 1.1rem;
    /* border: 1px solid #0000001f; */
    font-weight: 700;
		}
		.arts .head-sec p i{
		color: #e51d28;
			font-size: 1rem;
			
		}
		
	
		
		
		
		.arts .gen-list{
		text-align: justify;
		}





.blogimg{
	height:500px;	
}
.blogimg img{
	width:100%;
	height:100%;
	object-fit:cover;
}

@media(max-width:1400px){
	.blogimg{
		height:380px;
	}
}
@media(max-width:767px){
	.blogimg{
		height:340px;
	}
}
@media(max-width:575px){
	.blogimg{
		height:300px;
	}
}
@media(max-width:420px){
	.blogimg{
		height:250px;
	}
}

.bloginfo{
	display:flex;
	flex-flow:wrap;
    align-items: center;
	column-gap:15px;
    font-size: .875rem;
    margin-bottom: 15px;
	color:#666;
}
.blohead{
	font-weight: 800;
    font-size: 2rem;
}
.bloginfo .blocat{
    display: flex;
    padding: 2px 10px;
    color: #666;
    border-radius: .3rem;
    background-color: rgb(229 29 40 / 8%);
    border: 1px solid rgb(229 29 40 / 15%);
}

@media(max-width:575px){
	.blohead{
		font-weight: 700;
		font-size: 1.5rem;
	}
}

.sidebox{
    padding: 20px;
    border-radius: .3rem;
    background-color: #f9f0f1;
}
.sidebox .hdcol{
	display:flex;
	flex-flow:wrap;
	justify-content:space-between;
}
.sidebox .labelist{
	display:flex;
	flex-flow:wrap;
    row-gap: 8px;
    column-gap: 10px;
}
.sidebox .labelist li a{
	display:flex;	
    padding: 4px 10px;
    color: #666;
    border-radius: .3rem;
    background-color: rgb(229 29 40 / 8%);
}
.sidebox .labelist li a:hover{
    background-color: #e51d28;
	color:#fff;
}



.shareArticle {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
	gap:15px;
}

.shareSocial {
  display: flex;
  flex-flow: wrap;
  align-items: center;
	gap:5px;
}

.shareSocial .socialTitle {
    margin: 0;
    font-size: 1rem;
    opacity: .75;
}

.shareSocial .socialList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  justify-content: center;
  flex-flow: row wrap;
}
.shareSocial .socialList li {
  margin: 5px;
}
.shareSocial .socialList li:first-child {
  padding-left: 0;
}
.shareSocial .socialList li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-decoration: none;
  background-color: #999;
  color: #fff;
  transition: 0.35s;
}
.shareSocial .socialList li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: top left;
  transform: scale(1) translate(-50%, -50%);
  transition: 0.35s;
}
.shareSocial .socialList li a:hover i {
  transform: scale(1.5) translate(-50%, -50%);
}
.shareSocial .socialList li:nth-child(1) a {
  background-color: #135cb6;
}
.shareSocial .socialList li:nth-child(2) a {
  background-color: #000;
}
.shareSocial .socialList li:nth-child(3) a {
   background: #833ab4;
  background: linear-gradient( to right, #833ab4,#fd1d1d,#fcb045);
}
.shareSocial .socialList li:nth-child(4) a {
  background-color: #697f89;
}
.shareSocial .socialList li:nth-child(5) a {
  background-color: #25D366;
}

.shareLink .permalink {
  position: relative;
	overflow:hidden;
}
.shareLink .permalink .textLink {
    padding: 12px 60px 12px 15px;
    height: 45px;
    width: 450px;
    max-width: 100%;
    font-size: 16px;
    color: #494949;
    border-radius: .3rem;
    border: 1px solid #f2f2f2;
    background-color: #f2f2f2;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .shareLink,
.shareLink .permalink .textLink {
    width: 100%;
  }
}
.shareLink .permalink .textLink:focus {
  border-color: #d8d8d8;
}
.shareLink .permalink .textLink::-moz-selection,
.shareLink .permalink .textLink::selection {
  color: #fff;
  background-color: #000;
}
.shareLink .permalink .copyLink {
  position: absolute;
  top: 50%;
  right: 20px;
  cursor: pointer;
  transform: translateY(-50%);
}
.shareLink .permalink .copyLink:hover:after {
  opacity: 1;
  transform: translateY(0) translateX(-50%);
}
.shareLink .permalink .copyLink:after {
  content: attr(tooltip);
  width: 140px;
  bottom: -40px;
  left: 50%;
  padding: 5px;
  border-radius: 4px;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-10px) translateX(-50%);
  transition: all 300ms ease;
  text-align: center;
}
.shareLink .permalink .copyLink i {
  font-size: 20px;
  color: #e51d28;
}
.route{
	margin-bottom: 0;
    background: #fce8e9;
    padding: 20px;
    border-radius: 10px;
    border: 3px solid #e51d2826;
	   position: relative;
}
.newflash {
    color: #fff;
    padding: 3px 10px;
    border-radius: 0.3rem;
    background: linear-gradient(90deg, #E91E63, #ffd400, #e91e72, #FFC107);
    background-size: 400% 400%;
    animation: gradient 3s ease infinite;
    font-size: .8rem;
    /* margin-top: -15px; */
    position: absolute;
    top: -13px;
    right: 10px;
}

@keyframes gradient{
0% {
    background-position: 0% 50%;
}
50% {
    background-position: 100% 50%;
}
100% {
    background-position: 0% 50%;
}
}


