* {
    margin: 0;
    padding: 0;
    font-family: "Nunito", sans-serif;
}

:root {
    --background-color-1: #010165;
    --title-color: #010165;
    --white-color: #ffffff;
}

body{
    top: 0 !important;
}

ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

/* ==================  Topbar Css Start  ====================== */

section.header-top {
    background-color: var(--background-color-1);
    padding: 10px 0;
}

.header-top-info li {
    display: inline-block;
    font-size: 14px;
    color: var(--white-color);
    margin-right: 38px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
}

.header-top-info li i {
    color: var(--white-color);
    margin-right: 6px;
    font-size: 14px;
    vertical-align: middle;
}

.head-top-links > li {
    display: inline-block;
    position: relative;
}

.header-social li {
    display: inline-block;
    margin-right: 13px;
}

.header-social a {
    font-size: 16px;
    color: var(--white-color);
}

ul.head-top-links {
    margin-bottom: 0;
}

ul.header-social li:last-child {
    margin-right: 0;
}

.join-us-btn {
    float: inline-end;
}

/* ==================  Topbar Css End  ====================== */

/* ==================  Navbar Css Start  ====================== */

.right-topbar .translator-btn {
    margin-right: 20px;
}

.right-topbar .theme-btn a:hover {
    border: 1.5px dashed #d93d27;
    background-color: transparent;
}

.join-us-btn a {
    background-color: #d93d27;
    color: #fff;
    padding: 8px 8px;
    border-radius: 4px;
    font-size: 13px;
    transition: 0.1s;
}

.goog-te-gadget-simple {
    padding-top: 5px !important;
    padding-bottom: 4px !important;
    border-radius: 4px !important;
}









.main-menu ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
    position: relative;
}

.main-menu ul li:first-child {
    margin-left: 0;
}

/* .menu-style1 > ul > li > a {
  padding: 18px;
} */

.main-menu a {
    display: flex;
    align-items: center;
    position: relative;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    color: var(--title-color);
    letter-spacing: 0.6px;
    font-size: 15px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    padding: 0 12px;
}

.header1-logo a img {
    max-width: 80px;
}

header.header-main {
    position: relative;
    padding: 10px 0;
}

li.menu-item-has-children ul li {
    display: block;
    text-align: start;
}

ul.sub-menu {
    top: 50px;
    width: 290px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #fff;
    border: none;
    position: absolute;
    visibility: hidden;
    transform-origin: top;
    display: block !important;
    z-index: 999;
    opacity: 0;
    left: 0;
    transform: scaleY(0);
    transition: 0.5s;
    padding: 0px;
}

li.menu-item-has-children:hover .sub-menu {
    top: 100%;
    opacity: 1;
    margin-top: 0;
    visibility: visible;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

ul.sub-menu li a:hover {
    background-color: #010165;
    color: #fff;
    font-weight: 600;
}

ul.sub-menu li a {
    padding: 5px 20px;
    color: #010165;
    transition: 0.5s;
    font-size: 14px;
    font-weight: 700;
    border-radius: 3px;
}

a.navlink {
    position: relative;
}

a.navlink::before {
    position: absolute;
    content: "\f107";
    line-height: 1;
    right: -5px;
    top: 6px;
    font-family: "fontawesome";
    font-size: 14px;
}

button.vs-menu-toggle {
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 24px;
    border: none;
    background-color: #010165;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
}

.main-menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.right-topbar {
    display: flex;
    align-items: center;
    justify-content: end;
}

.right-topbar .theme-btn {
    margin-right: 20px;
}

/* ==================  Navbar Css End  ====================== */

/* ==================  Mobile Sidebar Css Start  ====================== */

.vs-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    height: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.vs-menu-wrapper .vs-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: #fff;
    border-right: 3px solid #010165;
    height: 100%;
    position: relative;
    right: -1000px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    z-index: 1;
}

.vs-menu-wrapper .vs-menu-area:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    max-height: 122px;
    background-color: #010165;
    opacity: 0.1;
    z-index: -1;
}

.vs-menu-wrapper.vs-body-visible .vs-menu-area {
    right: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
}

.vs-menu-wrapper .vs-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 33px;
    font-size: 18px;
    z-index: 1;
    color: #fff;
    background-color: #010165;
    border-radius: 50%;
}

.vs-menu-wrapper .mobile-logo {
    padding-bottom: 10px;
    padding-top: 10px;
    display: inline-block;
}

