* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

li a,
p a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    color: #f37d1f;
    cursor: pointer !important;

}

a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    cursor: pointer !important;

}

li {
    list-style-type: none;
}

p {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

li {
    list-style: none;
}

.btn-1 {
    border: 1px solid;
    padding: 5px 15px;
    background: rgb(255, 68, 0);
    color: #fff;
    display: block;
    margin: auto;
}

.home-heading {
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding: 5px 10px;
    margin: 10px auto;
    width: fit-content;
    font-weight: 700;
}

.home-heading span {
    color: #f37c1d;
}

.sub-heading {
    color: #575757;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
}

.head-txt {
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 0 0 20px 0;
    font-size: 15px;
}

/* btn style  */
.about-btn {
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    border: 1px solid #ff850d;
    padding: 7px 25px;
    font-size: 17px;
    font-weight: 500;
    background: rgb(255, 140, 0);
    color: white;
    border-radius: 4px;
    text-align: center;
    display: block;
    width: fit-content;
    margin: 25px auto;
    transition: 0.7s;
}

.about-btn:hover {
    transform: translateY(-5px);
    transition: 0.7s;
}











/* =================== header ================================== */

header {
    width: 80%;
    margin: auto;
    border-bottom: 1px solid rgb(230, 230, 230);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    /* backdrop-filter: blur(10px); */
    padding: 5px 0;

}

.lg-nav-content {
    display: flex;
    gap: 40px;
}

.lg-nav-content ul {
    display: flex;
    align-items: center;
    margin: 0;
}

.lg-nav-content ul li a {
    margin: 0px 5px;
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #4b4b4b;
    cursor: pointer;
}

.humberg-menu {
    display: none;
}



.navbtn {
    position: relative;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.navbtn:before,
.navbtn:after {
    content: '';
    position: absolute;
    transition: inherit;
    z-index: -1;
}

.navbtn:hover {
    color: #fff;
    transition-delay: .5s;
}

.navbtn:hover:before {
    transition-delay: 0s;
}

.navbtn:hover:after {
    background: rgb(243 124 30);
    transition-delay: .35s;
}
.activemenu {
    padding: 5px 0;
    background: rgb(243 124 30);
}
.activemenu a{
    color: #fff !important;
}

.type3:before {
    top: 0;
    left: 50%;
    height: 100%;
    width: 0;
    border: 1px solid rgb(243 124 30);
    border-left: 0;
    border-right: 0;
}

.type3:after {
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background: rgb(243 124 30);
}

.type3:hover:before {
    left: 0;
    width: 100%;
}

.type3:hover:after {
    top: 0;
    height: 100%;
}



/* mobile menu content  */
.humberg-menu i {
    color: rgb(0, 0, 0);
    font-size: 27px;
    cursor: pointer;
}

.sm-nav-content {
    display: none;
    position: fixed;
    top: 10%;
    right: 0;
    background-color: #fff;
    width: 0;
    height: 100vh;
    /* height: 100%; */
    overflow: hidden;
    transition: width 1s cubic-bezier(0.175, 0.88, 0.32, 1.275);
    z-index: 100;
}

.sm-nav-content.open {
    width: 60%;
    margin-top: 15px;
}

.sm-nav-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.sm-nav-content li a {
    padding: 5px 0;
    color: black;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-social p {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.header-social:hover a {
    color: #6d6d6d;
}

.header-social:hover i {
    rotate: 30deg;
    transition: 0.5s;
}

.header-social i {
    color: rgb(243 124 30);
    font-size: 18px;
    transition: 0.5s;
}


/* 
.modal{
    z-index: 1005;
} */

/* ========================= Banner SLider ================= */

.home-banner {
    position: relative;
    overflow: hidden;
    /* z-index: -1; */
}

.home-banner-content img {
    position: absolute;
    top: 0;
    right: 0;
    width: 755px;
}

.slider {
    position: relative;
    width: 100%;
    background: #2c3e50;
}

.myslide {
    height: 600px;
    display: none;
    overflow: hidden;
}

.myslide img {
    width: 100%;
    height: auto;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 25px;
    padding: 15px;
    cursor: pointer !important;
    color: #ffffff;
    transition: 0.1s;
    text-decoration: none;
}

.prev:hover,
.next:hover {
    color: rgb(255, 71, 4);
}

.next {
    right: 0;
}


.fade {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation-name: fade;
    animation-duration: 2ms;
    animation-fill-mode: forwards;
}

.myslide.active {
    display: block;
    opacity: 1;
}

@-webkit-keyframes fade {
    from {
        opacity: 0.8
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: 0.8
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes posi {
    from {
        left: 25%;
    }

    to {
        left: 15%;
    }
}

@keyframes posi {
    from {
        left: 25%;
    }

    to {
        left: 15%;
    }
}

@-webkit-keyframes zoomin {

    from {

        transform: scale(1, 1);

    }

    to {
        transform: scale(2.0, 2.0);
    }
}

@keyframes zoomin {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(2.0, 2.0);
    }
}

.myslide img {
    /* /* transform: scale(1.5, 1.5); */
    animation-name: zoomin;
    animation-duration: 30s;
    animation-timing-function: ease-in-out;

}






/* ================ about section ================ */

.about-section {
    margin: 50px 0;
}

.about-container {
    width: 80%;
    margin: 0 auto;
}

.col-img {
    height: auto;
}

.col-img img {
    width: 100%;
    height: 100%;
}

.col-img-container.col-lg-7.col-md-7.col-sm-12 {
    padding: 20px;
    background: #e7e7e7;
}


.col-text-container.col-lg-4.col-md-4.col-sm-12 {
    padding: 0;
}

.aobut-greet {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    text-align: center;
    color: #ff931f;
    padding: 10px 0;
    font-weight: 600;
}

.col-text h1 {
    font-family: "Poppins", sans-serif;
    font-size: 35px;
    text-align: center;
    font-weight: 700;
}

.col-text p {
    text-align: center;
    padding: 10px;
    font-size: 15px;
    font-weight: 300;
    color: #515151;
}

.about-col-btn {
    padding: 10px 0;
}

.col-text-container {
    padding: 0 0;
    margin: 0 0;
    background: #f3f4f5;
    border-radius: 5px;
}

.col-text {
    padding: 10px 25px;
}


.my-container {
    width: 85%;
    margin: auto;
}





.service-details-item {
    height: 260px !important;}

.album-page-content iframe { width: 100%; height: 200px; padding-right: 10px; }
/* ==================== Service sectin =============== */

.services-section {
    padding: 30px 0;
    background: #f9f9f9;
}

.services-section-container {
    width: 85%;
    margin: 20px auto;
    height: auto;
}

.services-section-heading {
    width: 85%;
    margin: auto;
}

.swiper {
    width: 100%;
    height: 500px !important;
}


.swiper-slide {
    height: 420px !important;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fefefe;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;

}

.service-item-img {
    height: 270px;
    transition: 1s;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    /* padding: 5px; */
    border: 5px solid #fff;
    margin: auto;
    height: 100%;
    object-fit: cover;
}

.service-item h3 {
    font-size: 20px;
    color: rgb(243 122 26);
    text-align: center;
    padding: 10px 0;
    font-weight: 600
}

.service-item p {
    font-size: 15px;
    padding: 0 10px;
}

.service-item-btn {
    margin-top: 60px;
    text-align: center;
}

.service-item-btn a {
    text-decoration: none;
    color: orangered;
    border: 1px solid orangered;
    padding: 4px 7px;
}

.swiper-slide.service-item.swiper-slide-active {
    border: 1px solid orange;
}




/* =============== albume section ================ */
.album-section {
    padding: 30px 0;
}

.album-section-container {
    margin: 30px auto;
}

/* fot both page and section  */
.album-item {
    width: 296px;
    margin: 0 10px 20px 10px;
}

.album-section-item {
    padding: 0 0 0 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 2px solid #e7e7e7;
    margin-bottom: 5px;
    transition: 0.7s;
}

.album-section-item:hover {
    box-shadow: none;
    transition: 0.7s;
}

.album-item-img {
    width: 100%;
    height: 296px;
    transition: 0.7s;
    border: 5px solid #fff;
    overflow: hidden;
}

.album-item-img img {
    width: 100%;
    height: 100%;
    transition: 0.7s;
    /* padding: 5px; */
}

.album-item-img img:hover {
    padding: 5px I !important;
    transform: scale(1.1);
    transition: 0.7s;
}

.album-section-item h4 {
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f37a1a;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
    margin: 0;
    position: relative;
    cursor: pointer !important;
}

.album-name::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: orange;
    transition: height 0.5s ease;
    z-index: -1;
}

.album-name:hover::before {
    height: 100%;
}

.album-name:hover {
    color: #fff;
}


.active .page-link {
    background: darkorange;
    border: none;
}

a.page-link {
    color: orange;
}





/* ============================= Footer ========================= */
footer ul {
    padding-left: 10px;
    width: fit-content;
    margin: auto;
    text-align: start;
}

footer {
    background-color: #393838;
}

.footer-container {
    width: 85%;
    margin: 20px auto;
    padding: 30px 0;

}

.footer-menu {
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-container h5 {
    color: #f37c1d;
    font-size: 17px;
    font-weight: 700;
    padding-right: 77px;
}

.footer-container li a {
    color: #fff;
    font-size: 15px;
    transition: 0.5s;
}

.footer-container li .f-navlink:hover {
    color: #F37C1d;
    transform: translateX(10px);
    transition: 0.5s;
}

.footer-social-icon {
    margin: 0;
    padding: 0;
}

.footer-social-icon li {
    margin-right: 10px;
    display: inline-block;
}

.footer-list ul li a {
    display: inline-block;
    font-size: 15px;
    color: #e0dbdb;
}

.footer-social-icon li a {
    display: block;
    color: #fff !important;
    font-size: 16px !important;
    width: 38px !important;
    height: 38px !important;
    line-height: 38px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #fff;

}

.footer-social-icon li a:hover {
    color: #F37C1d !important;
}


.footer-container p {
    color: #fff;
    font-size: 15px;
    text-align: justify;
}

.footer-about-txt {
    color: #fff;
}

.footer-address p span {
    font-weight: 400;
}


.copywrite-section {
    background-color: #f37c1d;
    color: #fff;
    padding: 20px 0;
}

.copywrite-content {
    display: flex;
    justify-content: space-between;
    width: 85%;
    margin: auto;
}

.copywrite-section p {
    margin: 0;
    font-size: 15px;
}

.copywrite-section a {
    text-decoration: none;
    color: #fff;
}

.copywrite-section a:hover {
    color: #000;
    font-weight: 500;
}








/* ================ Common css for pages ========================== */
.page-container {
    width: 85%;
    margin: 50px auto;
}

.page-banner {
    height: 200px;
    background: url('../images/inner_banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.chorcha_page-banner {
    height: 300px;
    background: url('../images/chorcha.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page-banner h1 {
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
}




/* =================== album list page ================= */

/* album modal popup styling .................. */
.flex-con {
    display: flex;
    align-items: center;
}

.popup-album-img {
    width: 100%;
}

.popup-album-img img {
    width: 100%;
    border: 2px solid #d7d7d7;
    padding: 5px;
}

.popup-album-content {
    height: 300px;
    overflow-y: scroll;
}

.popup-social {
    margin-top: 20px;
}

.popup-social ul li {
    display: inline-block;
}

.popup-social ul li i {
    color: #fff;
    font-size: 14px;
}

.popup-social ul {
    padding: 0;
}

.popup-social h5 {
    font-size: 18px;
}

.popup-social ul li a {
    border-radius: 50%;
    display: block;
    height: 35px;
    line-height: 35px;
    text-align: center;
    width: 35px;
    background: #e24f3d;
    padding: 0px !important;
}


/* ..............  */
.album-page-sidebar h5 i {
    display: none;
}


.album-page-sidebar {
    width: 90%;
    height: 100%;
    padding: 0 14px 0 0;
    margin: 17px;
}

.album-page-sidebar h5 {
    margin: 0;
    padding: 10px 0 10px 10px;
    background: #494949;
    color: #fff;
    font-size: 17px;
}

.album-page-sidebar ul {
    padding: 0px;

}

.album-page-sidebar ul li {
    border: 1px solid #d5d5d5;
    margin: 3px 0;
    position: relative;
    overflow: hidden;
}

.album-page-sidebar ul li :hover {
    background: #f37d1f;
    color: #fff;
}

.album-page-sidebar ul li a {
    color: #000;
    display: block;
    padding: 7px 5px 7px 4px;
    cursor: pointer !important;
    font-size: 15px;
}

.pagination-album {
    width: fit-content;
    margin: auto;
}

.filter-item {
    display: inline-block;
    position: relative;
}

.filter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: orange;
    z-index: -1;
    transition: left 0.7s ease;
}

.filter-item:hover::before {
    left: 0;
}

.filter-item:hover {
    color: #fff;
}

.album-page-content {
    margin-top: 15px;
}

.album-page-container {
    display: flex;
    flex-wrap: wrap;
}

.album-name::before {
    margin-top: 15px;
}
.remove-padding{
    padding: 0;
}



/* ================== about us page ======================= */

.about-page-img {
    width: 95%;
    padding-top: 10px;
}

.about-page-img img {
    width: 100%;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    background: #fff;
    padding: 14px;
}

.about-page-content {
    font-size: 15px;
    text-align: justify;
}


/* ======================== Gallery Page ============================= */

.gallery-page-item {
    width: 100%;
    height: 280px;
    overflow: hidden;
    transition: 1s;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    padding: 10px;
    transition: 1s;
}

.gallery-page-item img:hover {
    transform: scale(1.1);
    transition: 1s;
}


/* ======================== Services Page ============================= */
.service-page-container .service-item-img {
    width: 100%;
}

.service-page-container .service-item-img img {
    display: block;
    width: 100%;
    padding: 5px;
    margin: auto;
    height: 100%;
    /* object-fit: cover; */
}

.service-item p{
    font-size: 15px;
    color: rgb(88, 88, 88);
}

.service-page-container .service-item {
    margin: 20px 0;
    height: 440px !important;
    text-align: justify;
    font-size: 18px;
    background: #fff;
    border: 1px solid #fefefe;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgb(221 221 221 / 30%) 0px 1px 3px -1px;
}

/* =========================== Contact Us page ======================  */

.contact-page-container {
    border: 1px solid #dddddd;
    padding: 15px;
}

.contact-details {
    padding-right: 30px;
}

.contact-details-head {
    padding: 0 0 20px 10px;
}

.contact-details-item {
    display: flex;
    gap: 20px;
}

.contact-details-item i {
    font-size: 25px;
    color: rgb(255, 141, 2);
}

.contact-details-item h5 {
    font-size: 17px;
}

.contact-details-item a {
    text-decoration: none;
    color: #00000f;
}

.form-control:focus {
    border-color: #f37a1a !important;
    box-shadow: none !important;
}
