/*
Theme Name: Fire
Author: Dimitri

Fonts in Use:
    font-family: 'Racing Sans One', cursive;
    font-family: 'Roboto', sans-serif;
*/
* {box-sizing: border-box;}
:root {
 --red: #ec524b; /* #9f130f #aa2d29 */
 --red2: #8e1412;
 --gold: #f1a23c;
 --text1: #141414;
 --brown: #261c02;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #c1c1c1 !important;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #c1c1c1 !important;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: #c1c1c1 !important;
}

html,
body,
h1,
h2,
h3 {margin:0;padding:0;font-weight: normal;}

h1,
h2 {font-family: 'Racing Sans One', cursive;}

h3 {
    width: 100%;
    font-weight: bold;
    color: #e5a048;
    margin: 20px 0 0;
}



body {
	font-family: 'Roboto', sans-serif;
	font-size: 1.2em;
	line-height: 1.2em;
	color: #261c02;
}
img {
	border:none;
}
hr {
    margin: 40px 0;
}

a {
	border:none;
	text-decoration:none;
	outline:none;
    color: rgb(199 46 39 / 75%);
    transition: 0.3s;
}
a:hover {
    color: rgb(199 46 39 / 100%);
}
p {margin: 19px 0;margin: 19px 0;font-size: clamp(1rem, 2vw, 1.1rem);}

.button {
    display: inline-block;
    text-transform: uppercase;
    color: #444d74;
    font-size: 0.9em;
    line-height: 1.3em;
    font-weight: bold;
    font-family: 'Racing Sans One', cursive;
    background: white;
    padding: 7px 10px;
    /* transition:0.3s; */
}
.button:hover {
    color: #546cd6;
    box-shadow: 0 0 10px white;
}


.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0px;
}
.clearfix:before {
	content: " ";
	display: table;
}

.clearfix:after {
	content: " ";
	display: table;
	clear: both;
}