.mobile-logo a img {
    max-width: 110px;
}

.vs-mobile-menu {
    overflow-y: scroll;
    max-height: 58vh;
    padding-bottom: 40px;
    margin-top: 33px;
    text-align: left;
}

.vs-mobile-menu > ul {
    padding: 0 40px;
}

.vs-mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none;
}

.vs-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1;
    font-size: 16px;
    text-transform: capitalize;
    color: #010165;
    font-weight: 600;
}

.vs-mobile-menu ul li a:before {
    content: "\f105";
    font-family: fontawesome;
    position: relative;
    left: 0;
    top: 0;
    margin-right: 10px;
    display: inline-block;
}

.vs-menu-wrapper.vs-body-visible {
    opacity: 1;
    visibility: visible;
    width: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.vs-mobile-menu ul .vs-item-has-children > a:after {
    content: "\f067";
    font-family: fontawesome;
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: #f3f6f7;
    color: #010165;
    -webkit-box-shadow: 0 0 20px -8px rgba(7, 204, 236, 0.3);
    box-shadow: 0 0 20px -8px rgba(7, 204, 236, 0.3);
    border-radius: 50%;
}

.vs-mobile-menu ul .vs-item-has-children.vs-active > a:after {
    content: "\f068";
}

.vs-mobile-menu ul li ul li {
    padding-left: 20px;
}

/* ==================  Mobile Sidebar Css End  ====================== */

/* ==================  Banner Css Start  ====================== */

.carousel-caption {
    top: 50% !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
    background-color: #d93d27b5;
    max-width: 560px;
    margin: 0 auto;
    padding: 60px 20px;
    border-radius: 5px;
    backdrop-filter: blur(0.5px);
}

.carousel-caption h5 {
    margin-bottom: 20px;
    font-size: 22px;
    letter-spacing: 0.6px;
    color: #fff;
    font-weight: 700;
}

.carousel-caption p {
    margin-bottom: 0px;
    font-size: 15px;
    letter-spacing: 0.6px;
    color: #fff;
    font-weight: 500;
}

.carousel-item img {
    height: 500px !important;
    object-fit: cover;
    object-position: top;
}

section.banner-area {
    position: relative;
}

.Rectangle-area {
    position: absolute;
    top: 0;
    right: 0;
    backdrop-filter: blur(3px);
    background-image: url(./images/banner-social-bg.png);
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    overflow: hidden;
    background-repeat: no-repeat;
    z-index: 200;
}

.rectangle-text h3 {
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

ul.header-social {
    padding: 10px 20px 10px 50px;
}

/* ==================  Banner Css End  ====================== */

/* ==================  Event Section Css Start  ====================== */

section.events-area {
    position: relative;
    padding: 60px 0;
    margin-top: -150px;
}

.event-box {
    box-shadow: 0px 0px 10px #bdbdbda8;
    border-radius: 10px;
    padding: 45px 30px;
    overflow: hidden;
    position: relative;
    background: #ffffffd1;
    margin: 10px;
    backdrop-filter: blur(0.8px);
}

.event-date {
    display: inline-block;
    padding: 25px 15px 5px 15px;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    border-radius: 8px 8px 8px 8px;
    background-color: #e83c32f0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    color: #fff;
    font-weight: 500;
}

.entry-title {
    position: relative;
}

.entry-content {
    padding-left: 140px;
}

.post-more {
    position: relative;
}

.event-date span.event-time {
    padding-left: 0;
    float: none;
    display: block;
    font-size: 14px;
    z-index: 9999;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-top: 15px;
}

.event-date::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 31px;
    z-index: 0;
    border-radius: 0 0 8px 8px;
    background-color: #d93d27;
}

.entry-title h5 a {
    color: #010165;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    letter-spacing: 0.6px;
    transition: 0.5s;
}

.entry-title h5 a:hover {
    color: #d93d27;
}

.entry-title h5 {
    margin-bottom: 12px;
}

.post-more a:hover {
    background-color: #010165;
}

.post-more a {
    background-color: #d93d27;
    color: #fff;
    padding: 8px 8px;
    border-radius: 4px;
    font-size: 13px;
    transition: 0.5s;
}

.post-more a span.icon i {
    position: relative;
    transform: rotate(-45deg);
    margin-left: 4px;
    font-size: 12px;
    transition: 0.5s;
}

.post-more a:hover span.icon i {
    transform: rotate(0deg);
}

.slick-dots {
    bottom: -45px !important;
}

.slick-dots li button:before {
    font-size: 10px !important;
    color: #d93d27 !important;
}

.slick-dots li.slick-active button:before {
    color: #d93d27 !important;
}

/* ==================  Event Section Css End  ====================== */

/* ==================  About Us Section Css Start  ====================== */

span.sub-title {
    font-size: 15px;
    color: #d93d27;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
}

h2.section-title {
    font-size: 30px;
    color: #010165;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
}

img {
    max-width: 100%;
}

.about-content-area p {
    font-family: "Nunito", sans-serif;
    color: #3f3f3f;
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 28px;
    margin-bottom: 16px;
}

.theme-btn {
    position: relative;
}

.theme-btn a:hover {
    background-color: #010165;
}

.theme-btn a {
    background-color: #d93d27;
    color: #fff;
    padding: 8px 8px;
    border-radius: 4px;
    font-size: 13px;
    transition: 0.5s;
}

.theme-btn a span.icon i {
    position: relative;
    transform: rotate(-45deg);
    margin-left: 4px;
    font-size: 12px;
    transition: 0.5s;
}

.theme-btn a:hover span.icon i {
    transform: rotate(0deg);
}

section.about-area {
    position: relative;
    padding: 60px 0;
}

.about-img-area img {
    width: 100%;
    border-radius: 5px;
}

/* ==================  About Us Section Css End  ====================== */

/* ==================  Latest Update Section Css Start  ====================== */

.latest-update-box {
    position: relative;
    box-shadow: 0px 0px 10px #e4e4e4;
    border-radius: 3px;
    margin: 10px;
    transition: 0.5s;
}

.latest-update-box:hover {
    transform: translateY(-10px);
}

.latest-update-box img {
    width: 100%;
    border-radius: 3px 3px 0 0;
    object-fit: cover;
    object-position: top;
    height: 230px;
}

.date-address {
    display: flex;
    align-items: center;
}

.decriptions-latest h3 a {
    font-size: 22px;
    color: #010165;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
    transition: 0.5s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-height: 30px;
    -webkit-box-orient: vertical;
}

.decriptions-latest h3 a:hover {
    color: #d93d27;
}

.decriptions-latest p {
    color: #646464;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

section.latest-update-area {
    position: relative;
    padding: 60px 0;
}

.box-content {
    position: relative;
    padding: 20px;
}

.address-area {
    margin-left: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #d93d27;
}

.date-area {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    width: fit-content;
    background-color: #d93d27;
    padding: 5px 10px;
    border-radius: 3px;
    letter-spacing: 0.6px;
}

.address-area span {
    margin-right: 3px;
}

.date-area span {
    margin-right: 3px;
}

.heading-area h3 {
    text-align: center;
    color: #d93d27;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.heading-area {
    position: relative;
    margin-bottom: 30px;
}

/* ==================  Latest Update Section Css End  ====================== */

/* ==================  App Download Section Css Start  ====================== */

section.app-download-area {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(180deg, #fff7f5 0%, #ffffff 100%);
}

.app-download-subtitle {
    text-align: center;
    color: #555;
    font-size: 16px;
    margin: -10px auto 0;
    max-width: 700px;
}

.app-screenshots {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    padding: 20px 0;
}

.app-screenshot-card {
    width: 210px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(217, 61, 39, 0.18);
    border: 4px solid #fff;
    background: #fff;
}

.app-screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.app-screenshot-offset {
    margin-left: -40px;
    margin-top: 40px;
}

.app-download-content {
    padding: 20px 10px;
}

.app-download-content h4 {
    color: #d93d27;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.app-download-content p {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.app-store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.app-store-buttons a img {
    width: 170px;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.app-store-buttons a:hover img {
    transform: translateY(-3px);
}

/* ==================  App Download Section Css End  ====================== */

/* ==================  Books Area Section Css Start  ====================== */

.books-img img {
    width: 90px;
    height: 120px;
    object-fit: contain;
}

.books-box-1 {
    position: relative;
    display: flex;
    box-shadow: inset 0px 0px 20px #ffffff;
    padding: 25px;
    border-radius: 5px;
    margin: 15px 15px 50px 15px;
}

section.books-area {
    position: relative;
    padding: 60px 0;
    background-image: linear-gradient(
        113deg,
        rgba(222, 222, 222, 0.7) 0%,
        rgba(208, 208, 208, 0.4) 100%
    );
}

.books-content {
    padding-left: 20px;
}

.books-content h3 a {
    font-size: 22px;
    color: #010165;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 5px;
    transition: 0.5s;
}

.books-content h3 a:hover {
    color: #d93d27;
}

.books-content p {
    color: #646464;
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    letter-spacing: 0.6px;
    font-weight: 400;
    margin-bottom: 0;
}

.books-box-2 {
    position: relative;
    display: flex;
    box-shadow: 0px 0px 10px #e4e4e4;
    padding: 6px;
    border-radius: 3px;
    margin: 0 15px 30px 15px;
}

/* ==================  Books Area Section Css End  ====================== */

/* ==================  Contact Us Area Section Css Start  ====================== */

section.contact-area {
    position: relative;
    padding: 60px 0;
    background-image: url(../images/contact-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contact-box {
    background-color: #010165;
    padding: 40px;
    border-radius: 5px;
}

.icon-contact {
    text-align: center;
    margin-bottom: 20px;
}

.icon-contact i {
    color: #fff;
    font-size: 40px;
}

.contact-content h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.contact-content p {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.contact-content p a {
    color: #fff;
}

.donation-box h5 {
    font-size: 15px;
    color: #d93d27;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.donation-box h3 {
    font-size: 25px;
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.donation-box p {
    color: #ffffff;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 30px;
}

/* ==================  Contact Us Area Section Css End  ====================== */

/*======================= Footer Area Css STart========================*/

footer.tf_footer {
    /* background-color: #010165; */
    padding: 70px 0;
    position: relative;
}

.tf_footer_details p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    /* text-align: justify; */
    margin-bottom: 20px;
}

.social-icons-footer {
    display: flex;
    align-items: center;
}

.social-icons-footer li a {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50px;
    text-align: center;
    margin: 5px;
    color: #010165;
    display: flex;
    align-items: center;
    transition: 0.5s;
    justify-content: center;
}

.social-icons-footer li {
    list-style: none;
}

.social-icons-footer li a:hover {
    border: 2px dashed #fff;
    background-color: #010165;
    color: #ffff;
}

h3.footer-heading {
    color: #fff;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.tf_footer_links ul {
    padding: 0;
}

.tf_footer_links ul li a {
    color: #fff;
    transition: 0.5s;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

.tf_footer_links ul li {
    padding: 6px 0;
}

ul.footer-contact-area {
    padding: 0;
}

span.footer-contact-area-icon {
    color: #fff;
    padding-right: 10px;
}

span.footer-contact-area-icon i {
    font-size: 17px;
}

span.footer-contact-area-text a {
    color: #fff;
    letter-spacing: 0.6px;
}

span.footer-contact-area-text {
    color: #fff;
    letter-spacing: 0.6px;
}

.tf_footer_details img {
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    max-width: 90px;
}

.tf_footer_services ul li {
    padding: 6px 0;
}

.tf_footer_services ul li a {
    color: #fff;
    transition: 0.5s;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

.tf_footer_services ul li a:hover {
    color: #d93d27;
}

ul.footer-contact-area li {
    padding: 6px 0;
}

section.copyright-area {
    padding: 12px 0;
    background: #d93d27;
}

.tf_copyright p {
    margin-bottom: 0px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.6px;
    font-size: 14px;
}

.tf_copyright p a {
    color: #010165;
    font-weight: 700;
}

.back-to-top .top {
    position: fixed;
    cursor: pointer;
    bottom: 15px;
    right: 15px;
    color: #fff;
    background-color: #d93d27;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.back-to-top .top i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.5s;
}

.back-to-top .top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

footer.tf_footer::before {
    content: "";
    background-image: url(../images/footer-bg.jpg);
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    z-index: -1;
    height: 100%;
}

/*======================= Footer Area Css End========================*/

/*======================= Sikhism Page Css Start========================*/

.description-content h3 {
    font-size: 30px;
    color: #010165;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.description-content h4 {
    font-size: 20px;
    color: #010165;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.description-content p {
    font-family: "Nunito", sans-serif;
    color: #3f3f3f;
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 30px;
    margin-bottom: 16px;
    font-weight: 500;
}

section.tf-descriptions {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.description-content ul li {
    font-family: "Nunito", sans-serif;
    color: #3f3f3f;
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 30px;
    margin-bottom: 5px;
    font-weight: 500;
}

/*======================= Sikhism Page Css End========================*/

/*======================= Gurus Page Css Start========================*/

section.gurus-page {
    position: relative;
    padding: 50px 0;
}

section.gurus-page .latest-update-box .box-content .decriptions-latest h3 {
    font-size: 20px;
    letter-spacing: 0.2px;
}

/*======================= Gurus Page Css End========================*/

/*======================= Books Page Css Start========================*/

.book-wrapper {
    width: 900px;
    position: relative;
    margin: 0 auto;
    column-count: 3;
    column-gap: 12px;
    padding: 4px;
}

.book-items {
    position: relative;
    cursor: default;
    padding: 16px;
    margin: 0;
    display: grid;
    break-inside: avoid;
    margin-bottom: 20px;
}

.main-book-wrap {
    position: relative;
}

.book-cover {
    position: relative;
}

.book-cover .book-inside {
    position: absolute;
    width: 65%;
    height: 96%;
    top: 1%;
    left: 10px;
    border: 1px solid grey;
    border-radius: 2px 6px 6px 2px;
    background: white;
    box-shadow: 10px 40px 40px -10px #00000030, inset -2px 0 0 grey,
        inset -3px 0 0 #dbdbdb, inset -4px 0 0 white, inset -5px 0 0 #dbdbdb,
        inset -6px 0 0 white, inset -7px 0 0 #dbdbdb, inset -8px 0 0 white,
        inset -9px 0 0 #dbdbdb;
}

.book-cover .book-image {
    line-height: 0;
    position: relative;
    border-radius: 2px 6px 6px 2px;
    /* box-shadow: 6px 6px 18px -2px rgba(0, 0, 0, 0.2),
        24px 28px 40px -6px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease-in-out;
    transform: perspective(2000px) rotateY(-15deg) translateX(-10px)
        scaleX(0.94);
    cursor: pointer;
}

.book-image img {
    grid-row: 1 / -1;
    grid-column: 1;
    width: 70%;
    border-radius: 2px 6px 6px 2px;
}

.book-image:hover {
    transform: perspective(2000px) rotateY(0deg) translateX(0px) scaleX(1);
    transform-style: preserve-3d;
    /* box-shadow: 6px 6px 12px -1px rgba(0, 0, 0, 0.1),
        20px 14px 16px -6px rgba(0, 0, 0, 0.1); */
}

.effect {
    position: absolute;
    width: 20px;
    height: 100%;
    margin-left: 16px;
    top: 0;
    border-left: 2px solid #00000010;
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.5s ease;
    z-index: 5;
}

.light {
    width: 90%;
    height: 100%;
    position: absolute;
    border-radius: 3px;
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 100%
    );
    top: 0;
    right: 0;
    opacity: 0.1;
    transition: all 0.5s ease;
    z-index: 4;
}

.book-image:hover .effect {
    margin-left: 14px;
}

.realvjy {
    width: 900px;
    padding: 20px;
    margin: 0 auto;
    font-family: sans-serif;
    text-align: center;
}

/*======================= Books Page Css End========================*/

/*======================= Gurdwara Area Page Css Start========================*/

section.map-gurdwaras-area {
    position: relative;
    padding: 50px 0;
}

.contact-form-area {
    padding: 10px;
}

.contact-form-area h3 {
    font-size: 20px;
    font-weight: 700;
    color: #010165;
    margin-bottom: 20px;
}

.contact-form-area label {
    color: #010165;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.contact-form-area input.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #010165;
    border-radius: 0;
    padding: 5px 0;
    color: #010165 !important;
    box-shadow: none !important;
}

.contact-form-area select.form-select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #010165;
    border-radius: 0;
    padding: 5px 0;
    color: #010165 !important;
    box-shadow: none !important;
}

textarea.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #010165;
    border-radius: 0;
    padding: 5px 0;
    color: #010165;
    box-shadow: none !important;
}

.quote-btn .submit-btn {
    padding: 5px 30px;
    border: none;
    color: #fff;
    position: relative;
    z-index: 3;
    transition: 0.5s;
    background-color: #d93d27;
    border-radius: 4px;
}

button.join-button {
    border: none;
    letter-spacing: 0.6px;
    color: #fff;
    background-color: #d93d27;
    border-radius: 5px;
    padding: 8px 8px;
    font-size: 12px;
    font-family: "Nunito", sans-serif;
}

button.join-button span.icon i {
    position: relative;
    transform: rotate(-45deg);
    margin-left: 4px;
    font-size: 12px;
    transition: 0.5s;
}

.books-box .books-content h3 a {
    font-size: 13px;
}

.books-box .books-content h3 {
    line-height: 16px;
}

button.join-button:hover span.icon i {
    transform: rotate(0deg);
}

.modal-content {
    padding: 20px;
}

.modal-header {
    margin-bottom: 10px;
}

.gallery-img img {
    width: 100%;
    border-radius: 5px;
}

.gallery-img {
    margin-bottom: 20px;
}

.inner-vontent h3 {
    color: #010165;
    font-size: 32px;
    font-weight: 600;
}

.inner-vontent h5 {
    color: #010165;
    font-size: 20px;
    font-weight: 600;
}

.inner-vontent p {
    color: #646464;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 30px;
    text-align: justify;
}

/*======================= Gurdwara Area Page Css End========================*/

section.events-inner-area {
    position: relative;
    padding: 60px 0;
}

.events-inner-content h3 {
    font-size: 22px;
    color: #010165;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.events-inner-content p {
    color: #646464;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 30px;
    text-align: justify;
}

/* .events-inner-content img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 5px;
  height: 500px;
  object-fit: cover;
  object-position: top;
} */

.main-gallery {
    padding: 0px 0;
    position: relative;
    text-align: center;
}

.mySlides img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    margin-bottom: 20px;
}

.slide_imgs {
    position: relative;
    padding: 0 14px;
}

.slide_imgs .column img {
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 2px;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Container for image text */
.caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Six columns side by side */
.column {
    float: left;
    width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

.portfolio-inner img {
    width: 100%;
    height: 360px;
    border-radius: 5px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 20px;
}

section.portfolio-detail-area {
    position: relative;
    padding: 40px 0;
}

.portfolio-inner h3 {
    font-size: 22px;
    color: #010165;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.portfolio-inner p {
    color: #646464;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 30px;
    text-align: justify;
}

.events-box {
    box-shadow: 0px 6px 0px #d93d27;
    border-radius: 15px;
}
.events-box .box-content .theme-btn a {
    background-color: #d93d27;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.6px;
}

.events-box .box-content .theme-btn a:hover {
    background-color: #010165;
}

.events-box .box-content .theme-btn a span i {
    font-size: 12px;
}

section.services-inner-area {
    padding: 70px 0;
}

.sidebar-widget {
    position: relative;
    display: block;
    margin-bottom: 50px;
    text-align: center;
}

.sidebar-widget .widget-inner {
    position: relative;
    display: block;
}

.services-widget ul {
    position: relative;
    display: block;
}

.services-widget ul li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.services-widget ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    border-left: 3px solid #010165;
    background: #010165;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-widget ul li a {
    position: relative;
    display: block;
    background: rgba(0, 0, 0, 0.03);
    padding: 12px 20px;
    padding-right: 50px;
    line-height: 30px;
    font-family: "Nunito", sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    z-index: 1;
    transition: all 300ms ease;
}

.services-widget ul li a:before {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 0px;
    top: 0px;
    line-height: 30px;
    padding: 12px 5px;
    width: 50px;
    text-align: center;
    border-left: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 12px;
    font-weight: 700;
}

.services-widget ul li:hover:before,
.sidebar .services-widget ul li.active:before {
    width: 100%;
}

.services-widget ul li:hover a {
    color: #ffffff;
}

.image img {
    max-width: 320px;
    border-radius: 5px;
}

.image {
    margin-bottom: 20px;
    float: left;
    margin-right: 30px;
}

.content h3 {
    font-size: 22px;
    color: #010165;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 5px;
}

.content .text p {
    color: #646464;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 30px;
    text-align: justify;
}

.content .text h5 {
    font-size: 16px;
    color: #010165;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.content .text ul {
    list-style: circle;
    padding-left: 15px;
}

.content .text ul li {
    color: #646464;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 30px;
    text-align: justify;
}

.donate-image img {
    width: 100%;
    transition: opacity 1s ease 0s, transform 1s ease 0s;
}

.donate-box-section::before {
    content: '';
    background-image: url(../images/contact-bg.jpg);
    background-position: center;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    width: 100%;
    height: 100%;
}
.donate-box-section.youtube-box::before {
    content: '';
    background-image: url(../images/youtube-img.jpeg);
    background-position: center;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    width: 100%;
    height: 100%;
}

.donate-box-section.youtube-box .donate-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.donate-box-section {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 4px;
}

section.donate-section {
    position: relative;
    padding: 50px 0;
}

.donate-content {
    position: relative;
    padding: 20px;
    text-align: center;
}

.donate-content h3.title-banner {
    font-size: 22px;
    color: #d93d27;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-align: center;
}

.donate-content .banner-image-description {
    font-size: 14px;
    color: #ffffff;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
    text-align: center;
}

.donate-box-section:hover .donate-image img {
    transform: scale3d(1.1, 1.1, 1);
}

.donate-content button.join-button {
    width: fit-content;
    margin: 0 auto;
}

.tf_footer_links ul li a:hover {
    letter-spacing: 0.6px;
}

.tf_footer_services ul li a:hover {
    letter-spacing: 0.6px;
}

/* pagination */

.pagination-wrapper.mt-4 {
    width: 100%;
    text-align: center;
}

.tf_footer_links ul li a:hover {
    color: #d93d27;
}

section.media-event-section {
    position: relative;
    padding: 50px 0;
}

#calendar {
    max-width: 100% !important;
}

.fc .fc-toolbar-title {
    font-size: 22px !important;
    margin: 0;
    color: #010165 !important;
    font-weight: 600;
}

table.fc-col-header {
    width: 100% !important;
}

.fc .fc-daygrid-body {
    width: 100% !important;
}

table.fc-scrollgrid-sync-table {
    width: 100% !important;
}

.fc .fc-col-header-cell-cushion {
    display: inline-block;
    padding: 2px 4px;
    color: #010165 !important;
    letter-spacing: 0.6px;
    font-weight: 500;
}

.fc .fc-daygrid-day-number {
    color: #010165 !important;
    letter-spacing: 0.6px;
    font-weight: 500;
}

a.fc-event.fc-event-start.fc-event-end.fc-event-past.fc-daygrid-event.fc-daygrid-dot-event {
    color: #d93d27;
    font-weight: 600;
}

.fc-daygrid-event-dot {
    border: calc(var(--fc-daygrid-event-dot-width) / 2) solid #d93d27 !important;
}

.img-slide-box img {
    max-width: 260px;
    margin-bottom: 30px;
}

.inner-heading h3 {
    font-size: 22px;
    color: #010165;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 5px;
}

/* .main-gallery > div > img {
    max-width: 500px;
} */

a.btn.audio-heading {
    text-align: center;
    color: #d93d27;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.widget {
    background: #fafafa none repeat scroll 0 0;
    border: 1px solid #e1e8ed;
    border-radius: 5px;
    display: block;
    margin-bottom: 30px;
    padding: 15px 20px 20px;
    position: relative;
    width: 100%;
    z-index: 9;
}

.widget .heading-area {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.re-links-meta h6 a {
    color: #010165;
    letter-spacing: 0.6px;
}

.re-links-meta span {
    color: #646464;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 30px;
    text-align: justify;
}

.widget .heading-area h4 {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.filter-cards-area {
    display: flex;
    align-items: center;
    /* justify-content: end; */
    margin-bottom: 10px;
    border: 1px solid #d93d27;
    padding: 10px 10px;
    width: 440px;
    border-radius: 5px;
    margin-left: auto;
    justify-content: space-between;
}

.filter-title {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-right: 20px;
}

.filter-box .form-group label {
    color: #000;
    font-weight: 500;
}

.filter-box {
    margin: 0 12px;
}

.filter-box .form-group select.form-control {
    box-shadow: none !important;
    padding: 4px 20px;
    color: #000;
    font-size: 14px;
}

button#clearEligibilityFilter {
    background-color: #d93d27;
    color: #fff;
    padding: 7px 8px;
    border-radius: 4px;
    font-size: 12px;
    transition: 0.5s;
    border: none;
    margin-top: 20px;
}

.marquee-area {
    border-radius: 3px;
    padding: 6px 20px;
    overflow: hidden;
}

.marquee-area {
    overflow: hidden;
    position: relative;
}

.marquee-area ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation-name: marquee_slide;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes marquee_slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


