body{background-color: #f5f5f5; font-family: 'Roboto', sans-serif;}

/*Reset Media Query Start*/
@media (min-width: 768px){
  .container{width: 100%; max-width: 100%;}
}
@media (min-width: 992px){
  .container{width: 98%; max-width: 98%;}
}
@media (min-width: 1200px){
  .container{width: 99%; max-width: 99%;}
}
@media (min-width: 1400px){
  .container{max-width: 1430px;}
}
/*Reset Media Query End*/

/*Common CSS Start*/
a{color: #2196f3;} 
.bg-white{background-color: #FFF;}
.section{width: 100%; overflow: hidden;}
.h-70{height: 70px;}
.p-20{padding: 20px;}
.pr-20{padding-right: 20px;}
.pl-20{padding-left: 20px;}
.mb-20{margin-bottom: 20px;}
.pb-20{padding-bottom: 20px;}
.head{box-shadow: inset 0 -1px 0 #ececec;}

/*Common CSS Start*/

/*Buttons CSS Start*/
.btn-loadmore{
    width: 330px;
    line-height: 30px;
    height: 32px;
    padding: 0 11px;
    background: #000;
    border-color: #000;
    border-radius: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 auto;
}
.btn-loadmore:hover{
    border-color: #2196f3;
    background-color: #2196f3;
}
/*Buttons CSS Start*/

/*Lazyload CSS Start*/
.lazyload {
    opacity: 0;
}
.lazyloading {
  /*  opacity: 1;
    transition: 600ms opacity;*/
   -webkit-animation-duration: 1.25s;
          animation-duration: 1.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
          animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: #F6F6F6;
  background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #dadada 33%);
  background-size: 800px 104px;
  height: 100%;
  position: relative;
}
.lazyloaded {
    opacity: 1;
    transition: 10ms opacity;
}
@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*Lazyload CSS End*/

/*Scroll to Top Start*/
#scroll-to-top{
    position: fixed;
    bottom: 40px;
    right: 15px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 45px;
    background: #212121;
    color: #fff;
    display: block;
    z-index: 29999;
    box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
    border: 0;
    transition: all .3s;
}
#scroll-to-top i {
    font-size: 25px;
}
#scroll-to-top:hover {
    background-color: #2196f3;
}
/*Scroll to Top Emd*/

/*Mega Menu Start*/
.main-menu.fixed{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
.main-navigation{
    font-family: 'Open Sans', sans-serif; 
}
.main-navigation a{
  font-weight: 700;
  color: #111;
  display: inline-block;
}
.main-navigation ul{
  display: block;
  margin: 0;
  padding: 0;
}
.main-navigation li {
    display: inline-block;
    position: relative;
    line-height: 26px;
}
.main-navigation li a{
    text-decoration: none;
    text-transform: uppercase;
}
.main-navigation li.menu-item > a{
  height: 90px;
  display: block;
}
.main-navigation .menu li.mega-menu {
    position: static !important;
}
.main-navigation ul li, .main-navigation ol li {
    margin-bottom: 0;
    margin-left: 0;
    list-style: none;
}
.main-navigation > ul:not(.children) > li {
    float: left;
}
.main-navigation > ul:not(.children) > li > a {
    font-size: 13px;
    padding: 0 18px;
}
.main-menu .main-navigation .menu > li > a {
    padding-top: 24px;
    padding-bottom: 0;
    line-height: 66px;
    position: relative;
}
.main-navigation .menu > li > a > .fa {
    position: absolute;
    width: 100%;
    top: 24px;
    left: 0;
    text-align: center;
    margin-right: 0;
    font-size: 16px;
}
.main-navigation li.menu-item-has-children > a:after{
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f107";
    position: absolute;
    width: 100%;
    left: 0;
    margin: 0;
    text-align: center;
    bottom: 0;
    display: inline-block;
    line-height: 26px;
    font-size: 13px;
    padding-left: 0;
}
.main-navigation > ul:not(.children) > li.current-menu-item > a{
    background-color: #2196f3;
    color: #ffffff;
}
.main-navigation > ul:not(.children) > li:hover > a, .main-navigation > ul:not(.children) > li:hover > a{
    background-color: #2196f3;
    color: #ffffff;
}

/*Single Sub menu*/
.main-navigation ul ul {
    transition: all .27s ease-in-out;
    transform-origin: 0 0;
    transform: rotateX(-90deg);
    box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
    float: left;
    text-align: left;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    margin-top: -1px;
    padding: 10px 0;
    visibility: hidden;
    z-index: 99999;
    transition: all .3s ease-in-out;
    background-color: #fff;
}
.main-navigation ul li:hover > ul {
    transform: rotateX(0deg);
}
.main-navigation > ul:not(.children) > li ul.sub-menu {
    border-top: 3px solid #2196f3;
}
.main-navigation ul li:hover > ul, .main-navigation ul li.active > ul {
    opacity: 1;
    visibility: visible;
}
.main-navigation ul ul a {
    font-size: 13px;
    width: 220px;
    padding: 6px 18px;
    line-height: 1.35;
}
.main-navigation ul li:not(.mega-menu ) ul a:hover{
  color: #2196f3;
}

/*Heavy Sub menu*/
.main-navigation .sub-menu-item{
  display: block;
}
.main-navigation .megamenu a:hover, .main-navigation .megamenu .mega-cat-child.active{
    color: #2196f3;
}
.main-navigation .menu li.mega-menu > ul.sub-menu{
    display: block;
    width: 100%!important;
    left: 0;
    padding: 0!important;
    clear: both;
    margin-right: 0;
    background: #fff;
    overflow: hidden;
    margin-bottom: -1px;
}
.main-navigation .megamenu {
    width: 100%;
    margin-bottom: -1px;
    overflow: hidden;
    display: table;
    margin-left: auto;
    margin-right: auto;
}
.main-navigation .megamenu .categories{
    width: 16.66667%;
    display: table-cell;
    vertical-align: top;
    background: #fff;
    padding: 10px 0;
    position: relative;
}
.main-navigation .megamenu .categories:after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ECECEC;
}
.main-navigation .megamenu .categories a{
    min-width: 0;
    display: block;
    font-size: 13px;
    text-align: left;
    line-height: 1.3;
    margin:10px 0;
    padding: 0;
    position: relative;
    width: 100%;
    background-color: inherit;
    cursor: pointer;
}
.main-navigation .megamenu .categories a span {
    position: relative;
    z-index: 2;
    background-color: inherit;
    display: inline-block;
    padding: 0 20px;
}
.main-navigation .megamenu .categories a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    margin-left: 20px;
    margin-top: -.5px;
    transition: width,0.4s ease-in-out;
    border-bottom: 1px solid;
    width: 0;
    opacity: .3;
    right: 0;
    color: inherit;
}
.main-navigation .megamenu .categories a:hover:after {
    width: calc(100% + 20px);
}

