:root {
    --white: #ffffff;
    --red: #B31942;
    --blue: #0A3161;
    --black: #030E09;
    --light-gray: #686e6b;
    --border-gray: #e5e6e6;
    --light_bg: #f2f2f2;
    --border-dark: #c7c7c7;
    --us-green:#359335;
    --yellow:#fff9c0;
}


body.page-template-us-holidays{
    padding-left: 330px;
    font-family: 'Source Sans Pro', sans-serif;
    /*padding-top: 70px;*/
}

h1,h2,h3,h4,h5,h6{
    margin: 0px;
    font-family: 'Playfair Display';
}
p{
    margin: 0px;
}
a {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 {
    font-size: 50px;
    line-height: 60px;
    color: var(--blue);
    text-transform: capitalize;
}

h2 {
    font-size: 40px;
    line-height: 50px;
    color: var(--blue);
    text-transform: capitalize;
}

h3 {
    font-size: 20px;
    line-height: 24px;
}

p{
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    font-family: 'Source Sans Pro', sans-serif;
    margin-bottom: 20px;
}

p:nth-last-child(1){
    margin-bottom: 0px !important;
}




/* Home CSS */
.dif-sub-hdng{
    color: var(--red) !important;
}

.prime-btn {
    width: fit-content;
    font-size: 18px;
    text-decoration: none;
    padding: 14px 29px;
    color: var(--white);
    background-color: var(--red);
    border-radius: 999px;
    line-height: 25px;
    display: block;
    font-family: 'Source Sans Pro', sans-serif;
    border: 0px;
    cursor: pointer;
    transition: .5s;
}
.load-btn{
    width: fit-content;
    font-size: 18px;
    text-decoration: none;
    padding: 14px 29px;
    color: var(--white);
    background-color: var(--red);
    border-radius: 999px;
    line-height: 25px;
    display: block;
    border: 0px;
    outline: 0px;
    transition: all .3s;
}
.load-btn:hover{
    background-color: var(--blue);
    color: var(--white);
}

.prime-btn:hover {
    background-color: var(--white);
    color: var(--red);
}



.wit-clr{
    color: var(--white) !important;
}

.blk-clr{
    color: var(--black) !important;
}

.site-container{
    padding: 80px 50px 0px 50px;
}

/* Banner - Section */


#banner-section {
    height: 93vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 50px;
    background-position: bottom center;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

#banner-section:before {
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
    z-index: 1;
    background: #000000;
}

.bnr-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    max-width: 100%;
    width: 100%;
}

.bnr-content-col {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.bnr-hdng-col{
    width: 45%;
}


/* About Section */

.intro-dt-text {
    column-count: 2;
    text-align: left;
    column-gap: 20px;
    color: var(--black);
}

.abt-cont {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    margin: auto;
    align-items: center;
    text-align: center;
}

.abt-cont h2{
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    aspect-ratio: 16/9;
    cursor: pointer;
    margin: auto;
    border-radius: 16px;
    overflow: hidden;
}

/* Video styling */
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-btn::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0,0,0,0.8);
}

.video-wrapper.playing .play-btn {
    display: none;
}

/* What You'll Find */

.wywf-inner-cont {
    background-color: var(--white);
    padding-bottom: 80px;
}

.wywf-content-top h2 {
    text-align: center;
}

.wywf-content-top {
    margin-bottom: 40px;
}

.wywf-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wywf-gcontent-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    border-radius: 11px;
    border: 1px solid #e9e9e9;
    background-image: url('../images/ux-stars.svg');
    background-position: 96% 4%;
    background-size: 110px;
    background-repeat: no-repeat;
    transform: scale(1.0) translateY(0px);
    transition: ease 0.4s;
}

.wywf-gcontent-col:hover {
    transform: scale(1.03) translateY(11px);
    transition: ease 0.4s;
}

.wywf-gcontent-col img{
    max-width: 90px;
    width: 100%;
    transform: scale(1.0);
    transition: ease 0.4s;
}

.wywf-gcontent-col:hover img{
    transform: scale(0.92);
    transition: ease 0.4s;
}

.wywf-gcontent-col{
    color: var(--black);
}

/* Testimonails Section */

.testimonial-marquee {
    overflow: hidden;
    width: 100%;
    padding: 80px 0px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.tm-wrapper {
  width: 100%;
  position: relative;
}

.tm-track {
  display: flex;
  width: max-content;
  animation: marquee 15s linear infinite;
}

.tm-item {
    flex: 0 0 auto;
    width: 560px;
    margin-right: 50px;
    padding: 50px;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background-color: var(--white);
    transform: scale(1.0) translateY(0px);
    transition: ease 0.4s;
}

.tm-item:hover {
    transform: scale(1.06) translateY(16px);
    transition: ease 0.4s;
}

.tm-top-sec h2 {
    text-align: center;
}

.tm-top-sec {
    max-width: 920px;
    padding: 0px 20px;
}

.tm-item p {
    font-size: 18px;
    line-height: 25px;
    color: var(--blue);
    font-style: italic;
}

.tm-item span {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    opacity: 0.7;
    color: var(--red);
    font-weight: 500;
}

/* Smooth marquee */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-10%);
  }
}


/* Image Gallery Section */

