/*
font-family:"europa";
font-family:"mencken-std";
font-family:"mencken-std-head";
font-family:"mencken-std-head-compress";
font-family:"mencken-std-narrow";
font-family:"mencken-std-text";
*/

:root {
    --font-main: "europa";
    --font-secondary: "mencken-std";
    --font-mecken-narrow: "mencken-std-narrow";
    
    --color-main: #4E2D18;
    --color-secondary: #112921;
    --color-light-green: rgba(77, 100, 67, 0.3);
    --color-highlight: #4D6443;
    --color-beige: #CBB99D;
    --color-brown: #8B6341;
    --color-white: #ffffff;    

    color-scheme: light dark;

   
    --fs-96: clamp(40px, 5vw, 96px);
    --fs-84: clamp(35px, 4.375vw, 84px);
    --fs-68: clamp(33px, 3.542vw, 68px);
    --fs-64: clamp(33px, 3.333vw, 64px);
    --fs-58: clamp(32.5px, 3.021vw, 58px);
    --fs-50: clamp(32px, 2.604vw, 50px);
    --fs-48: clamp(31.5px, 2.5vw, 48px);
    --fs-45: clamp(31px, 2.344vw, 45px);
    --fs-42: clamp(30px, 2.188vw, 42px);
    --fs-40: clamp(30px, 2.083vw, 40px);
    --fs-39: clamp(27px, 2.031vw, 39px);
    --fs-36: clamp(25px, 1.875vw, 36px);
    --fs-35: clamp(24.5px, 1.823vw, 35px);
    --fs-32: clamp(24px, 1.667vw, 32px);
    --fs-30: clamp(23.5px, 1.563vw, 30px);
    --fs-29: clamp(23px, 1.51vw, 29px);
    --fs-28: clamp(22.5px, 1.458vw, 28px);
    --fs-27: clamp(22px, 1.406vw, 27px);
    --fs-26: clamp(21.5px, 1.354vw, 26px);
    --fs-24: clamp(16px, 1.25vw, 24px);
    --fs-22: clamp(16px, 1.146vw, 22px);
    --fs-20: clamp(16px, 1.042vw, 20px);
    --fs-19: clamp(16px, 0.99vw, 19px);
    --fs-18: clamp(16px, 0.938vw, 18px);
    --fs-17: clamp(14px, 0.885vw, 17px);
    --fs-16: clamp(14px, 0.833vw, 16px);
}

[data-theme="dark"] {
    --section-bg: var(--color-secondary);
    --section-text: var(--color-white);
}

html, body {
    position: relative;
    width: 100%;
    min-height: 100%;
}
.scroll-container {
  scroll-behavior: smooth;
}
body {
    font-family: var(--font-main);
    font-size: var(--fs-24);
    color: var(--color-main);
}