.main-navigation .megamenu .content-megamenu {
    display: table-cell;
}
.mega-menu .megamenu .post{
  width: 16.66%;
}
.mega-menu.left-category .megamenu .post{
  width: 20%;
}

.main-navigation .tabcontent{
    display: none;
}
/*.main-navigation .left-category:hover .tabcontent.active{
    display: block !important;
}*/

.right-head{display: flex;}
.socialbox{display: flex; align-items: center; padding-right: 10px;}

/*Mega Menu End*/


/*Social Links Start*/
.social-links{display: inline-block; margin:0px;padding: 0px}
.social-links li{list-style: none; float: left;}
.social-links li a{color: #111; font-size: 15px; display: block;text-align: center; transition: all 0.5s ease-in-out; margin:0 15px 0 0;}
.social-links li a:hover{opacity: 0.8;}
/*Social Links End*/

/*Search Form Start*/
.searchbox{
  position: relative;
  z-index: 999;
}
.searchbox .btn-search{
  height: 100%;
  width: 60px;
  background-color: #2196f3;
  color: #FFF;
  font-size: 16px;
}
.searchbox .search-modal{
  visibility: hidden;
  opacity: 1;
  width: 300px;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #FFF;
  border-top: 3px solid #2196f3;
  padding: 20px;
  transition: all .27s ease-in-out;
  transform-origin: 0 0;
  transform: rotateX(-90deg);
}
.searchbox .search-modal .btn{
  position: absolute;
  right: 21px;
  top: 21px;
}
.searchbox.active .search-modal{
  visibility: visible;
  opacity: 1;
  transform: rotateX(0deg);
}
.searchbox.active .btn-search .fa-search:before{
    content:"\f00d";
}
/*Search Form End*/


/*Mobile Header Start*/
.mobile-menu{
    margin-top: 20px;
    box-shadow: 0 1px 5px rgb(190 190 190 / 46%);
}
.mobile-menu .inner{
    height: 54px;
    position: relative;
}
.mobile-menu .searchbox{
    position: absolute;
    right: 0;
    height: 100%;
}
.mobile-menu .searchbox .btn-search{
    width: 54px;
}
.mobile-menu .btn-link{
    font-size: 24px;
    color: #313131;
    outline: 0;
    position: absolute;
    left: 0;
}
.mobile-menu .offcanvas-start{
    width: 270px;
}
.mobile-menu .offcanvas-body{
    padding: 30px 20px 20px;
}
.mobile-menu .close-canvas{
    position: absolute;
    left: 280px;
    top: 15px;
    background-color: #fff;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 100%;
    border: 0;
    font-size: 14px;
}
.mobile-menu .offcanvas-backdrop.show{
        opacity: .8;
}
/*Mobile Header End*/


/*Post Card CSS Start*/
.postimg{
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 2;
}
.postimg:before{
	display: block;
    content: "";
    width: 100%;
    padding-top: 66.6667%;
    z-index: 1;
}
.post{
	position: relative;
	width: 25%;
	float: left;
}

.post-category-name{
	background-color: #009688;
	background: #111;
	padding: 0 5px;
	color: #fff;
	font-size: 10px;
	position: absolute;
	left: 10px;
	top: 10px;
	text-decoration: none;
	z-index:4;
	transition: all 0.5s ease-in-out;
}
.post:hover .post-category-name{
	background-color: #009688;
}
.post .link{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: block;
	z-index: 3;
}
.card-overly:after{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
    bottom: 0;
    right: 0;
    background: linear-gradient(to bottom,transparent 50%,#137abf 90%);
    opacity: .6;
    transition: opacity .3s;
    z-index: 2;
}
.card-overly:hover:after{
	opacity: .8;
}
.post-footer{
    width: 100%;
    margin-top: 11px;
}
.post-footer .post-title{
	font-size: 14px;
    line-height: 1.25;
}
.post-footer a{
  color: #000;
	text-decoration: none;
}
.post-footer a:hover{
  color: #009688 !important;
}
.post-footer .post-meta{
	margin: 0;
	font-size: 12px;
	color: #999;
}
.post-footer .post-meta i{
	margin-right: 3px;
}
.post-footer .post-meta a{
    color: #999;
}
.post-footer .meta-info{
	margin-right: 10px;
}
.post-footer .post-excerpt{
	font-size: 14px;
	color: #ccc;
	line-height: 1.71;
	font-weight: 400;
	margin-top: 10px;
}
    .post-footer .post-excerpt-2 {
        font-size: 14px;
        color: #999;
        line-height: 1.50;
        font-weight: 400;
        margin-top: 10px;
    }

/*Post Card CSS End*/

/*Post Style 1 Start*/
.post-style1 .post-footer{
	position: absolute;
    bottom: 0;
    z-index: 30;
    padding: 14px 20px;
}
.post-style1 .post-footer .post-title{
	font-size: 20px;
}
.post-style1 .post-footer a, .post-style1 .post-footer .post-meta{
	color: #FFF !important;
}

@media screen and (max-width: 767px){
    .post-style1 .post-footer{
        padding: 0 15px 10px;
    }
    .post-style1 .post-footer .post-title{
        font-size: 16px;
        margin-bottom: 0;
    }
    .post-style1 .post-footer .post-meta{
        display: none;
    }
}
/*Post Style 1 End*/

/*Post Style 2 Start*/
.post-style2 .postimg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: 1;
    transition: opacity .3s ease;
}
.post-style2:hover .postimg:after {
	opacity: .3;
}
/*Post Style 2 End*/

/*Post Style 3 Start*/
.post-style3{
    background: #212121;
}
.post-style3 .postimg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: 1;
    transition: opacity .3s ease;
}
.post-style3:hover .postimg:after {
	opacity: .3;
}
.post-style3 .post-footer{
	padding: 20px 20px 15px;
	margin-top: 0;
}
.post-style3 .post-footer .post-title{
	font-size: 16px;
}
.post-style3 .post-footer .post-title a{
	color: #FFF;
}
/*Post Style 3 End*/

