/* ===================================
    Noah's Ark Ministries — built on Crafto
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');
/* variable */
:root {
    --base-color: #FF9F1C;
    --base-color-rgb: 255,159,28;
    --water-deep: #2EC4B6;
    --water-deep-rgb: 46,196,182;
    --water-clear: #FFBF69;
    --water-mist: #CBF3F0;
    --dark-gray: #123332;
    --medium-gray: #5C7A77;
    --alt-font: 'Fraunces', serif;
    --primary-font: 'Manrope', sans-serif;
}
/* signature divider — water contour line between sections */
.water-divider{ position:relative; line-height:0; }
.water-divider svg{ display:block; width:100%; height:60px; }
/* droplet marker used in place of generic numbered badges */
.drop-marker{ display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; }
.drop-marker svg{ width:26px; height:26px; }
/* reset */
body {
    font-size: 17px;
    line-height: 28px; 
    overflow-x: hidden;
}
.alt-font{
    word-spacing: normal;
}
.map .alt-font {
    word-spacing: normal;
}
.ws-minus-10px{
    word-spacing: normal;
}
.ws-minus-3px{
    word-spacing: normal;
}
section {
    padding-top: 100px;
    padding-bottom: 100px;
}
html, body {
    overflow-x: hidden;
}
.h-700 {
    height: 650px !important;
}
/* header */
header .navbar-brand img {
    max-height: 84px;
}
.navbar .navbar-nav .nav-link {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.3px;
    padding: 12px 16px;
}
header .navbar-brand {
    padding: 25px 0;
}
/* bg color */
.bg-gradient-corduroy-green-dark-goldenrod {
    background-image: linear-gradient(to right, #123332, #159E92, #2EC4B6, #6FD9CE, #CBF3F0);
}
.bg-gradient-corduroy-green-dark-goldenrod-dark {
    background: rgb(18,51,50);
    background: linear-gradient(34deg, rgba(18,51,50,1) 0%, rgba(46,196,182,1) 50%, rgba(255,159,28,1) 100%);
}
.bg-gradient-corduroy-green-dark-goldenrod-transparent {
    background-image: linear-gradient(to top right, rgba(18,51,50,.85), rgba(21,158,146,.75), rgba(46,196,182,.8), rgba(255,191,105,.8), rgb(255,159,28));
}
.bg-zircon-grey {
    background-color: #DFF7F5;
}
.bg-racing-green {
    background-color: #0E2A29;
}
.bg-white-yellow {
    background-color: #FFF3E0;
}
.bg-white-transparent {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Noah's Ark visual direction */
:root {
    --ark-ink: #123332;
    --ark-teal: #159e92;
    --ark-mint: #dff7f5;
    --ark-sun: #ff9f1c;
    --ark-paper: #fbfaf5;
}

body {
    background: var(--ark-paper);
}

header .navbar {
    background-color: rgba(251, 250, 245, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

header .navbar .navbar-nav .nav-link,
header .navbar .widget-text {
    color: var(--ark-ink);
}

header .navbar .navbar-nav .nav-link:hover,
header .navbar .navbar-nav .nav-item.active .nav-link {
    color: var(--ark-teal);
    opacity: 1;
}

header .navbar .navbar-nav .nav-link {
    position: relative;
}

header .navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    background: var(--ark-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

header .navbar .navbar-nav .nav-link:hover::after,
header .navbar .navbar-nav .nav-item.active .nav-link::after {
    transform: scaleX(1);
}

header .navbar .navbar-brand img {
    width: auto;
    max-width: 400px;
    height: 84px;
    object-fit: contain;
}

/* Full-size logo + nav only fit together from ~1900px up. Rather than drop to
   the hamburger menu for the whole 992-1899px gap (nearly all common laptop
   and desktop widths), shrink the logo and nav type down in that range so
   the full, always-visible menu keeps showing instead of collapsing. */
.header-donate-wrap {
    display: none !important;
}
@media (min-width: 2100px) {
    .header-donate-wrap {
        display: flex !important;
    }
}

@media (min-width: 992px) and (max-width: 1899px) {
    header .navbar .navbar-brand img {
        max-width: 220px;
        height: 48px;
    }
    header .navbar .navbar-nav .nav-link {
        font-size: 14px;
        padding: 10px 6px;
    }
}

/* At this larger nav size, the inline menu doesn't have room next to the
   logo below ~1200px. Fall back to the hamburger for just that gap
   instead of shrinking type further. */
@media (min-width: 992px) and (max-width: 1199px) {
    header .navbar.navbar-expand-lg > .container-fluid {
        justify-content: space-between !important;
    }
    header .navbar.navbar-expand-lg .navbar-toggler {
        display: block !important;
        margin-left: auto;
    }
    header .navbar.navbar-expand-lg .navbar-collapse {
        display: none !important;
    }
    header .navbar.navbar-expand-lg .navbar-nav {
        flex-direction: column !important;
    }
    header .navbar.navbar-expand-lg .navbar-collapse.show {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        overflow: hidden;
        box-shadow: 0 20px 15px 0 rgba(23, 23, 23, 0.05);
        max-height: calc(100vh - 72px);
    }
}

.hero-slider-section {
    overflow: hidden;
}

.hero-slide-top {
    align-items: flex-start !important;
    padding-top: 80px;
    padding-bottom: 80px;
    /* Fixed (not just minimum) height so every slide's photo renders at the
       exact same size regardless of how much each slide's heading wraps. */
    height: min(760px, 78vh);
}

.hero-slide-top .hero-eyebrow {
    color: var(--white) !important;
    margin-bottom: 10px !important;
}

.hero-slide-top .alt-font {
    margin-left: auto;
    margin-right: auto;
    color: var(--white) !important;
    text-shadow: 0 2px 20px rgba(18, 51, 50, .45), 0 1px 4px rgba(18, 51, 50, .6);
    font-size: 54px !important;
    line-height: 60px !important;
    margin-bottom: 18px !important;
}

.top-space-padding.hero-slide-top .fs-19 {
    color: rgba(255, 255, 255, .94);
    text-shadow: 0 1px 10px rgba(18, 51, 50, .4), 0 1px 2px rgba(18, 51, 50, .55);
    margin-bottom: 20px !important;
}

@media (max-width: 991px) {
    .hero-slide-top .alt-font {
        font-size: 42px !important;
        line-height: 48px !important;
    }
}

@media (max-width: 575px) {
    .hero-slide-top .alt-font {
        font-size: 34px !important;
        line-height: 40px !important;
    }
}

.top-space-padding.hero-slide-top::before {
    background: linear-gradient(180deg, rgba(255, 159, 28, .62) 0%, rgba(255, 159, 28, .38) 45%, rgba(255, 159, 28, 0) 78%);
}

@media (max-width: 991px) {
    .hero-slide-top {
        padding-top: 70px;
        padding-bottom: 70px;
        height: 640px;
    }
}

@media (max-width: 575px) {
    .hero-slide-top {
        padding-top: 55px;
        padding-bottom: 65px;
        height: 600px;
    }
}

.hero-slider .swiper-wrapper {
    align-items: stretch;
}

.hero-slider-pagination {
    position: absolute !important;
    bottom: 28px !important;
    left: 0;
    width: 100%;
    z-index: 5;
    text-align: center;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--ark-ink);
    opacity: .35;
    margin: 0 5px !important;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--ark-teal);
}

.top-space-padding {
    min-height: min(760px, 78vh);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #e9f4ee;
    background-blend-mode: multiply;
}

.top-space-padding::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 250, 245, .96) 0%, rgba(251, 250, 245, .82) 35%, rgba(251, 250, 245, .12) 75%, rgba(251, 250, 245, 0) 100%);
    pointer-events: none;
}

