.sec-2,
.sec-4,
.sec-6,
.sec-9,
.sec-10 {
    background-color: var(--light-color);
}

.sub-nav {
    padding: var(--m-8) var(--m-50);
    font-size: var(--sub-text);
    font-weight: 500;
    background-color: #fff;
}

.navbar {
    padding: var(--m-8) var(--m-50);
    width: 100%;
    background-color: #fff;
    z-index: 100;
}
.active {
    color: #04AA6D;
}

.logo {
    width: 120px;
}

/* .search {
    position: relative;
    margin-left: 50px;
}

.search-input {
    border: 0;
    font-size: 16px;
    padding: 10px;
    width: 50px;
    transition: width 0.3s ease;
}

.search-btn {
    background-color: #fff;
    border: 0;
    cursor: pointer;
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    transition: transform 0.3s ease;
}

.btn:focus, .search-input:focus {
    outline: none;
}

.search.active .search-input {
    width: 200px;
}

.search.active .search-btn {
    transform: translateX(198px);
} */

.sidenav-logo {
    display: none;
}

.nav-link {
    padding: var(--m-8) 0 var(--m-8) var(--m-16);
    display: block;
    font-weight: 500;
}

.nav-link .icon {
    padding: 0 0 0 var(--m-4);
}

.dropdown {
    width: 220px;
    position: absolute;
    background-color: var(--light-color);
    display: none;
    z-index: 10;
}

.dropdown-link {
    display: block;
    padding: var(--m-8) var(--m-16);
    transition: .3s;
    font-weight: 500;
}

.dropdown-link:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.open-btn,
.close-btn {
    font-size: var(--title);
    display: none;
    cursor: pointer;
    transition: .2s;
}

.open-btn:hover,
.close-btn:hover {
    transform: rotate(180deg);
}

.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
}

.photo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.photo img{
    height:150px;
    object-fit: cover;
}


/* !hero-sec / sec-1 */
header {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/bg\ pic.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* height: 85vh; */
    position: relative;
    padding: var(--m-50);
}

.hero-sec {
    color: var(--light-color);
    width: 100%;
    flex-wrap: wrap;
}

.hero-sec .title {
    margin-bottom: 30px;
}

.cta-btn {
    padding: var(--m-16) var(--m-32);
    font-size: var(--text);
    transition: all .3s ease;
}

.cta-btn:hover {
    background-color: #04AA6D;
    color: var(--light-color);
}

.notice-event {
    width: 350px;
    height: auto;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--m-4);
    padding: var(--m-16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #000;
    overflow: hidden;
}

.notice-event h2 {
    padding-bottom: 8px;
}

.hr-notice {
    border-bottom: 1px solid #000;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.hr-notice marquee {
    height: 150px;
    overflow: scroll;
    padding-top: -10px;
}

.hr-notice marquee::-webkit-scrollbar {
    display: none;
}

.hr-notice a {
    padding: 8px;
    display: block;
    font-weight: 500;
    border: var(--m-4);
    font-size: 14px;
}

.hr-notice a:hover {
    background-color: var(--light-color);
}

.hr-notice a::before {
    content: '\2010';
    padding: 10px;
}

.hr-event-card {
    width: 200px;
    background-color: var(--light-color);
    border-radius: var(--m-4);
    margin: 0 8px;
}

.hr-event-detail {
    padding: 4px 8px 8px;
}

.hr-event-detail img {
    border-radius: var(--m-4);
    /* padding-bottom: var(--m-4); */
}

.hr-event-detail .pill {
    padding-bottom: var(--m-4);
}



/*  hero-sec / sec-1 ends here */

/* ************************************************ */

/* !main content */

/* ! place to visit / sec-2*/

.sec-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--m-24);
    align-items: center;
}

.cards {
    grid-template-columns: repeat(3, 1fr);
    width: 400px;
    padding-top: var(--m-24);
}

