@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary-blue-color: rgb(16,85,204);
    --primary-purple-color: rgb(103,78,167);
    --disabled-bg: #99999926;
    --white-text :#fff;
    --grey-text: #999999;
    --light-grey: rgb(251, 251, 251);
    --footer-grey: #CCCCCC;
    --bg-dark-grey: #434343;
}

body{
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    color: var(--body-text);
}

.post, .page{
    margin: 0;
}

a{
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}

ul,ol{
    list-style: none;
    padding: 0;
    margin: 0;
}

.bg-light-grey{
    background-color: var(--light-grey);
}

.common-spacing{
    padding: 40px 0;
}


.blue-color{
    color: var(--primary-blue-color);
}

.purple-color{
    color: var(--primary-purple-color);
}

.header-wrapper{
    padding: 15px 0;
}

.site-header{
    position: sticky;
    top: 0;
    background: var(--bg-dark-grey);
    transition: all 0.3s ease;
    z-index: 3;
    margin-bottom: 15px;
}

.site-header.sticky-header{
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-title{
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary-blue-color);
    font-weight: 700;
    display: flex;
}

.header-title a{
    width: 240px;
}

.header-title a img{
    object-fit: contain;
}

.home-hero-banner{
    position: relative;
    height: 450px;
    width: calc(100% - 100px);
    border-radius: 20px;
    margin: 0 auto;
    overflow: hidden;
}

.home-hero-banner:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.45); */
    background-color: rgb(34 34 34 / 45%);
    /* background: #FFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 45%); */
    z-index: 2;
}

