/* Fonts */
:root {
    --default-font: "Mukta", sans-serif;
    --heading-font: "Questrial", sans-serif;
    --nav-font: "Noto Sans", sans-serif;
}

/* Global Colors - */
:root {
    --background-color: #ffffff;
    --default-color: #000000;
    --heading-color: #0f2943;
    --accent-color: #3d03b8;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --section-bg-color: #192716;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--contrast-color);
    font-family: var(--heading-font);
}

.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #5f685d;
}

.form-control::-moz-placeholder { /* Firefox 19+ */
    color: #5f685d;
}

.form-control:-ms-input-placeholder { /* IE 10+ */
    color: #5f685d;
}

.form-control:-moz-placeholder { /* Firefox 18- */
    color: #5f685d;
}

.form-control:focus {
    color: #fff;
    background-color: transparent;
    border-color: #5f685d;
    outline: 0;
    box-shadow: none;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    background: var(--surface-color);
    padding: 10px 25px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}


.header .logo {
    line-height: 1;
}

.header .logo h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 46.51px;
    color: #3C2F81;
    padding-left: 30px;
}


.header .logo img {
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 24px;
    margin: 0;
    padding-left: 5px;
    font-weight: 500;
    color: var(--heading-color);
}

.header .header-social-links {
    padding-right: 15px;
}

.header .header-social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding-left: 6px;
    display: inline-block;
    transition: 0.3s;
    font-size: 16px;
}

.header .header-social-links a:hover {
    color: var(--accent-color);
}

.header .header-social-links a i {
    line-height: 0px;
}