a { color: inherit; text-decoration: none; }
a:focus, a:hover{ /*outline:none;*/ color:inherit; text-decoration: none;}
a, a:before, a:after, a img, input[type="submit"], button, a *{
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
img {
    max-width:100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}
.border-radius-none {
    border-radius: 0;
}
.border-radius-20 {
    border-radius: 20px;
}
.border-radius-100 {
    border-radius: 100%;
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6  {
    margin: 0;
    font-family: var(--font-mecken-narrow);
    color: var(--color-secondary);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 24px;
}
/*.text-white h1,  .text-white h2,  .text-white h3,  .text-white h4,  .text-white h5,  .text-white h6, .text-white p, .text-white ul, .text-white a  {
    color: var(--color-white);
}
.text-main h1,  .text-main h2,  .text-main h3,  .text-main h4,  .text-main h5,  .text-main h6, .text-main p, .text-main a, .text-main a.eyebrow, .text-main ul, .text-main {
    color: var(--color-main);
}*/
h1, .h1  {
    margin-bottom: 20px;
    line-height: 1.03;
    font-size: var(--fs-96);
}

.h2, h2 {
    font-size: var(--fs-64);
    margin-bottom: 32px;
    text-transform: uppercase;
}
h3, .h3 { font-size: var(--fs-40); }
h4, .h4 { font-size:var(--fs-27); margin-bottom: 24px;}
.fw-semibold { font-weight: 600; }

p, ul {
    margin-bottom: 30px;
    color: var(--color-main);
    font-size: var(--fs-24);
    line-height: 1.25;
}

.fs-16 { font-size: var(--fs-16); }
.fs-18 { font-size: var(--fs-18); }
.fs-20 { font-size: var(--fs-20); }
.fs-24 { font-size: var(--fs-24); }
.fs-27 { font-size: var(--fs-27); }
.fs-40 { font-size: var(--fs-40); }
.font-secondary {
    font-family: var(--font-secondary);
}
.font-main {
    font-family: var(--font-main);
}
.bg-dark-green {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.bg-dark-green a, .bg-dark-green ul {
    color: inherit;
}
section.bg-dark-green {
    border-radius: clamp(35px, 3.646vw, 70px) clamp(35px, 3.646vw, 70px) 0 0;
}
.bg-light-green {
    background-color: var(--color-light-green);   
}
.bg-beige {
    background-color: var(--color-beige);
}
.bg-beige h2, .bg-white h2 {
	color: var(--color-secondary);
}
.bg-brown {
    background-color: var(--color-brown);
}
.bg-highlight {
    background: var(--color-highlight)!important;
}
.color-highlight {
    color: var(--color-highlight)!important;
}
.color-dark-green {
    color: var(--color-secondary);
}
.section-bg {
    top: 0; right: 0; left: 0; bottom: 0; 
    z-index: -1;
    position: absolute;
}
.w-leaf {
    position: relative;
    overflow: hidden;
}
.w-leaf:after,
.w-leaf:before {
    content: '';
    background: transparent url(assets/images/leaf-top.png) no-repeat center center / contain scroll;
    position: absolute;
    max-width: clamp(300px, 47.292vw, 908px);
    width: 100%;
    min-height: clamp(400px, 51.302vw, 985px);
    pointer-events: none;
}
.w-leaf:before {
    top: -298px;
    left: -25px;
}
.w-leaf:after {
    bottom:-154px;
    right: 0;
    z-index: -1;
    background: transparent url(assets/images/leaf-bottom.png) no-repeat center center / contain scroll;
}
@media only screen and (max-width: 767px) {
    .w-leaf:before {
        top: -90px;
        right: 0;
    }
    .w-leaf:after {
        bottom:-80px;
    }
}
body.page-id-41 .w-leaf::before, body.home .bg-dark-green.w-leaf:before {
    background: transparent url(assets/images/leaf-top-2.png) no-repeat center center / contain scroll;
}
hr {
    margin: 33px 0;
}
.alignright {
    float: right;
}
.alignleft {
    float: left;
}
section {
    padding: clamp(80px, 11.852vh, 128px) 0;
    overflow: hidden;
    z-index: 2;
}
section .container > .row {
    gap: clamp(20px, 2.552vw, 49px);
}
section .container > .row.gap-0 {
    gap: 0;
}
section * {
    color: inherit;
}

.bg-radius {
    border-radius: 15px;
    overflow: hidden;
}
.padding-y {
    padding: clamp(80px, 11.852vh, 128px) 12.5px;
}
.container, .small.container, .big.container {
    width: 98%;
    max-width: 100%;
}
.d-flex.container, .d-flex.container-fluid{
    justify-content: space-between;
}
@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1540px;
        width: 80.208333%;
    }
    .small.container {
        max-width: 1304px;
        width: 67.916667%;
    }
    .big.container {
        max-width: 1728px;
        width: 90%;
    }
}
@media only screen and (max-width: 1921px) {
    .container-fluid {
        max-width: 1920px;
        margin: 0 auto!important;
    }
}
.button {
    font-size: var(--fs-24);
    color: var(--color-white)!important;
    line-height: 1;
    padding: clamp(15px, 1.852vh, 20px) clamp(15px, 1.563vw, 30px);
    background: var(--color-secondary);
    border-radius: 15px;
    display: inline-block;
    border: none;
}
.button:hover, .bg-dark-green .button, .btn--brown,
.bg-beige .button:hover, .btn--green:hover {
    background: var(--color-brown);
}
.btn--green, .bg-beige .button {
    background: var(--color-secondary);
}
.bg-dark-green .button:hover, .btn--green:hover, .btn--brown:hover { 
    background: #4D6443; 
}

.pagination {
    column-gap: 28px;
}
.pagination a {
    color: var(--color-highlight);
}
.page-numbers:not(.prev.page-numbers, .next.page-numbers) {
    display: none;
}
.pagination .next, .pagination .prev {
    background: transparent;
    width: clamp(30px, 2.292vw, 44px);
    height: clamp(30px, 2.292vw, 44px);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: var(--color-white);
    background: var(--color-highlight);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}
.pagination .next:hover, .pagination .prev:hover {
    background: var(--color-secondary);
}
.object-fit-cover {
    object-fit: cover;
    object-position: center center;
}
.object-fit-contain {
    object-fit: contain;
    object-position: center center;
}

.eyebrow {
    font-family: var(--font-main);
    font-size: var(--fs-24);
    background: transparent;
/*    border-radius: clamp(15px, 1.563vw, 30px);*/
    border-radius: 30px;
    overflow: hidden;
    border: solid 1px #E1E6EA;
    display: inline-block;
    padding: 15px 32px;
    text-transform: uppercase;
    margin-bottom: clamp(25px, 2.656vw, 51px);
    color: inherit;
}
.bg-beige .eyebrow,
.bg-white .eyebrow, .eyebrow--beige {
    border: solid 1px var(--color-main);
}
.eyebrow--beige {
	border-color: var(--color-beige);
	color: var(--color-beige)!important;
}


.border-line { border: solid 1px #4E2D18; }
.border-line-left { border-left: solid 1px #4E2D18; }
.border-line-right { border-right: solid 1px #4E2D18; }
.border-line-bottom { border-bottom: solid 1px #4E2D18; }
.border-line-top { border-top: solid 1px #4E2D18; }

.border-line-light { border: solid 1px #8B6341; }
.border-line-left-light { border-left: solid 1px #8B6341; }
.border-line-right-light { border-right: solid 1px #8B6341; }
.border-line-bottom-light { border-bottom: solid 1px #8B6341; }
.border-line-top-light { border-top: solid 1px #8B6341; }


.position-relative { 
    position: relative;
    z-index:2; 
}
.slick-dots {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 19px;
    margin-bottom: 15px;
    margin-top: 20px;
}
.slick-dots li button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #C6C7CA;
    border: none;
    padding: 0;
    text-indent: -9999px; /* hides any text */
}
.slick-dots li.slick-active button {
    background: var(--color-highlight);
}
.slick-arrow {
    font-size: var(--fs-26);
    background: transparent;
    color: #3F495F;
    border: none;
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-arrow:hover {
    border-color: #3F495F;
}
.custom-dots {
    display: flex;
    justify-content: center;
    gap: 19px;
    margin: 0;
}
.custom-dots li {
    height: 15px;
}
.custom-dots li button {
    height: 15px;
    width: 15px;
    background-color: #4D6443;
    /*border: none;
    padding: 0;*/
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 100%;
    margin: 0;
    border-radius: 100%;
}
.custom-dots li.slick-active button {
    background-color: var(--color-secondary);
}
@media only screen and (min-width: 769px) {   }

/*END GENERAL*/

/*HEADER*/
.header {
    left: 0;
    right: 0;
    top: 0;
    z-index: 101;
    position: absolute;
}
.header-wrapper {
    padding: clamp(30px, 4.63vh, 50px) 0;
}
.header-wrapper:after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) -7.45%, rgba(0, 0, 0, 0) 65.93%);
    display: block;
    width: 100%;
    min-height: 216px;
    z-index: -1;
}
a.logo {
    width: 100%;
    max-width: 186px;
    flex: 0 0 auto;
    display: block;
}
.logo img {
    width: 100%;
    border-radius: 0;
}
.logo:hover {
    opacity: .8;
}
.navigation {}
.navigation ul {
    padding-left: 0;
}
.navigation ul#menu-main-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.navigation ul li {
    display: inline-block;
    margin-right: 15px;
}
.navigation ul li:last-child {
    margin-right: 0;
}
.navigation ul li a, .footer-nav ul li a {
    position: relative;
    font-weight: 400;
    text-decoration: none;
    line-height: 1;
    font-size: var(--fs-20);
    color: var(--color-white);
    text-transform: uppercase;
}
.navigation ul li a:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 0;
    border-top: solid 1px var(--color-beige);
    margin: 0 auto; 
}
.navigation ul li > a:hover::before {
    width: 100%;
}
.menu-item-has-children:after {
/*    content: "\f0d7";*/
    font-family: var(--fa-font-solid); 
    font-weight: 700;
    color: var(--color-main);
    display: inline-block;
    transform: scaleY(1);
    transition: transform 0.3s ease;
}
.menu-item-has-children:hover:after {
    color: var(--color-highlight);
    transform: scaleY(-1);
}
.menu-item-has-children {
    position: relative;
}
.navigation ul li a:hover {
/*    color: var(--color-highlight);*/
}
.navigation ul li.current-menu-item a:before,
.navigation ul li:hover > a:before {
/*    width: 100%;*/
    z-index: 2;
}
.navigation ul li ul.sub-menu {
    position: absolute;
    padding-top: 5px;
    transition: .15s linear;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    z-index: 1;
    padding-top: 10px;
    z-index: 999;
}
.navigation ul li:hover > ul.sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0px);
}
.navigation ul li ul.sub-menu li {
    display: block;
    margin: 0;
}
.navigation ul li ul.sub-menu li a {
    display: block;
    border-bottom: none;
    text-transform: capitalize;
    padding: 5px 15px;
    transition: .3s linear;
    background: var(--color-primary);
    color: var(--color-white);
    letter-spacing: unset;
    font-size: var(--fs-16);
    line-height: 1;
    padding: 10px;
    position: relative;
    padding-right: 30px;
    border-radius: 2.5px;
    margin-bottom: 2.5px;
    width: 200px;
    font-weight: 400;
    letter-spacing: unset;
}
.navigation ul li ul.sub-menu li a:hover {
    background: var(--color-highlight);
    color: var(--color-white);
}
@media only screen and (min-width: 1400px) {
    .navigation ul li {
        margin-right: clamp(10px, 3.333vw, 64px);
    }
}
/*END HEADER*/

/*FOOTER*/
footer.footer {
    padding-top: clamp(50px, 7.13vh, 77px);
    font-size: var(--fs-20);
    line-height: 1.75;
    text-transform: uppercase;
    font-family: var(--font-main);
}
a.footer-item-logo {
    width: 100%;
    max-width: 210px;
}
footer.footer .footer-item__heading {
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--fs-20);
    line-height: 1;
    margin-bottom: 26px;
    text-transform: uppercase;
}
footer.footer a {
	font-size: var(--fs-20);
	font-weight: 400;
}
footer.footer a:hover {
    opacity: .8;
}
footer.footer ul.list-unstyled {
    margin-bottom: 0;
}
.footer-item .logo img {
    width: 100%;
    max-width: 100%;
}
.footer-item i { 
    margin-right: 15px;
}
.footer__bottom {
    padding: clamp(20px, 30px, 30px) 0;
    margin-top: clamp(30px, 5.37vh, 58px);
}
.footer__bottom, .footer__bottom ul li a, .lfs a, .copy {
    color: var(--color-white);
    font-size: var(--fs-24);
    font-weight: 400;
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) {
    a.footer-item-logo {
        max-width: clamp(180px, 17.5vw, 336px);
    }
	.footer-item-col-logo {
		margin-right: clamp(30px, 5.375vw, 180px);
	}
}
@media only screen and (max-width: 768px) {
    .footer-item-logo {
        max-width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .footer-item-web-info {
        padding: 20px 0 0; 
    }
    footer ul.services-menu li, footer .phone, footer .email {
        padding-bottom: 20px;
    }
    .footer__bottom ul {
        justify-content: center;
    }
}




/*HOMEPAGE*/
#home-banner {
    height: 100%;
    height: 100vh;
    max-height: 942px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#home-video-bg,
#home-video-bg video {
    object-fit: cover;
    object-position: center;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #02559A;
}
#home-video-bg video {
    opacity: .85;
}
#home-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    margin: 0 auto;
    bottom: 0;
    overflow: hidden;
    opacity: .40;
}
#home-banner h1 {
	font-size: var(--fs-64);
}
#home-banner p {
/*     font-size: var(--fs-32); */
	font-size: var(--fs-18);
}
#home-banner .col-btn {
    margin-top: clamp(20px, 6.204vh, 67px);
    margin-bottom: clamp(50px, 14.074vh, 152px);
}
.banner {
    position: relative;
    z-index: 2;
    background: #4C3F39 none no-repeat center center / cover scroll;
}
.banner:after {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    z-index: -1;
    pointer-events: none;
}
#page-banner {
    background: #4C3F39 none no-repeat center center / cover scroll;
    min-height: clamp(350px, 40.556vh, 438px);
    padding-bottom: clamp(80px, 9.63vh, 104px);
    display: flex;
    align-items: flex-end;
}
#page-banner h1 {
     text-transform: uppercase;
}
@media only screen and (max-width: 500px) {}