::selection {background: #d2d2d2;color:#292929;}
::-moz-selection {background: #d2d2d2; color:#292929;}
::-webkit-selection {background: #d2d2d2; color:#292929;}







/*HEADER SECTION============================================*/
.header {
    position: absolute;
    z-index: 100;
    top:0px;
    left:0px;
    width:100%;
}
/* .header:after {
    position:absolute;
    content:'';
    left:0;
    top: 0px;
    width:100%;
    height: 240px;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    transition:0.3s;
}
.header.sticky:after {
    height: 150px;
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
} */
.header .wrapper {
    position: absolute;
    width:100%;
    padding: 20px 30px 0px 20px;
    transition:0.3s;
}
header.sticky .wrapper {
    background: rgb(255 255 255 / 90%);
}
.header .center {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin:0 auto;
    height: 80px;
    background: white;
}



 .header .logo {
	position: absolute;
	left: 23px;
	top: 13px;
	display:inline-block;
	margin-bottom: 0px;
	transition: 0.3s;
}
.header .logo img {
	display: block;
	max-width: 160px;
	height:auto;
	transition: 0.3s;
}
.header.stickied  .logo {
	top: 4px;
}
.header.stickied  .logo img {
	width: 90px;
	padding: 5px;
}
.header   .social {
    display: flex;
    margin: 0 0 0 0px;
    padding: 0 0px 0 10px;
    align-items: stretch;
    justify-content: inherit;
    transform-origin: 0% -70%;
    /* border-left: 2px solid rgb(255 255 255 / 27%); */
    transition: 0.3s;
}
.header   .social.selected {
	display:none;
}

.header   .social li {
    display: flex;
    align-items: stretch;
    padding: 0 2px;
}
.header   .social li a {
    display: block;
    color: rgb(0 0 0 / 15%);
    font-size: 1.6rem;
    /* text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.71); */
    transition:0.3s;
    opacity: 1;
    /* line-height: 3.6rem; */
    padding: 0 6px;
}
.header   .social li a:hover {
	opacity: 1;
	color: var(--brown);
}
.header   .social li a i {
    line-height:inherit;
}
.header   .social li.meetingButton {
	/* border-left: 2px solid rgb(255 255 255 / 27%); */
	padding: 0 14px;
	margin-left: 0px;
}
.header   .social li.meetingButton a {
    position: relative;
    font-size: 1.4rem;
    color: white;
    border-radius: 2px;
    padding: 0 11px;

}
.header   .social li.meetingButton a:before {
    position:absolute;
    z-index: -1;
    content:'';
    left:0;
    bottom: -26px;
    width:100%;
    height: 130px;
    background: var(--blue);
    transition: 0.3s;
}
.header   .social li.meetingButton a:hover:before {
    background: var(--blue2);
}




@media (max-width:650px) {

    .header .center .social li {
        display:none;
    }
    .header .center .social li.meetingButton {
        display:block;
    }
}





/* Main Navigation=====styles used from one of my previous  projects===============================*/

.mainNav {
    position: relative;
    z-index: 1000;
    text-align: center;
}
.mainNav .close {
    position: absolute;
    left: 22px;
    top: 11px;
    color:#ec524b;
    font-size: 2.3rem;
    font-weight:bold;
    cursor: pointer;
    opacity:0;
    transition: 0.3s;
}
.mainNav.selected .close {
      opacity:1;
}
.mainNav .smallnav {
    position: absolute;
    bottom:0px;
    left:0px;
    list-style: none;
    width: 100%;
    max-width: 420px;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transform: translate(75px, 0px);
    transition: 0.3s;
}

.mainNav .smallnav li {

}
.mainNav .smallnav li a {
color: white;
margin: 0px 20px;
white-space: nowrap;
}
.mainNav .smallnav li a:hover  {
    color: rgb(255 255 255 / 45%);
}
.mainNav .smallnav.selected {
    visibility: visible;
    opacity: 1;
    transform: translate(0px, 0px);
}

	.mainNav  ul#mainNav__ul {
    display: flex;
    justify-content: flex-end;
    position: relative;
    list-style:none;
    margin: 0 auto;
    padding: 0 0px 0 13px;
    width: 100%;
    text-align: center;
    transform-origin: top center;
    transition: 0.3s;
 }

	.mainNav  ul#mainNav__ul > li {
        position:relative;
        display: inline-block;
        font-weight: bold;
        /* border-left: 1px solid #cfcfcf; */
        flex-grow: 1;
    }

		/* special case reordering the nav ----*/
		.mainNav ul#mainNav__ul > li:nth-child(1) {
			order:1;
		}


    .hamButton {
        position: absolute;
        right: 26px;
        display: flex;
        align-items: end;
        z-index: 10;
        color: white;
        cursor: pointer;
        width: 100px;
    }
    .hamburger {
        display: block;
        position: relative;
        width: 23px;
        height: 3px;
        margin: 9px 0px 0 0px;
        background:#ec524b;
        box-sizing: border-box;
    }
    .hamburger:before {
        position: absolute;
        content:'';
        left:0px;
        top: -8px;
        width: 23px;
        height: 3px;
        background:#ec524b;
    }
    .hamburger:after {
        position: absolute;
        content:'';
        left:0px;
        top: 8px;
        width: 20px;
        height: 3px;
        background:#ec524b;
    }

	/* .mobileMenu {display:none;padding: 0px 11px;font-size: 1.5rem;color: white;} */
    .hamButton span {
        display: inline-block;
        margin-right: 8px;
        pointer-events: none;
        color: var(--brown);
        font-family: 'Racing Sans One', cursive;
    }


    .hamburger {
        /* display: block; */
        /* z-index: 3; */
        /* margin: 14px 0px 0 13px; */
        /* border-radius: 2px; */
        /* width: 39px; */
        /* height: 3px; */
    }
    @media (max-width:380px) {
        .hamButton {
            right: -52px;
        }
        .hamButton:before {
            content:'';
            position: absolute;
            left:0px;
            top:-20px;
            width: 36px;
            height:40px;
            /* background:green; */
        }
        .hamButton span {
           display: none;
        }
        .hamburger {
            margin: 0px 0px 0 0px;
        }
    }
    /* .mobileMenu {order: 1;display:block;position: relative;z-index: 3;} */
    .mainNav {
        pointer-events:none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        order: 1;
        flex-basis: 100%;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 1;
        margin-top: 0px;
        padding-top: 0px;
        border-radius: 0px;
        transition: 0.0s;
    }
    .mainNav:before {
        position: absolute;
        content:'';
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px;
        background: rgb(5 44 154 / 78%);
        border-radius: 3px;
        transform: scale(0.6);
        /* border-radius: 20%; */
        opacity:0;
        transition: 0.3s;
    }
    .mainNav.selected {
        pointer-events:all;
        backdrop-filter: blur(6px);
        transition:0.3s;
    }
    .mainNav.selected:before {
        position: absolute;
        content:'';
        background: rgb(255 255 255 / 68%);
        border-radius: 3px;
        transform: scale(1);
        opacity:1;
        transition: 0.3s;
    }

    .mainNav  ul#mainNav__ul {
        position:relative;
        padding: 0px 0px 0 0;
        /* background: var(--red); */border-radius: 5px;overflow: hidden;
        visibility: hidden;
        opacity: 0;transform: rotateX(90deg);
    }
    .mainNav  ul#mainNav__ul.selected {width: 100%;
        /* border-bottom: solid 8px #00101d; */
        flex-wrap: wrap;visibility: visible;
        opacity: 1;transform: rotateX(0deg);
    }

    .mainNav  ul#mainNav__ul.selected > li {
        float: left;
        width: 100%;
        display:block;
        margin-top: 1px;
    }
    .mainNav  ul#mainNav__ul > li.menu-item-has-children:after {display:none}
    .mainNav  ul#mainNav__ul.selected > li a {font-size: clamp(1.7rem, 5vw, 2.3rem) !important;/* padding-top: 3px; */line-height: 1.5em;white-space:normal;font-family: 'Racing Sans One', cursive;font-weight: normal;transform: translate(0px, 0px);}
    .mainNav  ul#mainNav__ul.selected > li a:hover {
        color:rgb(38 28 2 / 36%);
        transition:0.3s;
    }
    .mainNav  ul#mainNav__ul.selected > li ul {display:flex;visibility: visible;opacity: 1;transform: rotateX(0deg);}
    .mainNav  ul#mainNav__ul:before,
    .mainNav  ul#mainNav__ul:after {display:none;}


    .mainNav  ul#mainNav__ul > li {display:none;margin-top:0px !important;}
    .mainNav  ul#mainNav__ul > li:before {display:none;}
    .mainNav  ul#mainNav__ul > li > a {position:relative;padding: 10px;font-weight: bold;color: #261c02;text-align: center;font-size: clamp(1.3rem, 5vw, 2.2rem)!important;/* border-top: 1px solid rgb(0 14 26 / 22%); *//* box-sizing: border-box; */transform: translate(-30px, 20px);transition: 0.3s;}
    .mainNav  ul#mainNav__ul > li > a:before {display:none;position:absolute;z-index: 10;content:"\f0d8";font-family:'Font Awesome 5 Free';left: 22px;bottom: -14px;font-size: 27px;color: #000000;}
    .mainNav  ul#mainNav__ul > li:nth-child(1) > a {
        border-top: none;
    }
    .mainNav  ul#mainNav__ul > li ul {width: 94% !important;display: none;height:inherit !important;position: relative;top: 0px !important;padding: 0px;margin: 0px 3% 10px 3%;box-sizing: border-box;background: hsla(0, 0%, 100%, 0.23);background: #006db1;display: block;box-shadow: none;border-top: none;}


    /*.mainNav  ul#mainNav__ul > li:first-child:hover ul {height:inherit !important;}*/
    .mainNav  ul#mainNav__ul > li.parent a:before,
    .mainNav  ul#mainNav__ul > li.opened a:before {display:block;}
    .mainNav  ul#mainNav__ul > li ul  li  {width: 33.33%;margin:0;background: none;border-bottom: 2px solid white;border-right: 2px solid white;}
    /*.mainNav  ul#mainNav__ul > li ul  li  a,
    .mainNav  ul#mainNav__ul > li ul  li:hover a {padding:9px 22px 9px 34px !important;letter-spacing: 0px;background: none !important;color: rgba(0, 0, 0, 0.78) !important;line-height: 1.6rem;font-size: 1.3rem !important;border-bottom: 1px solid hsl(0, 0%, 100%);}*/
    .mainNav  ul#mainNav__ul > li:hover ul  li  a {
        /* color: rgba(249, 249, 249, 0.78) !important; */
    }

    .mainNav  .social {
        display:none;
    }

    @media (max-width:650px) {
        .mainNav  .social {
            display: flex;
            position: relative;
            flex-grow: 0;
            position: relative;
            padding: 40px 0px 0 0;
            visibility: hidden;
            opacity: 0;
        }
        .mainNav  .social li.meetingButton {
            display:none;
        }
        .mainNav  .social li a {
            font-size: 2.4rem;
            padding: 0 17px;
            color: #261c0261 !important;
        }
        .mainNav  .social li a:hover {
            color: #261c02bf !important;
        }
        .mainNav.selected  .social {
            visibility: visible;
            opacity: 1;
        }
	}

    @media (max-width:380px) {
        .mainNav .smallnav {
            position: relative;
            flex-direction: column;
        }
        .mainNav .smallnav li a{
            font-size:1.2rem !important
        }
    }






/*BANNER IMAGES============================*/
.dynamic-headers {
    position: relative;
    height:100%;
    overflow: hidden;
    background: black;
}
.home .dynamic-headers {
}
.dynamic-headers:after {
    position:absolute;
    content:'';
    z-index: 2;
    left:0;
    top: 0px;
    width:100%;
    height: 240px;
    /* background: rgb(255,255,255); */
    /* background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); */
    transition:0.3s;
}


.dynamic-headers.stickied {
	padding-top: 58px;
}
.dynamic-headers .rslides {
    margin:0 auto !important;
}
.dynamic-headers .rslides li {
    height: 100%;
    background-size:cover;
    background-position:center center;
}

.dynamic-headers .rslides img {
    /* height: 100% !important; */
    object-fit: cover;
    object-position: center top;
    object-position: center 40%;
    min-height: 300px;
    max-height: 370px;
    opacity: 0.5;
}
.home .dynamic-headers .rslides img {
	min-height: 540px;
	max-height: 820px;
	/* max-height: 90vh; */
	object-position: left center;
}

@media (max-width:550px){
  .home .dynamic-headers .rslides img{
    object-position: 35% 50%;
  }
}

.dynamic-headers .overlay_wrapper {
    position:absolute;
    z-index: 10;
    bottom: 7%;
    width: 100%;
    padding: 0px 30px;
}
.dynamic-headers  .overlay {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	color:white;
}
.dynamic-headers  .overlay h1 {
	display: block;
	font-size: 2.4rem;
	font-size: clamp(1.6rem, 4.3vw, 3.1rem);
	font-weight: 400;
	line-height: 1.2em;
	padding: 25px 0%;
	text-align: left;
	max-width: 510px;
	letter-spacing: 0.2rem;
}