.sec-2 .card {
    width: 120px;
    height: 120px;
    background-color: var(--light-color);
    border-radius: 4px;
    padding: var(--m-24);
    text-align: center;
    transition: .3s;
}

.sec-2 .card .icon {
    font-size: var(--m-24);
    padding-bottom: var(--m-16);
}

.sec-2 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 8px  rgba(0, 0, 0, 0.2);
}

.sec-2 .images {
    position: relative;
    height: 100%;
    width: 100%;
}

.sec-2 .images div {
    position: absolute;
    width: 300px;
}

.sec-2 .images img {
    border-radius: 4px;
    border: 5px solid var(--light-color);
}

.img-1 {
    top: 0;
    right: 15%;
}

.img-2 {
    top: 30%;
    left: 10%;
    z-index: 1;
}

.img-3 {
    bottom: 0;
    right: 0;
}


/* place to visit / sec-2 ends here */

/* ************************************************ */

/* ! hotel sec / sec-3 */

.hotel-card {
    width: 200px;
    height: auto;
    background: var(--light-color);
    border-radius: 4px;
    margin: var(--m-16);
    transition: all .3s ease;
}

.hotel-card:hover {
    box-shadow: 0 0 8px  rgba(0, 0, 0, 0.2);
}

.hotel-img {
    height: 200px;
    border-radius: 4px 4px 0 0;
}

.hotel-detail {
    padding: 8px 8px 12px 8px;
}

.hotel-detail .subtitle {
    font-weight: 600;
}

.hotel-detail .fa-star {
    margin: var(--m-4);
    color: #FFCE31;
}

.hotel-comments {
    color: #44BFF3;
}

.hotel-services {
    margin: var(--m-8) 0;
}

.hotel-services .pill {
    margin-bottom: var(--m-8);
}

.slick-list {
    padding: 0 25% 0 0;
}

/* hotel sec / sec-3  ends here*/

/* ************************************************ */

/* sec-4  */
.play-video {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('asset/images/Dharan-view-fromchinde-danda.jpg'); */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    justify-content: center;
}

.play-video .content {
    text-align: center;
    color: var(--light-color);
}

/* .pulse {
    font-size: var(--heading);
    color: var(--light-color);
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.pulse:before {
    content:"";
    position: absolute;
    left: -20px;
    top: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid #fff;
} */

.play-btn {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid red;
}

/* .play-btn .icon:before {
    content: "";
    position: absolute;
} */

.play-video .content .icon {
    font-size: var(--heading);
    color: var(--light-color);
    /* border: 1px solid var(--light-color); */
    border-radius: 100%;
    padding: 6px;
    cursor: pointer;
    /* position: relative; */
    transition: .2s;
    /* -webkit-animation: beat 1.4s linear infinite;
            animation: beat 1.4s linear infinite; */
}

