/* header starts */
header .nav-item .nav-link{
    font-size: 18px;
}
header .dropdown-toggle::after {
    display: none;
}
.dropdown-menu {
	background-color: transparent;
    border: 0px;
}
header form .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.1rem rgb(13 110 253 / 25%);
}
header form .form-control{
    font-size: 14px;
    padding: 5px 20px;
}
header form .btn:focus{
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
}
header form .btn{
    margin-left: -45px;
}
/* heaeder ends */
/* banner starts */
.jquery-bg-slideshow-wrap-bg-element {
	position: relative;
	display: block;
	height: 80vh;
}
.bg{
    height: 100%;
    width: 100%;
    background-color: white;
    color: white;
    font-size: 30pt;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
    text-shadow: 1px 1px 10px black;
    margin: 0;
    background-size: cover;
    background-position: center;
    flex-direction: column;
}
.slider-container{
    width: 100%;
    height: 80vh;
    animation: animate 16s ease-in-out infinite;
    -moz-animation: animate 16s ease-in-out infinite;
    -o-animation: animate 16s ease-in-out infinite;
    -webkit-animation: animate 16s ease-in-out infinite;
    background-size: cover;
    background-position: center;
    transition: 0.5s all ease;
    position: relative;
    left: 0;
    top: 0;
}
.feature-banner{
    width: 100%;
    height: 450px;
    animation: animate 16s ease-in-out infinite;
    background-size: cover;
    background-position: center;
    transition: 5s all ease;
}

.slider-container .bg-overlay{
    height: 100%;
    width: 100%;
    background-color: #0000008c;
}
#banner .container{
    height: 100%;
}
.banner-content{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
}
#banner .bg h2{
    font-size: 48px;
    font-weight: bold;
}
#banner .bg p{
    font-size: 20px;
}
#banner .bg .btn{
    background-color: rgb(255, 0, 43);
    color: #fff;
    border-radius: 5px;
    padding: 10px 30px;
    font-size: 18px;
}

/* banner ends */
/* country starts */
#country{
    padding: 40px 0;
}
#country .country-flags{
    column-gap: 20px;
    row-gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
#country .flag{
    max-width: 16px;
}
#country .country-flags a {
	text-decoration: none;
	color: #000;
	background-color: #cbf1e9;
	padding: 5px 10px;
	border-radius: 8px;
    font-size: 15px;
}
/* country ends */
/* blog starts */
#blog{
    padding: 40px 0;
}
#blog .card-btn{
    background: rgb(160, 185, 168);
    color: #fff;
    border-radius: 5px;
    margin-top: 15px;
}
/* blog ends */
/* top country */
#topCountry{
    padding: 20px 0 50px;
}
#topCountry .section-title{
    background-color: #ff002b;
    padding: 5px 10px 10px;
    color: #fff;
}
#topCountry .country-img {
    position: relative;
    display: block;
}
#topCountry .image {
    display: block;
    width: 100%;
    height: auto;
}
#topCountry .overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5); /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity:1;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
}
#topCountry ul{
    list-style: none;
}
#topCountry ul li{
    border-bottom: 1px solid #ddd;
}
#topCountry a{
    text-decoration: none;
    padding: 5px 0;
}
#topCountry .list-link{
    padding: 8px 0px 10px;
}
#topCountry .top-post-col{
    border-bottom: 1px solid #ddd;
    padding-top: 15px;
    padding-bottom: 15px;
}
#topCountry .top-post-col:last-of-type{
    border-bottom: none;
}
/* top country ends */
/* country area starts*/
.country-area{
    background-color: rgb(47, 153, 74);
    background-size: cover;
    height: auto;
    padding: 60px 0;
}
/* country area ends*/
/* concerts */
#banner .slider{
    height: 200px;
    display: grid;
    position: relative;
    width: 100%;
    margin: auto;
    place-items: center;
    overflow: hidden;
}
#banner .slide-track{
    display: flex;
    width: calc(250px * 10);
    animation: scroll 40s linear infinite;
}
#banner .slide-track-2{
    animation: scroll 30s linear infinite;
}
/* animation off css */
/* #banner .slide-track:hover{
    animation-play-state: paused;
} */
@keyframes scroll {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(calc(-250px * 5));
    }
}
#banner .slide{
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding-right: 15px;
    padding-top: 0px;
    perspective: 100px;
}
#banner .slide img{
    width: 100%;
    transition: 1s all ease;
    border-radius: 10px;
}
#banner .slide img:hover{
    transform: translateZ(20px);
}
#banner .slider::before , #banner .slider::after{
    background: linear-gradient(to right, rgba(78, 78, 78, 0.381) 0% ,rgba(255,255,255,0) 100%);
    content: '';
    position: absolute;
    height: 100%;
    width: 15%;
    z-index: 2;
}
#banner .slider::before{
    left: 0;
    top: 0;
}
#banner .slider::after{
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
#concert{
    padding: 50px 0;
}
#banner .page-btn .btn{
    background-color: rgb(40 71 58);
    color: #fff;
    border-radius: 5px;
    padding: 10px 30px;
    font-size: 18px;
}
#concert .concert-list{
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    padding-top: 20px;
}
#concert .concert-list:last-of-type{
    border-bottom: none;
}
.concert-detail p{
    margin-bottom: 3px;
}
#concert .btn-red{
    background-color: rgb(255, 0, 43);