.top-space-padding > .container {
    z-index: 1;
}

.top-space-padding .alt-font {
    max-width: 720px;
    color: var(--ark-ink);
}

.top-space-padding .fs-19 {
    color: #355654;
    max-width: 510px;
}

.custom-image-icon,
.services-box-style-03 img,
.team-style-05 img,
.gallery-image img,
.blog-image {
    transition: transform .6s cubic-bezier(.2, .7, .2, 1), filter .6s ease;
}

.custom-image-icon {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 10px solid var(--ark-mint);
}

.services-box-style-03,
.blog-box,
.interactive-banner-style-02 > div,
.team-style-05 > div {
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(18, 51, 50, .10);
}

.services-box-style-03:hover img,
.team-style-05:hover img,
.gallery-box:hover img,
.blog-box:hover .blog-image {
    transform: scale(1.045);
    filter: saturate(1.08);
}

.services-box-style-03 > .position-relative,
.team-style-05 > div,
.gallery-image {
    overflow: hidden;
}

.services-box-style-03 > .position-relative img,
.team-style-05 > div > img,
.gallery-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.gallery-image img {
    height: 320px;
}

.page-title-big-typography {
    background-color: #dff7f5;
    background-blend-mode: multiply;
}

.page-title-big-typography::before {
    background: linear-gradient(90deg, rgba(251, 250, 245, .93), rgba(251, 250, 245, .58) 52%, rgba(251, 250, 245, .08));
}

/* Darker overlay + light text for hero photos too busy/dark for the default light-wash treatment */
.page-title-big-typography.page-title-dark-overlay::before {
    background: linear-gradient(90deg, rgba(18, 51, 50, .78), rgba(18, 51, 50, .52) 52%, rgba(18, 51, 50, .18));
}
.page-title-dark-overlay h1,
.page-title-dark-overlay h2 {
    color: var(--white);
}

section.background-position-left-top {
    background-color: var(--ark-paper);
}

footer {
    background-color: var(--ark-ink) !important;
}

@media (max-width: 991px) {
    .top-space-padding {
        min-height: 640px;
        background-position: 62% center;
    }

    .top-space-padding::before {
        background: linear-gradient(90deg, rgba(251, 250, 245, .96), rgba(251, 250, 245, .60));
    }
}