@media (max-width: 1200px) {
    .header {
        padding-top: 10px;
    }

    .header .header-container {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px 5px 10px 15px;
    }

    .header .logo {
        order: 1;
    }

    .header .header-social-links {
        order: 2;
    }

    .header .navmenu {
        order: 3;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu > ul > li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--default-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--heading-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    /* .navmenu>ul>li>a:before {
      content: "";
      position: absolute;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: var(--nav-hover-color);
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
    } */
    .navmenu a:hover:before,
    .navmenu li:hover > a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 25px;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--accent-color);
        outline: none;
        box-shadow: none;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: (--accent-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--default-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--accent-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--default-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;

    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .mobile-nav-active .navmenu li {
        border-bottom: solid #939393 1px;
    }

    .navmenu a, .navmenu a:focus {
        color: #000000 !important;
    }

    .mobile-nav-active .navmenu li:last-child {
        border-bottom: transparent;
    }


    .navmenu a,
    .navmenu a:focus {
        color: var(--accent-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        /* background-color: color-mix(in srgb, var(--accent-color), transparent 90%); */
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: #dd0081;
        color: #fff;
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: #000000;
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
        background: #d40082;
        border-radius: 100px;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

.btn-chaturmas {
    background: #dd0081;
    padding: 8px 20px !important;
    color: #fff !important;
    border-radius: 50px;
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(120deg, var(--heading-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title .title-shape {
    width: 200px;
    height: 20px;
    margin: 0 auto;
    color: var(--accent-color);
    opacity: 0.5;
}

.section-title .title-shape svg {
    width: 100%;
    height: 100%;
}

.section-title p {
    margin: 15px auto 0;
    font-size: 16px;
    max-width: 700px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 32px;
    }

    .section-title .subtitle-wrapper .subtitle {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    padding: 0;
}

.section-chaturmas {
    background-color: var(--section-bg-color);
}

.photo-section {
    border: 2px solid #5f685d;
    border-radius: 8px;
    width: 100%;
    padding: 25px;
    position: relative;
}

.photo-section .user_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
}

.photo-section label {
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 29.92px;
    color: #fff;
}

.photo-section img {
    display: none;
}

.photo-section-1 {
    border: 2px solid #5f685d;
    border-radius: 8px;
    width: 100%;
    padding: 25px;
    position: relative;
}


.photo-section-1 .user_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
}

.photo-section-1 label {
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 29.92px;
    color: #fff;
}

.photo-section-1 img {
    display: none;
}

.container-img .slide {
    margin: 0;
    padding: 0;
    list-style: none;
}

.slide-custom-home .slick-dots {
    bottom: 8px;
}

.slide-custom-home .slick-slide img {
    display: block;
    width: 100%;
}

.slide-custom-home .slick-dots button::before {
    font-size: 14px;
    line-height: 24px;

}


.slide-custom-home .slick-prev, .slide-custom-home .slick-next {
    z-index: 2;
    width: 40px;
    height: 40px;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.slide-custom-home .slick-prev:before, .slide-custom-home .slick-next:before {
    font-size: 0;
    color: #000000;

}

.slide-custom-home .slick-prev:before {
    content: "";
    background-image: url(../images/right-arrow.svg);
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    display: block;
    font-size: 0;
    position: relative;
    top: -9px;
    left: -13px;
    transform: rotate(180deg);
}

.slide-custom-home .slick-next:before {
    content: "";
    background-image: url(../images/right-arrow.svg);
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    display: block;
    font-size: 0;
    right: -10px;
    position: relative;
    top: 9px;
}

.slide-custom-home .slick-prev:hover, .slide-custom-home .slick-prev:focus, .slide-custom-home .slick-next:hover, .slick-next:focus {
    color: #fff;
    outline: 0;
    background: #d40082;
}

.slide-custom-home .slick-prev {
    left: 0px;
}

.slide-custom-home .slick-next {
    right: 0px;
}

.slide-custom-home .slick-dots li button:before {
    opacity: .40;
}

.slide-custom-home .slick-dots li.slick-active button:before {
    color: #dd0081;
}

.slide-custom-home .slick-prev:hover:before, .slide-custom-home .slick-prev:focus:before, .slide-custom-home .slick-next:hover:before, .slick-next:focus:before {
    opacity: 1;
    filter: brightness(0) invert(1);
}

.section-chaturmas h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 53.18px;

}

.container-fluid-custom {
    padding: 0 60px;
}

.passport-images p {
    font-weight: 500;
    font-size: 16px;
    line-height: 29.92px;
    color: var(--contrast-color);
}

.title-h1 {
    font-weight: 700;
    font-size: 58px;
    line-height: 96.4px;
    position: relative;
    padding-left: 80px;
}

.title-h1:before {
    content: "";
    position: absolute;
    background: var(--contrast-color);
    top: 64px;
    width: 50px;
    height: 1px;
    left: 0;
}

.title-h1:after {
    content: "";
    position: absolute;
    background: var(--contrast-color);
    top: 64px;
    width: 74%;
    height: 1px;
    left: 300px;
}

.info-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.info-nav li {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--contrast-color);
    font-family: 'Mukta';
    padding-right: 20px;
    display: flex;
    align-items: baseline;
    padding-bottom: 5px;
}

.info-nav li i {
    padding-right: 10px;
}


.form-floating > .my-label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    color: var(--contrast-color) !important;

}

.form-floating-custom .form-floating > .form-control {
    padding: 1rem 25px;
}


.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    opacity: 1;
    background-color: #192716;
    transform: scale(.85) translateY(-.99rem) translateX(.20rem);
    top: -6px;
    left: 13px;
    padding: 1rem .75rem 0;
    height: auto;
}

.section-chaturmas p {
    font-weight: 500;
    font-size: 15px;
    line-height: 29.92px;
    color: var(--contrast-color);
}

.form-check-custom .form-check-label {
    color: #fff;
}

.form-check-custom .form-check-input:checked {
    background-color: #fff;
    border-color: #ccc;
}

.form-check-custom .form-check-input {
    width: 23px;
    height: 23px;
    margin-right: 10px;
    margin-top: 0;
}

.form-check-custom .form-check-input:checked[type=checkbox] {
    background-image: url('../images/check-arrow.svg');
    width: 23px;
    height: 23px;
    background-repeat: no-repeat;
    background-size: 15px;
    border-radius: 3px;
    margin-right: 10px;
    margin-top: 0;
}

.custom-field {
    position: relative;
    width: 100%;
}

.my-input {
    font-size: 18px;
    line-height: 36.56px;
    padding: 13px 30px;
    margin-bottom: 20px;
    width: calc(100% - 0px);
    display: block;
    border-radius: 8px;
    background-color: #192716;
    border: 2px solid #5f685d;
    height: auto !important;
    color: var(--contrast-color) !important;
    font-weight: 400;
}

.form-floating > .my-label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    pointer-events: none;
    color: #5f685d !important;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    color: var(--contrast-color) !important;
}


/*.my-label {*/
/*font-size: 18px;*/
/*line-height: 36.56px;*/
/*font-weight: normal;*/
/*position: absolute;*/
/*background-color: #192716;*/
/*color:#5f685d !important;*/
/*pointer-events: none;*/
/*top: 15px;*/
/*left: 12px;*/
/*width: 92%;*/
/*padding: 0 15px;*/
/*transition: 150mscubic-bezier(0.4, 0, 0.2, 1) all;*/
/*-moz-transition: 150ms cubic-bezier(0.4, 0, 0.2, 1) all;*/
/*-webkit-transition: 150mscubic-bezier(0.4, 0, 0.2, 1) all;*/
/*}*/
/*.my-input:focus ~ .my-label {*/
/*color: #fff !important;*/
/*transform: scale(0.75) translate(-28px, -38px);*/
/*width: auto;*/
/*}*/
.my-input:focus {
    outline: none;
    border: 2px solid #e5087b;
}

.submit-btn {
    background-color: var(--background-color);
    color: var(--default-color);
    font-weight: 600;
    text-transform: none;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    padding: 10px 30px;
    position: relative;
    pointer-events: auto;
    display: inline-block;
    overflow: hidden;
}

.submit-btn span {
    display: block;
    position: relative;
    z-index: 10;
    color: var(--default-color);
}

.submit-btn:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
var(--background-color);
}

