﻿/* =========================================
   EL-SHADDAI HERO
========================================= */

:root {
    --es-navy: #07172e;
    --es-navy-dark: #020912;
    --es-gold: #d9a63a;
    --es-gold-light: #f3c75f;
    --es-white: #ffffff;
    --es-muted: rgba(255,255,255,.72);
}


/* =========================================
   HEADER
========================================= */

.es-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 900;

    padding: 18px 0;

    background: transparent;

    transition:
        background .45s ease,
        padding .45s ease,
        box-shadow .45s ease,
        backdrop-filter .45s ease;

}


/* STICKY / SCROLLED */

.es-header.scrolled {

    padding: 11px 0;

    background:
        rgba(5, 15, 31, .94);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 12px 35px rgba(0,0,0,.18);

    border-bottom:
        1px solid rgba(255,255,255,.08);

}


.es-header-inner {

    width:
        min(1440px, calc(100% - 80px));

    margin: auto;

    display: flex;

    align-items: center;

    gap: 30px;

}


/* =========================================
   LOGO
========================================= */

.es-logo {

    width: 125px;

    flex-shrink: 0;

    display: block;

}


.es-logo img {

   width: 215%;
  height: 103px;

    display: block;

}


/* =========================================
   DESKTOP NAV
========================================= */

.es-nav {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 25px;
    width: 50%;

}


.es-nav > a,
.es-nav-dropdown > a {

    position: relative;

    display: flex;

    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,.9);

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .5px;

    padding: 12px 0;

    transition: .35s ease;

}


.es-nav > a::after,
.es-nav-dropdown > a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 3px;

    width: 0;

    height: 2px;

    background: var(--es-gold-light);

    transition: width .35s ease;

}


.es-nav > a:hover,
.es-nav > a.active,
.es-nav-dropdown:hover > a {

    color: var(--es-gold-light);

}


.es-nav > a:hover::after,
.es-nav > a.active::after,
.es-nav-dropdown:hover > a::after {

    width: 100%;

}


.es-nav-dropdown > a i {

    font-size: 7px;

    transition:
        transform .3s ease;

}


.es-nav-dropdown:hover > a i {

    transform: rotate(180deg);

}


/* =========================================
   DROPDOWN
========================================= */

.es-nav-dropdown {

    position: relative;

}


.es-dropdown-menu {

    position: absolute;

    top: calc(100% + 12px);

    left: 50%;

    min-width: 220px;

    padding: 12px 0;

    background:
        rgba(5,15,31,.98);

    border:
        1px solid rgba(255,255,255,.1);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, 12px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;

}


/* GOLD TOP LINE */

.es-dropdown-menu::before {

    content: "";

    position: absolute;

    top: 0;
    left: 20px;
    right: 20px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--es-gold-light),
            transparent
        );

}


.es-nav-dropdown:hover .es-dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0);

}


/* DROPDOWN LINKS */

.es-dropdown-menu a {

    position: relative;

    display: flex;

    align-items: center;

    padding: 12px 22px;

    color:
        rgba(255,255,255,.65);

    text-decoration: none;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .3px;

    text-transform: uppercase;

    transition:
        color .3s ease,
        padding .3s ease,
        background .3s ease;

}


.es-dropdown-menu a::before {

    content: "";

    width: 0;

    height: 1px;

    margin-right: 0;

    background:
        var(--es-gold-light);

    transition:
        width .3s ease,
        margin .3s ease;

}


.es-dropdown-menu a:hover {

    color: #fff;

    background:
        rgba(255,255,255,.04);

    padding-left: 28px;

}


.es-dropdown-menu a:hover::before {

    width: 12px;

    margin-right: 8px;

}


/* =========================================
   DONATE
========================================= */

.es-donate {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-width: 120px;

    height: 44px;

    padding: 0 20px;

    color: #111;

    background:
        linear-gradient(
            135deg,
            var(--es-gold-light),
            var(--es-gold)
        );

    text-decoration: none;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;

    border-radius: 2px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);

    transition: .4s ease;

}


.es-donate i {

    transition:
        transform .4s ease;

}


.es-donate:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(217,166,58,.25);

}


.es-donate:hover i {

    transform:
        translateX(5px);

}


/* =========================================
   MOBILE BUTTON
========================================= */

.es-menu-btn {

    display: none;

    width: 44px;

    height: 44px;

    border:
        1px solid rgba(255,255,255,.35);

    background:
        rgba(0,0,0,.2);

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

}


.es-menu-btn span {

    display: block;

    width: 20px;

    height: 1px;

    background: #fff;

    transition: .3s ease;

}


/* =========================================
   MOBILE MENU
========================================= */

.es-mobile-menu {

    position: fixed;

    inset: 0;

    z-index: 1000;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(217,166,58,.12),
            transparent 30%
        ),
        #030a14;

    padding: 25px;

    transform:
        translateX(100%);

    transition:
        transform .6s
        cubic-bezier(.77,0,.18,1);

    overflow-y: auto;
	text-align: start;

}


.es-mobile-menu.open {

    transform:
        translateX(0);

}


.es-mobile-menu-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color:
        var(--es-gold-light);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

}


.es-mobile-menu-top button {

    width: 42px;

    height: 42px;

    border:
        1px solid rgba(255,255,255,.25);

    background: transparent;

    color: white;

    cursor: pointer;

}


/* =========================================
   MOBILE NAV
========================================= */

.es-mobile-menu nav {

    display: flex;

    flex-direction: column;

    margin-top: 35px;

}


.es-mobile-menu nav > a {

    padding: 9px 0;

    border-bottom:
        1px solid rgba(255,255,255,.1);

    color: #fff;

    text-decoration: none;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;

    transition: .3s ease;

}


.es-mobile-menu nav > a:hover {

    color:
        var(--es-gold-light);

    padding-left: 8px;

}


/* =========================================
   MOBILE DROPDOWN
========================================= */

.es-mobile-dropdown {

    border-bottom:
        1px solid rgba(255,255,255,.1);

}


.es-mobile-dropdown > button {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 15px 0;

    border: 0;

    background: transparent;

    color: #fff;

    cursor: pointer;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;

    text-align: left;

}


.es-mobile-dropdown > button i {

    color:
        var(--es-gold-light);

    font-size: 11px;

    transition:
        transform .35s ease;

}


.es-mobile-dropdown.open > button {

    color:
        var(--es-gold-light);

}


.es-mobile-dropdown.open > button i {

    transform:
        rotate(180deg);

}


/* =========================================
   MOBILE SUBMENU
========================================= */

.es-mobile-submenu {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height .45s ease,
        opacity .35s ease;

}


.es-mobile-dropdown.open
.es-mobile-submenu {

    max-height: 400px;

    opacity: 1;

}


.es-mobile-submenu a {

    display: block;

    padding:
        10px 0 10px 18px;

    color:
        rgba(255,255,255,.48);

    border-left:
        1px solid rgba(231,184,79,.35);

    text-decoration: none;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: .3s ease;

}


.es-mobile-submenu a:hover {

    color:
        var(--es-gold-light);

    padding-left: 25px;

}


/* =========================================
   MOBILE DONATE
========================================= */

.es-mobile-menu nav
.mobile-donate {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 25px;

    padding: 16px 20px;

    border: 0;

    background:
        var(--es-gold);

    color: #111;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

}


.es-mobile-menu nav
.mobile-donate:hover {

    padding-left: 20px;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1250px) {

    .es-header-inner {

        width:
            calc(100% - 50px);

    }

    .es-nav {

        gap: 16px;

    }

    .es-nav > a,
    .es-nav-dropdown > a {

        font-size: 10px;

    }

    .es-donate {

        min-width: 105px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 1050px) {

    .es-header {

        padding:
            15px 0;

    }

    .es-header-inner {

        width:
            calc(100% - 35px);

        justify-content:
            space-between;

    }

    .es-nav {

        display: none;

    }

    .es-donate {

        display: none;

    }

    .es-menu-btn {

        display: flex;

    }

    .es-logo {

        width: 120px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {

    .es-header-inner {

        width:
            calc(100% - 25px);

    }

    .es-logo {

        width: 105px;

    }

}
/* =========================================
   HERO
========================================= */

.es-hero {
    position: relative;

    min-height: 720px;
    height: 100vh;
    max-height: 950px;

    overflow: hidden;

    background: var(--es-navy-dark);
}


/* BACKGROUND */

.es-hero-image {
    position: absolute;
    inset: 0;
    background-image: url("../img/EL_hero.png");
    
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: esHeroZoom 12s ease-out forwards;
}

@keyframes esHeroZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}


/* CINEMATIC OVERLAY */

.es-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2,9,18,.98) 0%,
            rgba(2,9,18,.87) 28%,
            rgba(2,9,18,.45) 55%,
            rgba(2,9,18,.12) 100%
        ),

        linear-gradient(
            0deg,
            rgba(2,9,18,.85) 0%,
            transparent 40%,
            rgba(2,9,18,.25) 100%
        );
}


/* GOLD ATMOSPHERE */

.es-hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    top: -250px;
    right: 5%;

    background: rgba(217,166,58,.13);

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;
}


/* HERO CONTENT */

.es-hero-container {
    position: relative;
    z-index: 3;

    width: min(1440px, calc(100% - 80px));
    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
}

.es-hero-content {
    width: 650px;

    padding-top: 90px;
    text-align: start;
}


/* EYEBROW */

.es-eyebrow {
    display: block;

    margin-bottom: 22px;

    color: var(--es-gold-light);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;
}


/* HEADING */

.es-hero h1 {
    margin: 0;

    color: #fff;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(58px, 5.7vw, 92px);

    font-weight: 400;
    line-height: .91;

    letter-spacing: -2px;
}

.es-hero h1 span {
    color: var(--es-gold-light);
    font-style: italic;
}


/* TITLE LINE */

.es-title-line {
    width: 58px;
    height: 2px;

    margin: 30px 0 23px;

    background: var(--es-gold);
}


/* DESCRIPTION */

.es-hero-content > p {
    max-width: 520px;

    margin: 0;

    color: rgba(255,255,255,.78);

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.8;
}


/* BUTTONS */

.es-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 32px;
}

.es-btn {
    height: 50px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    text-decoration: none;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;

    letter-spacing: .7px;
    text-transform: uppercase;

    transition: .4s ease;
}

.es-btn i {
    transition: .4s ease;
}

.es-btn:hover i {
    transform: translateX(6px);
}


