/*------------------------------------------------------------------
    IMPORT FONTS
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Barlow:100,200,300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Marck+Script');

/*------------------------------------------------------------------
    IMPORT FILES
-------------------------------------------------------------------*/

@import url(animate.css);
@import url(font-awesome.min.css);
@import url(magnific-popup.css);

/*------------------------------------------------------------------
    SKELETON
-------------------------------------------------------------------*/

body {
    color: #666666;
    font-size: 15px;
    font-family: 'Barlow', sans-serif;
    line-height: 1.80857;
}

#firstBackground {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh; /* Adjust the height as needed */
    min-height: 100vh; /* Ensure minimum height for Edge */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px; /* Adjust this value based on the height of your navbar */
}

#firstBackground::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; /* Ensure it covers the entire viewport width */
    height: 150vh; /* Ensure it covers the entire viewport height */
    background: rgba(0, 0, 0, 0.3); /* Adjust the opacity as needed */
    z-index: 1;
}

#firstBackground > * {
    position: relative;
    z-index: 2;
}

a {
    color: #1f1f1f;
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    font-weight: normal;
    line-height: 120% !important;
    color: #1f1f1f;
    margin: 0
}

h1 {
    font-size: 24px
}

h2 {
    font-size: 22px
}

h3 {
    font-size: 18px
}

h4 {
    font-size: 16px
}

h5 {
    font-size: 14px
}

h6 {
    font-size: 13px
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #212121;
    text-decoration: none !important;
    opacity: 1
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    opacity: .8
}

a {
    color: #1f1f1f;
    text-decoration: none;
    outline: none;
}

a,
.btn {
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-custom {
    margin-top: 20px;
    background-color: transparent !important;
    border: 2px solid #ddd;
    padding: 12px 40px;
    font-size: 16px;
}

.lead {
    font-size: 18px;
    line-height: 30px;
    color: #767676;
    margin: 0;
    padding: 0;
}

blockquote {
    margin: 20px 0 20px;
    padding: 30px;
}

ul, li, ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

button:focus {
    outline: none;
}

.form-control::-moz-placeholder {
    color: #2a2a2a;
    opacity: 1;
}


/*------------------------------------------------------------------
    LOADER 
-------------------------------------------------------------------*/

#preloader {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #dd666c;
    z-index: 11000;
    position: fixed;
    display: block;
}

.pulse {
    height: 150px;
    width: 200px;
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.pulse:after {
    content: '';
    display: block;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 200px 100px" enable-background="new 0 0 200px 100px" xml:space="preserve"><polyline fill="none" stroke-width="3px" stroke="white" points="2.4,58.7 70.8,58.7 76.1,46.2 81.1,58.7 89.9,58.7 93.8,66.5 102.8,22.7 110.6,78.7 115.3,58.7 126.4,58.7 134.4,54.7 142.4,58.7 197.8,58.7 "/></svg>') 0 0 no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-animation: 2s pulse linear infinite;
    animation: 2s pulse linear infinite;
    clip: rect(0, 0, 100px, 0);
}

.pulse:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 2px;
    right: 2px;
    bottom: 0;
    top: 16px;
    margin: auto;
    height: 3px;

}


@-webkit-keyframes pulse {
    0% {
        clip: rect(0, 0, 100px, 0);
        opacity: 0.4;
    }
    4% {
        clip: rect(0, 66.66667px, 100px, 0);
        opacity: 0.6;
    }
    15% {
        clip: rect(0, 133.33333px, 100px, 0);
        opacity: 0.8;
    }
    20% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 1;
    }

    80% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 0;
    }

    90% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 0;
    }

    100% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        clip: rect(0, 0, 100px, 0);
    }
    4% {
        clip: rect(0, 66.66667px, 100px, 0);
    }
    15% {
        clip: rect(0, 133.33333px, 100px, 0);
    }
    20% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 1;
    }

    80% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 0;
    }

}

.pulse {
    text-align: center;
}

.pulse i {
    color: #ffffff;
    font-size: 38px;
}

/*------------------------------------------------------------------
    HEADER
-------------------------------------------------------------------*/

.top-header .navbar {
    padding: 15px 0px;
}

.top-header .navbar .navbar-collapse ul li a {
    padding: 19px 15px;
    text-transform: uppercase;
    font-size: 18px;
}

.top-header .navbar .navbar-collapse ul li a.active {
    background: #856404;
    color: #ffffff;
}

.top-header .navbar .navbar-collapse ul li a:hover {
    background: #856404;
    color: #ffffff;
}


.top-header.fixed-menu {
    width: 100%;
    position: fixed;
    box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    background: #fff;
    z-index: 20;
}