@media (max-width: 575px) {
    header .navbar .navbar-brand img {
        max-width: 260px;
        height: 56px;
    }

    .top-space-padding {
        min-height: 600px;
        background-position: 68% center;
    }

    .top-space-padding .alt-font {
        font-size: 3.65rem;
        line-height: 3.7rem;
    }

    .services-box-style-03 > .position-relative img,
    .team-style-05 > div > img,
    .gallery-image img {
        height: 230px;
    }
}
/* text color */
.text-gradient-corduroy-green-dark-goldenrod {
    background-image: linear-gradient(to right, #123332, #159E92, #2EC4B6, #6FD9CE, #CBF3F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-light-conch-green {
    color: #AFD9D4;
}
.text-dark-golden-yellow {
    color: #FF9F1C;
}
/* heading */
h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
}
h3 {
    line-height: 3rem;
}
/* border color */
.border-color-dark-golden-yellow {
    border-color: #FF9F1C !important;
}
/* btn */
.btn {
    font-family: var(--primary-font);
    font-weight: 600;
    letter-spacing: 1px;
}
.btn.with-rounded > span {
    border-radius: 4px;
}
.btn.with-rounded.btn-large > span {
    line-height: 32px;
}
.btn.with-rounded.btn-large > span {
    right: 12px;
}
.btn.with-rounded.btn-extra-large > span {
    right: 14px;
}
.btn.with-rounded.btn-medium > span {
    right: 10px;
}
.btn.btn-very-small {
    padding: 8px 16px;
    font-size: 12px;
}
.btn.with-rounded.btn-extra-large {
    padding-right: 75px;
}
.btn.with-rounded.btn-large {
    padding-right: 60px;
}
.btn.with-rounded.btn-medium {
    padding-right: 55px;
}
.btn.with-rounded.btn-small {
    padding-right: 50px;
}
.btn.with-rounded.btn-very-small {
    padding-right: 40px;
}
.btn-gradient-green-goldenrod-yellow {
    background-image: linear-gradient(to right, #2EC4B6, #FF9F1C, #2EC4B6);
    background-size: 200% auto;
    color: var(--white);
}
.btn.btn-base-color {
    color: var(--white);
}
.btn.btn-box-shadow.btn-base-color:hover {
    color: var(--dark-gray);
}
/* progress bar style */
.progress-bar-style-01 .progress {
    height: 7px;
    border-radius: 6px;
}
.progress-bar-style-01 .progress .progress-bar {
    border-radius: 6px;
}
/* pag title style */
.page-title-extra-large h1 {
    font-size: 3.8rem;
    line-height: 3.8rem;
    word-spacing: -8px;
}
.page-title-extra-large h2 {
    font-size: 19px;
    line-height: 34px;
}
.pagination-style-01 .page-item.active .page-link {
    background: var(--dark-gray);
    color: var(--white);
}
.placeholder-light::-webkit-input-placeholder { color: var(--white) !important; text-overflow: ellipsis; opacity:0.7; }
.placeholder-light::-moz-placeholder { color: var(--white) !important; text-overflow: ellipsis; opacity:0.7; }
.placeholder-light:-ms-input-placeholder { color: var(--white) !important; text-overflow: ellipsis; opacity:0.7; }
/* contact form style 03 */
.contact-form-style-03 {
    margin-bottom: -125px;
}
/* interactive banner */
.interactive-banner-style-02.hover-box * {
    will-change: auto;
}
/* footer */
footer {
    padding-top: 90px;
    padding-bottom: 90px;
    margin-top: -90px;
    position: relative;
    z-index: 1;
}
footer .footer-logo img {
    max-height: 52px;
}
footer .nav-link {
    color: #AFD9D4;
    font-size: 15px;
    line-height: normal;
}
footer .medium-icon a {
    font-size: 18px;
}
footer .medium-icon li {
    margin: 0 3px;
} 
/* google map */
#map .gmnoprint[data-control-width="40"] {  
    bottom: 30px !important;
    top: auto !important;
}
.social-icon-style-09 ul.light li a {
    border-color: rgba(255, 255, 255, 0.2);
}
/* media query responsive */
@media (max-width: 1600px) {
    section {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}
@media (max-width: 1199px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 16px;
    }
    footer .nav-link {
        padding-left: 12px;
        padding-right: 12px;
    }
}
@media (max-width: 991px) {
    section {
        padding-top: 75px;
        padding-bottom: 75px;
    }
    .contact-form-style-03 {
        margin-bottom: 75px;
    }
    .md-h-500 {
        height: 500px !important;
    }
}
@media (max-width: 767px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    footer {
        padding-top: 90px;
    }
    .contact-form-style-03 {
        margin-bottom: 50px;
    }
    .sm-h-400 {
        height: 400px !important;
    }
}
@media (max-width: 575px) {
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    footer {
        padding-top: 110px;
    }
    .large-icon a {
        font-size: 22px;
        width: 50px;
        height: 50px;
    }
}