.badge-list .d-flex {
    column-gap: clamp(50px, 8.646vw, 166px);
}
.badge-item img {
    border-radius: 0;
    margin: 3px 0;
}
.top-heading-content {
    margin-bottom: clamp(40px, 5.648vh, 61px);
}
.text-center .top-heading-content p {
    max-width: 54ch;
    margin: 0 auto 30px;
}
.why-item-list:after {
	content:'';
	position: absolute;
	left:0; right: 0;
	width: 100%;
	background: transparent url(assets/images/bg-dots.png) no-repeat center center / contain scroll;
	min-height: 361px;
	top: 0;
	z-index: -1;
}
.why-item {
    margin-bottom: clamp(40px, 5.648vh, 61px);
}
.why-item__img img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    object-fit: cover;
    max-width: clamp(300px, 22.5vw, 432px);
    border-radius: 100%;
}
.why-item__text p:first-of-type {
    margin-bottom: 11px;
    font-size: var(--fs-24);
    text-transform: uppercase;
    color: var(--color-secondary);
}
.why-item__text p {
    font-size: var(--fs-20);
}   
.item-text-content .content {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.item-text-content .content.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.testimonial-item {
    padding: 57px 28px 27px;
    font-size: var(--fs-17);
    color: var(--color-main);
}
.testimonial-item h3 {
	min-height: 60px;
}
.testimonial-text {
    display: -webkit-box;       
    -webkit-line-clamp: 5;      
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;  
	font-size: var(--fs-20);
}

@media only screen and (max-width: 1200px) {
    .testimonial-col:nth-child(n+4) {
        display: none;
    }
}
@media only screen and (max-width: 991px) {
    .testimonial-col:nth-child(n+3) {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .testimonial-col:nth-child(n+2) {
        display: none;
    }
}
.image-wrap {
    border-radius: 20px;
    border: solid 1px #8B6341;
    position: relative;
    padding: 15px;
    margin-bottom: clamp(20px, 3.704vh, 40px);
}
.alternate-sections.w-leaf {
    padding-bottom: clamp(130px, 16.019vh, 173px);
}
.alternate-sections.bg-dark-green {
    margin-top: clamp(-94px, -8.704vh, -50px);
    position: relative;
}
.alternate-sections img.img-fluid {
    width: 100%;
    
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.alternate-sections strong {
/*     color: var(--color-secondary); */
}
.image-wrap:after {
    content: '';
    position: absolute;
    top: 15px; left: 15px; bottom: 15px; right: 15px;
    background: linear-gradient(180deg, rgba(78, 45, 24, 0.25) 0%, rgba(17, 41, 33, 0.25) 100%);
    border-radius: 20px;
    margin: 0 auto;
    z-index: 2;
}
.alternate-sections .alignleft,
.alternate-sections .alignright {
    max-width: clamp(400px, 37.604vw, 722px);
}

@media only screen and (min-width: 768px) {
    .alternate-sections .image-wrap.float-left { margin-right: 40px; }
    .alternate-sections .image-wrap.float-right { margin-left: 40px;}
}
.row-wrap {
    border-bottom: solid 1px #8B6341;
    padding-bottom: clamp(50px, 10.648vh, 115px);
    margin-bottom: clamp(50px, 10.648vh, 115px);
}
.row-wrap:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.what-we-do-content h2 {
    text-transform: unset;
}
.what-we-do-content video {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 863 / 497;
    min-height: 497px;
    object-fit: cover;
    object-position: center top;
}
.featured-text-list {
    margin-top: clamp(50px, 7.407vh, 80px);
}
.featured-text-list .text-uppercase:first-child {
    flex: 0 0 auto ;
}
.featured-text-list .d-lg-flex {
    flex-direction: row;         
    justify-content: space-between; 
    align-items: flex-start;                    
    flex-wrap: nowrap;            
}
.featured-text-list .d-lg-flex strong {
    flex: 1 1 0;              
    min-width: 0;              
    white-space: normal;       
    box-sizing: border-box;    
}

@media only screen and (max-width: 440px) {
    .what-we-do-content video {
        aspect-ratio: 1/1;
        min-height: unset;
    }
}
.alternate-img-text h2 {
    color: var(--color-brown);
}
/*PAGE ABOUT*/
body.page-id-53 section.def-template {
    padding-top: clamp(100px, 12.685vh, 137px);
}
body.page-id-53 .w-leaf:before {
    top: -80px;
}
body.page-id-53 .alternate-img-text h2 {
    text-transform: capitalize;
}
body.page-id-53 .alternate-img-text .row-wrap {
    text-align: left!important;
}

body.single-post iframe {
    aspect-ratio: 16 / 9;
}
.single-temp a:not(.button) {
    text-decoration: underline;
}
.single-temp .alignleft,
.single-temp .alignright {
    display: block;
    margin-block: 30px;
    float: unset;
}
@media only screen and (min-width: 767px) {
    .single-temp .alignleft {
        margin-right: 30px;
        float: left;
    }
    .single-temp .alignright {
        margin-left: 30px;
        float: right;
    }
    .single-temp .alignleft,
    .single-temp .alignright {
        margin-top: 0;
    }
}
.blog-template .col-item {
    color: var(--color-secondary);
}
.blog-template .col-item h3 {
    color: var(--color-main);
    margin-bottom: 18px;
}
.blog-template .border-line-top, .col-ft-img {
    padding-block: clamp(50px, 7.407vh, 80px);
}
.blog-template .col-item:nth-child(1) . {
    padding-right: 0;
}
.blog-template .col-item:nth-child(1), .blog-template .col-item:nth-child(2) {
    border: none;
}


.featured-carousel-wrapper .slick-list {
    padding: 100px 0 49px!important;
}
.featured-carousel-wrapper .slick-slide {
/*    transform: scale(.95);*/
    transition: transform 0.4s ease, filter 0.4s ease;
    opacity: 0.6;
    filter: blur(5px);
    position: relative;
}
.blog-carousel-item {
    transform: scale(1);
    transition: transform 0.4s ease;
    padding: 39px clamp(15px, 3.438vw, 66px) clamp(30px, 4.907vh, 53px);
}

.featured-carousel-wrapper .slick-center {
    filter: blur(0);
    opacity: 1;
    z-index: 5;
}


.blog-carousel-item .blog-item__img {
    border-radius: 20px;
}
.blog-carousel-item h3 {
    color: var(--color-beige)!important;
}
@media only screen and (min-width: 767px) {
    .featured-carousel-wrapper .slick-center .blog-carousel-item {
        transform: scale(1.2);
    }
}

@media only screen and (min-width: 767px) {
    .blog-template .col-item:nth-child(odd) .card-item,
    .event-ft-content {
        padding-right: clamp(30px, 4.167vw, 80px);
    }
    .blog-template .col-item:nth-child(even) .card-item {
        padding-left: clamp(30px, 4.167vw, 80px);
    } 
    .blog-template .col-item:nth-child(odd) .card-item {
        border-right: solid 1px var(--color-main);
    } 
}
.col-about-img {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
.col-about-img img {
	opacity: .7;
}
.col-about-img:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
    background: #4C3F39;
    display: block;
    height: 100%;
    width: 100%;
}
section.upcoming-events .events-img {
	border-radius: 20px;
	overflow: hidden;
}
section.upcoming-events .events-img img {
	width: 100%;
}
section.upcoming-events .events-img:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    background: rgba(77, 100, 67, .2);
    display: block;
    height: 100%;
    width: 100%;
}
.event-item h2 {
    color: var(--color-secondary);
}
.event-item p {
    color: var(--color-brown);
}

.event-info-box {
    max-width: 50%;
    width: 100%;
}
.event-info .col img {
    padding: 10px;
    margin: clamp(0px, var(--fs-20), 20px) ;
    border: solid 1px var(--color-brown);
    border-radius: 20px;
}
.page-events .event-location strong {
    text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
    .event-info .col img {
        margin: 0 auto;
        display: block;
        width: 100%;
        margin-block: clamp(0px, var(--fs-20), 20px) ;
    }
    .event-info-box {
        max-width: 100%;
    }
}

body.single-services .img-wrap {
	border-radius: 100%;
	aspect-ratio: 1/1;
	overflow: hidden;
}
body.single-services .img-wrap img {
	width: 100%;
	height: 100%;
}

@media only screen and (min-width: 767px) {
	body.single-services .img-wrap {
		max-width: 40%;
		margin-right: 40px;
		margin-bottom: 40px;
	}
}