#glry-section{
    padding: 0px 50px 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.simple-gallery {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Rows */
.gallery-row {
  display: grid;
  gap: 20px;
}

.row-one {
  grid-template-columns: 2fr 1fr 1fr;
}

.row-two {
  grid-template-columns: 1fr 2fr 1fr;
}

/* Items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Size presets */
.gallery-item.big {
  min-height: 420px;
}

.gallery-item.small {
  min-height: 300px;
}

.gallery-item.tall {
  min-height: 520px;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0)
  );
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.45s ease;
}

.overlay h3 {
    margin-bottom: 6px;
    color: var(--white);
}

.overlay p {
  font-size: 16px;
  color: var(--white);
  line-height: 21px;
}

/* Hover */
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.glry-top-sec {
    max-width: 650px;
    text-align: center;
}

/* End Home CSS */


/* US Home Navigation Sidebar */
.sec-left{
    width: 330px;
    flex-shrink: 0;
    transition: width .4s cubic-bezier(.25, .8, .25, 1);
    position: fixed;
    background-color: var(--white);
    border-right: 1px solid var(--border-gray);
    height: -webkit-fill-available;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #b6b6b6b0 transparent;
    left: 0;
    top: 0;
}
.nav-logo{
    display: flex;
    flex-direction: column;
    gap: 5px;
    white-space: nowrap;
    width: 100%;
    padding: 12px 16px;
}
a.us-logo-main{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.us-logo img{
    width: 50px;
    height: 50px;
    display: flex;
}
.logo-text{
    display: flex;
    flex-direction: column;
    gap: 2px;
}
p.nav-tagline{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--black);
}
h1.site-logo {
    font-size: 24px;
    line-height: 32px;
    color: var(--black);
}
.nav-bar-title {
    margin: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.main-home-nav,
ul.main-nav-list{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
.main-nav-sidebar {
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.navigation-main {
    border-top: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}
.nav-bar-menu{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-gray);
}
a.nav-link{
    display: flex;
    font-size: 16px;
    white-space: wrap;
    align-items: center;
    line-height: 25px;
    position: relative;
    margin-bottom: 2px;
    padding: 11px 14px !important;
    border-radius: 10px;
    gap: 10px;
    font-weight: 400;
    width: 100%;
    text-decoration: none;
    color: var(--black);
    transition: all .3s;
    border: 0px;
    outline: 0px;
    font-family: 'Source Sans Pro', sans-serif;
}
a.nav-link:hover{
    background-color: #0a316138;
    color: var(--blue);
}
a.nav-link:hover .link-svg-icon svg path,
a.nav-link:hover .down-arrow svg path{
    stroke: var(--blue);
}

li.main-home-nav-item a.nav-link:hover .link-svg-icon svg path{
    fill: var(--blue);
}

ul.nav-submenu{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: none;
}

.link-svg-icon{
    display: flex;
    /*width: 24px;
    height: 24px;*/
}
.link-svg-icon svg{
    margin-right: 0;
    margin-left: 0;
    width: 24px;
    height: 24px;
    line-height: 0px;
}

.link-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 5px;
}

.down-arrow{
    width: 20px;
    height: 20px;
    display: flex;
}
.down-arrow svg{
    width: 20px;
    height: 20px;
}
a.nav-link.active .link-text {
    color: #fff;
}
.nav-submenu li a{
    display: flex;
    font-size: 14px;
    white-space: nowrap;
    align-items: center;
    line-height: 20px;
    margin-bottom: 2px;
    padding: 11px 14px !important;
    border-radius: 10px;
    gap: 10px;
    font-weight: 500;
    width: 100%;
    text-decoration: none;
    color: var(--black);
    transition: all .5s;
    font-family: 'Source Sans Pro', sans-serif;
    text-wrap: auto;
}
.nav-submenu li a:hover{
    background-color: var(--red);
    color: var(--white);
}

li.nav-bar-item.current-post a.nav-link,
li.nav-bar-item.active a.nav-link{
    background-color: var(--blue);
    color: var(--white);
}
li.nav-bar-item.current-post .home-icon svg g path,
li.nav-bar-item.active .home-icon svg g path{
    fill: var(--white);
}
li.nav-bar-item.active a.nav-link .down-arrow svg path{
    stroke: var(--white);
}
.nav-bar-item.active > .nav-submenu {
  display: block;
}
li.main-home-nav-item.active{
    background-color: var(--blue);
    border-radius: 10px;
}
li.main-home-nav-item.active a.nav-link:hover svg path,
li.main-home-nav-item.active a.nav-link svg path{
    fill: var(--white);
}
li.main-home-nav-item.active a.nav-link .link-text{
    color: var(--white);
}

.nav-submenu li a svg{
    width: 14px;
    height: 14px;
    display: flex;
}
.nav-link .down-arrow svg {
  transition: transform 0.3s ease;
}

.nav-bar-item.active .down-arrow svg {
  transform: rotate(180deg);
}

li.nav-bar-item.active:hover .link-svg-icon svg path{
    stroke: var(--white);
}
li.main-home-nav-item.active:hover .link-svg-icon svg path,{
    fill: var(--white);
}

li.nav-bar-item.current-post span.down-arrow svg path,
li.nav-bar-item.current-post:hover span.down-arrow svg path,
li.nav-bar-item.current-post:hover .link-svg-icon svg path{
    stroke: var(--white);
}

/* CTA Email */
.nav-bottom{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-bottom: 20px;
}
.sub-email{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
p.email_head{
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: var(--black);
    margin: 0px;
}
p.email_con{
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--light-gray);
    text-align: center;
    margin: 0px;
}

.sub-btn{
    font-size: 14px;
    line-height: 20px;
    border: 0px;
    outline: 0px;
    background-color: var(--red);
    transition: all .3s;
    border-radius: 50px;
    color: var(--white);
    padding: 10px 20px;
    width: fit-content;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
    letter-spacing: .8px;
    cursor: pointer;
    transition: all .3s;
    border: 1px solid var(--red);
    text-decoration: none;
    display: block;
}

.sub-btn:hover{
    background-color: transparent;
    color: var(--red);
    border: 1px solid var(--red);
}

.sub-btn:focus,{
    outline: none;
}

/* Socail Icons */
.social-list{
    display: flex;
    align-items: center;
    gap: 10px;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
.soc_link img{
    width: 20px;
    height: 20px;
    display: flex;
    transition: all .3;
}
.soc_link img:hover{
    opacity: .9;
    transform: scale(1.1);
}
.main-content{
    flex: 1;
    margin-left: 330px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Top Header */
header.top-bar{
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-gray);
}
.search-field {
    display: flex;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    align-items: center;
    position: relative;
    transition: all .5s;
}
.search-field:hover,
.search-field input:hover{
    border: .5px solid var(--blue);
}
.search-field input:active,
.search-field input:focus{
    border: 2px solid var(--blue);
}
.top-search-icon{
    position: absolute;
    right: 5px;
    display: flex;
    align-items: center;
    width: 22px;
    background-color: var(--white);
}
#search {
    padding: 8px 10px;
    border: 0px;
    outline: 0px;
    border-radius: 10px;
    background-color: transparent;
    width: 400px;
    font-size: 16px;
    line-height: 22px;
    font-family: 'Source Sans Pro', sans-serif;
}
.top-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-menu-icon {
    border-radius: 50px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    transition: all .3s;
    display: none;
}
.sidebar-menu-icon svg{
    width: 24px;
    height: 24px;
    display: flex;
    stroke: var(--blue);
}

.sidebar-menu-icon:hover{
    background-color: var(--red);
}
.sidebar-menu-icon:hover svg g path{
    color: var(--white);
    stroke: var(--white);
} 
ul.head-menu-list{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    gap: 20px;
    align-items: center;
}
ul.head-menu-list li a{
    font-size: 16px;
    line-height: 24px;
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--blue);
    text-decoration: none;
    transition: all .3s;
    font-weight: 400;
}
ul.head-menu-list li a:hover{
    color: var(--red);
}