.navbar-toggler {
    border: 1px solid #f1cf44;
    border-radius: 0;
    margin: 16px 15px;
    padding: 10px 10px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.navbar-toggler span {
    background: #f1cf44;
    display: block;
    width: 25px;
    height: 2px;
    margin: 0 auto;
    margin-top: 0px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.navbar-toggler span + span {
    margin-top: 5px;
}

.navbar-toggler:hover {
    border: 1px solid #856404;
}

.navbar-toggler:hover span {
    background: #856404;
}




/*------------------------------------------------------------------
    Banner
-------------------------------------------------------------------*/
@media (max-width: 991px) {


    .adjustableFont1 {
        font-size: 12vw !important;
        font-weight: bolder !important;
        color: #856404 !important;
        text-align: center !important;

    }

    #firstBackground::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw; /* Ensure it covers the entire viewport width */
        height: 100vh; /* Ensure it covers the entire viewport height */
        background: rgba(0, 0, 0, 0.3); /* Adjust the opacity as needed */
        z-index: 1;
    }

    #title1 {
        padding-top: 46vh;
    }

    .adjustableFont2 {
        font-size: 4.4vw !important;
        text-align: center !important;
        color: #856404 !important;
    }

    .adjustableFont3 {
        font-size: 3.3vw !important;
        text-align: center !important;
        color: #ffffff !important;
    }

    .adjustableFont4 {
        font-size: 2.8vw !important;
        text-align: center;
    }

    .adjustableFont5 {
        font-size: 2.4vw !important;
        text-align: center !important;
    }

    h1 {
        font-size: 12vw !important;
    }

    h2 {
        font-size: 12vw !important;
    }

    h3 {
        font-size: 9.5vw !important;
    }

    #venmoLink {
        font-size: 9.5vw !important;
    }
}


@media (min-width: 992px) {



#firstBackground{
    height:150vh;
}
    .adjustableFont4 {
        font-size: 19px !important;
        text-align: center !important;

    }

    .adjustableFont5 {
        font-size: 15px !important;
        text-align: center !important;
    }

    .adjustableFont3 {
        font-size: 24px !important;
        text-align: center !important;
    }

    .adjustableFont2 {
        font-size: 26px !important;
        font-weight: bold !important;
        text-align: center !important;
    }

    .adjustableFont1 {
        font-size: 52pt !important;
        font-weight: bolder !important;
        text-align: center !important;
        color: #856404 !important;

    }

    h2 {
        font-size: 4.5rem !important;
    }

    h3 {
        font-size: 2.75rem !important;
    }

    #venmoLink {
        font-size: 2.75rem !important;
    }
}

.lbox-caption {
    display: table;
    height: 100%;
    width: 100%;
}

.lbox-caption {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 10;
}

.lbox-details {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    position: relative;
}