.hero-banner-image{
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner-content,
.hero-inner-banner-content{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    left: 50%;
    width: 100%;
    padding: 10px;
}

.hero-banner-title{
    font-size: 58px;
    line-height: 1.3;
    color: var(--white-text);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-page-inner-title{
    font-size: 46px;
    line-height: 1.3;
    color: var(--white-text);
    font-weight: 700;
}

.hero-banner-desc{
    font-size: 18px;
    font-weight: 700;
}

.hero-banner-desc,
.hero-inner-banner-desc{
    line-height: 1.3;
    color: var(--white-text);
}

.hero-inner-banner-desc{
    font-size: 24px;
    font-weight: 700;
    max-width: 80%;
    margin: 0 auto;
}

.hero-banner-desc p + p,
.hero-inner-banner-desc p + p{
    margin-top: 10px;
}

.section-title{
    font-size: 28px;
    line-height: 1.3;
    color: var(--grey-text);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title span{
    color: var(--primary-blue-color);
}

.event-list-items{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.event-items-wrapper{
    display: flex;
    align-items: center;
    border: 1px solid var(--grey-text);
    border-radius: 15px;
    padding: 15px 20px;
    gap: 20px;
    box-shadow: 0 2px 4px rgba(153, 153, 153, 0.5);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.event-items-wrapper:hover{
    transform: scale(1.02);
    background-color: rgb(17 90 200 / 7%);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px 1px;
}

.event-logo{
    width: 100px;
}

.event-details{
    width: calc(100% - 450px);
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-left: 30px;
}

.event-btn{
    margin-left: auto;
    padding: 6px 14px;
    background-color: transparent;
    color: var(--primary-blue-color);
    border: 1px solid var(--grey-text);
    white-space: nowrap;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    line-height: 26px;
    min-width: 260px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-btn:visited{
    color: var(--primary-blue-color);
}

.event-items-wrapper:hover .event-btn,
.event-btn:hover,
.event-btn:focus{
    background-color: var(--primary-blue-color);
    color: var(--white-text);
    border-color: var(--primary-blue-color);
}

.events-name{
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    display: flex;
    flex-direction: column;
}

.main-event-name,
.inner-event-full-name{
    color: var(--primary-blue-color);
}

.event-address{
    color: var(--grey-text);
}

.event-timing{
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-blue-color);
}

.disabled-event.event-items-wrapper{
    cursor: not-allowed;
}

.disabled-event .event-btn{
    border-color: var(--grey-text);
    color: var(--grey-text);
    pointer-events: none;
}

.event-detail-redirection-wrap{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-more-events-btn{
    background-color: transparent;
    border: 2px solid var(--primary-blue-color);
    color: var(--primary-blue-color);
    padding: 10px 20px;
    border-radius: 5px;
    min-width: 220px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.view-more-events-btn:hover{
    background-color: var(--primary-blue-color);
    color: var(--white-text);
    border-color: var(--primary-blue-color);
}

.hero-inner-page-banner{
    position: relative;
    height: 300px;
    width: calc(100% - 100px);
    border-radius: 20px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-inner-page-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-inner-page-banner:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.event-name-detail-wrapper.common-spacing{
    padding-bottom: 40px;
}

.inner-event-name{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 20px;
}

.inner-event-location-name{
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--grey-text);
}

.inner-event-date-time{
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-blue-color);
}

.inner-event-image-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.inner-event-imge,
.inner-event-full-width-image-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--grey-text);
}

.inner-event-imge img,
.inner-event-full-width-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-event-full-width-image-wrapper{
    margin-top: 20px;
}

.form-group p{
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.form-group label{
    color: var(--grey-text);
    font-weight: 700;
}

.form-group .wpcf7-form-control-wrap{
    display: flex;
    flex-direction: column;
}

.form-group .wpcf7-form-control{
    border: 1px solid var(--grey-text);
    border-radius: 10px;
    min-height: 48px;
    width: 100%;
    padding: 8px 12px;
    outline: none;
    font-size: 16px;
    line-height: 1.2;
    color: black;
}

.form-group .wpcf7-form-control.wpcf7-textarea{
    resize: none;
}

.form-group .wpcf7-form-control-wrap .wpcf7-not-valid-tip{
    font-size: 14px;
    line-height: 1.3;
}

.form-submit-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.form-submit-wrapper.form-group p{
    flex-direction: row;
    position: relative;
}

.form-submit-wrapper.form-group .wpcf7-form-control{
    padding: 6px 14px;
    background-color: transparent;
    color: var(--primary-blue-color);
    border: 1px solid var(--grey-text);
    white-space: nowrap;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    min-width: 260px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-submit-wrapper.form-group .wpcf7-form-control:hover,
.form-submit-wrapper.form-group .wpcf7-form-control:focus {
    background-color: var(--primary-blue-color);
    color: var(--white-text);
    border-color: var(--primary-blue-color);
}

.form-submit-wrapper.form-group .wpcf7-spinner{
    position: absolute;
    margin: 0;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-from-wrapper .wpcf7 form.invalid .wpcf7-response-output,
.contact-from-wrapper .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-from-wrapper .wpcf7 form.payment-required .wpcf7-response-output{
    margin: 15px 0 0 0;
    border: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    color: #dc3232;
}

.cms-page-wrapper{
    font-size: 20px;
    line-height: 1.5;
    color: var(--grey-text);
}

.cms-page-wrapper p + p{
    margin-top: 20px;
}

/* footer */
.footer-wrapper{
    background-color: var(--bg-dark-grey);
    padding: 50px 0 30px;
}

.footer-top-sec{
    border-bottom: 1px solid var(--white-text);
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo{
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    display: flex;
}

.footer-logo a{
    display: flex;
    color: var(--white-text);    
    width: 160px;
}

.footer-logo a img{
    object-fit: contain;
}

.footer-menu-links{
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-menu-links li{
    font-size: 14px;
    line-height: 1.3;
}

.footer-menu-links li a{
    color: var(--white-text);
}

.footer-menu-links li a:hover{
    opacity: 0.6;
}

.footer-copyright-section{
    color: var(--white-text);
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
}

@media (max-width: 1399px){
    .header-title a{
        width: 200px;
        display: inline-flex;
    }

    .home-hero-banner{
        height: 400px;
        width: calc(100% - 40px);
    }

    .hero-inner-page-banner{
        width: calc(100% - 40px);
    }

    .hero-banner-title {
        font-size: 50px;
    }

    .section-title {
        font-size: 26px;
    }

    .event-logo {
        width: 85px;
    }

    .event-btn{
        font-size: 16px;
        line-height: 24px;
        min-width: 245px;
        min-height: 46px;
    }

    .event-details {
        width: calc(100% - 400px);
        row-gap: 15px;
        margin-left: 20px;
    }

    .inner-event-location-name,
    .inner-event-date-time{
        font-size: 24px;
    }

    .hero-inner-page-banner.alt-inner-page-banner{
        height: 225px;
    }

    .hero-page-inner-title{
        font-size: 40px;
    }

    .cms-page-wrapper{
        font-size: 18px;
    }
}

@media (max-width: 1199px){

    .home-hero-banner {
        height: 350px;
    }

    .hero-banner-title {
        font-size: 46px;
        margin-bottom: 15px;
    }

    .hero-banner-desc {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .event-items-wrapper{
        padding: 12px 14px;
        gap: 14px
    }

    .event-btn{
        min-width: 230px;
        min-height: 42px;
        padding: 4px 8px;
    }

    .hero-inner-banner-desc{
        font-size: 22px;
        max-width: 100%;
    }

}

@media (max-width: 991px){
    .home-hero-banner {
        height: 320px;
    }

    .hero-banner-title {
        font-size: 42px;
        margin-bottom: 12px;
    }

    .hero-banner-desc {
        font-size: 15px;
    }

    .hero-banner-desc p + p, .hero-inner-banner-desc p + p {
        margin-top: 8px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .event-details {
        width: calc(100% - 320px);
        row-gap: 10px;
        margin-left: 0px;
    }

    .events-name,
    .event-timing{
        font-size: 16px;
    }

    .event-btn {
        min-width: 200px;
        min-height: 40px;
        padding: 4px;
        font-size: 14px;
        line-height: 22px;
    }

    .footer-wrapper {
        padding: 35px 0 20px;
    }

    .footer-top-sec {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .footer-logo a{
        width: 130px;
    }

    .footer-copyright-section{
        font-size: 13px;
    }

    .hero-inner-banner-desc {
        font-size: 20px;
    }

    .inner-event-location-name,
    .inner-event-date-time {
        font-size: 20px;
    }

    .inner-event-image-wrapper {
        gap: 25px;
    }

    .hero-inner-page-banner.alt-inner-page-banner{
        height: 200px;
    }

    .hero-page-inner-title {
        font-size: 36px;
    }

    .form-group .wpcf7-form-control{
        min-height: 44px;
    }
    
    .cms-page-wrapper{
        font-size: 16px;
    }
}

@media (max-width: 767px){
    .hero-banner-title {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .hero-banner-desc {
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .event-items-wrapper{
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .event-details{
        width: 100%;
    }

    .event-btn{
        margin-left: 0;
    }

    .hero-inner-banner-desc {
        font-size: 18px;
    }

    .inner-event-name {
        row-gap: 12px;
    }

    .inner-event-image-wrapper {
        gap: 15px;
        margin-top: 12px;
    }
}

@media (max-width: 575px){

    .common-spacing {
        padding: 35px 0;
    }

    .event-name-detail-wrapper.common-spacing{
        padding-bottom: 25px;
    }

    .home-hero-banner,
    .hero-inner-page-banner{
        width: calc(100% - 24px);
    }

    .hero-banner-title {
        font-size: 32px;
    }

    .footer-menu-links {
        gap: 20px;
    }

    .footer-menu-links li {
        font-size: 12px;
    }

    .footer-copyright-section {
        font-size: 12px;
    }

    .inner-event-location-name,
    .inner-event-date-time {
        font-size: 18px;
    }

    .inner-event-image-wrapper{
        grid-template-columns: repeat(1, 1fr);
    }

    .section-title {
        font-size: 18px;
    }

    .header-title a {
        width: 160px;
    }

    .hero-inner-page-banner .hero-inner-banner-content{
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-inner-page-banner.alt-inner-page-banner {
        height: 180px;
    }

    .hero-page-inner-title {
        font-size: 32px;
    }

    .form-group .wpcf7-form-control.wpcf7-textarea{
        min-height: 170px;
    }

    .form-group label{
        font-size: 14px;
    }
}

@media (max-width: 479px){
    .hero-banner-title {
        font-size: 28px;
    }
}

@media (max-width: 400px){

    .header-title a {
        width: 140px;
    }

    .hero-inner-page-banner {
        height: 260px;
    }

    .footer-wrapper {
        padding: 25px 0 15px;
    }

    .footer-logo a {
        width: 100px;
    }

    .hero-banner-title {
        font-size: 24px;
    }

    .footer-menu-links {
        gap: 15px;
    }

    .footer-top-sec {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .inner-event-location-name,
    .inner-event-date-time {
        font-size: 16px;
    }

    .hero-inner-banner-desc {
        font-size: 16px;
    }

    .hero-inner-page-banner.alt-inner-page-banner {
        height: 165px;
    }

    .hero-page-inner-title {
        font-size: 28px;
    }

    .cms-page-wrapper{
        font-size: 14px;
    }
}