.dynamic-headers  .overlay h1 em {
	display: block;
	padding: 5px 0px 4px 0px;
	font-weight: 400;
	font-size: clamp(2.3rem, 5.9vw, 4.2rem);
	text-transform: uppercase;
	font-style: normal;
	letter-spacing: 0.1rem;
}
.dynamic-headers  .overlay p {
    margin:0;
    max-width: 471px;
    width: 45%;
    text-align: left;
    line-height: 1.2em;
}
.dynamic-headers  .overlay p a {
    display: flex;
    align-items: initial;
    position: relative;
    margin-top: 25px;
    font-size: 1.4rem;
}
.dynamic-headers  .overlay p a img {
    height: 44px;
    width:auto;
    transition:0.3s;
}
.dynamic-headers  .overlay p a span {
    display: flex;
    align-items: center;
    /* display: inline-block; */
    color:white;
    background:var(--red);
    padding: 4px 25px 7px 25px;
    transition:0.3s;
}

.dynamic-headers  .overlay p a:hover span {
    filter: brightness(120%);
}
.dynamic-headers  .overlay p a:hover img {
    filter: brightness(120%);
}


@media (max-width:860px) {
    .dynamic-headers .overlay_wrapper {
        bottom: 10%;
    }
    .dynamic-headers .overlay  {
        align-items: flex-start;
    }
    .dynamic-headers  .overlay h1 {
        width: 95%;
    }
    .dynamic-headers  .overlay p {
        width: 95%;
    }
}
@media (max-width:570px) {
    .home .dynamic-headers .rslides img {
        /* object-position: 69% center; */
    }
}

/*MAIN COntainer===========================================================================*/
.site-main {
    position: relative;
    z-index: 11;
    overflow: hidden;
}




/*Homepage Sections==================================================*/
/*Large video CTAs ===================*/
.large_ctas {
    position: relative;
    background-position: center;
    background-size: cover;
}
.large_ctas:before {
    position: absolute;
    z-index: 2;
    content:'';
    left:0;
    top:0px;
    width:100%;
    height:1px;
    background:white;
}
.large_ctas:nth-child(1):before {
    height:2px;
}
.large_ctas:after {
    position: absolute;
    z-index: 2;
    content:'';
    left:0;
    bottom:0px;
    width:100%;
    height:1px;
    background:white;
}

.large_ctas .center {
    display: flex;
    max-width:1100px;
    margin:0 auto;
}
.large_ctas .center .box {
    position: relative;
    z-index: 1;
    max-width: 457px;
    width: 50%;
    padding: 70px 6%;
    transform: skew(
-9deg
,
0deg
);
}

.large_ctas .center .box .background {
    position: absolute;
    z-index: 0;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: white url(images/checkers-v2.webp) repeat-x center;
    background-size:auto 100%;
}
.large_ctas .center .box .background:before {
    position: absolute;
    content:'';
    left:-15px;
    top:0px;
    height:100%;
    width:15px;
    background:var(--red);
    opacity:0.5;
}
.large_ctas .center .box .background:after {
    position: absolute;
    content:'';
    right:-15px;
    top:0px;
    height:100%;
    width:15px;
    background:var(--red);
    opacity:0.5;
}

.large_ctas .center .box .flash {
    pointer-events: none;
    z-index: -1;
    box-sizing: border-box;
    position: absolute;
    top: 0%;
    left: 50%;
    width: 1px;
    height: 100%;
    background: white;
    opacity: 1;
    transition: 0.0s;
}
.large_ctas .center .box .flash.hovered {
    transform: scaleX(1000) !important;
    opacity: 0 !important;
    transition: 0.4s !important;
}


.large_ctas .box h2 {
    color: var(--red);
    font-size: clamp(2.3rem, 5.2vw, 3.7rem);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    /* font-style: italic; */
    margin: 0 0 36px;
}
.large_ctas .box h3 {
    font-size: 1.6rem;
}
.large_ctas:nth-child(1) .box h3,
.large_ctas:nth-child(3) .box h3 {
    color: var(--red);
}
.large_ctas .box p {
    color: #3a3a3a;
}
.large_ctas .box a {
    display: flex;
    align-items: stretch;
    color:var(--red);
    font-size: 1em;
    transition: 0s;
}



.large_ctas .box a img {
    height: 41px;
    width: auto;
    -webkit-transform: scaleX(-1);
    transform: scaleY(-1);
}
.large_ctas .box a span {
    position: relative;
    left: -1px;
    display: flex;
    align-items: center;
    background:var(--red);
    border-radius: 0px 3px 3px 0px;
    padding: 0px 12px;
    margin: 0 0px 0 0;
}
.large_ctas .box a span i {
    color:white;
    font-size: 1.2em;
}
.large_ctas .box a strong {
    position: relative;
    display:flex;
    align-items: center;
    padding: 0 0 0 20px;

    transition: 0.3s;
}
.large_ctas .box a strong:before {
    position: absolute;
    content:'';
    left: -2%;
    top:0;
    width:0%;
    height:100%;
    border-radius:3px;
    transition: 0.3s;
}
.large_ctas .box a:hover strong {
    padding: 0 15px 0 5px;
    color:white;
}
.large_ctas .box a:hover strong:before {
    z-index: -1;
    width: 102%;
    background: var(--red);
}


/*gold overides--*/

.large_ctas:nth-child(2) .center {
    justify-content: flex-end;
}
.large_ctas:nth-child(2) .center .box .background:before {
    background:var(--gold);
}
.large_ctas:nth-child(2) .center .box .background:after {
    background:var(--gold);
}
.large_ctas:nth-child(2) .box h2 {
    color:var(--gold);
}
.large_ctas:nth-child(2) .box a {
    color:var(--gold);
}
.large_ctas:nth-child(2) .box a img {
    filter: hue-rotate(-326deg) brightness(156%) saturate(0.8);
}
.large_ctas:nth-child(2) .box a span {
    background:var(--gold);
}
.large_ctas:nth-child(2) .box a:hover strong:before {
    background: var(--gold);
}


.large_ctas:nth-child(4) .center {
    justify-content: flex-end;
}
.large_ctas:nth-child(4) .center .box .background:before {
    background:var(--gold);
}
.large_ctas:nth-child(4) .center .box .background:after {
    background:var(--gold);
}
.large_ctas:nth-child(4) .box h2 {
    color:var(--gold);
}
.large_ctas:nth-child(4) .box a {
    color:var(--gold);
}
.large_ctas:nth-child(4) .box a img {
    filter: hue-rotate(-326deg) brightness(156%) saturate(0.8);
}
.large_ctas:nth-child(4) .box a span {
    background:var(--gold);
}
.large_ctas:nth-child(4) .box a:hover strong:before {
    background: var(--gold);
}