.lbox-details::before {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.lbox-details p {
    color: #ffffff;
    position: relative;
    z-index: 3;
}

.lbox-details p strong {
    color: #856404;
    font-size: 40px;
    font-family: 'Marck Script', cursive;
}

.lbox-details a.btn {
    background: #63c7bd;
    padding: 10px 20px;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 0px;
    position: relative;
    z-index: 3;
}

.lbox-details a.btn:hover {
    background: #856404;
}

/*------------------------------------------------------------------
    About
-------------------------------------------------------------------*/

.about-box {
    padding: 70px 0px;
}

.title-box {
    text-align: center;
    margin-bottom: 30px;
}

.title-box h2 {
    font-size: 60px;
    font-family: 'Marck Script', cursive;
    color: #222222;
}

.title-box h2 span {
    color: #856404;
    text-decoration: underline;
}

.about-main-info h2 {
    font-size: 40px;
    font-family: 'Marck Script', cursive;
}

.about-main-info h2 span {
    color: #856404;
    text-decoration: underline;
}


/*------------------------------------------------------------------
    Story
-------------------------------------------------------------------*/

.story-box {
    padding: 70px 0px;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.main-timeline-box {
    position: relative;
    word-wrap: break-word;
}

.main-timeline-box .timeline-element {
    margin-bottom: 50px;
    position: relative;
    word-wrap: break-word;
    word-break: break-word;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-flex-direction: row;
}

.main-timeline-box .reverse {
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
}

.main-timeline-box .separline::before {
    top: 20px;
    bottom: 0;
    position: absolute;
    content: "";
    width: 2px;
    background-color: #f1f1f1;
    left: calc(50% - 1px);
    height: calc(100% + 4rem);
}

.main-timeline-box .iconBackground {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    font-size: 30px;
    display: inline-block;
    background-color: #f1f1f1;
    top: 20px;
    margin-left: -10px;
}

.main-timeline-box .timeline-text-content {
    padding: 30px 35px;
    background: #f1f1f1;
}

.main-timeline-box .reverse .timeline-text-content {
    margin-right: 30px;
}

.main-timeline-box .reverse .time-line-date-content p {
    float: left;
    padding: 30px 35px;
    background: #f1f1f1;
}

.main-timeline-box .reverse .time-line-date-content {
    margin-right: 30px;
}

.display-font {
    font-family: 'Marck Script', cursive;
    font-size: 30px;
    color: #222222;
}

.main-timeline-box .timeline-text-content {
    margin-left: 30px;
}

.main-timeline-box .time-line-date-content p {
    float: right;
    padding: 30px 35px;
    background: #f1f1f1;
}

.main-timeline-box .time-line-date-content {
    margin-right: 30px;
}

.main-timeline-box .time-line-date-content .mbr-timeline-date {
    background: #856404;
    color: #ffffff;
}

.main-timeline-box .reverse .time-line-date-content .mbr-timeline-date {
    background: #63c7bd;
    color: #ffffff;
}


/*------------------------------------------------------------------
    Family
-------------------------------------------------------------------*/

.family-box {
    padding: 70px 0px;
}

.single-team-member {
    position: relative;
    margin-top: 30px;
    border: 10px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.family-img {
    position: relative;
}

.family-img::after {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    background-color: #535c68;
}

.family-info {
    padding: 25px 30px;
    background-color: #f1f1f1;
}

.family-info h4 {
    font-family: 'Marck Script', cursive;
    font-size: 24px;
}

.family-info p {
    margin: 0px;
    font-size: 18px;
}

/*------------------------------------------------------------------
    Gallery
-------------------------------------------------------------------*/

.gallery-box {
    padding: 70px 0px;
}

.gallery-box ul {
}

.gallery-box ul li {
    position: relative;
    width: 25%;
    margin: 0;
    padding: 0;
    float: left;
    border: none;
    overflow: hidden;
}

.gallery-box ul li a {
    position: relative;
    display: inline-block;
}

.gallery-box ul li a::before {
    content: "";
    position: absolute;
    background: rgba(99, 199, 189, 0.5);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 100%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.gallery-box ul li a .overlay {
    background: #856404;
    color: #ffffff;
    font-size: 22px;
    text-align: center;
    width: 38px;
    height: 38px;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.gallery-box ul li a:hover::before {
    top: 0;
    opacity: 1;
}

.gallery-box ul li a:hover .overlay {
    opacity: 1;
}

/*------------------------------------------------------------------
    Events
-------------------------------------------------------------------*/

.events-box {
    padding: 70px 0px;
}

.event-inner {
    margin-bottom: 30px;
    border: 10px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.event-img {
    margin-bottom: 15px;
}

.event-inner a {
    background: #856404;
    color: #ffffff;
    padding: 5px 10px;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
}

.event-inner a:hover {
    background: #63c7bd;
}

/*------------------------------------------------------------------
    Contact
-------------------------------------------------------------------*/

.contact-box {
    padding: 70px 0px;
}

.contact-block {
}

.contact-block .form-group .form-control {
    background: #e6eceb;
    height: 45px;
    font-size: 16px;
    border: 0;
    color: #222222;
    padding: 6px 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.contact-block .form-group textarea.form-control {
    height: 150px;
    padding-top: 15px;
}

.submit-button .btn-common {
    background-color: #63c7bd;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 0 15px;
    border: 0;
    outline: 0;
    text-transform: uppercase;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.submit-button .btn-common:hover {
    background-color: #856404;
}

.custom-select {
    height: 45px;
    font-size: 16px;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(45px + 2px);
}

.help-block ul li {
    color: #856404;
}

.footer-box {
    background: #292f35;
    padding: 20px 0;
}

.footer-box .footer-company-name {
    text-align: center;
    margin: 0px;
    color: #ffffff;
}

.footer-box .footer-company-name a {
    color: #856404;
}

.footer-box .footer-company-name a:hover {
    color: #63c7bd;
}




/*@keyframes fadeIn {*/
/*    from {*/
/*        opacity: 0;*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*    }*/
/*}*/

/*!*#title1, #title2 {*!*/
/*!*    opacity: 0; !* Hide initially *!*!*/
/*!*}*!*/

/*#title1 {*/
/*    animation: fadeIn 2s ease-in-out;*/
/*}*/

/*#title2 {*/
/*    animation: fadeIn 2s ease-in-out;*/
/*    animation-delay: 2s; !* Adjust the delay as needed *!*/
/*}*/





