/*Post for Mega Menu Start*/
.mega-menu .megamenu .post:before{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ececec;
    z-index: 1;
}
.main-navigation .megamenu .post .post-category-name{
    display: inline-block;
    padding: 3px 5px;
    color: #fff;
    font-size: 10px;
    width: auto;
    font-weight: 400;
    text-transform: capitalize;
    left: 0;
    bottom: 0;
    top: inherit;
}
.main-navigation .megamenu .post:hover .post-category-name{
    background-color: #2196f3;
}
.main-navigation .megamenu .post-footer a{
    padding: 0;
    text-transform: inherit;
    width: auto;
}
.main-navigation .megamenu .post-footer a:hover{
    color: #2196f3 !important;
}
.main-navigation .megamenu .post-footer{
    padding-left: 10px;
    padding-right: 5px;
}
.main-navigation .megamenu .post-footer .post-title{
    font-size: 13px;
}

.main-navigation .megamenu .post-footer .post-meta{
    line-height: normal;
}
/*Post for Mega Menu Start*/



/*Carousel Start*/ 
.postcarousel{
    position: relative;
    margin-bottom: 20px;
}
.basic-carouse{position: relative;}
.basic-carousel .owl-nav .owl-prev, .basic-carousel .owl-nav .owl-next, .basic-carousel .owl-nav .owl-prev, .basic-carousel .owl-nav .owl-next {
    width: 34px;
    height: 34px;
    vertical-align: top;
    background: #000 !important;
    color: #fff !important;
    font-size: 18px !important;
    position: absolute;
    z-index: 10;
    top: 50%;
    margin-top: -17px;
    left: 20px;
    line-height: 34px !important;
    text-align: center;
    opacity: 0;
    transition: all .3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.basic-carousel .owl-nav .owl-next, .basic-carousel .owl-nav .owl-next {
    left: auto;
    right: 20px;
}
.basic-carousel:hover .owl-nav .owl-prev, .basic-carousel:hover .owl-nav .owl-next{
    opacity: .4;
}
.basic-carousel .owl-nav .owl-prev:hover, .basic-carousel .owl-nav .owl-next:hover{
    background: #000 !important;
    opacity: 1;
}
.postcarousel .w-75{
    border-right: 2px solid #FFF;
}
.postcarousel .w-25{
    border-left: 2px solid #FFF;
}
.postcarousel .w-75 .post-footer .post-title{
    font-size: 24px;
    font-weight: 600;
}
.postcarousel .w-25 .post-footer .post-title{
    font-size: 18px;
    font-weight: 600;
}

@media screen and (max-width: 960px){
    .postcarousel .post.w-75{
        width: 100% !important;
        border-right: 4px solid transparent;
    }
    .postcarousel .post.w-25{
        width: 50% !important;
        border-left: 0;
        border-right: 4px solid transparent;
        display: none;
    }
    .postcarousel .post-style1 .post-footer{
        text-align: center;
    }
    .postcarousel .w-75 .post-footer .post-title, .postcarousel .w-25 .post-footer .post-title{
        font-size: 20px;
    }
}

@media screen and (max-width: 767px){
    .postcarousel .w-75 .post-footer .post-title, .postcarousel .w-25 .post-footer .post-title{
        font-size: 14px;
    }
}

/*Carousel End*/ 


/*Latest Video Start*/

@media (min-width: 768px){
    .latestvideo .leftside{
        width: 60%;
    }
    .latestvideo .rightside{
        width: 40%;
    }
}

.playlist-title{
    background-color: #2196f3;
    height: 70px;
    color: #fff;
    padding: 0 15px;
}
.playlist-title h2{
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #FFF;
    margin: 0;
    padding: 0;
}
.playlist-title h2 a{
    color: #FFF;
    text-decoration: none;
}

#videoplaylist{
    height: 280px;
}
@media (max-width: 1100px){
    #videoplaylist{
        height: 175px;
    }
}
@media (max-width: 992px){
    #videoplaylist{
        height: 180px;
    }
}
@media (max-width: 767px){
    #videoplaylist{
        height: 300px;
    }
}