/* GOLD BUTTON */

.es-btn-gold {
    color: #101010;

    background: var(--es-gold-light);
}

.es-btn-gold:hover {
    background: #fff;

    transform: translateY(-3px);
}


/* OUTLINE BUTTON */

.es-btn-outline {
    color: #fff;

    border: 1px solid rgba(255,255,255,.5);
}

.es-btn-outline:hover {
    border-color: var(--es-gold);
    color: var(--es-gold-light);

    transform: translateY(-3px);
}


/* LOCATION */

.es-location {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 38px;

    color: rgba(255,255,255,.65);

    font-family: "Manrope", sans-serif;
    font-size: 13px;
}

.es-location i {
    color: var(--es-gold-light);
}


/* =========================================
   SOCIAL
========================================= */

.es-social {
    position: absolute;

    right: 35px;
    bottom: 90px;

    z-index: 5;

    display: flex;
    gap: 8px;
}

.es-social a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    text-decoration: none;

    font-size: 12px;

    transition: .35s ease;
}

.es-social a:hover {
    background: var(--es-gold);
    border-color: var(--es-gold);

    color: #111;

    transform: translateY(-4px);
}


/* =========================================
   SCROLL
========================================= */

.es-scroll {
    position: absolute;

    right: 15px;
    top: 50%;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;

    transform: rotate(-90deg) translateX(50%);
    transform-origin: right center;

    color: rgba(255,255,255,.7);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}

.es-scroll-line {
    width: 65px;
    height: 1px;

    background: var(--es-gold);
}


/* =========================================
   HERO CURVE
========================================= */

.es-hero-curve {
    position: absolute;

    z-index: 4;

    left: -5%;
    bottom: -50px;

    width: 110%;
    height: 100px;

    background: var(--es-navy-dark);

    border-radius: 50% 50% 0 0 / 30% 30% 0 0;

    border-top: 2px solid var(--es-gold);
}


/* =========================================
   PILLARS
========================================= */

.es-pillars {
    position: relative;

    z-index: 20;

    width: min(1280px, calc(100% - 60px));

    margin: -35px auto 0;

    padding: 0;

    min-height: 100px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background:
        linear-gradient(
            135deg,
            #07182f,
            #030b16
        );

    border: 1px solid rgba(217,166,58,.65);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);
    text-align: start;
}


.es-pillar {
    min-height: 100px;

    padding: 20px 25px;

    display: flex;
    align-items: center;

    gap: 17px;

    position: relative;
}

.es-pillar:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 25%;

    width: 1px;
    height: 50%;

    background: rgba(255,255,255,.18);
}


/* ICON */

.es-pillar-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--es-gold);

    border-radius: 50%;

    color: var(--es-gold-light);

    font-size: 17px;

    transition: .4s ease;
}

.es-pillar:hover .es-pillar-icon {
    background: var(--es-gold);
    color: #111;

    transform: rotate(8deg) scale(1.08);
}


.es-pillar small {
    display: block;

    margin-bottom: 4px;

    color: var(--es-gold-light);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.es-pillar strong {
    display: block;

    color: #fff;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 19px;
    font-weight: 500;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1250px) {

    .es-header-inner,
    .es-hero-container {
        width: min(100% - 50px, 1200px);
    }

    .es-nav {
        gap: 15px;
    }

    .es-nav a {
        font-size: 10px;
    }

    .es-logo {
        width: 105px;
    }

    .es-hero-content {
        width: 570px;
    }

}


@media (max-width: 1050px) {

    .es-nav {
        display: none;
    }

    .es-menu-btn {
        margin-left: auto;
        display: flex;
    }

    .es-donate {
        display: none;
    }

    .es-hero {
        min-height: 700px;
    }

    .es-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .es-pillar:nth-child(2)::after {
        display: none;
    }

}


@media (max-width: 700px) {

    .es-header {
        padding: 14px 0;
    }

    .es-header-inner {
        width: calc(100% - 35px);
    }

    .es-logo {
        width: 80px;
    }

    .es-hero {
        height: 760px;
        min-height: 760px;
    }

    .es-hero-image {
        background-position: 63% center;
    }

    .es-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2,9,18,.92) 0%,
                rgba(2,9,18,.55) 35%,
                rgba(2,9,18,.75) 100%
            );
    }

    .es-hero-container {
        width: calc(100% - 35px);

        align-items: flex-end;

        padding-bottom: 110px;
    }

    .es-hero-content {
        width: 100%;
        padding-top: 100px;
		margin-bottom: 85px;
    }

    .es-eyebrow {
        font-size: 8px;
        letter-spacing: 2.5px;
    }

    .es-hero h1 {
        font-size: clamp(48px, 14vw, 68px);

        letter-spacing: -1px;
    }

    .es-hero-content > p {
        font-size: 13px;
        line-height: 1.65;
    }

    .es-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .es-btn {
        width: 60%;
    }

    .es-location {
        margin-top: 22px;
    }

    .es-social {
        right: 20px;
        bottom: 35px;
    }

    .es-scroll {
        display: none;
    }

    .es-pillars {
        width: calc(100% - 30px);

        margin-top: -25px;

        grid-template-columns: 1fr 1fr;
    }

    .es-pillar {
        min-height: 88px;

        padding: 14px;

        gap: 10px;
    }

    .es-pillar:nth-child(2)::after {
        display: none;
    }

    .es-pillar:nth-child(1),
    .es-pillar:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .es-pillar-icon {
        width: 36px;
        height: 36px;

        font-size: 13px;
    }

    .es-pillar small {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .es-pillar strong {
        font-size: 16px;
    }

}


@media (max-width: 430px) {

    .es-hero {
        height: 720px;
        min-height: 720px;
    }

    .es-hero h1 {
        font-size: 46px;
    }

    .es-pillars {
        grid-template-columns: 1fr;
    }

    .es-pillar {
        border-bottom: 1px solid rgba(255,255,255,.12) !important;
    }

    .es-pillar:last-child {
        border-bottom: 0 !important;
    }

    .es-pillar::after {
        display: none !important;
    }
    .es-social a{
        display:none!important;
    }
}


/*------------------------------------------------------calling section-------------------------------*/


/* =========================================
   OUR CALLING
========================================= */

.es-calling {
    position: relative;

    padding:104px 0 70px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(217,166,58,.07),
            transparent 28%
        ),
        #f5f2eb;

    overflow: hidden;
    text-align: start;
}


/* BACKGROUND NUMBER */

.es-calling-number {
    position: absolute;

    top: 55px;
    right: 4%;

    color: rgba(7,23,46,.045);

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(180px, 20vw, 320px);

    font-weight: 600;

    line-height: .7;

    pointer-events: none;
}


/* MAIN WRAPPER */

.es-calling-wrap {

    width: min(1380px, calc(100% - 80px));

    margin: auto;

    display: grid;

    grid-template-columns:
        0px
        minmax(430px, 1fr)
        minmax(430px, .9fr);

  
    align-items: center;

    position: relative;

    z-index: 2;
}


/* =========================================
   VERTICAL LABEL
========================================= */

.es-calling-label {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 20px;
}


.es-calling-label span {

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    color: #07172e;

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;
}


.es-calling-label-line {

    width: 1px;

    height: 80px;

    background: #d9a63a;
}


.es-calling-label small {

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    color: rgba(7,23,46,.45);

    font-family: "Manrope", sans-serif;

    font-size: 8px;

    letter-spacing: 2px;
}


/* =========================================
   CONTENT
========================================= */

.es-calling-content {

    padding: 30px 0;
}


.es-small-title {

    display: block;

    margin-bottom: 22px;

    color: #b78322;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;
}


.es-calling-heading h2 {

    margin: 0;

    max-width: 680px;

    color: #07172e;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(55px, 5.5vw, 82px);

    font-weight: 400;

    line-height: .9;

    letter-spacing: -2px;
}


.es-calling-heading h2 em {

    color: #c3912d;

    font-style: italic;

    font-weight: 500;
}


.es-calling-heading h2 strong {

    display: block;

    font-weight: 600;

    color: #07172e;
}


/* GOLD LINE */

.es-calling-heading::after {

    content: "";

    display: block;

    width: 60px;

    height: 2px;

    margin-top: 30px;

    background: #d9a63a;
}


/* TEXT */

.es-calling-text {

    max-width: 580px;

    margin-top: 32px;
}


.es-calling-lead {

    color: #172d48;

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    line-height: 1.35;

    margin: 0 0 20px;

}


.es-calling-text p:not(.es-calling-lead) {

    color: #5b6370;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    line-height: 1.9;

    margin: 0;
}


/* TEXT LINK */

.es-text-link {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    margin-top: 30px;

    padding-bottom: 8px;

    border-bottom: 1px solid #c3912d;

    color: #07172e;

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: .35s ease;
}


.es-text-link i {

    color: #c3912d;

    transition: .35s ease;
}


.es-text-link:hover {

    color: #b78322;

}


.es-text-link:hover i {

    transform: translateX(7px);

}


/* =========================================
   VISUAL COMPOSITION
========================================= */

.es-calling-visual {

    position: relative;

    min-height: 620px;

    margin-right: 30px;
}


/* MAIN IMAGE */

.es-calling-image-main {

  position: absolute;
  top: 41px;
  right: -24px;
  width: 81%;
  height: 552px;
  overflow: hidden;

  

    box-shadow:
        0 30px 70px rgba(7,23,46,.20);
}


.es-calling-image-main img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 1.2s cubic-bezier(.2,.7,.2,1);
}

@media (max-width: 768px) {

    .es-calling-image-main img {
        width: 94%;
    height: 97%;
        object-fit: cover;
        display: block;
    }

}
.es-calling-visual:hover
.es-calling-image-main img {

    transform: scale(1.06);
}


/* =========================================
   FLOATING IMAGE
========================================= */

.es-calling-floating {

    position: absolute;

    left: -2%;

    bottom: 30px;

    width: 42%;

    height: 235px;

    z-index: 5;

    overflow: hidden;

    border: 8px solid #f5f2eb;

    box-shadow:
        0 25px 55px rgba(7,23,46,.25);

    transform:
        rotate(-3deg);
}


.es-calling-floating img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .8s ease;
}


.es-calling-floating:hover img {

    transform: scale(1.08);
}


/* =========================================
   GOLD FRAME
========================================= */