/* Main Section Content */
.sec-right-con{
    min-height: 100vh;
}

/* Footer Section */
.btm-footer{
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: end;
    border-top: 1px solid var(--border-gray);
    background-color: var(--white);
}
.copy-text{
    font-size: 14px;
    line-height: 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
    color: var(--light-gray);
}
.fot-links ul{
    display: flex;
    align-items: center;
    gap: 30px;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
.fot-links ul li a{
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none;
    color: var(--light-gray);
    transition: all .3s;
}
.fot-links ul li a:hover{
    color: var(--blue);
}

/* Bottom To Top */
.bottom-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}
.bottom-to-top svg {
    width: 30px;
    height: 30px;
}
.bottom-to-top.show {
    opacity: 1;
    visibility: visible;
}
.bottom-to-top:hover {
    background: #143f85;
}




/* Single Detail Page CSS */


.holiday-hero-image{
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 150px 30px;
}
.hero-content{
    position: relative;
    z-index: 9;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
#holidays-banner{
    position: relative;
}
#holidays-banner:before{
    content: '';
    top: 0;
    left: 0;
    display: block;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    position: absolute;
    background-color: #000000;
    opacity: .6;
    z-index: 1;
}
.holiday-date{
    display: flex;
    gap: 100%;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    line-height: 26px;
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--white);
    font-weight: 500;
}
.holiday-date svg{
    width: 20px;
    height: 20px;
    display: flex;
    object-fit: cover;
}