.playicon{
    font-size: 27px;
    width: 40px;
    margin-right: 10px;
}
.video-number{
    font-size: 11px;
    line-height: 1;
}
.playlist-item{
    border-bottom: 1px solid #ececec;
    padding: 12px 15px;
    display: block;
    overflow: hidden;
    text-decoration: none;
}
.playlist-item .videothumb-box{
    margin-right: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
}
.playlist-item .video-paused-icon, .playlist-item .video-play-icon{
    width: 20px;
    color: #111;
    font-size: 13px;
}
.playlist-item.is-play .video-play-icon{
    color: #2196f3;
}
.playlist-item .videothumb{
    width: 90px;
    height: 50px;
    background-color: #000;
    position: relative;
}
.playlist-item .videothumb:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: 1;
    transition: opacity .3s ease;
}
.playlist-item:hover .videothumb:after{
    opacity: .3;
}
.playlist-item .video-ttl{
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #000;
    margin: 0;
    padding: 0;
}
.playlist-item:hover .video-ttl{
    color: #2196f3;
}
.playlist-item .video-duration{
    color: #888;
    font-size: 11px;
    line-height: 1;
    margin: 5px 0 0 0;
    padding: 0;
}

.playlist-item.is-play{
    background-color: #eee;
}
.playlist-item.is-play .video-ttl{
    color: #2196f3;
}

