<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400&amp;family=Poppins:wght@300;400&amp;family=Prata&amp;display=swap');
/* 
    font-family: 'Poppins', sans-serif;

    font-family: 'Prata', serif;

    font-family: 'PT Serif', serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&amp;display=swap');

/*
font-family: 'Playfair Display', serif;

*/


:root {
    --font-default: Open Sans, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    --font-primary: Prata, serif;
    --font-secondary: Playfair Display, serif;
    --font-btn: Poppins, sans-serif;

}

/* Colors */
:root {
    --color-default: #5d4251;
    --color-primary: #5d4251;
    --color-secondary: #b72552;
    --color-heading: #5d4251;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
}

a {
    font-family: var(--font-secondary);
    color: var(--color-secondary);
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}

a:hover {
    color: var(--color-primary);
    ;
    text-decoration: none;
}

p,
p a,
ul li,
ol li {
    font-family: var(--font-btn);
    font-size: 16px;
    line-height: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
}

h1, h2, h3{text-transform: uppercase !important;}

h3{font-size: 28px !important;}

.sec-pad {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.button {
    background: var(--color-secondary);
    color: #fff;
    padding: 14px 20px;
    letter-spacing: 2px;
    font-size: 18px;
    border: 2px solid transparent;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
    font-family: var(--font-btn);
}

.round-button {
    border-width: 2px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    text-align: center;
    line-height: 20px;
}

.button:hover,
.button:focus,
.button:active {
    color: var(--color-primary);
    background: none;
    border: 2px solid var(--color-secondary);
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}

.verC-align {
    display: flex;
    align-items: center;
}

/* Sweep To Right */
.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: var(--color-secondary);
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}


.light-bg {
    background: url(../images/about-bg.jpg) fixed no-repeat top;
    background-size: cover;
    padding-bottom: 300px;
    padding-top: 300px;
}

.light-bg h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 30px;
    border-bottom: 1px solid #fff;
    padding-bottom: 30px;
}

@media screen and (max-width: 480px){
    .light-bg h2 {
        font-size: 24px;
    }
}

.light-bg-inner {
    background-color: #f3f3f3;
}

.text-lite {
    color: #f3f3f3;
}

/*
.top-bar{background-color: #f7f7f7; padding: 10px 0; margin: 0;}

.top-bar p, .top-bar ul li, .top-bar ol li{line-height: normal;}

.top-bar-social ul li {
  display: inline-block;
  color: var(--color-default);;
  font-size: 14px;
  padding-right: 15px;
  line-height: 1;
}

.top-bar-social .call {
  font-size: 15px;
  border-right: 1px solid #EDEDED;
  margin-right: 15px;
}
*/

.sec-header {
    color: var(--color-secondary);
    font-size: 40px;
    position: relative;
    font-weight: 600;
    display: flex;
    align-items: center;
    /*    justify-content: center;*/
    width: 100%;
}

.sec-header h2 &gt; span {
    color: var(--color-default);
}

.sec-header h2 {
    max-width: 80%;
    display: block;
}



@media screen and (max-width:768px) {
    .sec-header {
        font-size: 30px;
    }

    .sec-header h2 {
        max-width: 100%;
    }
}




/*--------------------------------------------------------------
# Home Banner
--------------------------------------------------------------*/
#carouselExampleCaptions {
    height: 80vh;
    overflow: hidden;
}

@media screen and (max-width: 480px) {
    #carouselExampleCaptions {
        height: auto;
    }
}

#carouselExampleCaptions .carousel-caption {
    text-align: left;
    top: 25%;
}

#carouselExampleCaptions .carousel-caption h2 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
}

#carouselExampleCaptions .carousel-caption p {
    font-size: 20px;
}



@media screen and (max-width: 480px) {
    #carouselExampleCaptions .carousel-caption h2 {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    #carouselExampleCaptions .carousel-caption {
        text-align: center;
        top: 55%;
    }
}


/*
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}

.carousel-inner .carousel-item &gt; img {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}
*/


/*--------------------------------------------------------------
# Home about area
--------------------------------------------------------------*/
/*
.deco-bdr-area {
    position: relative;
}

.deco-bdr {
    position: absolute;
    height: 450px;
    width: 500px;
    top:50px;
    right: -30px;
    z-index: -1;
    background: #f7f7f7;
    box-shadow: 0 2px 10px rgba(130,24,44,0.10), 0 2px 10px rgba(130,24,44,0.10);
}

.deco-bdr-area img {
    position: absolute;
    left: -30px;
    top: -120px;
    z-index: 9;
}
*/

