/* Minification failed. Returning unminified contents.
(447,26): run-time error CSS1034: Expected closing parenthesis, found ','
(447,26): run-time error CSS1042: Expected function, found ','
(447,28): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
 */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.ticker-wrap {
    top: 0;
    width: 100%;
    overflow: hidden;
    height: 4rem;
    background-color: rgba(0, 0, 0, 0.9);
    padding-left: 100%;
}

.ticker {
    display: inline-block;
    height: 4rem;
    line-height: 4rem;
    white-space: nowrap;
    padding-right: 100%;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
}

.ticker_item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 2rem;
    color: red;
}




#breaking {
    font-size: 14px;
    font-weight: bold;
    padding: 5px;
    background: #008CA1;
    color: #fff;
    z-index: 999;
}

#breaking,
#newsTicker {
    border: 1px solid #000;
}

#newsTicker {
    width: 100%;
    background-color: #fff;
    color: #000;
    /*box-shadow: 0px 0px 8px 2px #000000;*/
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 5px;
    padding-bottom: 5px;
    /*z-index: 998;*/
}

.date {
    margin-right: 10px;
    text-decoration: underline;
}

.story {
    margin-right: 20px;
}

#newsTicker p {
    margin: 0;
    display: inline-block;
    font-size: 20px;
    padding-left: 100%;
    animation: tickerTape 30s linear infinite;
}

@keyframes tickerTape {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.uselFullDivList {
    padding: 12px;
    border-bottom: 1px solid #0000001f;
}

    .uselFullDivList:hover {
        background-color: #f5f5f5;
        transition: 0.5s;
    }

.travellerDiv {
    margin-top: -40px;
    background: #fff;
    margin-left: 25px;
    padding: 20px;
}

#scroll {
    position: fixed;
    right: 10px;
    bottom: 100px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #ec6e60;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 100;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

    #scroll span {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -8px;
        margin-top: -12px;
        height: 0;
        width: 0;
        border: 8px solid transparent;
        border-bottom-color: #ffffff;
    }

    #scroll:hover {
        background-color: #e74c3c;
        opacity: 1;
        filter: "alpha(opacity=100)";
        -ms-filter: "alpha(opacity=100)";
    }