@media (max-width:600px) {
    .large_ctas {
        padding: 52vw 0 50px 0;
        background-position: top center;
        background-size: auto 81vw;
        border-top: 2px solid white;
        overflow:hidden;
    }
    .large_ctas .center {
        position: relative;
        z-index: 5;
        margin: 0 10%;
        transform: skew( -4deg, 0deg);
        border-radius: 20px;
    }

    .large_ctas:before {
        position: absolute;
        left:0;
        top: 79.7vw;
        content:'';
        width:100%;
        height: 190vw !important;
        background: rgb(236,75,75);
    }
    .large_ctas:after {
        position: absolute;
        left:0;
        top: 60vw;
        content:'';
        width:100%;
        height:20vw;
        background: rgb(236,75,75);
        background: linear-gradient(0deg, rgba(236,75,75,1) 0%, rgba(236,82,75,0) 100%);
    }

    .large_ctas .center .box .background {
        box-shadow: 1px 1px 13px #00000030;
        border-radius: 6px;
    }
    .large_ctas .center .box .background:before {
        display:none;
    }
    .large_ctas .center .box .background:after {
        display:none;
    }

    .large_ctas:nth-child(2) .center {

        justify-content: flex-start;
    }
    .large_ctas:nth-child(4) .center {
        justify-content: flex-start;
    }
    .large_ctas .center .box {
        width: 100%;
        transform: skew( 0deg, 0deg);
        margin: auto;
        border-radius: 20px;
        padding: 38px 6%;
        /* box-shadow: 1px 1px 13px #00000030; */
        /* overflow: hidden; */
    }

    .large_ctas:nth-child(2):before,
    .large_ctas:nth-child(4):before {
        background: rgb(241,162,60);
    }
    .large_ctas:nth-child(2):after,
    .large_ctas:nth-child(4):after {
        background: rgb(241,162,60);
        background: linear-gradient(0deg, rgba(241,162,60,1) 0%, rgba(241,162,60,0) 100%);
    }

}




/*FIRE CTA===========================================*/
.fire_cta {
    position: relative;
    background: white url(images/FOBAboutPhoto_v6_final_sg.webp) no-repeat center bottom;
    background-size:cover;
}
.fire_cta:after {
    position: absolute;
    z-index: 2;
    content:'';
    left:0;
    bottom:0px;
    width:100%;
    height:1px;
    background:white;
}

.fire_cta .center {
    display: flex;
    justify-content: flex-end;
    max-width:1100px;
    margin:0 auto;
}
.fire_cta .center .box {
    position: relative;
    z-index: 1;
    max-width: 440px;
    width: 50%;
    padding: calc(120px + 9vh) 4%;
    color: var(--brown);
    transform: skew(
-9deg
,
0deg
);
}


.fire_cta .center .box h2 {
    font-size: clamp(2.3rem, 5.2vw, 3.4rem);
    margin: 0 0 36px;
}
.fire_cta .center .box a {
    display: flex;
    align-items: stretch;
    font-size: 1.1em;
    transition: 0s;
}
.fire_cta .center .box a img {
    height: 41px;
    width: auto;
    transition:0.3s;
}
.fire_cta .center .box a strong {
    display: flex;
    align-items: center;
    color:white;
    background:var(--red);
    border-radius: 0px 4px 4px 0px;
    padding: 0px 19px;
    transition:0.3s;
}
.fire_cta .center .box a strong i {
    color:black;
    margin-left: 15px;
    font-size: 1.6rem;
    transition:0.3s;
}

.fire_cta .center .box a:hover img {
    filter: brightness(120%);
}
.fire_cta .center .box a:hover strong {
    filter: brightness(120%);
}
.fire_cta .center .box a:hover strong i {
    margin-left: 27px;
}

@media (max-width:900px) {
    .fire_cta {
        background: white url(images/FOBAboutPhoto_v6_final_sg.webp) no-repeat 77%;
    	background-size: cover;
    }
    .fire_cta .center .box {
        max-width: 460px;
        width: 65%;
    }
}

@media (max-width:640px) {

    .fire_cta .center .box {
        width: 90%;
    }
    .fire_cta .center .box a img {
        height: 58px;
    }
    .fire_cta .center .box a strong {
        padding: 6px 19px;
    }
}



/*Tiles CTA===========================================*/
.tiles {
    position: relative;
    padding: 20px 2% 92px 2%;
    background: white;
    background-size:cover;
}

.tiles .center {
    position: relative;
    /* display: flex;
    justify-content: flex-end; */
    max-width: 1230px;
    margin:0 auto;
    height: clamp(400px, 76vw, 1030px);
}
.tiles .center a {
    position: absolute;
    display: block;
}
.tiles .center a:nth-child(1) {
    left:0%;
    top:0%;
    width:50%;
    height:50%;
}
.tiles .center a:nth-child(2) {
    left:0%;
    top:50%;
    width:50%;
    height:25%;
}
.tiles .center a:nth-child(3) {
    left:0%;
    top:75%;
    width:25%;
    height:25%;
}
.tiles .center a:nth-child(4) {
    left: 25%;
    top:75%;
    width:25%;
    height:25%;
}

.tiles .center a:nth-child(5) {
    left:50%;
    top:0%;
    width:50%;
    height:25%;
}
.tiles .center a:nth-child(6) {
    left: 50%;
    top: 25%;
    width:50%;
    height:50%;
}
.tiles .center a:nth-child(7) {
    left: 50%;
    top: 75%;
    width:50%;
    height:25%;
}


.tiles .center a .box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    padding: 5% 5%;
    margin: 8px;
    border-radius: 7px;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 23%);
    background-color:#261c02;
}
.tiles .center a .box .background {
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    border-radius: 7px;
    overflow:hidden;

}
.tiles .center a .box .background .inner {
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-position: center;
    background-color:#261c02;
    background-size:cover;
    opacity:0.4;
    transition: 0.3s;
}

.tiles .center a:nth-child(2) .box {
    justify-content: flex-start;
    align-items: flex-end;
    text-align: right;
}
.tiles .center a:nth-child(3) .box,
.tiles .center a:nth-child(4) .box  {
    padding: 5% 10%;
}
.tiles .center a:nth-child(5) .box {
    align-items: flex-end;
    text-align: right;
}
.tiles .center a:nth-child(6) .box {
    align-items: flex-end;
    text-align: right;
}

.tiles .center a .box h3 {
    position: relative;
    font-family: 'Racing Sans One', cursive;
    color: white;
    font-weight: normal;
}
.tiles .center a .box span {
    position: relative;
    display:inline-block;
    color: white;
}


.tiles .center a:hover .box .background  .inner {
    transform: scale(1.1);
    opacity:0.9;
}


@media (max-width:750px) {
    .tiles .center {
        height:auto;
    }
    .tiles .center a {
        position: relative;
        left:initial !important;
        top:initial !important;
        width:95% !important;
        height: 45vw !important;
    }
    .tiles .center a .box {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 5% 5%  !important;
        margin: 2% 5% 2% 0 !important;
    }
    .tiles .center a:nth-child(even) .box {
        align-items: flex-end !important;
        text-align: right !important;
        margin: 2% 0 2% 5% !important;
    }
}

@media (max-width:550px) {
    .tiles .center a  {
        height: 55vw !important;
    }
}








/*Interior Content Template ============================================================================== */