color: #fff;
border-radius: 5px;
padding: 10px 10px;
font-size: 16px;

}
#concert .btn-dark{
    border-radius: 5px;
    padding: 10px 10px;
    font-size: 16px;
}
#concert a{
    text-decoration: none;
}
/* concerts ends */
.postponed{
    padding: 4px 6px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
}
.event-row{
    border-bottom: 1px dashed #a4a4a4;
    padding: 20px 0;
}
.event-row:last-of-type{
    border-bottom: none;
}
.event-row .title{
    font-size: 18px;
    margin-bottom: 0px;
}
.event-row .nav a{
    margin-right: 15px;
}
.event-row .nav .btn{
    padding: 5px 15px;
}
.event-row .nav .btn-success:hover{
    color: #fff;
}
.event-row .bg-muted{
    background-color: #ddd;
    color: rgb(28, 28, 28);
}
/* festival */
#festival{
    padding: 50px 0;
}
#festival .festival-list{
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    padding-top: 20px;
}
#festival .festival-list:last-of-type{
    border-bottom: none;
}
.festival-detail p{
    margin-bottom: 3px;
}
#festival .btn-red{
    background-color: rgb(255, 0, 43);
color: #fff;
border-radius: 5px;
padding: 10px 10px;
font-size: 16px;

}
#festival .btn-dark{
    border-radius: 5px;
    padding: 10px 10px;
    font-size: 16px;
}
#festival a{
    text-decoration: none;
}
/* concerts ends */
/* news css starts */
.blog-bg{
    background:linear-gradient(to right, rgba(0, 0, 0, 0.38) 0% ,rgba(55, 55, 55, 0.48) 100%) , url(../images/slide-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#news{
    padding: 50px 0;
}
#news .news-row{
    padding: 20px;
}
#news h2 a{
    color: #3d3d3d;
}
#news a{
    text-decoration: none;
}
#news .read-more{
    font-size: 18px;
}
#news .news-row{
    -webkit-box-shadow: 1px 1px 8px 1px rgba(0,0,0,0.61);
    box-shadow: 1px 1px 8px 1px rgba(0,0,0,0.61);
}
.slug{
    background-color: #ddd;
    padding: 10px;
    margin-bottom: 40px;
}
.sidebar-widget-title{
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    margin-top: 20px;
}
.social-share-widget{
    list-style: none;
    padding: 0;
    margin-left: 0;
    display: flex;
    margin-top: 60px;
}
.social-share-widget li{
    margin-right: 15px;
}
.social-share-widget li:last-child{
    margin-right: 0px;
}
.social-share-widget li a{
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
}
.sidebar-recent-widget{
    list-style: none;
    padding: 0px;
    margin-left: 0px;
    margin-top: 10px;
}
.sidebar-recent-widget li{
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}
.sidebar-recent-widget li:last-child{
    border-bottom: none;
}
/* news css ends */
footer{
    padding: 30px 0;
}
footer ul{
    list-style: none;
    padding-left: 0px;
}
footer ul li{
    margin-bottom: 10px;
}
footer ul li:last-child{
    margin-bottom: 0px;
}
footer ul li .footer-link{
    font-size: 18px;
    text-decoration: none;
}
footer .social-buttons i{
    font-size: 22px;
    color: #fff;
}
/* common css */
.section-title{
    font-size: 32px;
}
.none-display{
    display: none;
}
img{
    max-width: 100%;
    height: auto;
}
.bg-light{
    background-color: #90ee90 !important;
}
.nav-item a {
    color :black;
}
.active{
    color: blue !important;
}
.list-inline-item a {
    color: black;
}
.cl-white{
    color: white !important;
}
.news-bg{
    background-color: beige;
}
.navbar-toggler-icon{
    color: black !important;
}
.card-title a{
    text-decoration: none !important;
}
.categorie{
    color: red;
}
.post-time{
    color: green;
}

@media only screen and (min-width: 1400px) {
    .container{
        max-width: 1140px;
    }
}
@media only screen and (min-width: 992px) {
    header .nav-item{
        margin-right: 15px;
    }
    header .form-container .form-control{
        width: 300px;
    }
    .navbar {
        border-top: 5px solid green;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        left: -265px;
    }
    .carousel-caption{
        bottom: 185px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .blog-bg .banner-content{
        max-width: 70%;

       margin: auto;
    }
}