.holidays-main-sections {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.single-sec-con{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.holy_sin_con form legend {
    font-size: 18px !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    line-height: 26px !important;
    color: var(--blue) !important;
    font-weight: 600 !important;
}
.holy_sin_con form .gform-field-label{
    font-size: 16px !important;
    line-height: 22px !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    color: var(--black);
    width: fit-content !important;
}

.holy_sin_con h3 {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
    color: var(--blue);
}
.holy_sin_con p{
    margin-bottom: 14px;
    color: var(--black);
}
.holy_sin_con ol,
.holy_sin_con ul{
    margin-left: 0px;
    padding-left: 30px;
}
.holy_sin_con ol li,
.holy_sin_con ul li{
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--black);
}

.float-image-left{
    float: left;
    margin-right: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    color: var(--blue);
    font-weight: 500;
    font-style: italic;
}

.block-con{
    display: inline-block;
    margin-bottom: 15px;
}








.with-annotation span.verse-text {
    background-color: var(--border-gray);
    overflow-wrap: break-word;
    word-break: break-word;
    text-size-adjust: 100%;
    cursor: pointer;
    padding: 2px 0px;
}
.with-annotation span.verse-text:hover{
    background-color: var(--light-gray);
    color: var(--white);
}

/* Single Detail CSS End  */








/* About CSS */

.main-abt{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 80px;
}
.abt-sec-btm {
    display: flex;
    gap: 40px;
}
.rit-cont{
    color: var(--black);
}
.abt-lt,
.abt-rit{
    max-width: 50%;
    width: 100%;
}
.abt-rit {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.abt-lt img{
    border-radius: 20px;
    width: 100%;
}


.intro-main-home,
.intro-main{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.intro-main{
    padding: 80px 50px;
}
.intro-top h2{
    text-align: center;
}
.intro-btm p{
    color: var(--black);
}
.flex-row{
    display: flex;
    gap: 20px;
    margin-bottom: 5px;
}
.flex-row img {
    object-fit: cover;
/*    height: 350px;*/
}
/* About CSS End */


/* Privacy Policy CSS */
.sim-head{
    text-align: center;
}
.pr-po h2 {
    margin-bottom: 20px;
}
/* Privacy Policy CSS End */


/* Contact Us Page CSS*/
.con-pa {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.con-pa-rt,
.con-pa-lt {
    max-width: 50%;
    width: 100%;
}
/*.cst-cont-main{
    margin-top: 40px;
}*/
.con-pa-rt{
    padding: 40px;
    background-color: #fff;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #dddddd;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 8px 30px 0px rgb(0 0 0 / 8%);
}


.con-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.con-lt-con-m {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.con-pa-text a{
    font-size: 20px;
    text-decoration: none;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 28px;
    color: var(--black);
}
.list-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.soc-icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    box-shadow: 0px 8px 30px 0px rgb(0 0 0 / 8%);
    border: 1px solid #dddddd;
}
.soc-icon svg{
    width: 30px;
    height: 30px;
    display: flex;
}
p.gform_required_legend,
.con-pa-rt p.gform_required_legend{
    display: none;
}
.us-map iframe{
    border-radius: 20px;
}


/* Form CSS */
.for-g-form .gform-field-label {
    font-size: 16px !important;
    color: var(--black); !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-weight: 500 !important;
}
.for-g-form span.gfield_required.gfield_required_asterisk{
    color: var(--red) !important;
    font-size: 16px;
}

.for-g-form form input[type="text"],
.for-g-form form input[type="file"],
.for-g-form form input[type="tel"],
.for-g-form form input[type="email"],
.for-g-form form textarea,
.for-g-form form select{
    border-radius: 10px 10px 10px 10px !important;
    min-height: 50px !important;
    border: 1px solid #dddddd !important;
    background-color: transparent !important;
    color: var(--black) !important;
    font-size: 16px !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    box-shadow: none !important;
    transition: .3s;
    display: flex;
    align-items: center;
}

.for-g-form form input[type="text"]:hover,
.for-g-form form input[type="tel"]:hover,
.for-g-form form input[type="email"]:hover,
.for-g-form form textarea:hover,
.for-g-form form select:hover {
    border-color: var(--blue) !important;
}

.for-g-form form input[type="text"]::placeholder,
.for-g-form form input[type="tel"]::placeholder,
.for-g-form form input[type="email"]::placeholder,
.for-g-form form textarea::placeholder {
    color: var(--light-gray);
    opacity: 1;
    font-family: 'Source Sans Pro', sans-serif !important;
}

.for-g-form .gform_wrapper input:focus,
.for-g-form .gform_wrapper textarea:focus,
.for-g-form .gform_wrapper select:focus {
    box-shadow: none !important;
    border-color: var(--blue) !important;
    outline: none !important;
}
.gform_button_select_files,
.gform_button{
    background-color: var(--blue) !important;
    color: var(--white);
    padding: 10px 30px !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    border-radius: 5px !important;
    transition: all .3s;
}
.gform_button_select_files{
    font-size: 16px !important;
    line-height: 22px;
}
.gform_button{
    font-size: 18px !important;
    line-height: 26px;
}
.gform_button_select_files:hover,
.gform_button:hover{
    background-color: var(--red) !important;
}
.gform_button_select_files:focus{
    border: 0px !important;
    box-shadow: none !important;
    outline: 0px !important;
}

.gfield_validation_message {
    font-family: 'Source Sans Pro', sans-serif !important;
}
/* Contact Us Page CSS End */




/* Single Holidays Pages CSS */

.single-ov-main{
    padding: 80px 50px;
}

.trivia-accordion {
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/*
.trivia-item + .trivia-item {
    border-top: 1px solid #ddd;
}*/

.trivia-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    line-height: 26px;
    background-color: var(--light_bg);
    color: var(--black);
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Source Sans Pro', sans-serif;
}

.trivia-question:hover {
    background: var(--blue);
    color: var(--white);
}
.trivia-question:hover .arrow svg path{
    stroke: var(--white);
}

.trivia-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-sizing: border-box;
    padding: 0 16px;
    border: 1px solid var(--border-gray);
    border-radius: 0px 0px 10px 10px;
}

.trivia-answer-content {
    padding: 12px 0; /* actual visible padding */
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.trivia-question .arrow {
    transition: transform 0.3s ease;
}

.trivia-question .arrow svg{
    width: 20px;
    height: 20px;
}

button.trivia-question.active{
    background-color: var(--blue);
    color: var(--white);
}

.trivia-question.active .arrow svg path{
    stroke: var(--white);
}
.trivia-question.active .arrow {
    transform: rotate(180deg);
}


.comments-area{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.comment-list{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

div#respond {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    background-color: var(--light_bg);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
}
h3#reply-title {
    font-size: 24px;
    line-height: 32px;
    color: var(--blue);
    font-weight: 700;
}
span.required{
    color: var(--red);
}

p.comment-notes{
    color: var(--black);
}

p.comment-form-comment label,
p.comment-form-author label,
p.comment-form-email label,
p.comment-form-url label{
    font-size: 16px;
    line-height: 22px;
    color: var(--black);
    font-weight: 500;
}

p.comment-form-comment,
p.comment-form-author,
p.comment-form-email,
p.comment-form-url{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

p.comment-form-comment textarea,
p.comment-form-author input,
p.comment-form-email input,
p.comment-form-url input{
    min-height: 50px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid var(--border-dark);
    padding: 10px;
}


p.comment-form-cookies-consent{
    color: var(--black);
}

p.form-submit .submit {
    background-color: var(--blue);
    padding: 15px 25px;
    display: block;
    font-size: 16px;
    color: var(--white);
    border-radius: 10px;
    border: 0px;
    outline: 0px;
    font-family: 'Source Sans Pro', sans-serif;
    cursor: pointer;
    font-weight: 500;
    transition: .3s;
}
p.form-submit .submit:hover{
    background-color: var(--red);
    color: var(--white);
}

.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    border: 1px solid var(--blue) !important;
    outline: none;
}

.holiday-section{
    color: var(--black);
}
.song-title{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.song-title h3{
    font-size: 24px;
    line-height: 32px;
}
.chords-div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.chords-div h3{
    color: var(--blue);
}

pre.song-chords {
    margin: 0px;
    font-family: 'Source Sans Pro', sans-serif;
}
.songs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.song-block{
    display:flex;
    gap:40px;
}

.verses-wrapper{
    flex:1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    width: 100%;
}
.cst-tabl table{
    width: 100%;
    max-width: 100%;
}


.annotation-side{
    max-width:450px;
    width: 100%;
    background-color: var(--light-bg);
    border-left:2px solid var(--border-dark);
    padding:15px;
    position:sticky;
    max-height: 80vh; /* prevent overflow */
    overflow-y: auto;
    top:50px;
    height:fit-content;
    transition: all 0.3s ease;
    display:none; /* hide by default */
}
.annotation-side.active{
    display: block;
}

/* ===== lines ===== */
.verse-num-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

h4.verse-number {
    font-size: 18px;
    color: var(--blue);
    font-weight: 600;
}

.song-line-text{
    color: var(--black);
    font-size: 18px;
    line-height: 26px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

.song-line-text.has-annotation{
    cursor:pointer;
    background: var(--light_bg);
    transition: .4s;
    padding: 2px 0px;
    font-weight: 400;
}
.song-line-text.has-annotation:hover{
    background-color: var(--blue);
    color: var(--white);
}

.song-line-text.active{
    background-color: var(--blue);
    color: var(--white);
}

.annotation-content p {
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
}

/* annotation images responsive */
.annotation-content img{
    max-width:100%;
    height:auto;
    display:block;
    margin:10px 0;
}
strong{
    font-weight: 600;
}




.comm-guide{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tp-con P{
    margin: 0px;
    color: var(--black);
}

.contact-section h3,
.closing-section h3,
.holiday-gallery h3,
.guidelines-section h3,
.process-step h3,
.next-step-intro h3,
.fom-top-con h3,
.look-tp h3,
.tp-con h3{
    color: var(--blue);
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
}
.tp-con{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lok-main{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.look-items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.look-tp {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.look-tp P{
    color: var(--black);
}

.look-item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--light_bg);
    border-radius: 10px;
}

.look-item-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.look-item-header img {
    width: 25px;
    height: 25px;
    display: flex;
}

.look-item-header h3{
    color: var(--blue);
    font-weight: 600;
}
.look-item-content p{
    color: var(--black);
}

.form-section{
    background-color: var(--light_bg);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fom-top-con {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.gform_drop_area{
    background-color: transparent !important;
}

.process-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.next-step-intro{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.next-step-intro p{
    color: var(--black);
}

.step-number {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: var(--red);
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    color: var(--white);
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
}
.process-step h3{
    margin-top: 10px;
}
.process-step{
    color: var(--black);
}

.guidelines-section{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.guidelines-content ul{
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style-type: circle;
    padding-left: 20px;
}
.guidelines-content ul li{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 22px;
}
.for-g-form span.gfield_fileupload_progressbar_progress{
    background-color: var(--blue);
}

div#gform_confirmation_message_3 {
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 26px;
    color: var(--red);
}









/* MASONRY LAYOUT */
.holiday-gallery{
    display:flex;
    flex-direction:column;
    gap:50px;
}

.gal-main-con{
    display:flex;
    flex-direction:column;
    gap:50px;
}

/* GRID */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    width:100%;
}

/* CARD */

.gallery-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    overflow:hidden;
    transition:.3s ease;
    height:100%;
}

.gallery-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-card a{
    display:flex;
    flex-direction:column;
    height:100%;
    text-decoration:none;
}

/* IMAGE */

.card-img{
    width:100%;
}

.card-img img{
    width:100%;
	height:350px;
    object-fit:cover;
    display:block;
}

/* CONTENT */

.card-content{
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.card-title{
    font-size:20px;
    line-height:28px;
    color:#222;
    margin:0;
    text-transform:none;
}

.card-excerpt{
    font-size:15px;
    line-height:24px;
    color:#555;
}

.meta{
    margin-top:auto;
    display:flex;
    flex-direction:column;
    gap:5px;
    font-size:14px;
    color:#777;
}

/* REMOVE OLD EFFECTS */

.card-info,
.gal-overlay{
    display:none !important;
}


/* =======================
TABS
======================= */

.gallery-tabs{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content: center;
}

.tab-btn{
    padding:8px 16px;
    border-radius:25px;
    font-size: 16px;
    line-height: 22px;
    font-family: 'Source Sans Pro', sans-serif;
    border: 1px solid var(--border-gray);
    background-color: transparent;
    color: var(--black);
    cursor:pointer;
    transition:.25s;
}

.tab-btn.active,
.tab-btn:hover{
    background-color: var(--red);
    color: var(--white);
    border: 1px solid var(--red);
}

p.no-submissions{
    color: var(--red);
    margin-bottom: 20px;
    text-align: center;
}
span.meta {
    font-size: 16px;
    line-height: 22px;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: capitalize;
}








.contact-section,
.closing-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.closing-section p{
    color: var(--black);
}
.questions-content{
    color: var(--black);
    font-size: 18px;
    line-height: 26px;
    font-family: 'Source Sans Pro', sans-serif;
}
/* End CSS */






/*annoted text section*/
.cst-as{
    display:flex;
    gap:40px;
}

/* text side */
.reading-annotated-text-section{
    flex:1;
}

/* clickable text */
.simple-text{
    font-size: 18px;
    line-height: 26px;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 2px 0px;
    width: fit-content;
    display: flex;
}
.annotation-row{
    margin-bottom: 15px;
}
.simple-text.has-annotation p{
    cursor:pointer;
    background-color: var(--light_bg);
    color: var(--black);
    width: fit-content;
}

/* hidden annotation blocks */
.reading-annotation-text{
    display:none;
}

/* sidebar */
.reading-annoted-sidebar {
    max-width: 450px;
    width: 100%;
    background: var(--light_bg);
    padding: 20px;
    border-left: 2px solid var(--border-dark);
    overflow-y: auto;
    max-height: 80vh;
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 999;
    transform: translateX(100%) translateY(-50%);  /* combined */
    visibility: hidden;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
/* active */
.reading-annoted-sidebar.active {
    transform: translateX(0) translateY(-50%);  /* combined */
    visibility: visible;
    opacity: 1;
}

.reading-annoted-sidebar .sidebar-content{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.reading-annoted-sidebar.active .sidebar-content{
    transform: translateX(0);
}











.community-submission-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    box-shadow: 0px 8px 30px 0px rgb(0 0 0 / 8%);
}
.submission-description{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.submission-media{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.sub-con {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sub-con p {
    font-size: 18px;
    line-height: 26px;
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0px;
    color: var(--black);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}
.media-item{
    position: relative;
}
.media-item a{
    display: flex;
}
.media-item video,
.media-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    background-color: var(--light_bg);
    object-position: center;
    outline: none;
    border: 0px;
}
a.back-link {
    background-color: var(--blue);
    padding: 15px 30px;
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 22px;
    transition: .3s;
    display: block;
    width: fit-content;
}
a.back-link:hover{
    background-color: var(--red);
    color: var(--white);
}







.video-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    height: 100%;
}

.video-wrapper video {
    display: block;
}







/* Search Page */
article.result-card{
    box-shadow: 0px 8px 30px 0px rgb(0 0 0 / 8%);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    transition: .5s;
    overflow: hidden;
}
.result-thumb img{
    transition: .5s;
}
article.result-card:hover .result-thumb img{
    transform: scale(1.1);
}
.results-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.result-thumb{
    display: flex;
    overflow: hidden;
}
.result-thumb img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px 20px 0px 0px;
}
article.result-card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
article.result-card a h3{
    color: var(--blue);
    font-size: 22px;
    line-height: 30px;
    text-transform: capitalize;
}
article.result-card a p{
    font-size: 16px;
    line-height: 22px;
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--black);
}
.sear-con {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--blue);
    font-size: 16px;
    line-height: 22px;
    font-family: 'Source Sans Pro', sans-serif;
}
.page-numbers.current {
    display: flex;
    background-color: var(--red);
    width: fit-content;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    line-height: 22px;
    font-family: 'Source Sans Pro', sans-serif;
}
.nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.search-page-container .single-ov-main{
    min-height: 100vh;
}
.more-cont{
    color: var(--black);
}
.more-cont table{
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--black);
    border: 1px solid var(--border-gray);
}
.more-cont table ul {
    margin: 0px;
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--black);
}




/* Popup CSS */
#popup-overlay{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:9998;
}

#popup-form{
    display:none;
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:#fff;
    padding:30px;
    max-width:600px;
    width:95%;
    z-index:9999;
    border-radius:8px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    height: fit-content;
}

#close-popup{
    position:absolute;
    top:10px;
    right:15px;
    background:none;
    border:none;
    font-size:22px;
    cursor:pointer;
}

div#popup-form div#gform_fields_18 {
    gap: 25px;
}





/* 404 Page CSS */
.not-found-content {
    flex: 1;
    padding: 60px 40px;
    text-align: center;
}

.error-404-box{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.error-code {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    margin: 0px;
}

.error-title {
    font-size: 28px;
    line-height: 38px;
}

.error-description {
    max-width: 600px;
    color: var(--black);
    margin-bottom: 0px;
    margin: auto;
}
.btn-primary{
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    background-color: var(--blue);
    color: var(--white);
    transition: .3s;
    font-family: 'Source Sans Pro', sans-serif;
}

.btn-primary:hover{
    background-color: var(--red);
    color: var(--white);
}

.gquiz-answer-explanation.gfield_description:before{
    content: 'Answer: ';
    font-weight: ;
}
.gquiz-answer-explanation.gfield_description {
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 16px !important;
    color: var(--us-green) !important;
    font-weight: 600 !important;
}
.holy_sin_con form .gform_body img.gquiz-indicator {
    width: 25px !important;
    height: 25px !important;
}

.holy_sin_con form:before{
    content: '🎯 Choose the answer you think is correct — the right answer along with a detailed explanation will appear instantly.';
    display: block;
    background-color: var(--yellow);
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 6px;
    width: fit-content;
    font-family: 'Source Sans Pro', sans-serif;
}


.mar-bot{
    margin-bottom: 30px;
}




/* ============================================
SECTION ACCORDION
============================================ */

/* Hidden sections */
.holiday-section.section-hidden {
    display: none;
}

/* Active/visible section */
.holiday-section.section-active {
    display: block;
}


/* ============================================
   SUBMENU ACTIVE ITEM — RED BACKGROUND
   ============================================ */

/* Active submenu item */
.us-nav-submenu li.active > a,
.nav-submenu li.active > a {
    background-color: var(--red);   /* Red color — apni marzi se change kar sakte hain */
    color: #ffffff;
    border-radius: 6px;
}

/* Active submenu item ka icon bhi white */
.us-nav-submenu li.active > a svg,
.nav-submenu li.active > a svg {
    stroke: #ffffff;
    color: #ffffff;
}


.annotation-tip{
    margin: 0px;
    background-color: var(--yellow);
    padding: 10px;
    border-radius: 10px;
    width: fit-content;
}

.img-cap {
    font-family: 'Source Sans Pro', sans-serif;
    width: 100%;
    max-width: 500px;
}



.source_text p{
    text-align: center;
    color: var(--black);
    padding: 10px 50px;
}


@media(min-width:1024px){
    .annotation-overlay,
    .sidebar-overlay{
        display: none;
    }
}
@media(max-width:1440px){
    
    h1 {
        font-size: 40px;
        line-height: 47px;
    }
    h2 {
        font-size: 33px;
        line-height: 38px;
    }
    h3 {
        font-size: 18px;
        line-height: 23px;
    }
    p {
        font-size: 16px;
        line-height: 24px;
		overflow:auto;
    }

    a.nav-link {
        font-size: 14px;
        line-height: 18px;
    }

    .site-container{
        padding: 70px 30px 0px 30px;
    }
    .wywf-inner-cont{
        padding-bottom: 70px;
    }
    .main-abt{
        padding-bottom: 70px;
    }
    #banner-section{
        padding: 50px 30px;
    }
    #glry-section{
        padding: 0px 30px 70px;
    }

    .load-btn {
        font-size: 16px;
        padding: 11px 24px;
        line-height: 23px;
    }
    .prime-btn {
        font-size: 16px;
        padding: 11px 24px;
        line-height: 23px;
    }
    .abt-cont {
        gap: 30px;
    }
    .fot-links ul {
        gap: 15px;
    }

    .copy-text {
        font-size: 12px;
        line-height: 17px;
    }
    .fot-links ul li a {
        font-size: 12px;
        line-height: 17px;
    }

    .wywf-gcontent-col img {
        max-width: 80px;
    }

    .wywf-grid-main{
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-main{
        padding: 70px 30px;
    }
}
@media(max-width:1220px){
    .single-ov-main {
        padding: 70px 30px;
    }
    .sidebar-menu-icon{
        display: flex;
    }
    .sec-left{
        opacity: 0;
        left: -420px;
        transition: .5s;
        z-index: 9;
    }
    .main-content{
        margin: 0px;
    }
    .sec-left.active{
        opacity: 1;
        left: 0px;
        z-index: 12;
    }
    .testimonial-marquee{
        padding: 60px 30px;
    }
}
@media(max-width:1024px){

    .source_text p{
        padding: 10px 20px;
    }

    /* Overlay */
    .annotation-overlay,
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
    }

    .annotation-overlay.active,
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Sidebar */
    .annotation-side,
    .reading-annoted-sidebar {
        max-width: 450px;
        width: 90%;
        background: var(--light_bg);
        padding: 25px;
        border-left: 2px solid var(--border-dark);
        overflow-y: auto;
        max-height: 80vh;
        position: fixed;
/*        top: 50px;*/
        right: -100%;
        transition: right 0.4s ease-in-out;
        z-index: 999;
    }

    /* Active state */
    .annotation-side.active,
    .reading-annoted-sidebar.active {
        right: 0;
    }















    .results-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .media-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .single-ov-main {
        padding: 60px 20px;
        gap: 50px;
    }
    .abt-sec-btm,
    .flex-row{
        flex-direction: column;
    }
    .abt-lt, .abt-rit{
        max-width: 100%;
        width: 100%;
    }

    .wywf-inner-cont{
        padding-bottom: 60px;
    }
    .gallery-grid{
        grid-template-columns: 1fr 1fr;
    }

}
@media (max-width: 900px) {

    .cst-tabl {
        overflow-x: scroll;
        width: 100%;
    }

    .gform-theme--foundation .gform_fields{
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .form-section{
        padding: 40px 30px;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .look-items{
        grid-template-columns: repeat(2, 1fr);
    }
    .con-pa{
        flex-direction: column;
    }
    .con-items,
    .list-item{
        gap: 15px;
    }
    .con-pa-lt,
    .con-pa-rt{
        max-width: 100%;
        width: 100%;
    }
    .soc-icon svg {
        width: 22px;
        height: 22px;
        display: flex;
    }


    .abt-sec-btm{
        gap: 30px;
    }
    
    .intro-main{
        padding: 60px 20px;
    }

    .gallery-row {
        grid-template-columns: 1fr;
    }

    .gallery-item.big,
    .gallery-item.small,
    .gallery-item.tall {
        min-height: 260px;
    }


    .bnr-container{
        flex-direction: column;
    }
    .bnr-hdng-col,
    .bnr-content-col{
        width: 100%;
    }
    .intro-dt-text{
        column-count: 1;
    }
    .btm-footer{
        flex-direction: column-reverse;
        gap: 20px;
    }
    .testimonial-marquee{
        padding: 60px 20px;
    }
    .site-container{
        padding: 60px 20px 0px 20px;
    }
    .main-abt{
        padding-bottom: 60px;
    }



}
@media (max-width: 768px) {

    .hero-content h1{
        text-align: center;
    }
    .holiday-section h2 {
        text-align: center;
    }
    ol,
    ul{
        padding-left: 20px;
    }
    .more-cont table{
        width: 800px;
        max-width: 800px;
    }
    .float-image-left{
        margin-left: 0px;
        margin-bottom: 15px;
    }
    .results-grid{
        grid-template-columns: 1fr;
    }
    .gallery-grid{
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .look-items{
        grid-template-columns: 1fr;
    }
    .media-grid{
        grid-template-columns: 1fr;
    }
    .single-ov-main {
        padding: 50px 20px;
        gap: 40px;
    }
    .submission-media{
        gap: 30px;
    }
    .submission-description{
        gap: 20px;
    }

    .con-pa-rt{
        padding: 30px;
    }
    .gform-theme--foundation .gform_fields {
        gap: 30px !important;
    }

    .sim-head {
        margin-bottom: 30px;
    }

    .pr-po h2{
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 15px;
    }

    .con-lt-con-m{
        gap: 30px;
    }

    .flex-row img{
        height: 100%;
        gap: 15px;
    }
    .abt-rit{
        gap: 20px;
    }
    
   .intro-main-home, 
   .intro-main{
        gap: 20px;
    }
    .intro-main{
        padding: 50px 20px;
    }


    .tm-item {
        width: 260px;
        margin-right: 20px;
    }


    .search-field{
        display: none;
    }
    .wywf-grid-main{
        grid-template-columns: 1fr;
    }
    #glry-section{
        padding: 0px 20px 50px 20px;
    }
    #banner-section,
    .testimonial-marquee{
        padding: 50px 20px;
    }

    .site-container{
        padding: 50px 20px 0px 20px;
    }
    .main-abt{
        padding-bottom: 50px;
    }

    .fot-links ul{
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        justify-content: center;     
    }
    .fot-links ul li a{
        line-height: 15px;
        display: block;
    }
    .copy-text{
        text-align: center;
    }
    .bottom-to-top{
        width: 40px;
        height: 40px;
    }
    .bottom-to-top svg{
        width: 25px;
        height: 25px;
    }
    .wywf-inner-cont{
        padding-bottom: 50px;
    }
	.card-img img{
		height:450px;
	}

}

@media(max-width:520px){
	.card-img img{
		height:280px;
	}
}
















.quiz-results {
    max-width: 480px;
    margin: 0 auto;
    font-family: Georgia, serif;
}

.quiz-results h3 {
    text-align: center;
    color: #0a3161;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
}

.quiz-score-box {
    background: #0a3161;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10,49,97,0.3);
    animation: fadeUp 0.6s ease both;
}

.quiz-score-box::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, #b31942, #e8254f, #b31942);
}

.quiz-row {
    padding: 14px 24px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Source Sans Pro';
    font-size: 18px;
}

.quiz-row img{
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-right: 10px;
}

.quiz-row strong {
    color: #ffffff;
    font-size: 17px;
}

.quiz-progress {
    height: 6px;
    background: rgba(255,255,255,0.08);
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #b31942, #e8254f);
    animation: fillBar 1s ease 0.4s both;
    transform-origin: left;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fillBar {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}






.reading-block-hidden{
    display: none;
}
.reading-content-block.reading-block-active ul,
.reading-content-block.reading-block-active ol
{
    padding: 0px;
    margin: 0px;
    padding-left: 30px;
}

.reading-block-active{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

ul.nav-readings-submenu {
    list-style-type: circle;
    padding-left: 30px;
    margin: 0px;
    display: none;
}
li.nav-section-item.active .nav-readings-submenu{
    display: block;
}





sup a{
    color: var(--red);
    font-weight: 700;
}
.endnotes ol {
    padding: 0px !important;
}
.endnotes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.end-notes-ol{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.end-item {
    padding: 20px;
    border-radius: 0px;
    border-left: 3px solid var(--red);
    background-color: #f3efe8;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.end-item-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 18px;
    color: #000;
}

.end-item-left a{
    text-decoration: none;
    color: var(--red);
}
.end-item-left span{
    font-family: 'Source Sans Pro';
}