.image-shadow {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10), 0 10px 10px rgba(0, 0, 0, 0.10);
    border-radius: 15px;
}

.abt-txt-area {
    padding: 0px 50px;
}

.abt-txt-area p {
    font-size: 18px;
    line-height: 38px
}

.abt-txt-area h2 {
    color: var(--color-secondary);
    font-size: 40px;
    position: relative;
    font-weight: 600;
}


.abt-txt-area span {
    color: var(--color-heading);
}

.abt-txt-area p {
    color: var(--color-bodyFont);
}

@media screen and (max-width: 480px) {

    .abt-txt-area h2 {
        font-size: 38px;
    }

    .deco-bdr-area img {
        position: static;
    }

    .abt-txt-area {
        padding: 15px;
    }

    .deco-bdr {
        display: none;
    }
}


/*--------------------------------------------------------------
# Home Services area
--------------------------------------------------------------*/
.hover {
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
    box-shadow: 0 1px 3px rgba(42, 90, 169, 0.12), 0 1px 2px rgba(0, 152, 214, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    min-height: 550px;
    margin: 10px;
    border-radius: 15px;
}

@media screen and (max-width: 1366px) {
    .hover {
        min-height: 420px;
    }
}

@media screen and (max-width: 480px) {
    .hover {
        min-height: 360px;
    }
}

.hover:hover {
    box-shadow: 0 10px 20px rgba(42, 90, 169, 0.10), 0 10px 20px rgba(42, 90, 169, 0.10)
}

.hover-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    transition: all 0.4s;
}

.hover img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.hover-content {
    position: relative;
    z-index: 99;
}

.hover-1 img {
    width: 105%;
    position: absolute;
    top: 0;
    /*    left: -5%;*/
    transition: all 0.3s;
}

.hover-1-title {
    font-size: 1.75rem;
}

.hover-1-content {
    position: absolute;
    left: 0;
    z-index: 99;
    transition: all 0.4s;
    top: 35%;
    margin: auto;
    padding: 2rem !important;
}

@media screen and (max-width: 768px) {
    .hover-1-content {
        top: inherit;
        bottom: 0;
    }
}

.hover-1 .hover-overlay {
    background-image: linear-gradient(45deg, rgba(130, 24, 44, 0.4), rgba(82, 46, 46, 0.4));
}

.hover-1-description {
    transform: translateY(0.5rem);
    transition: all 0.4s;
    opacity: 1;
}

.hover-1:hover .hover-1-content {
    bottom: 2rem;
}

.hover-1:hover .hover-1-description {
    opacity: 1;
    transform: none;
}

.hover-1:hover img {
    left: 0;
    transform: scale(1.1);
}

.hover-1:hover .hover-overlay {
    background-image: linear-gradient(45deg, rgba(130, 24, 44, 0.9), rgba(255, 255, 255, 0.2));
    transition: all ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
    transition: 0.3s;
    height: 100%;
    /* overflow: hidden; */
    position: relative;
    display: flex;
    flex-direction: column;
}

.recent-posts .post-box .post-img {
    overflow: hidden;
    position: relative;
}

.recent-posts .post-box .post-img img {
    transition: 0.5s;
}

.recent-posts .post-box .meta {
    margin-top: 15px;
}

.recent-posts .post-box .meta .post-date {
    font-size: 15px;
    font-weight: 400;
    color: #f3f3f3
}

.recent-posts .post-box .meta .post-author {
    font-size: 15px;
    font-weight: 400;
    color: #f3f3f3;
}

.recent-posts .post-box .post-title {
    font-size: 18px;
    color: #f3f3f3;
    font-weight: 700;
    margin: 15px 0 0 0;
    position: relative;
    transition: 0.3s;
}

.recent-posts .post-box p {
    margin: 15px 0 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.recent-posts .post-box .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    margin-top: 15px;
}

.recent-posts .post-box .readmore i {
    line-height: 0;
    margin-left: 4px;
    font-size: 18px;
}

.recent-posts .post-box:hover .post-title {
    color: #f3f3f3;
}

.recent-posts .post-box:hover .post-img img {
    transform: scale(1.1);
}



/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/


.testimonial .carousel-inner .carousel-caption {
    position: static;
    padding: 30px 100px;
    min-height: 120px;
}

.testimonial .carousel-indicators {
    bottom: -35px;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    /*    background-color: #222428;*/
    padding: 20px 0 0;
    background-image: url('../images/ftr-bg.jpg');
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}