.submit-btn:hover span {
    color: #fff;
}

.submit-btn::before {
    content: '';
    background: var(--default-color);
    width: 120%;
    position: absolute;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.submit-btn::after {
    content: '';
    background: var(--default-color);
    position: absolute;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.submit-btn:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.submit-btn:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

/*--------------------------------------------------------------
# footer css
--------------------------------------------------------------*/
.footer {
    background-color: #121316;
    padding: 0px;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    line-height: 29.92px;
    color: var(--contrast-color);
}

/*27-02-2025*/
.section-1 {
    background-image: linear-gradient(145deg, #645791 10%, #723d47 100%);
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-sidbar {
    background: linear-gradient(150deg, #fef2ea, #feeee3, #fdeadc, #fde6d5, #fce2cf, #fcdec8, #fbdac1, #fad6ba);
    padding: 20px;
    border-radius: 20px;
}

.sidbar-iteam h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    background: linear-gradient(to right, #d76011 0%, #a94e14 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 20px;
}

.sidbar-iteam {
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;


}

.bg-gradient2 {
    background-image: linear-gradient(135deg, #fbe0c2 10%, #f9ca9f 100%);
    border-top: 2px solid #f1a83d;
    border-bottom: 2px solid #f1a83d;

}

.images-sidbar img {
    border-radius: 57px;
    border: solid #f1a83d 2px;
    max-width: 180px;
}

.heading h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    background: linear-gradient(to right, #63578f 0%, #63578f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px;
}

.heading {
    display: flex;
    justify-content: center;
    background-image: linear-gradient(135deg, #d4d0e8 10%, #f7f6fb 100%);
    border-radius: 50px;
    padding: 10px 30px;
}

.inner-page-nav {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.inner-page-nav li {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--contrast-color);
    font-family: 'Mukta';
    padding-right: 20px;
    padding-bottom: 5px;
}

.inner-page-nav li strong {
    color: #f7d8b4;
}

.inner-page-content {
    padding: 20px;
}

.section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: linear-gradient(135deg, #FF9D6C 10%, #BB4E75 100%);
}

.intero p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--contrast-color);
    font-family: 'Mukta';
    padding-right: 20px;
    padding-bottom: 5px;
}

.section-3 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: linear-gradient(135deg, #3f48df 10%, #202689 100%);
}

.section-4 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: linear-gradient(135deg, #3f48df 10%, #202689 100%);
}

.inner-page-table th, td {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    font-family: 'Mukta';
    padding-right: 20px;
    padding-bottom: 5px;
}

.images-sidbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mt-200 {
    margin-top: 200px;
}

.temple-section {
    /*background-image: url(../images/temple.png);*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    padding-top: 0px;
    padding-bottom: 0px;
    position: relative;
}
.temple-section img {
    width: 100%;
}

.chaturmas-block {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chaturmas-btn {

    background-color: #d40082;
    background-image: -moz-linear-gradient(top, #d544a3 0%, #d40082 100%);
    background-image: -webkit-linear-gradient(top, #d544a3 0%, #d40082 100%);
    background-image: linear-gradient(to bottom, #d544a3 0%, #d40082 100%);
    font-size: 2rem;
    padding: 8px 30px;
    border-radius: 100px;
    color: #fff;
    font-weight: 500;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
}

.chaturmas-btn:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
    color: #fff;
}

.chaturmas-btn:focus {
    outline: none;
    box-shadow: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    70% {
        transform: scale(.9);
    }
    100% {
        transform: scale(1);
    }
}

/* .templ-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
} */
.image-anime {
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: #fff;
    max-width: 400px;
    min-height: 400px;
}

.image-anime img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* object-fit: contain; */
    border-radius: 50%;
    transition: all 0.4 sease -in-out;
}

.me-auto-cutom {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}
.d-none {
    display: none;
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
    display: none !important;
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
    display: none !important;
}


.section-1 img {
    width: 100%;
}

.section-2 img {
    width: 100%;
}

.section-3 img {
    width: 100%;
}

.qr-code-scan {
    background: #fff;
    padding: 10px;
}

.receipt-section {
    border: 2px solid #5f685d;
    border-radius: 8px;
    width: 100%;
    padding: 25px;
    position: relative;
}


.receipt-section .payment_receipt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
}

.receipt-section label {
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 29.92px;
    color: #fff;
    justify-content: center;
}

.receipt-section img {
    display: none;
}
.img-mob {
    display: none;
}

/*--------------------------------------------------------------
# all responsive css
--------------------------------------------------------------*/
@media only screen and (max-width: 1280px) {
    .image-anime {
        max-width: 310px;
        min-height: 310px;
    }
}

@media only screen and (max-width: 1024px) {
    .title-h1:before {
        display: none;
    }

    .title-h1:after {
        display: none;
    }

    .title-h1 {
        font-size: 28px;
        line-height: 66.4px;
        padding: 0;
    }

    .info-nav li {
        font-size: 14px;
        line-height: 24px;
        padding-bottom: 10px;
    }

    .section-chaturmas p {
        font-size: 14px;
        line-height: 24px;
        padding-bottom: 10px;
    }

    .my-input {
        font-size: 14px;
        line-height: 24px;
    }

    .container-fluid-custom {
        padding: 0 20px;
    }



}

@media only screen and (max-width: 767px) {
    .info-nav {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }

    .form-floating > .my-label {
        font-size: 11px;
    }

    .header {
        padding: 10px 0px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    }

    .header .logo h3 {
        font-size: 15px;
        line-height: normal;
        padding-left: 0;
        margin: 0;
    }

    .header .logo img {
        margin-right: 8px;
        max-width: 80px;
    }

    .custom-text-content {
        margin-top: 30px;
    }

    .heading h1 {
        font-size: 20px;
        line-height: 24px;
    }

    .sidbar-iteam {
        padding: 15px;
        border-radius: 0;
    }



    .templ-image .image-anime {
        min-height: auto;
    }

    .temple-section .container {
        padding: 0 20px;
    }

    .temple-section .justify-content-between {
        justify-content: center !important;
    }

    .image-anime {
        max-width: 270px;
        min-height: 270px;
        text-align: center;
        margin: 0 auto;
    }



    .me-auto-cutom {
        justify-content: space-around;
        text-align: center;
        margin-top: 50px;
    }

    .header .navmenu .btn-chaturmas {
        margin-top: 20px;
        color: #fff !important;
        display: block !important;
        white-space: inherit;
    }
    .chaturmas-btn {
        font-size: 15px;
        padding: 4px 15px 2px;
        line-height: normal;
    }
    .mobile-nav-active .navmenu li:last-child {
        padding: 20px;
    }
    .chaturmas-block {
        bottom: 20px;
    }
    .img-desktop {
        display: none;
    }
    .img-mob {
        display: block;
    }

}