.es-calling-gold-frame {

    position: absolute;

    top: 25px;

    right: -15px;

    width: 82%;

    height: 560px;

    border: 1px solid rgba(195,145,45,.55);

    transform: translate(12px, 12px);

    pointer-events: none;

    z-index: -1;
}


/* =========================================
   FLOATING STAT
========================================= */

.es-calling-caption {

    position: absolute;

    right: -35px;

    bottom: 105px;

    z-index: 7;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px 24px;

    background: #07172e;

    color: white;

    box-shadow:
        0 20px 50px rgba(7,23,46,.25);
}


.es-calling-caption > span {

    color: #f3c75f;

    font-family: "Cormorant Garamond", serif;

    font-size: 54px;

    line-height: .8;

    font-weight: 500;
}


.es-calling-caption small {

    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,.5);

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.es-calling-caption strong {

    display: block;

    color: white;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    letter-spacing: 1px;
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.es-calling-statement {

    width: min(1380px, calc(100% - 80px));

    margin: 90px auto 0;

    padding-top: 25px;

    border-top: 1px solid rgba(7,23,46,.15);

    display: flex;

    align-items: center;

    gap: 35px;
}


.es-calling-statement span {

    color: #b78322;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;
}


.es-calling-statement p {

    margin: 0;

    color: #07172e;

    font-family: "Cormorant Garamond", serif;

    font-size: 24px;

    font-style: italic;
}


.es-calling-statement i {

    margin-left: auto;

    color: #b78322;

    font-size: 14px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .es-calling-wrap {

        grid-template-columns:
            50px
            1fr;

        gap: 35px;
    }


    .es-calling-visual {

        grid-column: 2;

        min-height: 560px;

        margin-top: 20px;
    }


    .es-calling-label {

        grid-row: 1 / span 2;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .es-calling {

        padding: 90px 0 70px;
    }


    .es-calling-number {

        top: 30px;

        right: -10px;

        font-size: 150px;
    }


    .es-calling-wrap {

        width: calc(100% - 35px);

        display: block;
    }


    .es-calling-label {

        height: auto;

        display: flex;

        flex-direction: row;

        justify-content: flex-start;

        gap: 15px;

        margin-bottom: 30px;
    }


    .es-calling-label span {

        writing-mode: initial;

        transform: none;
    }


    .es-calling-label-line {

        width: 35px;

        height: 1px;
    }


    .es-calling-label small {

        writing-mode: initial;

        transform: none;
    }


    .es-calling-content {

        padding: 0;
    }


    .es-small-title {

        font-size: 8px;

        letter-spacing: 2px;
    }


    .es-calling-heading h2 {

        font-size: 52px;

        line-height: .92;

        letter-spacing: -1px;
    }


    .es-calling-lead {

        font-size: 21px;
    }


    .es-calling-text p:not(.es-calling-lead) {

        font-size: 13px;

        line-height: 1.8;
    }


    .es-calling-visual {

        min-height: 500px;

        margin: 55px 0 0;
    }


    .es-calling-image-main {

        width: 90%;

        height: 430px;
    }


    .es-calling-gold-frame {

        width: 88%;

        height: 430px;

        right: -4px;
    }


    .es-calling-floating {

        left: 0;

        bottom: 15px;

        width: 45%;

        height: 170px;

        border-width: 6px;
    }


    .es-calling-caption {

        right: -5px;

        bottom: 80px;

        padding: 14px 16px;
    }


    .es-calling-caption > span {

        font-size: 40px;
    }


    .es-calling-caption strong {

        font-size: 8px;
    }


    .es-calling-statement {

        width: calc(100% - 35px);

        margin-top: 60px;

        display: block;
    }


    .es-calling-statement p {

        margin-top: 12px;

        font-size: 21px;
    }


    .es-calling-statement i {

        display: none;
    }

}




/*--------------------------------------------------Worship & Ministries---------------------*/
/* =========================================
   WORSHIP & MINISTRIES
========================================= */

.es-worship {

    position: relative;

    padding: 80px 0 64px;

    background: #07172e;

    color: #fff;

    overflow: hidden;
    text-align: start;

}


/* =========================================
   WATERMARK
========================================= */

.es-worship-watermark {

    position: absolute;

    top: 70px;

    right: -45px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(180px, 24vw, 370px);

    font-weight: 600;

    line-height: .7;

    color: rgba(255,255,255,.025);

    pointer-events: none;

}


/* =========================================
   WRAPPER
========================================= */

.es-worship-wrap {

    width:
        min(1380px, calc(100% - 80px));

    margin: auto;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 100px;

    align-items: center;

    position: relative;

    z-index: 3;

}


/* =========================================
   CONTENT
========================================= */

.es-worship-content {

    padding: 20px 0;

}


.es-worship-kicker {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

}


/*.es-worship-kicker span {

    width: 30px;

    height: 1px;

    background: #d9a63a;

}*/


.es-worship-content h2 {

    margin: 25px 0 25px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(65px, 6vw, 95px);

    font-weight: 400;

    line-height: .82;

    letter-spacing: -3px;

}


.es-worship-content h2 em {

    /*display: block;*/

    color: #e7b84f;

    font-style: italic;

}


.es-worship-intro {

    max-width: 580px;

    margin: 0 0 15px;

    color: rgba(255,255,255,.9);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 25px;

    line-height: 1.35;

}


.es-worship-text {

    max-width: 560px;

    margin: 0 0 38px;

    color: rgba(255,255,255,.55);

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================
   MINISTRY LIST
========================================= */

.es-ministry-list {

    max-width: 620px;

    border-top:
        1px solid rgba(255,255,255,.16);

}


.es-ministry-item {

    display: grid;

    grid-template-columns:
        45px 1fr 30px;

    align-items: center;

    gap: 15px;

    padding: 16px 0;

    border-bottom:
        1px solid rgba(255,255,255,.16);

    color: #fff;

    text-decoration: none;

    transition:
        padding .35s ease,
        background .35s ease;

}


.es-ministry-item:hover {

    padding-left: 15px;

    padding-right: 15px;

    background:
        rgba(255,255,255,.045);

}


.es-ministry-number {

    color: #d9a63a;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;

}


.es-ministry-info strong {

    display: block;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 23px;

    font-weight: 500;

}


.es-ministry-info small {

    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,.4);

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    letter-spacing: .5px;

}


.es-ministry-item > i {

    color: #e7b84f;

    font-size: 10px;

    transition: .35s ease;

}


.es-ministry-item:hover > i {

    transform: translateX(6px);

}


/* =========================================
   BUTTON
========================================= */

.es-worship-button {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-top: 32px;

    padding: 16px 23px;

    border:
        1px solid rgba(231,184,79,.7);

    color: #e7b84f;

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: .4s ease;

}


.es-worship-button i {

    transition: .4s ease;

}


.es-worship-button:hover {

    background: #e7b84f;

    color: #07172e;

}


.es-worship-button:hover i {

    transform: translateX(6px);

}


/* =========================================
   VISUAL
========================================= */

.es-worship-visual {

    position: relative;

    min-height: 680px;

}


.es-worship-image {

    position: absolute;

    inset: 0 0 30px 35px;

    overflow: hidden;

 
    box-shadow:
        0 35px 80px rgba(0,0,0,.35);

}


.es-worship-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7,23,46,.05),
            rgba(7,23,46,.5)
        );

}


.es-worship-image img {

width: 93%;
  height: 93.5%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);

  margin-left: 20px;
  margin-top: 22px;

}

@media (max-width: 768px) {

    .es-worship-image img {
      width: 88%;
    height: 93%;
    object-fit: cover;
    
    display: block;
    margin-left: 14px;
    margin-top: 14px;
    }

}
.es-worship-visual:hover
.es-worship-image img {

    transform: scale(1.07);

}


/* =========================================
   GOLD FRAME
========================================= */

.es-worship-frame {

    position: absolute;

    inset: 18px 18px 48px 53px;

    border:
        1px solid rgba(231,184,79,.6);

    pointer-events: none;

}


/* =========================================
   IMAGE LABEL
========================================= */

.es-worship-label {

    position: absolute;

    left: 0;

    bottom: 70px;

    padding: 18px 25px;

    background: #e7b84f;

    color: #07172e;

    box-shadow:
        0 20px 50px rgba(0,0,0,.3);

}