.ftr-head {
    color: var(--color-secondary);
    font-size: 24px;
    margin: 10px 0;
    font-weight: 500;
    letter-spacing: 1px;
}

@media screen and (max-width: 480px) {
    .ftr-head {
        font-size: 26px;
        margin: 20px 0 10px;
    }
}

.link-list li {
    word-break: break-all;
    line-height: 1.4;
    padding: 5px 0;
}

.link-list li:before {
    content: '\f105';
    font-family: FontAwesome;
    font-size: 14px;
    margin-right: 10px;
    color: #e6e0cf;
}

.link-list li a {
    color: #ffeee3;
    font-size: 16px;
    font-family: var(--font-optional);
    transition: all 0.2s ease 0s;
}

@media screen and (max-width: 480px) {
    .link-list li {
        padding: 8px 0;
    }

    .link-list li a {
        font-size: 16px;
    }
}

.link-list li:hover a,
.link-list li:focus a {
    text-decoration: none;
    color: #aaa;
    padding-left: 5px;
}

.link-list li.indent {
    margin-left: 25px;
}

.connect {
    color: #ffeee3;
    font-size: 14px;
    line-height: 28px;
    font-family: var(--font-optional);
}

@media screen and (max-width: 480px) {
    .connect {
        font-size: 16px;
        line-height: 30px;
    }
}

.social-icon-area {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    display: block;
}

.social-icon-area ul li {
    float: left;
    padding: 0 7px;
}

.social-icon-area ul li a {
    font-size: 20px;
    color: #ffeee3;
    transition: all ease-in-out 0.3s;
}

.social-icon-area ul li:hover a {
    color: #aaa;
}

.cpyr8-area {
    border-top: 1px solid #555;
}

.cpyr8-area p {
    text-align: center;
    color: #ffeee3;
    line-height: normal;
    font-size: 14px;
    font-family: var(--font-optional);
    margin: 0 auto;
    letter-spacing: 0.1rem;
}



.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
}

@media screen and (max-width: 480px) {
    footer {
        text-align: center;
    }

    .social-icon-area {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-center {
        text-align: center;
    }
}

/*
.cpyr8 {
    background-color: #262c30;
}

.cpyr8 p {
    text-align: center;
    color: #fff;
    line-height: normal;
    font-size: 14px;
    font-family: var(--font-optional);
    margin: 15px auto;
    letter-spacing: 0.1rem;
}
*/

.event-container {
    margin-bottom: 30px;
    margin-top: 30px;
}

.event-container img {
    border-radius: 15px;
}

.event-inner {
    margin-top: 15px;
    position: relative;
    padding: 5px 26px 36px;
    border-left-width: 1px;
    border-left-style: solid;
    border-right-width: 0;
    border-right-style: solid;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    background-color: #fff;
}

.event-inner::before {
    content: '';
    width: 100%;
    height: 1px;
    margin: auto !important;
    position: absolute;
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
}

.event-inner::after {
    content: '';
    width: 90%;
    height: 5px;
    margin: auto !important;
    position: absolute;
    left: auto;
    right: 0;
    top: auto;
    bottom: -2px;
    background-color: #fff;
}

.readmoregap .event-inner::after{
    width: 94%;
}

.event-inner h3 {
    font-size: 28px;
    line-height: 48px;
    font-weight: normal;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
    letter-spacing: 0;
    color: var(--color-secondary);
}

.event-inner .read-more {
    position: absolute;
    padding: 0 26px;
    bottom: -20px;
    top: auto;
    z-index: 1;
}



.scrollup {
    width: 40px;
    height: 40px;
    opacity: 0.3;
    position: fixed;
    bottom: 50px;
    right: 20px;
    display: none;
    text-indent: -9999px;
    background: url(../images/back-to-top_off.gif) no-repeat;

}

.modal-title {
    font-size: 28px;
}

.mem-profile {
    font-size: 18px;
    text-align: center;
    margin: 10px 0;
}

.form-group .wpcf7-form-control-wrap .walcf7-datepicker {
    padding: 10px 15px;
    height: 46px;
    border-radius: 2px;
    border: 1px solid #c1c1c1;
    font-size: 16px;
    color: #616161;
    background: #fff;
    border-radius: 20px;
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-group .wpcf7-form-control-wrap .walcf7-datepicker::placeholder {
    color: #6c757d;
    opacity: 1;
}


.modal-dialog {
    max-width: 768px;
    width: 100%;
}


.mem-bullet{padding-left: 30px;}
.mem-bullet li{list-style: disc;}

.videos h4{font-size: 18px;}

.underlineText {text-decoration:underline;}</pre></body></html>