:root {
    --white-color: #fff;
    --black-color: #000;
    --body-color: #212020;
    --blue-color: #2547A0;
    --pastel-color: #9BADD1;
    --body-font: 'Almarai', sans-serif;
    --heading-font: 'Libre Baskerville', sans-serif;
}
body {
    color: var(--body-color);
    font-family:var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    background-color: var(--white-color);
}
body *:last-child {
    margin-bottom: 0;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    color: var(--blue-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
img {
    max-width: 100%;
    height: auto;
}
span {
    display: inline-block;
}
p, p:last-child {
    margin-bottom: 0;
}
h1, h2, h4 {
    font-family: var(--heading-font);
    font-weight: 400;
    margin: 0;
}
h1 {
    color: var(--body-color);
    font-size: 92px;
    line-height: 1;
}
h5 {
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
}
.container {
    padding: 0 16px;
}
.primary-solid, .primary-transparent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: var(--body-color);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding: 17px 35px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    border: 1px solid transparent;
    border-radius: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.primary-solid {
    color: var(--white-color);
    background: var(--black-color);
    opacity: 1;
}
.primary-solid:hover {
    opacity: 0.8;
}
.primary-transparent {
    color: var(--black-color);
    background: transparent;
    border: 1px solid var(--black-color);
}
.primary-transparent:hover {
    color: var(--white-color);
    background-color: var(--black-color);
    border-color: var(--black-color);
}

/* Header Section Style */
body.admin-bar header {
    margin-top: 32px;
}
header.site-header {
    background-color: var(--pastel-color);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
	z-index: 9999;
}
.header-container {
    padding: 0 5%;
}
.logo {
    display: block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
.logo img {
    width: auto;
    max-width: 100%;
    max-height: 70px;
}
.logo p span {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-left: 10px;
}
nav.navmenu {
    max-width: 100%;
    width: 100%;
}
nav.navmenu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
li.menu-item-has-children {
    position: relative;
}
nav.navmenu > ul li a {
    padding: 4px 0;
}
.sub-menu-list {
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
    width: 200px;
    background-color: var(--pastel-color);
    padding: 8px 16px;
    -webkit-transform: translateX(-16px);
            transform: translateX(-16px);
}
nav.navmenu ul li:hover a + .sub-menu-list {
    display: block;
}
.right-card-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 35px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}
.social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
}
.social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
}
:is(.social-icons, .shopping-card) a {
    line-height: 20px;
}
.shopping-card a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
}
.social-icons a svg {
    max-width: 20px;
    height: 20px;
}
.shopping-card a svg {
    max-width: 25px;
    height: 25px;
}
.right-card-area .primary-transparent {
    padding: 20px 35px 21px;
}

/* Footer Section Style */
footer.site-footer {
    padding: 60px 0;
    background-color: var(--blue-color);
    color: var(--white-color);
    position: relative;
}
.quick-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 300px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 12px;
}
.quick-links a {
    color: var(--white-color);
    opacity: 0.5;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-logo-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
}
.footer-logo-area .footer-logo {
    max-width: 100px;
}
.footer-logo-area .social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
}
.footer-logo-area .social-icons a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    padding: 8px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35px;
            flex: 0 0 35px;
    height: 35px;
    width: 35px;
}
.footer-logo-area .social-icons a:hover {
    opacity: 0.7;
}
.footer-logo-area .social-icons i {
    font-size: 16px;
    color: var(--white-color);
}
.footer-content {
    max-width: 490px;
}
.footer-content p {
    font-size: 14px;
    line-height: 21px;
}
p.copyright-text {
    font-size: 14px;
    line-height: 21px;
    font-style: italic;
    text-align: center;
    padding-top: 48px;
}

/* Hero Section Style */
section.hero-section {
    background-image: url(../img/header_logo.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply;
}
.section-overlay {
    padding: 250px 0;
    min-height: 90vh;
    background: rgba(255, 255, 255, 0.75);
}
.hero-content-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.hero-content-area p {
    font-size: 22px;
    line-height: 1.5;
}
.btns-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 600px;
    width: 100%;
    gap: 60px;
}
.btns-group a {
    max-width: 100%;
    width: 100%;
}
.custom-shape-divider-bottom-1754933383 {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.custom-shape-divider-bottom-1754933383 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1754933383 .shape-fill {
    fill: #2547A0;
}
.root-data-givewp-embed {
    padding: 130px 0;
	min-height: 400px;
}
.tribe-common.tribe-events-view {
    padding: 70px 0;
    max-width: 900px;
    margin: 0 auto;
}
section#tribe-events-pg-template {
    padding: 70px 0;
}
.wp-singular .site-main {
    padding: 150px 0 !important;
}
.wp-singular .container {
	max-width: 850px;
}
.wpuf-form input {
    width: 100% !important;
}
/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
    .custom-shape-divider-bottom-1754933383 svg {
        width: calc(100% + 1.3px);
        height: 80px;
    }
}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-bottom-1754933383 svg {
        width: calc(100% + 1.3px);
        height: 60px;
    }
}
 