.pulse {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    position: relative;
    margin: 10px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .play-video .pulse .icon {
      color: #333;
        font-size: 28px;
        padding-left: 10px;
  }

  .pulse:before, .pulse:after{
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border: 1px solid var(--light-color);
    border-radius: 50%;
    -webkit-animation: pulsing 1.5s linear infinite;
            animation: pulsing 1.5s linear infinite;
  }
  
  .pulse:after {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  
  @-webkit-keyframes pulsing {
    0% { transform: scale(0.5); opacity: 0;}
    50% { transform: scale(1); opacity: 1;}
    100% { transform: scale(1.2); opacity: 0;}
  }
  
  @keyframes pulsing {
    0% { transform: scale(0.5); opacity: 0;}
    50% { transform: scale(1); opacity: 1;}
    100% { transform: scale(1.2); opacity: 0;}
  }
  


/* .play-video .icon:hover {
    color: #ccc;
    border: #ccc;
}

.play-video .icon:active {
    color: #333;
} */

/* sec-4 ends here  */

/* *********************************************** */

/* events */

/* .events-sec .content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.event-card {
    margin-bottom: var(--m-16);
    padding: var(--m-8);
    align-items: flex-start;

}


.event-img {
    width: 100px;
    height: 100px;
    margin-right: var(--m-16);
}

.venue {
    justify-content: start;
    white-space: nowrap;
}

.venue hr {
    height: 10px;
    width: 1px;
    color: var(--sub-text);
} */

/* events ends here */

/* *********************************************** */

/* lost and found */
.lost-found-card {
    width: 200px;
    border-radius: var(--m-4);
    background-color: var(--light-color);
    margin: var(--m-8);
    transition: all .3s ease;
}

.lost-found-card:hover {
    box-shadow: 0 0 8px  rgba(0, 0, 0, 0.2);
}

.lost-found img {
    width: 100%;
    height: 180px;
    border-radius: 4px 4px 0 0;
}

.lost-found-card .detail {
    padding: var(--m-4) var(--m-8) var(--m-8);
}

.lost-found-card .detail p:nth-child(1) {
    padding-bottom: var(--m-4);
}

.lost-found-card .detail p:nth-child(3) {
    padding-bottom: var(--m-4);
}

/* lost and found  ends here*/

/* ************************************************ */

/* available jobs */


.jobs .content img {
    width: 100px;
    height: 100px;
    margin-right: var(--m-16);
}

.jobs .content,
.notice .content {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.job-card {
    justify-content: start;
    padding: var(--m-8);
    margin-bottom: var(--m-8);
    background-color: var(--light-color);
}

/* available jobs ends here*/

/* notice sec-7 */
/* .notice-card {
    padding: var(--m-8);
    height: auto;
    background-color: var(--light-color);
} */

/* notice sec-7 ends here*/

/* ************************************************ */

/* blog */
.blog-card {
    margin: 8px;
    border-radius: 4px;
    background-color: var(--light-color);
}

.blog-card img {
    height: 200px;
    border-radius: 4px 4px 0 0;
}

.blog-card .detail {
    padding: var(--m-8);
}

/* blog ends here */

/* *********************************************** */

/* gallery */
.gallery .content {
    grid-template-columns: repeat(6, 1fr);
    /* grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); */
    grid-template-rows: repeat(7, 5vw);
}

.gallery img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
}

.gallery-item-1 {
    grid-column: span 2;
    grid-row: span 3;
}

.gallery-item-2 {
    grid-column: span 1;
    grid-row: span 4;
}

.gallery-item-3 {
    grid-column: span 1;
    grid-row: span 4;
}

.gallery-item-4 {
    grid-column: span 2;
    grid-row: span 3;
}

.gallery-item-5 {
    grid-column: 1;
    grid-row: span 4;
}

.gallery-item-6 {
    grid-column: 2;
    grid-row: span 4;
}

.gallery-item-7 {
    grid-column: 3 / 5;
    grid-row: span 3;
}

.gallery-item-8 {
    grid-column: 5;
    grid-row: 4 / span 4;
}

.gallery-item-9 {
    grid-column: 6;
    grid-row: 4 / span 4;
}



/* gallery ends here*/


/* *********************************************** */

/* newsletter */
.newsletter {
    position: relative;
    height: 300px;
    width: 100%;
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/images/View_Dharan02.jpg'); */
    background-position: 20%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    justify-content: center;

}

.newsletter .sub-title {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 24px;
}

.newsletter .content {
    justify-content: center;
    align-items: flex-end;
    color: var(--light-color);
}

.newsletter .content .col {
    margin: var(--m-8);
}

.newsletter .content .col p {
    width: 350px;
}

.newsletter input {
    margin: var(--m-8);
    padding: 10px 8px;
    border: none;
    outline: none;
    border-radius: var(--m-4);
}

/* newsletter ends here*/

/* main content ends here */

/* footer */
footer {
    padding: var(--m-24) var(--m-50);
    background-color: #fff;
    /* position: absolute;
    bottom: 0;
    width: 100%; */

}

.footer-sec .content {
    /* grid-template-columns: repeat(auto-fit,minmax(200px, 1fr)); */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-sec .content div {
    margin-bottom: 12px;
}

.footer-sec .content h4 {
    margin-bottom: var(--m-16);
}

.bot-logo {
    width: 100px;
    margin-bottom: var(--m-16);
}

.bot-link {
    display: inline-block;
    margin-bottom: 12px;
    transition: .5s;
}

.footer-sec .social-img {
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    grid-gap: var(--m-8);
}

.footer-sec .social-img img {
    width: 60px;
    height: 60px;
    border-radius: var(--m-4);
    overflow: hidden;
}

.copyright {
    text-align: center;
    padding-top: var(--m-8);
    border-top: 1px solid #000;
    width: 100%;
}

.co-name {
    color: var(--secondary-color);
}

/* footer ends here*/

@-webkit-keyframes beat {
    0% {transform: scale(1);}
    50% {transform: scale(1.1);}
    100% {transform: scale(1);}
}

@keyframes beat {
    0% {transform: scale(1);}
    50% {transform: scale(1.1);}
    100% {transform: scale(1);}
}

/* ************************************************ */

/* !media queries */
@media only screen and (max-width: 1020px) {
    .img-1 {
        right: 5%;
    }

    .img-2 {
        left: 0;
    }
}


@media only screen and (max-width: 960px) {

    .sub-nav,
    .navbar,
    header {
        padding: var(--m-8) var(--m-24);
    }

    .section,
    footer {
        padding: var(--m-24);
    }

    .sec-2 img {
        width: 250px;
    }
}

@media only screen and (max-width: 945px) {
    .img-3 {
        bottom: 7%;
    }
}

@media only screen and (max-width: 880px) {
    .hero-sec {
        padding: 50px 0 25px;
    }

    .notice-event {
        margin-top: 50px;
        width: 100%;
    }

    .hr-event-card {
        width: auto;
    }
}

@media only screen and (max-width: 850px) {
    .hotel-img {
        height: 150px;
    }

    .sec-2 .images div {
        width: 200px;
    }

    .img-1 {
        left: 15%;
    }

    .img-2 {
        left: 20%;
    }

    .img-3 {
        left: 10%;
    }

    .gallery .content {
        grid-gap: var(--m-8);
    }
}

@media only screen and (max-width: 780px) {

    .sub-nav,
    .navbar,
    header {
        padding: var(--m-8) var(--m-16);
    }

    .section,
    footer {
        padding: var(--m-16);
    }

    /* .navbar {
        position: fixed;
    } */

    .nav-menu {
        position: fixed;
        flex-direction: column;
        width: 250px;
        top: 0;
        left: -250px;
        align-items: start;
        display: block;
        background-color: #fff;
        height: 100vh;
        padding-top: 10px;
        overflow: auto;
        transition: .5s linear;
        z-index: 100;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .sidenav-logo {
        padding: 4px 16px 24px;
        display: block;
    }

    .nav-link {
        padding: var(--m-8) var(--m-16);
    }

    .nav-link:hover {
        background-color: var(--primary-color);
        color: var(--body-color);
    }

    .dropdown {
        position: static;
        width: inherit;
        padding-left: var(--m-16);
    }

    #dropdown-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #dropdown-btn:hover .icon {
        color: var(--body-color);
    }

    .open-btn,
    .close-btn {
        display: block;
    }

    .close-btn {
        float: right;
        top: 0;
        right: var(--m-16);
    }

    /* .sec-2 {
        grid-template-columns: 1fr;
    } */

    .img-1 {
        left: 0;
    }

    .img-2 {
        left: 10%;
    }

    .img-3 {
        left: 0;
    }

    .cards {
        padding-top: var(--m-24);
    }

    .event-card {
        padding: var(--m-8);
    }

    .event-img {
        width: 100px;
        height: 100px;
        margin-right: var(--m-16);
    }

    .footer-sec .content {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media only screen and (max-width: 740px) {
    .sec-2 {
        grid-template-columns: 1fr;
    }

    .sec-2 .images {
        display: none;
    }
}

@media only screen and (max-width: 720px) {
    .cards {
        padding-top: var(--m-24);
    }

    .events-sec .content {
        grid-template-columns: 1fr;
        grid-gap: var(--m-16);
    }

    .event-card {
        justify-content: start;
    }

    .slider button {
        display: none;
    }

    .newsletter .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--m-16);

    }

    .newsletter .content .col p {
        width: 100%;
    }

    .gallery-item-1 {
        grid-column: span 4;
        grid-row: span 5;
    }

    .gallery-item-2 {
        grid-column: 1 / span 2;
        grid-row: span 4;
    }

    .gallery-item-3 {
        grid-column: span 2;
        grid-row: span 4;
    }

    .gallery-item-4 {
        grid-column: 1 / span 2;
        /* grid-row: span 2; */
    }

    .gallery-item-5 {
        grid-column: 3 / span 2;
        grid-row: span 4;
    }

    .gallery-item-6 {
        display: none;
    }

    .gallery-item-7 {
        grid-column: 5 / span 2;
        grid-row: span 4;
    }

    .gallery-item-8 {
        grid-column: 5 / span 2;
        grid-row: 1 / span 5;
    }

    .gallery-item-9 {
        grid-column: 5 / span 2;
        grid-row: 6 / span 4;
    }

}

@media only screen and (max-width: 620px) {
    .sub-nav {
        flex-direction: column;
    }

    .cards {
        padding-top: var(--m-24);
    }
}

@media only screen and (max-width: 480px) {
    .cards {
        padding-top: var(--m-24);
    }

    .hotel-card {
        margin: var(--m-8);
    }

    .title {
        width: 250px;
    }

    .footer-sec .content {
        align-items: center;
    }
}

@media only screen and (max-width:450px) {
    .cards {
        width: 100%;
    }

    .sec-2 .card {
        width: 115px;
        height: 120px;
    }

    .title-sec .secondary-btn {
        display: none;
    }

    .sm-btn {
        display: block;
    }
}

@media only screen and (max-width: 410px) {
    .cards {
        grid-template-columns: auto auto;
    }

    .sec-2 .card {
        width: 165px;
        height: 120px;
    }


    .jobs .content,
    .notice .content {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media only screen and (max-width: 360px) {
    .sub-nav .col:nth-child(1) {
        display: none;
    }

    .sec-2 .card {
        width: 150px;
        height: 120px;
    }

    .event-img {
        display: none;
    }

    .newsletter .content .col {
        flex-direction: column;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }
}


@media only screen and (max-width: 340px) {

    .sub-nav,
    .navbar,
    header,
    .section {
        padding: var(--m-16);
    }

    .heading {
        font-size: 2rem;
    }

    .sec-1 .title {
        font-size: 1.1rem;
        white-space: pre-wrap;
    }

    .cta-btn {
        padding: 12px var(--m-24);
    }
}

@media only screen and (max-width: 280px) {

    .sub-nav,
    .navbar,
    header {
        padding: var(--m-8) 10px;
    }

    .section,
    footer {
        padding: 10px;
    }

    .sec-2 .card {
        width: 120px;
        height: 120px;
    }

    .event-card {
        padding: var(--m-8);
    }

    .event-img {
        /* width: 80px; */
        display: none;
    }

    .job-card img {
        display: none;
    }
}

@media only screen and (min-width:1440px) {
    .events-sec {
        grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    }
}


/* loading animation */
.loader-wrapper {
    height: 100vh;
    width: 100vw;
    position: absolute;
    z-index: 1000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    overflow: hidden;
}

.loader {
    position: relative;
    width: 200px;
    height: 200px;
} 



.circle {
    width: 100%;
    height: 100%;
    border-left: 4px solid #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    animation: rotate 1s linear infinite;
    -webkit-animation: rotate 1s linear infinite;
}

.text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 200px;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}