.interior {
    position: relative;
    padding: calc(10px + 4vh) 0;
    /* background: white; */
}
.interior:before {
    pointer-events: none;
    position: absolute;
    content:'';
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: url(images/bkgOverlay2.png) repeat-y center;
    background-size: 100% auto;
    background-attachment: fixed;
    opacity: 0.4;
}
.interior .container__center {display: flex;justify-content: space-between;align-items: flex-start;margin: 0px auto 0 auto;min-height: 350px;}
.interior .container__center .container__left {
    /* display:flex; *//* flex-basis: 75%; */
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 3%;
    flex-basis: 100%;
    flex-direction: column;
}
.interior .container__right {position:relative;position: sticky;top: 110px;z-index: 1;justify-content: space-between;align-items: center;flex-basis: 195px;flex-shrink: 0;padding: 30px 0% 40px 0%;margin-left: 4%;min-height: 370px;color: white;}
.interior .container__right:before {position:absolute;content:'';z-index: -1;left:0px;top:0px;width:100%;height:100%;background: #2a325a;border-radius: 3px;}

.interior .container__center .container__left h1 {
    display: block;
    position: relative;
    z-index: 1;
    line-height: 2.5rem;
    /* font-style: italic; */
    font-size: 2.8rem;
    letter-spacing: 0.1rem;
    /* text-transform: uppercase; */
    font-weight:bold;
    text-align: center;
    margin: 30px auto 0;
    padding: 7px 0px;
    background: transparent;
    /*transform: skew(-12deg, 0deg);*/
    max-width: 1100px;
    overflow: hidden;
    }



.interior .container__center .container__left h2 {
    font-size: 1.9rem;
    font-size: clamp(1.6rem, 4vw, 1.9rem);
    line-height: 1.2em;
    /* letter-spacing: 0.05rem; */
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    color: var(--red);
}
.interior .container__center .container__left img {
    height:auto;
}
.interior  .container__left a {
	/* color: var(--brown); */
	text-transform: initial;
	/* font-style: italic; */
}

.interior .container__center .container__left ul {

    list-style: none;
}
.interior .container__center .container__left ul li {

    position: relative;
    padding: 0px 0px 0px 14px;
}
.interior .container__center .container__left ul li:before {
    position: absolute;content: '';left: -11px;top: 7px;
    width: 12px;height: 9px;border-radius: 3px;
    background: var(--brown);
    background-size: 100%;
}

.interior .container__center .container__left blockquote {
    background:#f9f4df;
    padding:20px 4%;
    margin: 20px 2%;
    border-radius: 5px;

    /* transform: skew(-12deg, 0deg); */
    transition: 0.3s;
}
.interior .container__center .container__left blockquote p {
    font-size: clamp(1.3rem, 2.8vw, 1.5rem);
}

.wp-block-button__link:hover {
    background: var(--red2);
}


@media (max-width:570px) {
	.interior .container__center .container__left h1 {

      }
}








/*Beaver Builder Pages============================================================*/
.fl-builder .interior {
    padding: calc(10px + 4vh) 0 0;
}
.fl-builder .interior .container__center .container__left {
    max-width: inherit;

}
.fl-builder .interior .container__center .container__left {
    padding: 0 0%;

}
.fl-builder .interior .container__center .container__left h1 {
    padding: 0 3%;
}

.fl-slide-title, .fl-slide-text > * {
    color: black !important;
}
.fl-builder .interior .container__center .container__left .button {
    display: inline-block;
    background: #19bcfc;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    padding: 0px 10px;
    line-height: 1.5em;
    font-size: 1.2rem;
    margin: 0px 0 0px;
    border-radius: 0px;
    color: white;
    background: var(--red);
    padding: 2px 25px 1px 25px;
    transition: 0.3s;
}



/*BB  aboutpage-------------------*/

.fl-node-60945dc1bfdad,
.fl-node-60945e53b4f2e {
    display:flex;
}

.fl-node-60945dc1bfdad .fl-col,
.fl-node-60945e53b4f2e .fl-col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
}
.teamates .fl-module-content {

background:red;
}

.fl-node-609461f7ca8db {  /*contact us in about page*/
    display:none;
}
.fl-node-mine {
    display:block;
}



/*Team Bios  Slider on ABout page----------------------*/

.teamBios {
    padding: 0 0;
    padding: 0 37px calc(40px + 5vh);
    overflow: hidden;
}

.teamBios .main-carousel {
    max-width: 1100px;
    margin: 0px auto;
    padding: 0 20px;

  }

.teamBios .main-carousel .carousel-cell {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: initial;
    justify-content: stretch;
    padding: 20px 30px 30px 30px;
    margin: 0px 35px;
    /* overflow: hidden; */
    border-radius: 20px 6px;
    width: 87%;
    width: 100%;
    /* background: black; */
    /* box-shadow: 0 0 20px white; */
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid var(--red);
    opacity: 0.3;
}
.teamBios .main-carousel .carousel-cell.is-selected {
    opacity: 1 !important;
}


.teamBios .main-carousel .carousel-cell  h3 {
    color: black;
    font-weight: normal;
    font-family: 'Fjalla One', sans-serif;
    font-size: 1.27em;
}
.teamBios .main-carousel .carousel-cell  h4 {
    color: #aba9a9;
}
.teamBios .main-carousel .carousel-cell div {
    margin: 15px 0;
}

.teamBios .main-carousel .carousel-cell  p {

}
.teamBios .main-carousel .carousel-cell   a {
    background: red;
    border-radius: 4px;
    padding: 3px 9px;
    color: white;
    display: inline-block;
    margin: 0px 5px;

}


.teamBios .main-carousel .carousel-cell   a:hover {
    opacity:0.7;
}




/*Flickity  styling overides-----*/
.flickity-viewport {
    overflow:visible;
}
.flickity-slider {
    display: flex;
    align-items: center;
}
.flickity-button {
    color:black;
    top: calc(50% - 25px);
    background:transparent;
    transform: scale(1.5);
}
.flickity-prev-next-button.previous {
    left: -34px;
}
.flickity-prev-next-button.next {
    right: -34px;
}
.flickity-button:hover {
    background:transparent;
}
.flickity-page-dots {
    bottom: -50px;
    margin: 0 0 0 0px;
}
.flickity-page-dots .dot {
    /* display: inline-block; */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--red);
    overflow: hidden;
    text-indent: 100px;
    background: transparent;
    opacity: 1;
}
.flickity-page-dots .dot.is-selected {
    background: var(--red);
}

@media (max-width:450px) {
    .teamBios {
        padding: 0 0px 40px;
    }
    .teamBios .main-carousel .carousel-cell {
        flex-direction: column;
        padding: 20px 20px 30px 20px;
        margin: 50px 35px 0px 35px;
    }
    .teamBios .main-carousel .carousel-cell > * {
        width:100% !important;
    }
    .flickity-page-dots {
        margin: 0 0 0 0;
    }

    .flickity-page-dots {
        width: 93%;
        bottom: inherit;
        top: 10px;
    }
    .flickity-button {
        display:none;
    }
}