/*Latest Video Start*/


/*Sidebar Start*/
.rightsidebar{overflow: hidden;}
.home-sticky-sidebar{
    width: 300px;
    max-width: 100%;
    float: right;
    will-change: min-height;
}
@media screen and (max-width: 992px) {
    .home-sticky-sidebar{
        width: 100%;
    }
}
.sticky-sidebar{
    will-change: min-height;
}
.sidebar__inner{
    position: relative;
    transform: translate(0, 0);
    transform: translate3d(0, 0, 0);
    will-change: position, transform;
}

@media screen and (max-width: 991px) {
   .sticky-sidebar{
        position: static !important;
   }
   .sidebar__inner{
        position: static !important;
   } 
}

.side-thumb .post{border-bottom: 1px solid #ececec;padding-bottom: 20px;}
.side-thumb:last-child .post{border-bottom: 0px;padding-bottom: 0px;}
.side-thumb .post .postimg{flex:0 0 108px; margin-right: 15px;}
.side-thumb .post-footer {margin-top: 0;}
.side-thumb .post-footer .post-title{font-size: 13px; line-height: 1.3;}

.inside-list ul{margin:0px;padding:0px;}
.inside-list ul li{list-style:none; padding: 4px 0;}
.inside-list ul li a{font-size: 15px; text-decoration: none;}
.inside-list ul li a span{float: right;}
.inside-list ul li a:hover{color: inherit;}
.coverpage a{color: #4caf50;}
.infocus a{color: #009688;}
.news-update a{color: #00bcd4;}
.dubai-expo a{color: #03A9F4;}
.spain a{color: #2196F3;}
.destination a{color: #3F51B5;}
.aviation a{color: #673AB7;}
.hotels a{color: #9C27B0;}
.news a{color: #E91E63;}
/*Sidebar End*/


/*Social Box Start*/
.social-box{display:flex; flex-wrap: wrap; margin:0px;padding: 0px}
.social-box li{list-style: none; width: 33.33%; padding-right: 4px; padding-bottom: 4px;}
.social-box li .inner{width: 100%; z-index: 2; position: relative; display: flex; flex-direction: column;}
.social-box li a{position: relative; background-color: #f5f5f5; color: #FFF; width: 100%; height: 84px; display: flex; justify-content: center; align-items: center; text-align: center; font-size: 18px; transition: all 0.2s ease-in-out; text-decoration: none; margin:0 10px 0px 0;}

.social-box li a .social-number{font-size: 14px; line-height: 1.14; font-weight: 700; margin-bottom: 5px; margin-top: 3px;}
.social-box li a .social-info-text{font-size: 10px; font-weight: 700; }

.social-box li.facebook a{color: #0d47a1;}
.social-box li.facebook:hover a{background: #0d47a1;}

.social-box li.twitter a{color: #40c4ff;}
.social-box li.twitter:hover a{background: #40c4ff;}

.social-box li.instagram a{color:#417096;}
.social-box li.instagram:hover a:after{content: ""; position: absolute; left: 0; top: 0; right: 0; bottom: 0; background: radial-gradient(circle farthest-corner at 35% 90%,#ffa100,transparent 50%),radial-gradient(circle farthest-corner at 0 140%,#efa11c,transparent 50%),radial-gradient(ellipse farthest-corner at 0 -25%,#5258cf,transparent 50%),radial-gradient(ellipse farthest-corner at 20% -50%,#5258cf,transparent 50%),radial-gradient(ellipse farthest-corner at 100% 0,#893dc2,transparent 50%),radial-gradient(ellipse farthest-corner at 60% -20%,#8f44c7,transparent 50%),radial-gradient(ellipse farthest-corner at 100% 100%,#d43178,transparent),linear-gradient(#6559ca,#bc318f 30%,#e33f5f 50%,#f77638 70%,#fec66d 100%); opacity: .85; z-index: 1;}

.social-box li.youtube a{color: red;}
.social-box li.youtube:hover a{background: red;}

.social-box li.soundcloud a{color: #f50;}
.social-box li.soundcloud:hover a{background: #f50;}

.social-box li.vimeo a{color: #00ADEF;}
.social-box li.vimeo:hover a{background: #00ADEF;}

.social-box li a:hover{color: #FFF !important;}
/*Social Box End*/

/*Heading Block Start*/
.heading-block{border-bottom: 1px solid #ececec; margin-bottom: 20px; margin-top: 20px;}
.heading-block .post-ttl{font-size: 14px; font-weight: 700; margin: 0; padding: 0;}
.heading-block .post-ttl a{height: 36px; line-height: 36px; display: inline-block; background-color:#000; color: #FFF; text-transform: uppercase; text-decoration: none; padding: 0 14px;}
.heading-block .post-ttl.coverpage a{background-color: #4caf50;}
.heading-block .post-ttl.infocus a{background-color: #009688;}
.heading-block .post-ttl.news-update a{background-color: #00bcd4;}
.heading-block .post-ttl.dubai-expo a{background-color: #03A9F4;}
.heading-block .post-ttl.spain a{background-color: #2196F3;}
.heading-block .post-ttl.destination a{background-color: #3F51B5;}
.heading-block .post-ttl.aviation a{background-color: #673AB7;}
.heading-block .post-ttl.hotels a{background-color: #9C27B0;}
.heading-block .post-ttl.news a{background-color: #E91E63;}
/*Heading Block End*/


/*Subscribe Email Start*/
.subscribe-email{text-align: center; padding-top: 40px; padding-bottom: 40px; border-bottom: 1px solid #ececec; overflow: hidden; width: 100%;}
.subscribe-email h4{font-size: 18px; font-weight: 400; font-style: italic; line-height: 1.5; margin-bottom: 23px;}
.subscribe-email .input-col{width: 400px;}
.subscribe-email .btn-col{width: 150px;}
.subscribe-email .form-control{font-size: 14px; height: 48px; line-height: 48px;}
.subscribe-email .btn{width: 100%; background-color: #000; font-size: 14px; font-weight: 700; height: 48px; line-height: 48px; padding: 0;}
/*Subscribe Email Start*/

/*Footer Start*/
.footer{background: #212121; position: relative; width: 100%; background-repeat: no-repeat; background-size: cover; background-position: center center; color: #666; font-size: 14px;}
.footer .footer-heading{font-size: 18px; color: #FFF; font-weight: 500; text-transform: uppercase; padding-bottom: 14px;}
.footer .top-footer {padding-top: 50px; padding-bottom: 40px;}
.footer .top-footer .text-link:hover{color: #FFF;}
.footer .footer-bottom{background: #111;}
.footer .copyright{color: #616161; font-size: 12px; padding-top: 10px; padding-bottom: 10px;}

.footer .footer-menu{margin: 0; padding: 10px 0;}
.footer .footer-menu li{list-style: none; display: inline-block; margin-right: 15px;}
.footer .footer-menu li a{list-style: none; font-size: 12px; color: #616161; text-decoration: none;}
.footer .footer-menu li a:hover{color: #2196f3;}

.footer .social{display: inline-block; margin:0px;padding: 0px}
.footer .social li{list-style: none; float: left;}
.footer .social li a{color: white; width: 40px; height: 40px;display: block;text-align: center; transition: all 0.5s ease-in-out; line-height: 40px; margin:0 10px 10px 0;}
.footer .social li.facebook a{background: #3f51b5;}
.footer .social li.twitter a{background: #2196f3;}
.footer .social li.instagram a{background: radial-gradient(circle farthest-corner at 35% 90%,#fec564,transparent 50%),radial-gradient(circle farthest-corner at 0 140%,#fec564,transparent 50%),radial-gradient(ellipse farthest-corner at 0 -25%,#5258cf,transparent 50%),radial-gradient(ellipse farthest-corner at 20% -50%,#5258cf,transparent 50%),radial-gradient(ellipse farthest-corner at 100% 0,#893dc2,transparent 50%),radial-gradient(ellipse farthest-corner at 60% -20%,#893dc2,transparent 50%),radial-gradient(ellipse farthest-corner at 100% 100%,#d9317a,transparent),linear-gradient(#6559ca,#bc318f 30%,#e33f5f 50%,#f77638 70%,#fec66d 100%)}
.footer .social li.pinterest a{background: #bd081c;}
.footer .social li.youtube a{background: red;}
.footer .social li a:hover{opacity: 0.8;}
/*Footer End*/


/*Post Details Start*/
.post-details .post-category-name{
    position: static;
    padding: 2px 6px;
    margin-bottom: 5px;
    display: inline-block;
}
.post-details .post-category-name:hover{
    background-color: #2196f3;
    color: #FFF;
}
.post-details h1{
    font-size: 30px;
    margin: 0 0 10px 0;
    padding: 0;
}
.post-details .post-meta{
    margin: 0 0 10px 0;
    font-size: 11px;
    color: #999;
}
.post-details .post-meta i{
    margin-right: 3px;
}
.post-details .post-meta a{
    color: #999;
}
.post-details .meta-info{
    margin-right: 10px;
}
.post-details p{
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Open Sans', sans-serif;
    color: #666;
}
@media screen and (max-width: 768px){
    .post-details h1{
        font-size: 22px;
    }
}
/*Post Details End*/


/*Related Post Start*/
.related-posts{
    border-top:1px solid #ececec;
    margin-top: 60px;
    padding-top: 20px;
}
.related-posts .ttl-related-post{
    font-size: 14px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    padding: 0;
}
.related-posts .post-footer .post-title{
    font-size: 16px;
}
.related-posts .post-footer .post-title a:hover{
    color: #2196f3 !important;
}


/*Related Post End*/


/*Article Page Start*/
@media (min-width: 961px){
    .content-section{
       width: 100%;
       max-width: 100%;
    }
}

@media (min-width: 1241px){
    .content-section{
        width: 100%;
        max-width: calc(100% - 600px);
    }
    .ad-section{
       width: 300px; 
    }  
}
@media screen and (min-width: 960px) and (max-width: 1240px){
    .ad-widget1{
        display: none;
    }
    .ad-section{
       width: 285px; 
    }
    .content-section{
        width: 100%;
        max-width: calc(100% - 285px);
    } 
}

.content-section .figurebox .caption-text{
    font-style: italic;
    line-height: 1.4;
    font-style: italic;
    color: #777;
    font-size: 13px;
    margin-top: 10px;
}

.content-section blockquote{
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.25;
    text-align: center;
    color: #2196f3;
    padding: 27px 3%;
    position: relative;
    margin-top: 26px;
    margin-bottom: 33px;
    text-transform: uppercase;
}
.content-section blockquote:before{
    content: '';
    top: 0;
    left: 50%;
    position: absolute;
    width: 150px;
    height: 2px;
    background-color: #ececec;
    margin-left: -75px;
}
.content-section blockquote:after {
    content: '';
    bottom: 0;
    left: 50%;
    position: absolute;
    width: 150px;
    height: 2px;
    background-color: #ececec;
    margin-left: -75px;
}
.addthiswidget{
    border: 1px solid #ececec;
    padding: 6px 20px;
}

/*Article Page End*/

/* responsive ad container Start*/
.embed-container1 {
    position: relative;
    /*overflow: hidden;*/
    max-width: 100%;
}

    .embed-container1 img {
        max-width: 100% !important;
        height: auto !important;
    }

    .embed-container1 iframe, .embed-container1 object, .embed-container1 embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 728px;
        height: 100%;
    }

@media only screen and (max-width: 320px) {
    .topbanner iframe {
        width: 292px;
        height: 42px;
    }

    .topbanner img {
        width: 100%;
        margin-top: 15px;
    }
}
@media only screen and (min-width:320px) and (max-width: 359px) {


    .topbanner iframe {
        width: 292px;
        height: 42px;
    }

    .topbanner img {
        width: 100%;
        margin-top: 15px;
    }
}
@media only screen and (min-width:360px) and (max-width: 374px) {

    .topbanner iframe {
        width: 334px;
        height: 49px;
    }

    .topbanner img {
        width: 100%;
        margin-top: 15px;
    }
}
@media only screen and (min-width:375px) and (max-width: 413px) {
    .topbanner iframe {
        width: 348px;
        height: 52px;
    }

    .topbanner img {
        width: 100%;
        margin-top: 15px;
    }
}

@media only screen and (min-width:414px) and (max-width: 531px) {

    .topbanner iframe {
        width: 386px;
        height: 60px;
    }

    .topbanner img {
        width: 100%;
        margin-top: 15px;
    }
}

@media only screen and (min-width:532px) and (max-width: 631px) {

    .topbanner iframe {
        width: 525px;
        height: 75px;
    }

    .topbanner img {
        width: 100%;
        margin-top: 15px;
    }
}

@media only screen and (min-width:632px) and (max-width: 731px) {


    .topbanner iframe {
        width: 590px;
        height: 92px;
    }

    .topbanner img {
        width: 100%;
        margin-top: 15px;
    }
}
@media only screen and (min-width:732px) and (max-width: 767px) {
    

    .topbanner iframe {
        width: 685px;
        height: 90px;
    }

  

    .topbanner {
        margin-top: 15px;
    }

        .topbanner img {
            width: 100%;
        }
}
@media only screen and (min-width:768px) and (max-width: 989px) {
   
    .topbanner iframe {
        width: 737px;
        height: 110px;
    }

    .topbanner {
        display: block;
        margin-top: 30px;
    }
}
@media only screen and (min-width:990px) and (max-width: 1999px) {
   
    .topbanner iframe {
        width: 745px;
        height: 110px;
    }

    .topbanner {
        display: block;
        margin-top: 10px;
    }
}
@media only screen and (min-width:1200px) {
   

    .topbanner iframe {
        width: 745px;
        height: 110px;
    }

    .topbanner {
        display: block;
        margin-top: 30px;
    }
}


    /* responsive ad container End*/
    /*Desktop hide show start*/

.content-desktop {
    display: block;
}

.content-mobile {
    display: none;
}

@media screen and (max-width: 768px) {

    .content-desktop {
        display: none;
    }

    .content-mobile {
        display: block;
    }
}
/*Desktop hide show end*/