.cardHoverEffect {
    background-color: #008CA1;
    box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

    .cardHoverEffect:hover {
        background-color: #125c67;
        box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
    }

.carousel-fade .carousel-inner .item {
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

    .carousel-fade .carousel-inner .next,
    .carousel-fade .carousel-inner .prev,
    .carousel-fade .carousel-inner .active.left,
    .carousel-fade .carousel-inner .active.right {
        left: 0;
        transform: translate3d(0, 0, 0);
    }

.custom-card--title {
    font-size: 14px;
    font-weight: 700;
    color: #3E3E3E;
    margin-bottom: 5px;
    margin-top: 10px;
    padding: 0 5px 0 5px;
}

.custom-card--text {
    font-size: 14px;
    color: #3E3E3E;
    padding: 0 5px 0 5px;
    text-align: justify;
}

.image-Heading {
    font-size: 1rem;
    animation-duration: .3s;
    animation: text ease-in 2s 1;
    animation-name: fadeAndScale;
    animation-timing-function: cubic-bezier(.71,.55,.62,1.57);
}

.image-sub-Heading {
    font-size: 0.5rem;
    animation-duration: .3s;
    animation: text ease-in 2s 1;
    animation-name: fadeAndScale;
    animation-timing-function: cubic-bezier(.71,.55,.62,1.57);
}

@keyframes fadeAndScale {
    from {
        opacity: 0;
        transform: scale(.7,.7);
    }

    to {
        opacity: 1;
        transform: scale(1,1);
    }
}

@keyframes text {
    0% {
        opacity: 0;
    }
}

@keyframes textanimate {
    0% {
        margin-bottom: -150px;
        margin-top: 40px;
        opacity: 0;
    }
}

.accomodationDiv {
    padding: 60px 0;
    /*background-color: #eaecee;
    background-image: linear-gradient(43deg, #eaecee 0%, #eee9ee 46%, #ffecd6 100%);*/
}

.custom-card-2--OverlayDiv {
    background-color: rgba(0,0,0,0.3);
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:20px;
}
.custom-card-2{
    position:relative;
}

.accomodatoinImage {
    max-height: 210px;
    width: 100%;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.card-img-top:hover {
    cursor: pointer;
}

.navLeftArrowAcc {
    background-color: transparent;
    border-radius: 50%;
    left: -40px;
    position: absolute;
    top: 45%;
}

.navRightArrowAcc {
    position: absolute;
    background-color: transparent;
    border-radius: 50%;
    top: 45%;
    right: -40px;
}

.scrollBar {
    overflow: scroll;
}

    .scrollBar::-webkit-scrollbar {
        width: 0 !important;
    }

.adDiv {
    text-align: left;
    padding: 10px;
}

.usefulLiItem {
    font-size: 14px;
    font-weight: 500;
}

    .usefulLiItem:hover {
        background-color: #eeeeee;
    }

.visitedDiv {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 10px;
    margin-top: 50px;
    margin-bottom: 30px;
    max-width: 400px;
}

.visitedTitle {
    background-color: orange;
    padding: 10px;
    width: 60%;
    text-align: center;
    border-radius: 5px;
    margin-top: -30px;
    font-size: 14px;
    font-weight: 700;
}

.themeDiv {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    border-radius: 4px;
}

    .themeDiv:hover {
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    }

.cardOverLayDiv {
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 100%;
    cursor: pointer;
    display: flex;
    padding: 0 15px;
    align-items: flex-end;
    background: rgba(0,0,0,0.1);
    opacity: 1;
    -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;
    color: #fff;
}

    .cardOverLayDiv:hover {
        background: rgba(0,0,0,0.7);
        padding-bottom: 30px;
    }

        .cardOverLayDiv:hover > .cardOverlayTitle > .HD-1x {
            color: #f4511e !important;
        }

.viewMoreBtn {
    padding: 10px 30px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    background-color: #008CA1;
}

    .viewMoreBtn:hover {
        color: #fff;
        cursor:pointer;
    }


/*.carousel-item {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-repeat: no-repeat;
}*/

.carousel-image {
    height: 60vh;
    object-fit: cover;
}

.carousel-news-image {
    height: 43.5vh;
    object-fit: contain;
}

.image-overlay-text {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*background-color: rgba(0,0,0,0.2);*/
    /*background-color: rgb(0,0,0,0.2);*/ 
    /*background-color: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 100%);*/
}

.bg-overlay {
    position: absolute;
/*    width: 100%;*/
    height: 100%;
    background: rgb(0,0,0,0);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(0,0,0,1) 50%);
    /*z-index: 10;*/
}

.title-text {
    font-size: 58px;
}

.info-text {
    font-size: 34px;
}



.image-overlay-text-top-visited {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 100%;
    z-index: 10;
    color: #fff;
    font-size: 1rem;
}

.overlay-container {
    position: relative;
    overflow: hidden;
    line-height: 0; /* details! fix the weird
                  pixel gap at the bottom of the image */
}

.overlay {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    left: 0;
    line-height: 1;
    /* animation stuff */
    transition: all 0.3s ease-in-out;
    opacity: 0.5;
    bottom: 0;
    top: 100%;
}

.overlay-container:hover .overlay {
    opacity: 1;
    top: 0;
    bottom: 0;
    line-height: 1.5;
}

/* fluid image */
.overlay-container {
    width: 100%;
    float: left;
    background-color: blue;
}

.overlay {
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 5%;
}

    .overlay h2 {
        margin: 0;
    }

    .overlay p {
        margin: 0;
    }

.container-custom {
    margin: auto;
    width: 100%;
}

.discover-image {
    height: 500px;
    width: 100%;
    object-fit: cover;
}


.thingstodo-image {
    border-radius: 10px;
    object-fit: cover;
}

.top-visited-image {
    width: 100%;
    object-fit: cover;
}
.modi-banner{
    width:50%;
}
.modi-banner-overlay {
    position: absolute;
    background-color: rgba(0,0,0,0.4);
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in;
    opacity: 0;
}
    .modi-banner-overlay:hover{
        opacity:1
    }

    @media only screen and (max-width: 1920px) {
        .container-custom {
        width: 1600px;
    }

    .thingstodo-image {
        height: 280px;
    }

    .top-visited-image {
        height: 280px;
    }
}

@media only screen and (max-width: 1600px) {
    .container-custom {
        width: 1450px;
    }

    .discover-image {
        height: 440px;
    }
}

@media only screen and (max-width: 1440px) {
    .container-custom {
        width: 1280px;
    }

    .discover-image {
        height: 400px;
    }
}

@media only screen and (max-width: 1366px) {
    .container-custom {
        width: 1166px;
    }

    .discover-image {
        height: 360px;
    }

    .top-visited-image {
        height: 220px;
    }
}

@media only screen and (max-width: 1280px) {
    .container-custom {
        width: 1080px;
    }
}


@media (max-width: 1024px) {
    .container-custom {
        width: 880px;
    }

    .discover-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .container-custom {
        width: 100%;
    }

    .carousel-image {
        height: 40vh;
    }

    .carousel-news-image {
        height: 33.5vh;
    }

    .image-overlay-text {
        height: 40vh;
    }

    .title-text {
        font-size: 32px;
    }

    .info-text {
        font-size: 16px;
    }
    .modi-banner {
        width: 80%;
    }
}


/*Minister section CSS*/

.responsive-cell-block {
    min-height: 75px;
}

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: space-evenly;
}

.outer-container {
    /*padding-top: 10px;*/
    padding-right: 50px;
    padding-bottom: 10px;
    padding-left: 50px;
    /*background-color: rgb(244, 252, 255);*/
    background-color: #ffffff;
}

.inner-container {
    max-width: 1320px;
    /*flex-direction: column;*/
    flex-direction: row;
    align-items: center;
    /*margin-top: 50px;*/
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
}

.img-wrapper {
    width: 100%;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
}

.position {
    font-size: 25px;
    font-weight: 700;
    color: rgb(0, 135, 177);
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
}

.team-img {
    width: 100%;
    height: 100%;
}

.team-card-container {
    width: 280px;
    margin: 0 0 40px 0;
}

@media (max-width: 500px) {
    .outer-container {
        padding: 10px 20px 10px 20px;
    }
}



/*Important websites marquee section CSS*/