/*Our WORK  section  Project Listings=============================*/
.work .header,
.archive .header  {
    position: relative;
}
.work .header .wrapper,
.archive .header .wrapper {
    position: relative;
    padding: 0px;
}

    /*Projects red Nav-----*/
    .projectNAV {
        overflow: hidden;
        margin-top: 9px;
        padding-bottom: 81px;
    }
    .work .projectNAV {
        padding-bottom: 0px;
    }

    .projectNAV .wrapper {
        position: relative;
        width: 110%;
        background: var(--red);
        padding: 7px 25px 7px 25px;
        transform: skew( -9deg , 0deg );
    }
    .projectNAV .fire {
        position:absolute;
        left:-3px;
        top:0px;
        width:auto;
        height:100%;
        background:white;
    }

    .projectNAV .center {
        display: flex;
        align-items: center;
        max-width:1423px;
        margin:0 auto;
        padding: 0 0 0 77px;
    }
    .projectNAV .all {
        display: inline-block;
        color:white;
        font-weight: bold;
        margin-right: 12px;
        padding: 6px 10px;
        border: 2px solid var(--red);
        border-radius: 6px;
    }
    .projectNAV .all:hover {
        border: 2px solid rgba(255, 255, 255, 0.445);
    }
    .projectNAV .all.current {
        border: 2px solid white;
    }
    .projectNAV .center .sortby {
        position: relative;

    }

    .projectNAV .center .sortby .options {
        background: var(--red);
        border: 2px solid var(--red);
        border-radius: 6px;
        color: white;
        padding: 7px 6px;
        font-size: 1.1rem;
        font-weight: bold;
        display: inline-block;
        margin: 0 10px !important;
        width: 149px;
    }
    .projectNAV .center .sortby .options:hover {
        border: 2px solid rgba(255, 255, 255, 0.445);
    }
    .projectNAV .center .sortby .options.current {
        border: 2px solid white !important;
    }
    .projectNAV .center .sortby:nth-child(3) .options {
        width: 123px;
    }
    .projectNAV .center .sortby span {
        display: block;
        position: absolute;
        top: 54px;
        left: 10px;
        color: var(--red);
        border: 2px solid var(--red);
        border-radius: 6px;
        line-height: 1.3rem;
        padding: 4px 8px;
    }
    .titleCat {
        display:none;
    }
    .titleCat {
        display:none;
    }


    @media (max-width:830px) {
        .projectNAV .fire {
            left: -34px;
            height: 100%;
        }
        .projectNAV .wrapper {
            left: -5%;
        }
        .projectNAV .center {
            flex-wrap: wrap;
        }
        .projectNAV .center .sortby span {
            display: none;
        }
        .titleCat {
            display:flex;
            align-items: center;
            padding: 37px 0 0 8%;
            gap: 10px;
            display: block;
            font-style: italic;
        }
        .titleCat strong {
            display:none;
            color: var(--red);
        }
        .titleCat span {
            display: block;
            color: var(--red);
            /* border: 2px solid var(--red); */
            /* border-radius: 6px; */
            font-size: 2rem;
            line-height: 1.3rem;
            padding: 10px 0px;
            font-style: normal;
        }

    }
    @media (max-width:470px) {
        .projectNAV {
            padding-bottom: 15px;
        }
        .projectNAV .fire {
            display:none;
        }
        .projectNAV .center {
            padding: 0 0 0 0px;
        }
    }

/*Work Listings Main----*/

.listings {
    padding: 0 0 0 0;
}

.listings .container__left {
    max-width: inherit !important;
    padding: 0 0% !important;
}

.projectLanding {

}
.projectLanding .projectEntry {
    padding: 111px 3% 90px 3%;
    border-top: var(--red) 8px solid;
    background: white url(images/listing.jpg) no-repeat right bottom;

}
.projectLanding .projectEntry:nth-child(1) {
    border-top: none;
}
.archive .projectLanding .projectEntry:nth-child(1) {
    padding: 51px 3% 90px 3%;
}
.projectLanding .projectEntry h2 {
    text-transform: initial;
    color:var(--brown);
    max-width: 900px;
    margin: 0 auto 0px auto;
    font-weight: normal;
    font-style: italic;
}
.projectLanding .projectEntry p {
    display:none;
}
.projectLanding .projectEntry p {
    display:block;
    max-width:900px;
    margin: 8px auto;
}
.projectLanding .projectEntry p.client {
    margin: 10px auto 0px auto;
}
.projectLanding .projectEntry p.purpose {
    margin: 12px auto 8px auto;
}
.projectLanding .projectEntry p strong {
    display:inline-block;
    width: 72px;
}
.projectLanding .projectEntry p.client strong {
    width: 52px;
}
.projectLanding .projectEntry p a {
    position: relative;
    color: var(--red);
}
.projectLanding .projectEntry p a:before {
    position: absolute;
    content:'';
    left:0px;
    bottom:0px;
    background:var(--red);
    height:2px;
    width:1%;
    opacity:0;
    transition:0.3s;
}
.projectLanding .projectEntry p a:hover:before {
    position: absolute;
    content:'';
    left:0px;
    bottom:0px;
    width:100%;
    opacity:0.4;
}

.projectLanding .video_wrapper {
    max-width:1200px;
    margin: 29px  auto 50px auto;
}
.projectLanding .video_responsive {
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;

}
.projectLanding .video_responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

@media (max-width:750px) {
    .projectLanding .projectEntry {
        padding: 61px 3% 30px 3%;
    }
    .archive .projectLanding .projectEntry:nth-child(1) {
        padding: 11px 3% 30px 3%;
    }
    .projectLanding .video_wrapper {
        margin: 29px auto 20px auto;
    }
}




/* Gravity Form Custom Styling============================*/
.gform_wrapper {}