.es-worship-label span {

    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-worship-label strong {

    display: block;

    margin-top: 3px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;

    font-weight: 600;

}


/* =========================================
   FLOATING CIRCLE
========================================= */

.es-worship-circle {

    position: absolute;

    top: 40px;

    right: -35px;

    width: 125px;

    height: 125px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border-radius: 50%;

    background: #f5f0e6;

    color: #07172e;

    box-shadow:
        0 20px 45px rgba(0,0,0,.25);

}


.es-worship-circle span {

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.es-worship-circle i {

    color: #b78322;

    font-size: 8px;

}


/* =========================================
   FLOATING PORTRAIT
========================================= */

.es-worship-floating {

    position: absolute;

    left: 4%;

    bottom: -90px;

    width: 190px;

    height: 250px;

    z-index: 8;

    overflow: hidden;

    border:
        7px solid #07172e;

    box-shadow:
        0 25px 60px rgba(0,0,0,.4);

    transform: rotate(-4deg);

}


.es-worship-floating img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .8s ease;

}


.es-worship-floating:hover img {

    transform: scale(1.08);

}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.es-worship-bottom {

    width:
        min(1380px, calc(100% - 80px));

    margin: 100px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    position: relative;

    z-index: 3;

    color: rgba(255,255,255,.38);

    font-family: "Manrope", sans-serif;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-worship-bottom i {

    color: #d9a63a;

    font-size: 4px;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .es-worship-wrap {

        grid-template-columns: 1fr;

        gap: 70px;

    }

    .es-worship-content {

        max-width: 750px;

        margin: auto;

    }

    .es-worship-visual {

        width:
            min(750px, 100%);

        margin: auto;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .es-worship {

        padding:
            100px 0 100px;

    }

    .es-worship-wrap {

        width:
            calc(100% - 35px);

    }

    .es-worship-content h2 {

        font-size: 55px;

        letter-spacing: -1px;

    }

    .es-worship-intro {

        font-size: 21px;

    }

    .es-worship-text {

        font-size: 11px;

    }

    .es-worship-item {

        padding: 14px 0;

    }

    .es-worship-visual {

        min-height: 500px;

    }

    .es-worship-image {

        inset:
            0 0 20px 20px;

    }

    .es-worship-frame {

        inset:
            12px 12px 32px 32px;

    }

    .es-worship-label {

        bottom: 45px;

        padding:
            14px 18px;

    }

    .es-worship-circle {

        width: 90px;

        height: 90px;

        right: -10px;

        top: 20px;

    }

    .es-worship-floating {

        width: 135px;

        height: 180px;

        left: 2%;

        bottom: -60px;

        border-width: 5px;

    }

    .es-worship-bottom {

        width:
            calc(100% - 35px);

        margin-top: 75px;

        gap: 9px;

        letter-spacing: 1.5px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {

    .es-worship-content h2 {

        font-size: 48px;

    }

    .es-worship-visual {

        min-height: 430px;

    }

    .es-worship-circle {

        width: 75px;

        height: 75px;

    }

    .es-worship-circle span {

        font-size: 6px;

    }

    .es-worship-floating {

        width: 115px;

        height: 155px;

    }

}

/*-------------------------------------------04  LOVE IN ACTION----------------------------*/

/* =========================================
   LOVE IN ACTION
========================================= */

.es-love {

    position: relative;

    padding: 114px 0 64px;

    background: #f5f1e8;

    color: #07172e;

    overflow: hidden;
    text-align: start;

}


/* =========================================
   WATERMARK
========================================= */

.es-love-watermark {

    position: absolute;

    left: -25px;

    top: 90px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(180px, 25vw, 390px);

    font-weight: 600;

    line-height: .7;

    color: rgba(7,23,46,.035);

    pointer-events: none;

}


/* =========================================
   WRAPPER
========================================= */

.es-love-wrap {

    width:
        min(1380px, calc(100% - 80px));

    margin: auto;

    position: relative;

    z-index: 3;

}


/* =========================================
   HEADER
========================================= */

/*.es-love-header {

    display: grid;

    grid-template-columns:
        220px 1fr;

    gap: 80px;

    align-items: start;

}*/


.es-love-kicker {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 12px;

    color: #a9781e;

    font-family: "Manrope", sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-love-kicker span {

    width: 30px;

    height: 1px;

    background: #b78322;

}


.es-love-heading > span {

    display: block;

    margin-bottom: 15px;

    color: #8d8e8b;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-love-heading h2 {

    max-width: 850px;

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(60px, 6vw, 95px);

    font-weight: 400;

    line-height: .85;

    letter-spacing: -3px;

}


.es-love-heading h2 em {

    display: block;

    color: #a9781e;

    font-style: italic;

}


/* =========================================
   MAIN LAYOUT
========================================= */

.es-love-layout {

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 90px;

    margin-top: 90px;

    align-items: center;

}


/* =========================================
   IMAGE
========================================= */

.es-love-image {

    position: relative;

    height: 650px;

    overflow: hidden;

}


.es-love-image::before {

    content: "";

    position: absolute;

    left: -1px;

    top: 0;

    bottom: 0;

    width: 15%;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            #f5f1e8,
            transparent
        );

    opacity: .3;

}


.es-love-image img {

    width: 100%;

    height: 100%;


    transition:
        transform 1.2s
        cubic-bezier(.2,.7,.2,1);

}


.es-love-image:hover img {

    transform: scale(1.06);

}


/* =========================================
   IMAGE LABEL
========================================= */

.es-love-image-label {

    position: absolute;

    left: 25px;

    bottom: 25px;

    padding: 18px 22px;

    background: #07172e;

    color: #fff;

}

@media (max-width: 768px) {

    .es-love-image-label {
        left: 12px;
        bottom: 12px;
        padding: 12px 14px;
        max-width: calc(100% - 24px);
    }

}
.es-love-image-label span {

    display: block;

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-love-image-label strong {

    display: block;

    margin-top: 4px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;

    font-weight: 500;

}


/* =========================================
   CONTENT
========================================= */

.es-love-content {

    padding-bottom: 20px;

}


.es-love-lead {

    max-width: 570px;

    margin: 0 0 18px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 28px;

    line-height: 1.25;

}


.es-love-description {

    max-width: 550px;

    margin: 0 0 38px;

    color: #6e716f;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    line-height: 1.9;

}


/* =========================================
   SERVICE LIST
========================================= */

.es-love-services {

    border-top:
        1px solid rgba(7,23,46,.15);

}


.es-love-service {

    display: grid;

    grid-template-columns:
        45px 1fr 25px;

    align-items: center;

    gap: 15px;

    padding: 18px 0;

    border-bottom:
        1px solid rgba(7,23,46,.15);

    color: #07172e;

    text-decoration: none;

    transition:
        padding .35s ease,
        background .35s ease;

}


.es-love-service:hover {

    padding-left: 15px;

    padding-right: 15px;

    background:
        rgba(7,23,46,.045);

}


.es-love-service-number {

    color: #b78322;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 21px;

}


.es-love-service strong {

    display: block;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 23px;

    font-weight: 600;

}


.es-love-service small {

    display: block;

    margin-top: 3px;

    color: #888b88;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

}


.es-love-service > i {

    color: #a9781e;

    font-size: 10px;

    transition: .35s ease;

}


.es-love-service:hover > i {

    transform:
        translate(4px,-4px);

}


/* =========================================
   BUTTON
========================================= */

.es-love-button {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-top: 32px;

    padding: 16px 23px;

    background: #07172e;

    color: #fff;

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    transition: .4s ease;

}


.es-love-button i {

    color: #e7b84f;

    transition: .4s ease;

}


.es-love-button:hover {

    background: #a9781e;

}


.es-love-button:hover i {

    color: #fff;

    transform:
        translateX(6px);

}


/* =========================================
   FLOATING PERSON
========================================= */

.es-love-floating {

    position: absolute;

    right: 4%;

    bottom: -95px;

    width: 215px;

    height: 285px;

    z-index: 10;

    overflow: hidden;

    border:
        8px solid #f5f1e8;

    background: #07172e;

    box-shadow:
        0 30px 65px rgba(7,23,46,.25);

    transform: rotate(4deg);

}


.es-love-floating img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .8s ease;

}


.es-love-floating:hover img {

    transform: scale(1.08);

}


/* =========================================
   FLOATING TEXT
========================================= */

.es-love-floating-text {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding:
        40px 16px 16px;

    background:
        linear-gradient(
            transparent,
            rgba(7,23,46,.96)
        );

}


.es-love-floating-text span {

    display: block;

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-love-floating-text strong {

    display: block;

    margin-top: 4px;

    color: #fff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 19px;

    line-height: .95;

}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.es-love-bottom {

    width:
        min(1380px, calc(100% - 80px));

    margin: 100px auto 0;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    color: #8c8d8a;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.es-love-bottom i {

    color: #b78322;

    font-size: 7px;

}


.es-love-bottom strong {

    color: #a9781e;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .es-love-header {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .es-love-layout {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .es-love-image {

        max-width: 750px;

    }


    .es-love-content {

        max-width: 750px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .es-love {

        padding:
            60px 0 60px;

    }


    .es-love-wrap {

        width:
            calc(100% - 35px);

    }


    .es-love-heading h2 {

        font-size: 53px;

        letter-spacing: -1px;

    }


    .es-love-layout {

        margin-top: 60px;

    }


    .es-love-image {

        height: 430px;

    }


    .es-love-lead {

        font-size: 23px;

    }


    .es-love-description {

        font-size: 13px;

    }


    .es-love-service {

        grid-template-columns:
            35px 1fr 20px;

        padding: 15px 0;

    }


    .es-love-service strong {

        font-size: 19px;

    }


    .es-love-service small {

        font-size: 13px;

    }


    .es-love-floating {

        width: 155px;

        height: 205px;

        right: 3%;

        bottom: -65px;

        border-width: 6px;

    }


    .es-love-bottom {

        width:
            calc(100% - 35px);

        margin-top: 75px;

        gap: 9px;

        letter-spacing: 1.5px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {

    .es-love-heading h2 {

        font-size: 47px;

    }


    .es-love-image {

        height: 380px;

    }


    .es-love-lead {

        font-size: 21px;

    }


    .es-love-service strong {

        font-size: 20px;

    }


    .es-love-floating {

        width: 130px;

        height: 175px;

    }

}

/*----------------------------------------------Impact & Stories-----------------------------*/

/* =========================================
   IMPACT & STORIES
========================================= */

.es-impact-story {

    position: relative;

    padding: 95px 0 64px;

    background: #07172e;

    color: #fff;

    overflow: hidden;
    text-align: start;
}


/* =========================================
   BACKGROUND
========================================= */

.es-impact-story-bg {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(217,166,58,.12),
            transparent 30%
        );

    pointer-events: none;

}


/* =========================================
   WATERMARK
========================================= */

.es-impact-story-watermark {

    position: absolute;

    left: -30px;

    bottom: 50px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(180px, 26vw, 400px);

    font-weight: 600;

    line-height: .7;

    color: rgba(255,255,255,.025);

    pointer-events: none;

}


/* =========================================
   WRAPPER
========================================= */

.es-impact-story-wrap {

    width:
        min(1380px, calc(100% - 80px));

    margin: auto;

    position: relative;

    z-index: 3;

}


/* =========================================
   HEADER
========================================= */

.es-impact-story-header {

    display: grid;

    grid-template-columns:
        0px 1fr 300px;

  
    align-items: end;

}


.es-impact-story-kicker {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-impact-story-kicker span {

    width: 30px;

    height: 1px;

    background: #d9a63a;

}


.es-impact-story-eyebrow {

    display: block;

    margin-bottom: 15px;

    color: rgba(255,255,255,.38);

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-impact-story-header h2 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(58px, 5.5vw, 88px);

    font-weight: 400;

    line-height: .85;

    letter-spacing: -2px;

}


.es-impact-story-header h2 em {

    display: block;

    color: #e7b84f;

    font-style: italic;

}


.es-impact-story-header > p {

    margin: 0;

    color: rgba(255,255,255,.5);

    font-family: "Manrope", sans-serif;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================
   STATISTICS
========================================= */

.es-impact-story-stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 80px;

    border-top:
        1px solid rgba(255,255,255,.16);

    border-bottom:
        1px solid rgba(255,255,255,.16);

}


.es-impact-story-stat {

    min-height: 190px;

    padding: 28px 25px 25px 0;

    border-right:
        1px solid rgba(255,255,255,.14);

}


.es-impact-story-stat:not(:first-child) {

    padding-left: 25px;

}


.es-impact-story-stat:last-child {

    border-right: none;

}


.es-impact-story-stat > span {

    display: block;

    margin-bottom: 35px;

    color: #d9a63a;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 22px;

}


.es-impact-story-stat strong {

    display: block;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 62px;

    font-weight: 500;

    line-height: .75;

}


.es-impact-story-stat strong sup {

    color: #e7b84f;

    font-size: 25px;

}


.es-impact-story-stat p {

    max-width: 150px;

    margin: 20px 0 0;

    color: rgba(255,255,255,.42);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    line-height: 1.6;

}


/* =========================================
   FEATURED STORY
========================================= */

.es-featured-story {

    position: relative;

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    min-height: 560px;

    margin-top: 90px;

    background: #f5f1e8;

    color: #07172e;

}


/* =========================================
   FEATURED IMAGE
========================================= */

.es-featured-story-image {

    position: relative;

    min-height: 560px;

    overflow: hidden;

}


.es-featured-story-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 1.2s
        cubic-bezier(.2,.7,.2,1);

}


.es-featured-story:hover
.es-featured-story-image img {

    transform: scale(1.06);

}


.es-featured-story-image-overlay {

    position: absolute;

    left: 30px;

    bottom: 30px;

    display: flex;

    flex-direction: column;

    gap: 4px;

    padding: 16px 20px;

    background: #07172e;

    color: #fff;

}


.es-featured-story-image-overlay span {

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-featured-story-image-overlay strong {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;

    line-height: .9;

    font-weight: 500;

}


/* =========================================
   FEATURED CONTENT
========================================= */

.es-featured-story-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 70px;

}


.es-story-tag {

    color: #a9781e;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-featured-story-content h3 {

    max-width: 430px;

    margin: 25px 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(45px, 4vw, 64px);

    font-weight: 500;

    line-height: .87;

}


.es-featured-story-content p {

    max-width: 430px;

    margin: 0 0 30px;

    color: #70716f;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    line-height: 1.9;

}


.es-featured-story-link {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    width: fit-content;

    color: #07172e;

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.es-featured-story-link i {

    color: #a9781e;

    transition: .35s ease;

}


.es-featured-story-link:hover i {

    transform: translateX(7px);

}


/* =========================================
   STORY NUMBER
========================================= */

.es-featured-story-number {

    position: absolute;

    right: 35px;

    top: 25px;

    color: rgba(7,23,46,.15);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 80px;

    line-height: 1;

}


/* =========================================
   MINI STORIES
========================================= */

.es-mini-stories {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px;

    margin-top: 45px;

}


.es-mini-story {

    display: grid;

    grid-template-columns: 130px 1fr;

    gap: 18px;

    align-items: center;

    padding-bottom: 25px;

    border-bottom:
        1px solid rgba(255,255,255,.14);

    color: #fff;

    text-decoration: none;

}


.es-mini-story-image {

    height: 130px;

    overflow: hidden;

}


.es-mini-story-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .7s ease;

}


.es-mini-story:hover
.es-mini-story-image img {

    transform: scale(1.08);

}


.es-mini-story-content span {

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-mini-story-content h4 {

    margin: 8px 0 14px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 22px;

    font-weight: 500;

    line-height: .95;

}


.es-mini-story-content i {

    color: #e7b84f;

    font-size: 9px;

    transition: .35s ease;

}


.es-mini-story:hover
.es-mini-story-content i {

    transform: translateX(6px);

}


/* =========================================
   FLOATING PERSON
========================================= */

.es-impact-story-person {

    position: absolute;

    right: 3%;

    bottom: -105px;

    width: 220px;

    height: 290px;

    z-index: 10;

    overflow: hidden;

    border:
        8px solid #07172e;

    box-shadow:
        0 30px 70px rgba(0,0,0,.4);

    transform: rotate(4deg);

}


.es-impact-story-person img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .8s ease;

}


.es-impact-story-person:hover img {

    transform: scale(1.08);

}


.es-impact-story-person-label {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding:
        40px 16px 15px;

    background:
        linear-gradient(
            transparent,
            rgba(7,23,46,.95)
        );

}


.es-impact-story-person-label span {

    display: block;

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-impact-story-person-label strong {

    display: block;

    color: #fff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 22px;

    font-style: italic;

}


/* =========================================
   BOTTOM
========================================= */

.es-impact-story-bottom {

    width:
        min(1380px, calc(100% - 80px));

    margin: 100px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    color: rgba(255,255,255,.38);

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-impact-story-bottom i {

    color: #d9a63a;

    font-size: 4px;

}


.es-impact-story-bottom strong {

    color: #e7b84f;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .es-impact-story-header {

        grid-template-columns:
            1fr 280px;

    }

    .es-impact-story-kicker {

        grid-column: 1 / -1;

    }

    .es-mini-stories {

        grid-template-columns: 1fr;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .es-impact-story {

        padding:
            100px 0 110px;

    }


    .es-impact-story-wrap {

        width:
            calc(100% - 35px);

    }


    .es-impact-story-header {

        display: block;

    }


    .es-impact-story-header h2 {

        font-size: 53px;

        letter-spacing: -1px;

    }


    .es-impact-story-header > p {

        margin-top: 25px;

        font-size: 11px;

    }


    .es-impact-story-stats {

        grid-template-columns:
            repeat(2, 1fr);

        margin-top: 60px;

    }


    .es-impact-story-stat {

        min-height: 170px;

        padding:
            22px 12px 20px 0;

    }


    .es-impact-story-stat:not(:first-child) {

        padding-left: 15px;

    }


    .es-impact-story-stat:nth-child(2) {

        border-right: none;

    }


    .es-impact-story-stat:nth-child(3),
    .es-impact-story-stat:nth-child(4) {

        border-top:
            1px solid rgba(255,255,255,.14);

    }


    .es-impact-story-stat strong {

        font-size: 48px;

    }


    .es-featured-story {

        grid-template-columns: 1fr;

        margin-top: 60px;

    }


    .es-featured-story-image {

        min-height: 390px;

    }


    .es-featured-story-content {

        padding: 45px 25px 50px;

    }


    .es-featured-story-content h3 {

        font-size: 44px;

    }


    .es-mini-story {

        grid-template-columns:
            110px 1fr;

    }


    .es-mini-story-image {

        height: 110px;

    }


    .es-impact-story-person {

        width: 155px;

        height: 205px;

        right: 3%;

        bottom: -70px;

        border-width: 6px;

    }


    .es-impact-story-person-label strong {

        font-size: 18px;

    }


    .es-impact-story-bottom {

        width:
            calc(100% - 35px);

        margin-top: 75px;

        gap: 9px;

        letter-spacing: 1.5px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {

    .es-impact-story-header h2 {

        font-size: 47px;

    }


    .es-impact-story-stat strong {

        font-size: 42px;

    }


    .es-featured-story-image {

        min-height: 340px;

    }


    .es-featured-story-content h3 {

        font-size: 38px;

    }

}

/*------------------------------------------------EVENTS & MEDIA---------------------------------------*/

/* =========================================
   EVENTS & MEDIA
========================================= */

.es-events-media {

    position: relative;

    padding: 100px 0 64px;

    background: #f5f1e8;

    color: #07172e;

    overflow: hidden;
    text-align: start;
}


/* =========================================
   WATERMARK
========================================= */

.es-events-watermark {

    position: absolute;

    right: -30px;

    top: 100px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(180px, 25vw, 390px);

    font-weight: 600;

    line-height: .7;

    color: rgba(7,23,46,.035);

    pointer-events: none;

}


/* =========================================
   WRAPPER
========================================= */

.es-events-wrap {

    width:
        min(1380px, calc(100% - 80px));

    margin: auto;

    position: relative;

    z-index: 3;

}


/* =========================================
   HEADER
========================================= */

.es-events-header {

    display: grid;

    grid-template-columns:
        0px 1fr 180px;

   

    align-items: end;

}


.es-events-kicker {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #a9781e;

    font-family: "Manrope", sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-events-kicker span {

    width: 30px;

    height: 1px;

    background: #b78322;

}


.es-events-title > span {

    display: block;

    margin-bottom: 14px;

    color: #8b8d8a;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-events-title h2 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(55px, 5.5vw, 86px);

    font-weight: 400;

    line-height: .84;

    letter-spacing: -2px;

}


.es-events-title h2 em {

    color: #a9781e;

    font-style: italic;

}


.es-events-all {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 15px;

    border:
        1px solid rgba(7,23,46,.25);

    color: #07172e;

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: .4s ease;

}


.es-events-all i {

    color: #a9781e;

    transition: .4s ease;

}


.es-events-all:hover {

    background: #07172e;

    color: #fff;

}


.es-events-all:hover i {

    transform: translateX(5px);

}


/* =========================================
   FEATURED EVENT
========================================= */

.es-featured-event {

    position: relative;

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    min-height: 520px;

    margin-top: 85px;

    background: #07172e;

    color: #fff;

    overflow: hidden;

}


.es-featured-event-image {

    position: relative;

    overflow: hidden;

}


.es-featured-event-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 55%,
            rgba(7,23,46,.55)
        );

}


.es-featured-event-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 1.2s
        cubic-bezier(.2,.7,.2,1);

}


.es-featured-event:hover
.es-featured-event-image img {

    transform: scale(1.06);

}


/* DATE */

.es-event-date {

    position: absolute;

    left: 30px;

    top: 30px;

    z-index: 3;

    width: 78px;

    height: 78px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #e7b84f;

    color: #07172e;

}


.es-event-date strong {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 28px;

    line-height: .7;

    font-weight: 600;

}


.es-event-date span {

    margin-top: 8px;

    font-family: "Manrope", sans-serif;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* CONTENT */

.es-featured-event-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 60px 70px;

}


.es-event-type {

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-featured-event-content h3 {

    max-width: 480px;

    margin: 22px 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(45px, 4vw, 64px);

    font-weight: 400;

    line-height: .87;

}


.es-featured-event-content p {

    max-width: 440px;

    margin: 0 0 30px;

    color: rgba(255,255,255,.5);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    line-height: 1.8;

}


/* EVENT META */

.es-event-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-bottom: 32px;

}


.es-event-meta div {

    display: flex;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.6);

    font-family: "Manrope", sans-serif;

    font-size: 12px;

}


.es-event-meta i {

    color: #e7b84f;

}


/* BUTTON */

.es-event-button {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    width: fit-content;

    padding: 15px 20px;

    border:
        1px solid rgba(231,184,79,.6);

    color: #e7b84f;

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: .4s ease;

}


.es-event-button i {

    transition: .4s ease;

}


.es-event-button:hover {

    background: #e7b84f;

    color: #07172e;

}


.es-event-button:hover i {

    transform: translateX(6px);

}


/* NUMBER */

.es-featured-event-number {

    position: absolute;

    right: 25px;

    top: 18px;

    color: rgba(255,255,255,.07);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 90px;

}


/* =========================================
   UPCOMING TITLE
========================================= */

.es-events-subtitle {

    margin-top: 95px;

}


.es-events-subtitle > span {

    color: #a9781e;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-events-subtitle h3 {

    margin: 12px 0 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 51px;

    font-weight: 400;

    line-height: .9;

}


.es-events-subtitle h3 em {

    color: #a9781e;

    font-style: italic;

}


/* =========================================
   EVENT GRID
========================================= */

.es-events-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

    margin-top: 40px;

}


.es-event-card {

    display: block;

    color: #07172e;

    text-decoration: none;

}


.es-event-card-image {

    position: relative;

    height: 280px;

    overflow: hidden;

}


.es-event-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .8s ease;

}


.es-event-card:hover
.es-event-card-image img {

    transform: scale(1.07);

}


.es-event-card-image > span {

    position: absolute;

    right: 15px;

    top: 15px;

    padding: 8px 10px;

    background: #07172e;

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


.es-event-card-content {

    position: relative;

    padding: 20px 0 25px;

    border-bottom:
        1px solid rgba(7,23,46,.18);

}


.es-event-card-content small {

    color: #a9781e;

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-event-card-content h4 {

    margin: 8px 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 27px;

    font-weight: 600;

}


.es-event-card-content p {

    max-width: 300px;

    margin: 0;

    color: #777a77;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    line-height: 1.7;

}


.es-event-card-content i {

    position: absolute;

    right: 5px;

    bottom: 27px;

    color: #a9781e;

    font-size: 13px;

    transition: .35s ease;

}


.es-event-card:hover
.es-event-card-content i {

    transform:
        translate(4px,-4px);

}


/* =========================================
   MEDIA HEADING
========================================= */

.es-media-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-top: 110px;

    padding-bottom: 25px;

    border-bottom:
        1px solid rgba(7,23,46,.16);

}


.es-media-heading span {

    color: #a9781e;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-media-heading h3 {

    margin: 10px 0 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 50px;

    font-weight: 400;

    line-height: .9;

}


.es-media-heading h3 em {

    color: #a9781e;

    font-style: italic;

}


.es-media-link {

    color: #07172e;

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.es-media-link i {

    margin-left: 10px;

    color: #a9781e;

}


/* =========================================
   MEDIA LAYOUT
========================================= */

.es-media-layout {

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 45px;

    margin-top: 40px;

}


.es-media-feature {

    color: #07172e;

    text-decoration: none;

}


.es-media-feature-image {

    position: relative;

    height: 440px;

    overflow: hidden;

}


.es-media-feature-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .9s ease;

}


.es-media-feature:hover
.es-media-feature-image img {

    transform: scale(1.06);

}


.es-play-button {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    transform:
        translate(-50%,-50%);

    background: #e7b84f;

    color: #07172e;

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);

}


.es-play-button i {

    margin-left: 3px;

}


.es-media-duration {

    position: absolute;

    right: 15px;

    bottom: 15px;

    padding: 7px 9px;

    background: #07172e;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

}


.es-media-feature-content {

    padding-top: 20px;

}


.es-media-feature-content span {

    color: #a9781e;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-media-feature-content h4 {

    max-width: 550px;

    margin: 8px 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 33px;

    font-weight: 500;

    line-height: .95;

}


.es-media-feature-content p {

    margin: 0;

    color: #777a77;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

}


/* =========================================
   MEDIA LIST
========================================= */

.es-media-list {

    border-top:
        1px solid rgba(7,23,46,.16);

}


.es-media-item {

    display: grid;

    grid-template-columns:
        120px 1fr 20px;

    align-items: center;

    gap: 18px;

    padding: 18px 0;

    border-bottom:
        1px solid rgba(7,23,46,.16);

    color: #07172e;

    text-decoration: none;

}


.es-media-thumb {

    position: relative;

    height: 110px;

    overflow: hidden;

}


.es-media-thumb img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .7s ease;

}


.es-media-item:hover
.es-media-thumb img {

    transform: scale(1.08);

}


.es-media-thumb span {

    position: absolute;

    right: 5px;

    bottom: 5px;

    padding: 4px 5px;

    background: #07172e;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 10px;

}


.es-media-item small {

    display: block;

    color: #a9781e;

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-media-item strong {

    display: block;

    margin-top: 5px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 22px;

    font-weight: 600;

}


.es-media-item > i {

    color: #a9781e;

    font-size: 9px;

    transition: .35s ease;

}


.es-media-item:hover > i {

    transform:
        translate(4px,-4px);

}


/* =========================================
   FLOATING PERSON
========================================= */

.es-events-floating {

    position: absolute;

    right: 3%;

    bottom: -95px;

    width: 210px;

    height: 280px;

    z-index: 10;

    overflow: hidden;

    border:
        8px solid #f5f1e8;

    box-shadow:
        0 30px 65px rgba(7,23,46,.25);

    transform: rotate(4deg);

}


.es-events-floating img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.es-events-floating-label {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding:
        40px 15px 15px;

    background:
        linear-gradient(
            transparent,
            rgba(7,23,46,.95)
        );

}


.es-events-floating-label span {

    display: block;

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-events-floating-label strong {

    display: block;

    margin-top: 4px;

    color: #fff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 21px;

    font-style: italic;

}


/* =========================================
   BOTTOM
========================================= */

.es-events-bottom {

    width:
        min(1380px, calc(100% - 80px));

    margin: 100px auto 0;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    color: #8b8d8a;

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.es-events-bottom i {

    color: #b78322;

    font-size: 4px;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .es-events-header {

        grid-template-columns:
            1fr 170px;

    }

    .es-events-kicker {

        grid-column: 1 / -1;

    }

    .es-featured-event {

        grid-template-columns: 1fr;

    }

    .es-featured-event-image {

        min-height: 430px;

    }

    .es-events-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .es-media-layout {

        grid-template-columns: 1fr;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .es-events-media {

        padding:
            100px 0 110px;

    }

    .es-events-wrap {

        width:
            calc(100% - 35px);

    }

    .es-events-header {

        display: block;

    }

    .es-events-title h2 {

        font-size: 52px;

        letter-spacing: -1px;

    }

    .es-events-all {

        margin-top: 25px;

    }

    .es-featured-event {

        margin-top: 60px;

    }

    .es-featured-event-image {

        min-height: 227px;

    }

    .es-featured-event-content {

        padding:
            45px 25px 50px;

    }

    .es-featured-event-content h3 {

        font-size: 45px;

    }

    .es-event-meta {

        flex-direction: column;

        gap: 10px;

    }

    .es-events-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .es-event-card-image {

        height: 300px;

    }

    .es-media-heading {

        display: block;

    }

    .es-media-heading h3 {

        font-size: 43px;

    }

    .es-media-link {

        display: inline-block;

        margin-top: 20px;

    }

    .es-media-feature-image {

        height: 330px;

    }

    .es-media-item {

        grid-template-columns:
            95px 1fr 15px;

        gap: 12px;

    }

    .es-media-thumb {

        height: 75px;

    }

    .es-media-item strong {

        font-size: 18px;

    }

    .es-events-floating {

        width: 150px;

        height: 200px;

        right: 2%;

        bottom: -65px;

        border-width: 6px;

    }

    .es-events-bottom {

        width:
            calc(100% - 35px);

        margin-top: 75px;

        gap: 9px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {

    .es-events-title h2 {

        font-size: 46px;

    }

    .es-featured-event-content h3 {

        font-size: 39px;

    }

    .es-event-card-image {

        height: 260px;

    }

    .es-media-heading h3 {

        font-size: 38px;

    }

    .es-media-feature-image {

        height: 280px;

    }

}

/*-------------------------------------------------GIVE & CONNECT------------------------------*/

/* =========================================
   GIVE & CONNECT
========================================= */

.es-give-connect {

    position: relative;

    padding:93px 0 80px;

    background: #07172e;

    color: #fff;

    overflow: hidden;
    text-align: start;
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.es-give-glow {

    position: absolute;

    width: 700px;

    height: 700px;

    right: -250px;

    top: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(231,184,79,.13),
            transparent 65%
        );

    pointer-events: none;

}


/* =========================================
   WATERMARK
========================================= */

.es-give-watermark {

    position: absolute;

    left: -35px;

    bottom: 30px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(190px, 27vw, 420px);

    font-weight: 600;

    line-height: .7;

    color: rgba(255,255,255,.025);

    pointer-events: none;

}


/* =========================================
   WRAPPER
========================================= */

.es-give-wrap {

    width:
        min(1380px, calc(100% - 80px));

    margin: auto;

    position: relative;

    z-index: 3;

}


/* =========================================
   HEADER
========================================= */

.es-give-header {

    display: grid;

    grid-template-columns:
        0px 1fr 300px;

    

    align-items: end;

}


.es-give-kicker {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-give-kicker span {

    width: 30px;

    height: 1px;

    background: #d9a63a;

}


.es-give-heading > span {

    display: block;

    margin-bottom: 15px;

    color: rgba(255,255,255,.35);

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-give-heading h2 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(58px, 5.7vw, 90px);

    font-weight: 400;

    line-height: .84;

    letter-spacing: -2px;

}


.es-give-heading h2 em {

    display: block;

    color: #e7b84f;

    font-style: italic;

}


.es-give-header > p {

    margin: 0;

    color: rgba(255,255,255,.5);

    font-family: "Manrope", sans-serif;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================
   MAIN
========================================= */

.es-give-main {

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    margin-top: 85px;

    min-height: 540px;

}


/* =========================================
   DONATE PANEL
========================================= */

.es-donate-panel {

    position: relative;

    display: flex;

    align-items: center;

    padding: 75px;

    background: #e7b84f;

    color: #07172e;

    overflow: hidden;

}


.es-donate-number {

    position: absolute;

    top: 25px;

    left: 30px;

    color: rgba(7,23,46,.2);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 90px;

    line-height: .7;

}


.es-donate-content {

    position: relative;

    z-index: 2;

    max-width: 550px;

}


.es-donate-label {

    color: rgba(7,23,46,.6);

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-donate-content h3 {

    margin: 22px 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(52px, 5vw, 76px);

    font-weight: 500;

    line-height: .83;

    letter-spacing: -2px;

}


.es-donate-content h3 em {

    font-style: italic;

}


.es-donate-content p {

    max-width: 500px;

    margin: 0 0 35px;

    color: rgba(7,23,46,.65);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    line-height: 1.9;

}


/* =========================================
   DONATE ACTIONS
========================================= */

.es-donate-actions {

    display: flex;

    align-items: center;

    gap: 25px;

}


.es-donate-button {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 16px 23px;

    background: #07172e;

    color: #fff;

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: .4s ease;

}


.es-donate-button i {

    color: #e7b84f;

    transition: .4s ease;

}


.es-donate-button:hover {

    background: #fff;

    color: #07172e;

}


.es-donate-button:hover i {

    transform: translateX(6px);

}


.es-donate-secondary {

    color: #07172e;

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    border-bottom:
        1px solid rgba(7,23,46,.4);

    padding-bottom: 4px;

}


/* =========================================
   DECORATIVE CROSS
========================================= */

.es-donate-cross {

    position: absolute;

    right: 55px;

    bottom: 50px;

    width: 100px;

    height: 100px;

    opacity: .1;

}


.es-donate-cross span:first-child {

    position: absolute;

    left: 43px;

    top: 0;

    width: 14px;

    height: 100%;

    background: #07172e;

}


.es-donate-cross span:last-child {

    position: absolute;

    left: 0;

    top: 35px;

    width: 100%;

    height: 14px;

    background: #07172e;

}


/* =========================================
   CONNECT PANEL
========================================= */

.es-connect-panel {

    display: flex;

    flex-direction: column;

    background: #0d2342;

}


.es-connect-card {

    position: relative;

    flex: 1;

    display: grid;

    grid-template-columns:
        40px 1fr 25px;

    align-items: center;

    gap: 15px;

    padding: 30px 40px;

    border-bottom:
        1px solid rgba(255,255,255,.12);

    color: #fff;

    text-decoration: none;

    transition:
        padding .4s ease,
        background .4s ease;

}


.es-connect-card:last-child {

    border-bottom: none;

}


.es-connect-card:hover {

    padding-left: 50px;

    background:
        rgba(255,255,255,.045);

}


.es-connect-number {

    align-self: start;

    margin-top: 5px;

    color: #e7b84f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;

}


.es-connect-card small {

    display: block;

    color: rgba(255,255,255,.38);

    font-family: "Manrope", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-connect-card h4 {

    margin: 6px 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 33px;

    font-weight: 500;

}


.es-connect-card p {

    max-width: 300px;

    margin: 0;

    color: rgba(255,255,255,.45);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    line-height: 1.6;

}


.es-connect-card > i {

    color: #e7b84f;

    font-size: 10px;

    transition: .35s ease;

}


.es-connect-card:hover > i {

    transform:
        translate(4px,-4px);

}


/* =========================================
   VISIT STRIP
========================================= */

.es-visit-strip {

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr 70px;

    margin-top: 45px;

    border-top:
        1px solid rgba(255,255,255,.15);

    border-bottom:
        1px solid rgba(255,255,255,.15);

}


.es-visit-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px 20px 25px 0;

    border-right:
        1px solid rgba(255,255,255,.12);

}


.es-visit-item:not(:first-child) {

    padding-left: 25px;

}


.es-visit-item i {

    color: #e7b84f;

    font-size: 19px;

}


.es-visit-item small {

    display: block;

    color: rgba(255,255,255,.32);

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-visit-item strong {

    display: block;

    margin-top: 5px;

    color: rgba(255,255,255,.8);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;

    font-weight: 500;

}


.es-visit-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    color: #e7b84f;

    text-decoration: none;

    transition: .4s ease;

}


.es-visit-arrow:hover {

    background: #e7b84f;

    color: #07172e;

}


/* =========================================
   FINAL MESSAGE
========================================= */

.es-give-final {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 16px;

    margin-top: 85px;

    color: rgba(255,255,255,.35);

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-give-final i {

    color: #e7b84f;

    font-size: 4px;

}


/* =========================================
   FLOATING PERSON
========================================= */

.es-give-person {

    position: absolute;

    left: 3%;

    bottom: -100px;

    width: 220px;

    height: 290px;

    z-index: 10;

    overflow: hidden;

    border:
        8px solid #07172e;

    box-shadow:
        0 30px 70px rgba(0,0,0,.4);

    transform: rotate(-4deg);

}


.es-give-person img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .8s ease;

}


.es-give-person:hover img {

    transform: scale(1.08);

}


.es-give-person-label {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding:
        45px 16px 16px;

    background:
        linear-gradient(
            transparent,
            rgba(7,23,46,.95)
        );

}


.es-give-person-label span {

    display: block;

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-give-person-label strong {

    display: block;

    margin-top: 4px;

    color: #fff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 23px;

    line-height: .85;

    font-style: italic;

}


/* =========================================
   FLOATING BADGE
========================================= */

.es-give-badge {

    position: absolute;

    right: 4%;

    bottom: 55px;

    width: 120px;

    height: 120px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(231,184,79,.45);

    border-radius: 50%;

    transform: rotate(-12deg);

}


.es-give-badge-inner {

    width: 92px;

    height: 92px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 3px;

    border-radius: 50%;

    background: #e7b84f;

    color: #07172e;

}


.es-give-badge-inner span {

    font-family: "Manrope", sans-serif;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.es-give-badge-inner i {

    font-size: 8px;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .es-give-header {

        grid-template-columns:
            1fr 280px;

    }

    .es-give-kicker {

        grid-column: 1 / -1;

    }

    .es-give-main {

        grid-template-columns: 1fr;

    }

    .es-donate-panel {

        min-height: 500px;

    }

    .es-visit-strip {

        grid-template-columns:
            1fr 1fr;

    }

    .es-visit-arrow {

        display: none;

    }

    .es-visit-item:nth-child(2) {

        border-right: none;

    }

    .es-visit-item:nth-child(3) {

        border-top:
            1px solid rgba(255,255,255,.12);

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .es-give-connect {

        padding:
            100px 0 110px;

    }

    .es-give-wrap {

        width:
            calc(100% - 35px);

    }

    .es-give-header {

        display: block;

    }

    .es-give-heading h2 {

        font-size: 53px;

        letter-spacing: -1px;

    }

    .es-give-header > p {

        margin-top: 25px;

        font-size: 11px;

    }

    .es-give-main {

        margin-top: 60px;

    }

    .es-donate-panel {

        min-height: 500px;

        padding:
            55px 25px;

    }

    .es-donate-content h3 {

        font-size: 50px;

    }

    .es-donate-actions {

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

    }

    .es-donate-cross {

        right: 15px;

        bottom: 25px;

        transform: scale(.65);

    }

    .es-connect-card {

        padding:
            27px 20px;

    }

    .es-connect-card:hover {

        padding-left: 25px;

    }

    .es-connect-card h4 {

        font-size: 26px;

    }

    .es-visit-strip {

        grid-template-columns: 1fr;

    }

    .es-visit-item {

        border-right: none;

        border-bottom:
            1px solid rgba(255,255,255,.12);

        padding:
            20px 0 !important;

    }

    .es-visit-item:last-child {

        border-bottom: none;

    }

    .es-give-final {

        margin-top: 70px;

        gap: 9px;

        letter-spacing: 1.5px;

    }

    .es-give-person {

        width: 150px;

        height: 200px;

        left: 2%;

        bottom: -65px;

        border-width: 6px;

    }

    .es-give-person-label strong {

        font-size: 18px;

    }

    .es-give-badge {

        width: 85px;

        height: 85px;

        right: 2%;

        bottom: 30px;

    }

    .es-give-badge-inner {

        width: 66px;

        height: 66px;

    }

    .es-give-badge-inner span {

        font-size: 9px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {

    .es-give-heading h2 {

        font-size: 47px;

    }

    .es-donate-content h3 {

        font-size: 43px;

    }

    .es-connect-card {

        grid-template-columns:
            30px 1fr 18px;

        gap: 10px;

    }

    .es-connect-card h4 {

        font-size: 23px;

    }

}



/*------------------------------------------------------fotter----------------------------------*/

/* =========================================
   PREMIUM FOOTER
========================================= */

.es-footer {

    position: relative;

    background: #050f1f;

    color: #fff;

    overflow: hidden;

}


/* =========================================
   WATERMARK
========================================= */

.es-footer-watermark {

    position: absolute;

    left: -25px;

    top: 90px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(180px, 26vw, 400px);

    font-weight: 600;

    line-height: .7;

    color: rgba(255,255,255,.025);

    pointer-events: none;

}


/* =========================================
   WRAPPER
========================================= */

.es-footer-wrap {

    width:
        min(1380px, calc(100% - 80px));

    margin: auto;

    position: relative;

    z-index: 2;

}


/* =========================================
   CTA
========================================= */

.es-footer-cta {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 50px;

    padding:
        100px 0 67px;

    border-bottom:
        1px solid rgba(255,255,255,.12);
    text-align: start;

}


.es-footer-kicker {

    display: block;

    margin-bottom: 18px;

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-footer-cta h2 {

    max-width: 800px;

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(55px, 6vw, 92px);

    font-weight: 400;

    line-height: .82;

    letter-spacing: -2px;

}


.es-footer-cta h2 em {

    display: block;

    color: #e7b84f;

    font-style: italic;

}


.es-footer-cta-content p {

    max-width: 560px;

    margin: 25px 0 0;

    color: rgba(255,255,255,.42);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    line-height: 1.8;

}


.es-footer-cta-button {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 19px 25px;

    border:
        1px solid rgba(231,184,79,.6);

    color: #e7b84f;

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: .4s ease;

}


.es-footer-cta-button i {

    transition: .4s ease;

}


.es-footer-cta-button:hover {

    background: #e7b84f;

    color: #050f1f;

}


.es-footer-cta-button:hover i {

    transform: translateX(6px);

}


/* =========================================
   FOOTER MAIN
========================================= */

.es-footer-main {

    display: grid;

    grid-template-columns:
        1.5fr
        .8fr
        .8fr
        1fr;

    gap: 60px;

    padding:
        80px 0;
    opacity: 1 !important;
    text-align: start;
}


/* =========================================
   LOGO
========================================= */

.es-footer-logo {

    display: inline-block;

}


.es-footer-logo img {

    width: 237px;

    max-width: 100%;

    height: auto;

    object-fit: contain;

}


.es-footer-brand > p {

    max-width: 310px;

    margin: 25px 0 30px;

    color: rgba(255,255,255,.42);

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================
   SOCIAL
========================================= */

.es-footer-social {

    display: flex;

    gap: 8px;

}


.es-footer-social a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255,255,255,.16);

    border-radius: 50%;

    color: rgba(255,255,255,.65);

    text-decoration: none;

    font-size: 19px;

    transition: .35s ease;

}


.es-footer-social a:hover {

    border-color: #e7b84f;

    background: #e7b84f;

    color: #050f1f;

    transform: translateY(-4px);

}


/* =========================================
   COLUMNS
========================================= */

.es-footer-column-title {

    display: block;

    margin-bottom: 25px;

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 19px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-footer-column ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.es-footer-column li {

    margin-bottom: 13px;

}


.es-footer-column li a {

    position: relative;

    color: rgba(255,255,255,.55);

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    transition: .3s ease;

}


.es-footer-column li a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -4px;

    width: 0;

    height: 1px;

    background: #e7b84f;

    transition: .3s ease;

}


.es-footer-column li a:hover {

    color: #fff;

}


.es-footer-column li a:hover::after {

    width: 100%;

}


/* =========================================
   CONTACT
========================================= */

.es-footer-contact-item {

    display: flex;

    gap: 13px;

    margin-bottom: 20px;

}


.es-footer-contact-item > i {

    margin-top: 3px;

    color: #e7b84f;

    font-size: 17px;

}


.es-footer-contact-item small {

    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.28);

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.es-footer-contact-item p {

    margin: 0;

    color: rgba(255,255,255,.52);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    line-height: 1.6;

}


.es-footer-contact-item a {

    color: rgba(255,255,255,.55);

    text-decoration: none;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    transition: .3s ease;

}


.es-footer-contact-item a:hover {

    color: #e7b84f;

}


/* =========================================
   MISSION CARDS
========================================= */

.es-footer-mission {

    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top:
        1px solid rgba(255,255,255,.12);

    border-bottom:
        1px solid rgba(255,255,255,.12);

}


.es-footer-mission-card {

    position: relative;

    min-height: 210px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 40px 45px;

    color: #fff;

    text-decoration: none;

    overflow: hidden;

    transition: .45s ease;

}


.es-mission-worship {

    background: #0c213d;

}


.es-mission-charity {

    background: #a9781e;

}


.es-footer-mission-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    right: -60px;

    bottom: -80px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.16);

    transition: .6s ease;

}


.es-footer-mission-card:hover::before {

    transform: scale(1.7);

}


.es-footer-mission-card span {

    font-family: "Manrope", sans-serif;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 3px;

    color: rgba(255,255,255,.45);

}


.es-footer-mission-card h3 {

    margin: 8px 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 42px;

    font-weight: 400;

}


.es-footer-mission-card p {

    margin: 0;

    color: rgba(255,255,255,.5);

    font-family: "Manrope", sans-serif;

    font-size: 9px;

}


.es-footer-mission-card > i {

    position: relative;

    z-index: 2;

    font-size: 14px;

    transition: .4s ease;

}


.es-footer-mission-card:hover > i {

    transform:
        translate(5px,-5px);

}


/* =========================================
   NEWSLETTER
========================================= */

.es-footer-newsletter {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 70px 0;

}


.es-footer-newsletter > div > span {

    color: #e7b84f;

    font-family: "Manrope", sans-serif;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 3px;

}


.es-footer-newsletter h3 {

    max-width: 500px;

    margin: 10px 0 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 34px;

    font-weight: 400;

    line-height: .95;

}


.es-footer-form {

    display: flex;

    width: min(480px, 100%);

    border-bottom:
        1px solid rgba(255,255,255,.3);

}


.es-footer-form input {

    flex: 1;

    min-width: 0;

    padding: 17px 0;

    border: 0;

    outline: none;

    background: transparent;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 10px;

}


.es-footer-form input::placeholder {

    color: rgba(255,255,255,.35);

}


.es-footer-form button {

    display: flex;

    align-items: center;

    gap: 15px;

    border: 0;

    background: transparent;

    color: #e7b84f;

    cursor: pointer;

    font-family: "Manrope", sans-serif;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.es-footer-form button i {

    transition: .3s ease;

}


.es-footer-form button:hover i {

    transform: translateX(5px);

}


/* =========================================
   BOTTOM
========================================= */

.es-footer-bottom {

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 25px;

    padding:
        25px 0;

    border-top:
        1px solid rgba(255,255,255,.1);

    color: rgba(255,255,255,.3);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

}


.es-footer-legal {

    display: flex;

    align-items: center;

    gap: 12px;

}


.es-footer-legal a {

    color: rgba(255,255,255,.4);

    text-decoration: none;

    transition: .3s ease;

}


.es-footer-legal a:hover {

    color: #e7b84f;

}


.es-footer-top {

    justify-self: end;

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.45);

    text-decoration: none;

    font-size: 12.5px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.es-footer-top i {

    color: #e7b84f;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .es-footer-main {

        grid-template-columns:
            1.3fr 1fr 1fr;

    }

    .es-footer-brand {

        grid-column: 1 / -1;

    }

    .es-footer-newsletter {

        align-items: flex-start;

        flex-direction: column;

    }

    .es-footer-form {

        width: 100%;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .es-footer-wrap {

        width:
            calc(100% - 35px);

    }

    .es-footer-cta {

        display: block;

        padding:
            90px 0 65px;

    }

    .es-footer-cta h2 {

        font-size: 53px;

    }

    .es-footer-cta-button {

        margin-top: 30px;

    }

    .es-footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 45px 25px;

        padding:
            60px 0;

    }

    .es-footer-brand {

        grid-column: 1 / -1;

    }

    .es-footer-logo img {

        width: 150px;

    }

    .es-footer-mission {

        grid-template-columns: 1fr;

    }

    .es-footer-mission-card {

        min-height: 180px;

        padding: 30px 25px;

    }

    .es-footer-mission-card h3 {

        font-size: 35px;

    }

    .es-footer-newsletter {

        padding:
            60px 0;

    }

    .es-footer-newsletter h3 {

        font-size: 30px;

    }

    .es-footer-form {

        margin-top: 10px;

    }

    .es-footer-bottom {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

    .es-footer-top {

        justify-self: auto;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {

    .es-footer-main {

        grid-template-columns: 1fr;

    }

    .es-footer-cta h2 {

        font-size: 46px;

    }

    .es-footer-cta-content p {

        font-size: 10px;

    }

    .es-footer-mission-card h3 {

        font-size: 32px;

    }

    .es-footer-newsletter h3 {

        font-size: 27px;

    }

}



/* =========================================
   JS ANIMATIONS
========================================= */

.es-reveal,
.es-reveal-left,
.es-reveal-right,
.es-reveal-up {
    opacity: 0;
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22,1,.36,1);
}

.es-reveal {
    transform: translateY(40px);
}

.es-reveal-left {
    transform: translateX(-60px);
}

.es-reveal-right {
    transform: translateX(60px);
}

.es-reveal-up {
    transform: translateY(70px);
}

.es-reveal.es-visible,
.es-reveal-left.es-visible,
.es-reveal-right.es-visible,
.es-reveal-up.es-visible {
    opacity: 1;
    transform: translate3d(0,0,0);
}


/* =========================================
   STAGGER
========================================= */

.es-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22,1,.36,1);
}

.es-stagger > *.es-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   STICKY HEADER
========================================= */

.es-header {
    transition:
        background .4s ease,
        padding .4s ease,
        box-shadow .4s ease,
        backdrop-filter .4s ease;
}

.es-header-scrolled {
    position: fixed;
    padding: 10px 0;

    background: rgba(3, 10, 20, .92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 40px rgba(0,0,0,.22);
}

.es-header-scrolled .es-logo {
    width: 105px;
}


/* =========================================
   DROPDOWN
========================================= */

.es-nav-dropdown {
    position: relative;
}

.es-dropdown-menu {
    position: absolute;

    top: calc(100% + 15px);
    left: 50%;

    width: 220px;

    padding: 10px;

    background: #07111d;

    border: 1px solid rgba(217,166,58,.2);

    box-shadow:
        0 20px 60px rgba(0,0,0,.4);

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, 12px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;
}

.es-nav-dropdown:hover
.es-dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}

.es-dropdown-menu a {
    display: flex;

    padding: 12px 14px;

    color: rgba(255,255,255,.75);

    text-decoration: none;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .4px;

    transition: .3s ease;
}

.es-dropdown-menu a:hover {
    color: var(--es-gold-light);

    background:
        rgba(217,166,58,.08);

    padding-left: 20px;
}


/* =========================================
   DROPDOWN ARROW
========================================= */

.es-nav-dropdown > a i {
    margin-left: 5px;

    font-size: 8px;

    transition: transform .3s ease;
}

.es-nav-dropdown:hover > a i {
    transform: rotate(180deg);
}


/* =========================================
   MOBILE DROPDOWN
========================================= */

@media (max-width: 991px) {

    .es-nav-dropdown {
        width: 100%;
    }

    .es-dropdown-menu {
        position: static;

        width: 100%;

        padding: 0 0 0 15px;

        background: transparent;

        border: 0;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        display: none;
    }

    .es-nav-dropdown.open
    .es-dropdown-menu {
        display: block;
    }

    .es-nav-dropdown.open > a i {
        transform: rotate(180deg);
    }

    .es-dropdown-menu a {
        font-family: "Manrope", sans-serif;

        font-size: 14px;

        padding: 12px 0;
    }

}


/* =========================================
   HERO IMAGE
========================================= */

.es-hero-visual {
    transition:
        transform .5s cubic-bezier(.22,1,.36,1);
}


/* =========================================
   LAZY IMAGE
========================================= */

img[data-src] {
    opacity: 0;
}

img.loaded {
    opacity: 1;

    transition:
        opacity .6s ease;
}


/* =========================================
   BACK TO TOP
========================================= */

.es-back-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--es-gold);

    color: #111;

    border: 0;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: .35s ease;

    z-index: 900;
}

.es-back-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}