.gform_wrapper ul {padding: 0 !important;}
.gform_wrapper ul li {padding:0px 16px 0px 0px !important;}
.gform_wrapper ul li:before {display:none !important;}
.gform_wrapper .gsection {border-bottom: 2px solid #19bcfc !important;}
.gform_wrapper .ginput_container_checkbox {padding-bottom: 30px;}
.gform_wrapper .ginput_container_fileupload input {padding: 8px 4px !important;}
.gform_wrapper input,
.gform_wrapper textarea {background:#f8f8f8;border: 1px solid #666666;}
.gform_wrapper select {height: 37px;border: 1px solid #0f5798;/*background: white;*/background:#f8f8f8;}
.gform_wrapper textarea {height: 200px !important;background:#f8f8f8;}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {    padding: 7px 4px !important;}
.gform_wrapper .section_padding {    margin: 60px 0px 40px !important;}
.gform_wrapper .gfield_checkbox li input, .gform_wrapper .gfield_checkbox li input[type=checkbox], .gform_wrapper .gfield_radio li input[type=radio] {vertical-align: top !important;}

.gform_wrapper .gform_footer  {
    position: relative;
    display:flex;
    text-align: left !important;
    height: 73px;
}
.gform_wrapper .gform_footer:before  {
    position: relative;
    content:'';
    background: white url(images/fire.png) no-repeat right center;
    background-size: 100%;
    width: 65px;
    height: 47px;
}
.gform_wrapper .gform_button {    color: white; background:#5D7D26;padding: 9px 40px;border-radius: 5px; transition:0.3s;border:none;cursor:pointer;}
.gform_wrapper .gform_button:hover {background:#77a12d; !important;}

.gform_wrapper div.validation_error {color: white !important;background: #af3b38;border: none !important;border-radius: 5px;}

.gform_wrapper button {
	display: inline-block;
	position:relative;
	color: white;
	background:#5D7D26;
	padding: 11px 18px 11px 18px;
	border-radius: 5px;
	font-size: 1.1rem;
	transition:0.3s;
	border:none;
	cursor:pointer;
}

.gform_wrapper button:hover {
}



/*News Post interior page=============================================*/
.post-template-default .interior .container__right h2 {padding-top:20px;}
.post-template-default .interior .container__right h2 a {color:white;}
.backToNews {display:inline-block;position: relative;background: var(--red);padding: 3px 16px;border-radius: 2px;color: white;transform: skew(-12deg, 0deg);}
.post-template-default .pageContent .image {float: left;max-width: 380px;width: 40%;margin: 5px 4% 20px 0px;}

.post-template-default .pageContent .image img {width:100%;height: auto;border-radius:3px;box-shadow: 1px 12px 8px -8px rgba(0, 0, 0, 0.49);/* float: right; *//* margin: 5px 0px 20px 20px; */}

@media (max-width:640px) {
    .post-template-default .pageContent .image {display:block; float:none;width:100%; max-width:100%; text-align:center;}
    .post-template-default .pageContent .image img {max-width:380px;margin:0 auto;}

    .gform_wrapper .gform_footer {
        width: calc(100% - 16px);
    }
    .gform_wrapper .gform_footer:before  {
        position: absolute;
       left:0px;
       top: 16px;
    }

}



/*WP search form-----------------*/
	.searchform {margin-bottom: 34px;}
	.searchform div {display: flex;align-items: center;justify-content: flex-end;}

	.searchform div label {}
	.searchform div input {}
	.searchform div input#s {height: 2.7rem;padding: 0 10px;margin: 0 10px;font-size: 1rem;}
	.searchform div #searchsubmit {background: #19bcfc;padding: 0px 25px;color: white;text-transform: uppercase;font-family: 'Pridi', serif;font-size: 1.1em;border: none;height: 2.7rem;transition:0.3s;}
	.searchform div #searchsubmit:hover {background: var(--red2);}

/* Search Popup==================================================*/
	.reservations {cursor:pointer;}
	.Popup {display:flex; align-items:center; top: 0;left: 0; width: 100%;height: 100%;  z-index: 1000000;position: fixed; outline: none !important; display:none; background:rgba(0, 0, 0, 1); transition:0.3s;}
	.Popup.popedUp {display:flex;background: rgba(200, 18, 142, 0.78);background: rgba(81, 153, 184, 0.83);backdrop-filter: blur(6px);background: rgba(0, 0, 0, 0.83);/* animation-duration:0.3s; */}
	.Popup .x {position:absolute;left: 2%;top:2%;background: #19bcfc;border-radius:3px;line-height: 1.3em;padding: 0.4em 0.6em 0.4em 0.6em;color: white;font-weight: bold;cursor:pointer;text-align: center;text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.43);box-shadow: 2px 9px 6px -7px rgba(0, 0, 0, 0.2);transition:0.3s;}
	.Popup .x i {position: relative;color: white;top: 2px;font-size: 1.1em;transition:0.3s;}
	.Popup .x:hover {background: rgba(0, 0, 0, 0.74);}
	.Popup .x:hover:i {}
	.Popup h2 {color: #ffffff;text-align: center;font-size: 1.5em;margin: 0.6em 0 1.2em 0;}
	.Popup .center {width:100%;padding:0px 2%; animation-duration:0.4s;}
	.Popup .center form {width:100%;max-width: 450px;border:none;margin:40px auto;}
	.Popup .center form fieldset {border:none;}
	.Popup .center form label {}

	.Popup .center form button {background: var(--pink1);padding: 0 0.6em 0 0.6em;color: #fefefe;max-width: 200px;font-family: 'Pridi', serif;margin: 20px auto 0px;text-align:center;text-transform: none;transition:0.3s;}
	.Popup .center form button:hover {background: var(--pink2);}
	.Popup .center form button:after {display:none !important;}
	.Popup .center form fieldset div.formfields button:after {top: calc(50% - 0.4em);}
	.Popup form fieldset div.formfields select {color: black;}

	.Popup.popedUp .center .grecaptcha-badge {opacity:0 !important;}

	/*search form-----------------*/
	.Popup .searchform div {flex-wrap:wrap;flex-direction: column;}
	.Popup .searchform div label {width:100%;    color: #ffffff;text-align: center;font-size: 1.5em;margin: 0.6em 0 1.2em 0;}
	.Popup .searchform div input#s {width:80%;margin-bottom:41px;}
	.Popup .searchform div #searchsubmit {padding: 4px 56px;width: 80%;}




/*Search Result Page=================================================*/
.search-block {text-align: right;}
.searchItem {display:block;padding: 20px 20px 2px;background: rgb(246 239 230 / 37%);border-radius: 3px;margin-bottom: 20px;transition:0.3s;}
.searchItem:hover {box-shadow: 1px 12px 8px -8px rgba(0, 0, 0, 0.2);}
.search .interior .container__center .container__left .searchItem h2 {text-align:left;font-size: 1.9rem;margin-top: 0px;}
.search .interior .container__center .container__left .searchItem h2 a {font-weight:bold;}

.search .interior .container__center .container__left > div ul {list-style:none;padding: 0px 0px 0px 25px;}
.search .interior .container__center .container__left > div ul li {position:relative;padding:0px 0px 0px 10px;margin: 14px 0px;line-height: 1.6rem;}
.search .interior .container__center .container__left > div ul li:before {position:absolute;content:'';left: -9px;top: 7px;width: 10px;height: 10px;border-radius: 3px;background: var(--red);}
.search .interior .container__center .container__left > div img {border-radius: 3px; box-shadow: 1px 12px 8px -8px rgba(0, 0, 0, 0.49);}









/*Foter===========================*/
footer {
    background:#261c02;
    padding: 15px 4%;
}
footer .center {
    max-width: 1200px;
    margin:0 auto;
}
footer .center .top {
    display:flex;
    justify-content: space-between;
}
footer .center .top img {
    width: 100%;
    max-width: 165px;
    height:auto;
}

footer .social {
    display: flex;
    margin: 0 0 0 0px;
    padding: 0 0px 0 10px;
    align-items: stretch;
    justify-content: inherit;
    transform-origin: 0% -70%;
    /* border-left: 2px solid rgb(255 255 255 / 27%); */
    transition: 0.3s;
}
footer  .social li {
    display: flex;
    align-items: stretch;
    padding: 0 2px;
}
footer  .social li a {
    display: block;
    color: rgb(255 255 255 / 20%);
    font-size: 1.6rem;
    /* text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.71); */
    transition:0.3s;
    opacity: 1;
    line-height: 3.6rem;
    padding: 0 6px;
}
footer  .social li a:hover {
	opacity: 1;
	color: #ffffff82;
}
footer  .social li a i {
    line-height:inherit;
}
footer  .social li.meetingButton {
	/* border-left: 2px solid rgb(255 255 255 / 27%); */
	padding: 0 14px;
	margin-left: 0px;
}
footer  .social li.meetingButton a {
    position: relative;
    font-size: 1.4rem;
    color: white;
    border-radius: 2px;
    padding: 0 11px;

}
footer  .social li.meetingButton a:before {
    position:absolute;
    z-index: -1;
    content:'';
    left:0;
    bottom: -26px;
    width:100%;
    height: 130px;
    background: var(--blue);
    transition: 0.3s;
}
footer  .social li.meetingButton a:hover:before {
    background: var(--blue2);
}



/*DTP=================*/
.dtp_wrapper {
    background: #261c02;
    border-top: 1px solid white;
    padding: 5px 4%;
}
.dtp_wrapper .center {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.7em;
}
.dtp_wrapper .center .left {

}
.dtp_wrapper .center .dtp {
    color: rgb(255 255 255 / 35%);
}
.dtp_wrapper a {
    color:white;
}
.dtp_wrapper a i {
    color:rgba(255, 255, 255, 0.5);
}
.dtp_wrapper a:hover {
    color: rgb(255 255 255 / 35%);
    transition: 0.3s;
}



@media (max-width:550px) {
    footer {
        padding: 25px 4%;
    }
    footer .center .top {
        flex-direction: column;
        justify-content: center;
    }
    footer .center .top img {
        margin: 0 auto;
    }

    .dtp_wrapper {
        padding: 16px 4%;
    }
    .dtp_wrapper .center {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .dtp_wrapper .center .left {
        font-size: 1.1em;
    }
}


/* ResponsiveSlides--------------------------------------------- */
.rslides { position: relative; list-style: none; overflow: hidden; width: 100%; padding: 0; margin: 0; }
.rslides li { -webkit-backface-visibility: hidden; position: absolute; display: none; width: 100%; left: 0; top: 0; }
.rslides li:first-child { position: relative; display: block; float: left; }
.rslides img { display: block; height: auto; float: left; width: 100%; border: 0; }

.home-links{
  display: inline-block !important;
  margin-top: 0em !important;
  font-size: clamp(1rem, 2vw, 1.1rem) !important;
  color: var(--gold);
}

.break{
  word-break: break-all;
}

.header_container{
  position: relative;
  top: 75px;
  margin: 2em 4em 0em;
}

.header_container span p {
  font-size: 1.5em;
  line-height: 1.15em;
}

@media (max-width:800px){
  .header_container{
    top: 182px;
  }
}

@media (max-width: 820px){
  .header_container{
    display:none
  }
}

.mobile_container span p {
  font-size: 1.15em;
  line-height: 1.15em;
}
.footer .center {
    max-width: 1400px;
    margin: 0 auto;
}
 
 
.address-box {
    flex: 1;
    background: #261c02;
    color: #fff;
    display: grid;
    place-items: center;
}
.map-box {
    flex: 1;
}
.address-child-box a {
    color: #fff;
}
@media (min-width:800px) {
    .center.main-address-box {
        display: flex;
    } 
}
@media (max-width:768px){
    .address-box {
      
        text-align: center;
    }
}


/*********************
**********************2023 STYLES 
**********************/

.no-scroll {
	max-height: 100vh;
	overflow: hidden;
}


/* HEADER STYLING */
.hamButton {
	align-items: center;
}

.hamburger {
	margin-top: -4px;
}

.dynamic-headers ul.rslides {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dynamic-headers .overlay_wrapper {
    position: relative;
    padding: 100px 30px 30px;
}

@media (min-width: 861px) {
	.dynamic-headers .overlay_wrapper {
		padding: 10% 30px 7%;
	}
}

@media (min-width: 1685px) {
	.dynamic-headers .overlay_wrapper {
		padding: 168px 30px 118px;
	}
}


/* MAIN MENU STYLING */
.mainNav.selected,
.menu-menu-1-container,
.mainNav.selected:before {
	height: 100%;
}

.mainNav.selected .menu-menu-1-container {
	overflow: scroll;
}

.mainNav.selected .menu-menu-1-container::-webkit-scrollbar {
  display: none;
}

.mainNav.selected .menu-menu-1-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mainNav ul#mainNav__ul.selected {
	margin: 0;
    padding: 100px 0;
}


/* SUBMENU STYLING */
.mainNav ul#mainNav__ul > li > ul.sub-menu {
	list-style: none;
	padding: 0 5%;
    margin: 0;
	margin-bottom: .75rem;
    flex-direction: column;
    width: 100% !important;
    background: none;
}

.mainNav ul#mainNav__ul > li > ul.sub-menu > li {
	width: 100%;
    border: 0;
	margin-bottom: .75rem;
}

.mainNav ul#mainNav__ul > li > ul.sub-menu > li > a {
	font-size: clamp(1.125rem, 2.5vw, 1.5rem) !important;
	font-family: 'Roboto', sans-serif;
    font-weight: 700;
	color: #261c02;
}


/* HOMEPAGE STYLING */
.hero .text-container {
	max-width: 724px;
}

.hero .text-container h1 {
	font-weight: 100;
    font-size: 45px;
    letter-spacing: 2.8px;
}

.dynamic-headers .hero .overlay p {
	margin-bottom: 20px;
	font-size: 103%;
}

.dynamic-headers .overlay .text-container p {
	width: 100%;
	max-width: 100%;
}

.dynamic-headers .hero ul {
	list-style: none;
	font-size: 103%;
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
}

.dynamic-headers .overlay .text-container a {
	color: var(--gold);
	/*font-size: clamp(1rem, 2vw, 1.5rem) !important;*/
	font-weight: 600;
    line-height: 24px;
    text-shadow: -2px 2px 4px #000000;
}

.dynamic-headers .overlay .text-container a:hover {
	color: rgb(199 46 39 / 100%);
}

@media (min-width: 551px) {
	.hero .text-container {
		padding: 20px;
	}
}

@media (min-width: 861px) {
	.hero .text-container {
		padding: 20px 40px;
	}
}


/* POSTS PAGE */
.blog-posts.row {
	position: relative;
   	display: flex;
    flex-wrap: wrap;
	box-sizing: border-box;
	margin-right: -15px;
    margin-left: -15px;
	
}

.blog-posts .one_third {
	position: relative;
    width: 100%;
	padding-right: 15px;
    padding-left: 15px;
	margin-bottom: 60px;
}

.interior .container__center .container__left .blog-posts h2 {
	font-size: 1.5rem;
}

.blog-posts img {
	max-width: 100%;
	height: auto;
	margin-bottom: 1rem;
}

.blog-posts a.read-more {
	display: flex;
    align-items: initial;
    position: relative;
    margin-top: 25px;
    font-size: 1.4rem;
	margin-top: 3rem;
}

.interior .container__center .container__left .blog-posts a.read-more img {
	height: 44px;
    width: auto;
    transition: 0.3s;
	margin-bottom: 0;
}

.blog-posts a.read-more span {
	display: flex;
    align-items: center;
    color: white;
    background: var(--red);
    padding: 4px 25px 7px 25px;
    transition: 0.3s;
}

@media (min-width: 600px) {
	.interior .container__center .container__left .blog-posts h2 {
		font-size: 1.75rem;
	}
}

@media (min-width: 800px) {
	.blog .interior .container__center .container__left {
		padding: 30px 26px 0 23px;
		max-width: 1200px;
	}
	
	.blog-posts .one_third {
		flex: 0 0 50%;
    	max-width: 50%;
	}
	
	.interior .container__center .container__left .blog-posts h2 {
		font-size: 1.25rem;
	}
	
	.interior .container__center .container__left .blog-posts img {
		height: 200px;
		object-fit: cover;
		object-position: 50% 50%;
	}
}

@media (min-width: 1000px) {
	.interior .container__center .container__left .blog-posts h2 {
		font-size: 1.5rem;
	}
	
	.interior .container__center .container__left .blog-posts img {
		height: 250px;
	}
}

@media (min-width: 1200px) {	
	.blog-posts .one_third {
		flex: 0 0 33.333333%;
    	max-width: 33.333333%;
	}
	
	.interior .container__center .container__left .blog-posts h2 {
		font-size: 1.25rem;
	}
}

/* BLOG POST TEMPLATE */
.blog-post-item {
	display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.blog-post-content,
.sidebar {
	position: relative;
    width: 100%;
}

ul.wp-block-latest-posts__list {
	padding-left: 14px;
}

ul.wp-block-latest-posts__list li {
	margin-bottom: 12px;
}

@media (min-width: 1000px) {
	.blog-post-item {
		flex-wrap: nowrap;
	}
	
	.interior .container__center .container__left .blog-post-item h1 {
		text-align: left;
	}
	
	.blog-post-content {
		flex: 0 0 65%;
		max-width: 65%;
	}
	
	.sidebar {
		flex: 0 0 35%;
		max-width: 35%;
		padding-left: 60px;
	}
}

@media (min-width: 1200px) {
	body.single-post .interior .container__center .container__left {
		padding: 0;
	}
	
	.blog-post-content {
		padding-right: 60px;
	}
}