
html,
body,
*{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    box-sizing:border-box;
    background-size:cover;
    background-position:50% 50%;
    font-family: 'Lato', sans-serif;
    color:black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
}

html {
	font-size: 18px;
	line-height: 1.65;
}
main#main {
    overflow-x: hidden;
}
.serif,
.serif > *{
   font-family:'Libre Caslon Display', serif; 
}
h1,
h2.serif{
	font-size:52px;
    font-size:40px;
	line-height: 1.2;
	font-family:'Libre Caslon Display', serif;
	font-weight:normal;
	color:white;
	text-transform:none;
}
h2{
	font-size:26px;
	line-height: 1.25;
	text-transform:uppercase;
	font-weight:700;
	color:#435364;
    letter-spacing: 2px;
}
p.serif, 
.serif p {
    font-size: 22px;
}
@media screen and (min-width: 650px) {
	html {
		font-size: calc(18px + 2 * ((100vw - 650px) / 950));
	}
	h1,
	h2.serif{
		font-size: calc(52px + 28 * ((100vw - 650px) / 950));
        font-size: calc(40px + 15 * ((100vw - 650px) / 950));
	}
	h2{
		font-size: calc(26px + 8 * ((100vw - 650px) / 950));
	}
    p.serif, 
    .serif p {
        font-size: calc(22px + 4 * ((100vw - 650px) / 950));
    }
}
@media screen and (min-width: 1600px) {
	html {
		font-size: 20px;
	}
	h1,
	h2.serif{
		line-height: 1.2;
		font-size:80px;
        font-size:55px;
	}
	h2{
		line-height: 1.25;
		font-size:34px;
	}
    p.serif, 
    .serif p {
        font-size: 26px;
    }
}

body{
	margin:0;
	padding:0;
    background-color:#4e5758;
}
a{
    text-decoration:none;
    font-family:inherit;
    font-size:inherit;
    color:inherit;
}
figure {
    margin: 0;
    padding: 0;
}

img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: none;
    height: auto;
}
.relative{
    position: relative;
}
.alt{
    display:block;
    text-indent: -999999px;
    width: 1px;
    height:1px;
    overflow: hidden;
    margin:0;
}
.text-center{
	text-align:center;
}
.bg-img {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow:hidden;
    background-position:50% 50%;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
    color: inherit;
    margin: 0;
    width: auto;
    line-height: 1.0;
}
.demo-icon {
    color: inherit;
}
.btn{
    color:inherit;
    display: inline-block;
    border: 1px solid;
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.35s ease;
    text-align:center;
    background:transparent;
}
a:focus .btn,
a:hover .btn,
.btn:hover,
.btn:focus {
    background: #c77a41;
    border-color: #c77a41;
    color: white;
}
.btn .demo-icon.icon-right-arrow{
    margin:0 0 0 3px;
}
.bg-green{
	background-color:#cfcdbf;
}
.bg-blue {
    background: #435363;
    color:white;
} 
.bg-white{
	background-color:white;
}
.bg-tan{
    background-color:#c0bdab;
}
.color-white{
	color:white;
}
.hero,
.img-block,
.callout{
	overflow:hidden;
	position: relative;
	color:white;
}
.text{
	position:relative;
	z-index:1;
}
.home .hero .text,
.callout .text{
	display:block;
	color:white;
	max-width:650px;
}
.home .hero .text{
    max-width:600px;

}
.home .hero .bg-img{
    background-position: 10% 50%;
}
.overlap-parent,
.pad.overlap-parent{
	padding-top:0;
}
.overlap-item{
	transform: translateY(-50px);
    margin-bottom:-50px;
}
.hero.sub-page {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero.sub-page.contact-hero {
    min-height: 300px;
}
.hero .flex-wrap.gutter .half {
    margin-bottom: 0;
}
.home .hero .btn {
    transform: scale(1.25);
    transform-origin: left;
}
@media only screen and (max-width:650px){
    .home .hero .text{
        max-width:none;
        margin-top:300px;
        padding:0;
    }
    .home .hero .bg-img{
        background-position: 50% 50%;
    }
    .hero.sub-page .text {
        margin-top: 250px;
    }


}






/*-- grid --*/
.pad{
    padding:5vw;
}
.overlap-bottom {
    transform: translateY(5vw);
    margin-top:-4vw;
}
.pad-more{
    padding:5vw calc(5vw + 60px);
}
.pad-most{
    padding:5vw calc(5vw + 90px);
}
.pad-tb{
    padding: 5vw 0;
}
.pad-lr{
	padding-left:30px;
	padding-right:30px;
}
.pad-lr-more{
    padding-left:60px;
    padding-right:60px;
}
.pad-lr-most{
    padding-left:90px;
    padding-right:90px;
}
.mb-s {
    margin-bottom: 30px;
}

.mb-m {
    margin-bottom: 60px;
}

.mb-l {
    margin-bottom: 100px;
}
.mt-s {
    margin-top: 30px;
}

.mt-m {
    margin-top: 60px;
}

.mt-l {
    margin-top: 80px;
}
.pad-bottom{
	padding-bottom:80px;
}
.pad-top{
    padding-top:80px;
}


.flex-wrap{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction:row;
    flex-wrap: -webkit-wrap;
    flex-wrap: -moz-wrap;
    flex-wrap: -ms-wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*align-items: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    width:100%;*/
}
.flex-wrap.reverse,
.flex.reverse{
    flex-direction:-webkit-row-reverse;
    flex-direction:-moz-row-reverse;
     -ms-flex-direction: row-reverse;
    flex-direction:-ms-row-reverse;
    flex-direction:row-reverse;
}
.flex-wrap.gutter {
   /* margin: 0 -24px; */
}
.flex-wrap .flex-wrap.gutter {
    margin: 0 -24px;
}
.flex-wrap.gutter.pad{
    padding: 50px 26px;
}
.flex-col,
.flex-wrap a.flex-col{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction:-webkit-column;
    flex-direction:-moz-column;
    flex-direction:-ms-column;
    -ms-flex-direction: column;
    flex-direction:column;
    justify-content:-webkit-center;
    justify-content:-moz-center;
     -ms-flex-pack: center;
    justify-content:-ms-center;
    justify-content:center;
}
.flex-col.align-bottom,
.flex-wrap a.flex-col.align-bottom,
.flex-wrap.align-right{
    justify-content:-webkit-flex-end;
    justify-content:-moz-flex-end;
    justify-content:-ms-flex-end;
    -ms-flex-pack: end;
    justify-content:flex-end;
}

.half,
.halfs > *{
    width:50%;
}
.gutter > .half,
.gutter.halfs > * {
    width: calc(50% - 48px);
    margin: 0 24px 48px;
}
.third,
.thirds > *,
.one-third{
    width:33.333%;
}
.gutter > .third,
.gutter > .one-third,
.gutter.thirds > * {
    width: calc(33.333% - 48px);
    margin: 0 24px 48px;
}
.two-thirds{
    width:66.666%;
}
.gutter > .two-thirds{
    width: calc(66.666% - 48px);
    margin: 0 24px 48px;
}
.fourth,
.fourths > *{
    width:25%;
}
.gutter > .fourth,
.fourths.gutter > * { 
    width: calc(25% - 48px);
    margin: 0 24px 48px;
}

.sixth,
.sixths > *{
    width:16.666%;
}
.gutter > .sixth,
.sixths.gutter > * { 
    width: calc(16.666% - 24px);
    margin: 0 12px 60px;
}
@media only screen and (max-width:950px){
	.gutter > .third, 
	.gutter > .one-third, .gutter.thirds > * {
	    width: calc(50% - 48px);
	    margin: 0 24px 48px;
	}
}
@media only screen and (max-width:650px){
	.half,
	.halfs > *,
	.gutter > .half,
	.gutter.halfs > *,
	.third,
	.thirds > *,
	.one-third,
	.gutter > .third,
	.gutter > .one-third,
	.gutter.thirds > * ,
	.two-thirds,
	.gutter > .two-thirds,
	.fourth,
	.fourths > *,
	.gutter > .fourth,
	.fourths.gutter > * { 
	    width: 100%;
	    margin: 0 0px 30px;
	}
    .half.bg-white {
        margin: 0;
    }
    .half.img-block + .half.bg-white{
       /* margin:0 0 30px;*/
    }
    .img-block{
        min-height:450px;
        margin:0;
    }
    .pad {
        padding: 7vw;
    }
    .pad-more{
        padding: 7vw calc(7vw + 60px);
    }
    .pad-most{
        padding: 7vw calc(7vw + 90px);
    }

    .pad.collapse-mob,
    .pad-more.collapse-mob,
    .pad-most.collapse-mob,
    .pad-lr.collapse-mob,
    .pad-lr-more.collapse-mob,
    .pad-lr-most.collapse-mob  {
        padding-left: 0;
        padding-right: 0;
    }
    .overlap-bottom {
        transform: translateY(15vw);
        margin-top:-12vw;
    }
}




 

/*-- header --*/
a.skip-link {
    background-color: inherit;
    font-size: 0;
    color: #fff;
    text-decoration: none;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    width: 99%;
    transition: all .35s ease;
}
a.skip-link:focus {
    display: block;
    position: static;
    padding: 20px 50px;
    width: 100%;
    font-size: 28px;
    margin: 5px 5px 10px 5px;
}
header{
	padding:15px 5vw;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items:center;
    justify-content: space-between;
    background-color:#464d4e;
}
.home header{
    top:0;
    left:0;
    right:0;
    z-index:9;
    position:absolute;
    background-color:transparent;
}
header .logo{
	margin:0;
	padding:0;
	width:300px;
	display:block;
}
header .logo a{
	display:block;
}
header nav ul{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    list-style: none;
    align-items:center;
    margin:0;
    padding:0;
}

header nav ul li a{
	color:white;
	font-family:"Lato", sans-serif;
	margin:0 0 0 40px;
    transition: color 0.35s ease;
    position: relative; 
}
header nav ul li a:hover,
header nav ul li a:focus {
   /*color: #c77a41;*/
}
header nav ul li a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    height: 1px;
    width: 100%;
    left: 0;
    background: #c77a41;
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}
header nav ul li a:hover::after,
header nav ul li a:focus::after,
header nav ul li.selected a::after{
    transform: scaleX(1);
}
#open-menu{
    border: none;
    background: transparent;
    color: white;
    font-size: 28px;
    display:none;
    margin:0;
    padding:0;
}

#close-menu{
    border: none;
    background: transparent;
    font-size: 28px;
    display:none;
    color: #4c5556;
    margin:0 0 0 auto;
    padding:0;
}

@media only screen and (max-width:850px){
    #open-menu,
    #close-menu{
        display:block;
    }
    header{
        padding: 10px 5vw;
    }
    header nav{
        height: 100%;
        top: 0;
        right: 0;
        position: fixed;
        z-index: 99;
        background-color: white;
        box-shadow: -10px 0 5px rgba(0, 0, 0, 0);
        transform: translateX(100%);
        transition: 0.3s ease;
        max-width: 260px;
        width: 100%;
        padding: 23px 5vw;
        overflow-y: scroll;
        height: 100vh;

    }
    .nav-active header nav{
        transform:translateX(0%);
        box-shadow: -10px 0 5px rgba(0, 0, 0, 0.25);
    }
    header nav ul{
        display:block;
        opacity: 0;
        transition: opacity 0.25s 0s linear;
    }
    .nav-active header nav ul{
        opacity: 1;
        transition: opacity 0.65s 0.35s linear;
    }
    header nav ul li a{
        margin: 0 0 12px;
        font-size: 28px;
        color: #4c5556;
        display: inline-block;
    }
}
@media only screen and (max-width:650px){
    header .logo {
        width: 260px;
    }
}



/*-- footer --*/
footer .logo {
    min-width: 220px;
    margin: 0 auto 50px;
    max-width: 350px;
    width: 30vw;
}
footer p.copyright {
    color: #9a9a9a;
    font-size: 12px;
    text-align: center;
}

footer {
    text-align: center;
}

footer nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px;
    padding: 0;
    flex-wrap: wrap;
}

footer nav ul li {
    margin: 0 25px 10px;
}

footer nav ul li a {
    display: block;
    color: white;
    font-size: 20px;
    position:relative;
    margin:0;
}
@media screen and (min-width:650px){
    footer nav ul li a {
        font-size: calc(20px + 4 * ((100vw - 650px) / 950));
    }
    footer p.copyright {
        font-size: calc(12px + 3 * ((100vw - 650px) / 950));
    }
}
@media screen and (min-width:1600px){
    footer nav ul li a {
        font-size: 24px;
    }
    footer p.copyright {
        font-size: 15px;
    }
}
@media screen and (max-width:650px){
    footer nav ul {
        margin: 0 20px 30px;
    }
    footer nav ul li {
        margin: 0 15px 10px;
    }
}
footer nav ul li a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    height: 1px;
    width: 100%;
    left: 0;
    background: #c77a41;
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}
footer nav ul li a:hover::after,
footer nav ul li a:focus::after,
footer nav ul li.selected a::after {
    transform: scaleX(1);
}




/*-- hero --*/
.hero {
    padding-top: 40px;
}
.hero h1,
.hero p,
.hero .btn{
	color:white;
}
.hero .bg-img::before{
	content:'';
	display:block;
	position:absolute;
	top:0;
	left:0;
	z-index:1;
	width:100%;
	height:100%;
	background: -moz-linear-gradient(-45deg,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(-45deg,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(135deg,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 );
}
.home .hero .bg-img::before{
    background: -moz-linear-gradient(-45deg,  rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(-45deg,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(135deg,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 );
}
.hero.sub-page .bg-img::before {
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.45) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.45) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#73000000',GradientType=0 );
}
@media only screen and (max-width:768px) {
    .hero .bg-img::before {
        background: -moz-linear-gradient(left,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
        background: -webkit-linear-gradient(left,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
        background: linear-gradient(to right,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 );
    }
    .home .hero .bg-img::before {
        background: -moz-linear-gradient(left,  rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
        background: -webkit-linear-gradient(left,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
        background: linear-gradient(to right,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 );
    }
}
@media only screen and (max-width:650px) {
    .home .hero .bg-img::before{
        background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
        background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
        background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    }
    .hero.sub-page .bg-img::before{
        background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
        background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
        background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#66000000',GradientType=0 );
    }
    .home .hero .bg-img::after{
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        background: -moz-linear-gradient(top,  rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 43%, rgba(0,0,0,0) 100%);
        background: -webkit-linear-gradient(top,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 43%,rgba(0,0,0,0) 100%);
        background: linear-gradient(to bottom,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 43%,rgba(0,0,0,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66000000', endColorstr='#00000000',GradientType=0 );

    }
}

/*-- cards --*/
.cards {
    list-style: none;
    margin: 0;
    padding: 0;
}
.card {
    background: white;
    border-radius: 25px;
    box-shadow: 6px 6px 1px #0000000f;
    position:relative;
    z-index:0;
}
.card .text{
    background: white;
    padding: 40px;
    border-radius: 25px;
    transition:transform 0.35s ease;
}
a.card:hover .text{
   /* transform:translateY(-40px);*/
}
.card .demo-icon {
    font-size: 50px;
}
.card p {
    font-size: calc(16px + 2 * ((100vw - 650px) / 950));
}

.cards h2 {
    font-size: calc(24px + 8 * ((100vw - 650px) / 950));
}
.card .btn .demo-icon {
    font-size: inherit;
}
.card.transparent {
    background: transparent;
    border: 2px solid rgba(79, 88, 89, 55%);
    box-shadow: none;
    padding: 0;
    position: relative;
    z-index:1;
}
.no-arrow .card.transparent{
    border:2px solid #838a7d;
}
.card.transparent h2 {
    color: black;
   /* text-shadow: 5px 7px rgba(0, 0, 0, 10%);*/
    margin: 0 0 60px;
    transition: text-shadow 0.35s ease;
}
/*
.no-arrow .card.transparent h2 {
    text-shadow: 5px 7px #b0b396;
}
.card.transparent:hover h2 {
    text-shadow: 0px 0px rgba(0, 0, 0, 10%);
}*/
.no-arrow .card.transparent:focus h2,
.no-arrow .card.transparent:hover h2 {
    text-shadow: 0px 0px #b0b396;
}
.card.transparent .flex-col {
    -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content:space-between;
    height: 100%;
    padding:40px;
}

/*
.card.transparent::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 20%);
    border-radius: 25px;
    filter: blur(1px);
    z-index: -1;
    transform: translate(6px,6px);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 1;
}
.card.transparent:hover::after {
    transform: translate(0px,0px);
    opacity: 0;
}
*/
.card a:hover .btn,
.card .btn:hover{
    background-color:#c77a41;
    border-radius:#c77a41;
    color:white;
}
.card .hover{
    position:absolute;
    right:0;
    bottom:0;
    left:0;
    padding: 20px 40px;
    color:white;
    z-index:1;
    font-size: 14px;
    background-color:#c77a41;
    text-align:right;
    border-radius:0 0 25px 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.card .hover .demo-icon{
    font-size:14px;
    margin:0 0 0 5px;
}
.card p:last-of-type {
    margin-bottom: 0;
}

a.card p{
    opacity:1;
    transition: opacity 0.35s ease 0.15s;
}
a.card:hover p {
    opacity: 0;
    transition: opacity 0.35s ease;
}
a.card h2{
     transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
a.card:hover h2 {
   /* transform: translateY(-1em);*/
}

a.card .hover {
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
    transform: translateY(100%);
}
a.card:hover .hover{
    transform: translateY(0%);
}
a.card {
    overflow: hidden;
}
a.card .text > .demo-icon {
    transition: color 0.35s ease;
}
a.card:hover .text > .demo-icon {
    color: #c77a41;
}
a.card .text > .demo-icon::before{
    transform: scale(1);
    transform-origin: top left;
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
a.card:hover .text > .demo-icon::before {
    transform: scale(1.5);
}


/*-- callout --*/
.callout .bg-img::before{
	content:'';
	display:block;
	position:absolute;
	top:0;
	left:0;
	z-index:1;
	width:100%;
	height:100%;
	background: -moz-linear-gradient(-45deg,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(-45deg,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(135deg,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 );
}
.callout h1,
.callout p{
	color:white;
}
.callout .pad.text {
    margin: 100px 0;
}



/*-- slideshows --*/
/*! http://responsiveslides.com v1.55 by @viljamis */

.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;
  }

  .rslides_tabs {
    -js-display: flex; 
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex; 
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align:  center;
    align-items: center;
    z-index: 999;
    color: white;
    list-style: none;
    margin: 35px 0 0;
    padding: 0;
    text-align: center;
    width: 100%;
}
.slideshow-wrap .rslides_tabs{
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0;
}
.slideshow-wrap{
    position: relative;
}

.rslides {
    z-index: 0;
}

.rslides_tabs a {
    display: block;
    position: relative;
    overflow: hidden;
    text-indent: -9999999px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c3c3c3;
    margin: 0 15px;
    transition: 0.35s ease;
}
.rslides_tabs .rslides_here a{
    background: #7d7d7d;
}
.slideshow-wrap .rslides_tabs a{
     background: rgba(255, 255, 255, 0.5);
}
.slideshow-wrap .rslides_tabs .rslides_here a{
    background: white;
}


.hero .slideshow {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.hero .slideshow .rslides, 
.hero .slideshow .rslides > li {
    height: 100%;
}


/*-- loader --*/

#loader{
    width:100%;
    height:100vh;
    top:0;
    left:0;
    z-index:9999;
    position: fixed;
    background:#4e5758;
    justify-content: center;
    align-items:center;
}
#loader svg{
    width:30vw;
    margin:auto;
    min-width: 200px;
    max-width: 600px;
}


/*-- subpage --*/
.sub-page.hero .pad.text{
    padding-bottom:0;
} 
.sub-page.hero h1{
    margin:0;
}
.hero{
    overflow:hidden;
}
.hero .rellax,
.bg-img.rellax{
    height:120%;
    top:-10%;
}
.bottom-overlap-parent {
    padding-bottom: 0;
    overflow: visible;
    z-index: 2;
    position: relative;
}


.color-white p,
.color-white p strong,
.color-white *,
.color-white ul li,
.color-white .btn{
    color:white;
}
ul.lined-list {
    margin: 20px 0 30px 0;
    padding: 0;
    list-style: none;
}

ul.lined-list li {
    position: relative;
    padding: 0 0 12px 28px;
    margin: 0 0 12px;
    border-bottom: 1px solid rgb(255 255 255 / 35%);
    font-weight: bold;
  
}

ul.lined-list li::before {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border: 2px solid rgb(255 255 255 / 35%);
    border-radius: 50%;
    left: 5px;
    top: 7px;
}

ul.lined-list li:last-of-type {
    border-bottom: none;
}
p.text-shadow,
.text-shadow p{
    text-shadow: 3px 4px rgb(0 0 0 / 10%);
}
.breadcrumb{
    font-family: "Lato", sans-serif;
    color: #c0bdab;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 16px;
}
.services .flex-wrap{
    box-shadow:6px 6px 1px #0000000f;
}
.services .demo-icon{
    font-size: 70px;
    color:#435364;
}

.services .btn .demo-icon {
    font-size: inherit;
    color:black;
    transition:color 0.35s ease;
}

.services a:hover .btn .demo-icon,
.services .btn:hover .demo-icon,
.services a:focus .btn .demo-icon,
.services .btn:focus .demo-icon{
    color:white;
    transition:color 0.35s ease;
}
.services h2{
    margin:0 0 30px;
}
.services .btn{
    margin:30px 0 0;
}
.services .half {
    margin: 0;
}
.services a:hover .demo-icon.scale {
    transition: color 0.35s ease;
}
.services a:hover .demo-icon.scale {
    color: #c77a41;
}
.services a .demo-icon.scale::before{
    transform-origin: top left;
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}

.services a:hover .demo-icon.scale::before{
    transform: scale(1.15);
}



.next-prev .text {
    color:white;
    position: absolute;
    top: 0;
    right:0;
    bottom:0;
    left: 0;
    z-index: 1;
    background: rgb(0 0 0 / 32%);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:20px;
    transition:0.35s ease;
}
.next-prev a:hover .text {
    background: rgb(0 0 0 / 45%);
}
.next-prev a {
    position: relative;
    margin:0;
    text-align:center;
}

.next-prev h2{
    font-family: 'Libre Caslon Display', serif;
    font-weight: normal;
    text-transform:none;
    margin:0;
    font-size:40px;
    color:white;
    text-align:center;
}

.next-prev h3 {
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
    margin: 0 0 10px;
    text-align:center;
}

.next-prev .demo-icon {
    display: block;
    margin: 0 auto 10px;
    text-align: center;
    font-size:110%;
}

.next-prev .btn .demo-icon.icon-right-arrow {
    margin: 0 0 0 3px;
    font-size: inherit;
    display: initial;
}

.next-prev span.btn {
    margin: 12px 0 0 0;
    font-size: 12px;
    padding: 8px 20px;
}
.next-prev .demo-icon.icon-th {
    font-size: 70%;
}

.next-prev .btn .demo-icon.icon-left-arrow {
    display: inline;
    font-size:inherit;
    margin: 0 3px 0 0;
}
.next-prev .btn .demo-icon.icon-right-arrow {
    display: inline;
    font-size:inherit;
    margin: 0 0px 0 3px;
}
@media only screen and (max-width:650px){
    .service-list > .pad{
        margin-top:40px;
    }
    .next-prev {
        padding: 30px 20px;
    }

    .next-prev a.half:first-of-type {
        margin-bottom: 30px;
    }
}






/*-- circle images --*/
.circle-img{
    position: absolute;
    top: 0;
    left: initial;
    right: 5vw;
    z-index: 1;
    overflow: hidden;
    height:auto;
    padding:0 0 100%;
    width:100%;
    clip-path:inset(50% 50% 50% 50% round 50vw 50vw 50vw 50vw);
    clip-path:inset(0% 0% 0% 0% round 100% 100% 100% 100%); 
    mix-blend-mode: luminosity;
}
.no-arrow .circle-img {
    border-radius: 50%;
}

/*.circle-block .svg-background.bg-blue{
    fill:#435363;
}
.circle-block .svg-background.bg-tan{
    fill:#c0bdab;
}*/

.circle-img .bg-img{
    filter: grayscale(1);
    mix-blend-mode: soft-light;
    opacity: 0.8;
}
.circle-block .pad p{
    font-size:90%;
}
.circle-block h2{
     text-transform: none;
    letter-spacing: 0;
    font-weight:300;
}
.bg-tan h2 {
    color: black;
}
.bg-blue h2{
    color:white;
}
.bg-blue p{
    color:white;
}
p.circle-text.serif {
    font-family: 'Libre Caslon Display';
    position: relative;
    z-index: 2;
    font-size: calc(75px + 28 * ((100vw - 650px) / 950));
    display: inline-block;
    margin:0;
    line-height:1.05;
}
.circle-parent {
    overflow: visible;
     display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
     flex-direction:-webkit-column;
    flex-direction:-moz-column;
    flex-direction:-ms-column;
    -ms-flex-direction: column;
    flex-direction:column;
    justify-content:-webkit-center;
    justify-content:-moz-center;
     -ms-flex-pack: center;
    justify-content:-ms-center;
    justify-content:center;
    min-height: 50vw;
    position:relative;
}

.flex-wrap.circle-block {
   /* align-items: flex-start;*/
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.circle-block .img-block{
    text-align:right;
     overflow: visible;
}
.reverse.circle-block .img-block{
    text-align:left;
    min-height: 0;
}
.circle-block p.circle-text.serif{
    margin:0 0 0 auto;
    text-align:left;
}
.reverse.circle-block p.circle-text.serif{
    margin:0;
    text-align:left;
}
.reverse .circle-img {
    left: 5vw;
}

.bg-white p {
    color: black;
}

.bg-white h2 {
    color: #435364;
}
@media only screen and (max-width:768px){
    .circle-block .half {
        width: 100%;
        margin: 0;
    }

    .circle-parent {
        min-height: 0;

    }
    .circle-img {
        padding: 0 0 90%;
        width: 90%;
        right: initial;
        margin: 0 auto 0 0;
        left: -10vw;
        position:relative;
    }
    .reverse .circle-img {
        left: initial;
        right: -10vw;
        margin: 0 0 0 auto;
    }
    p.circle-text.serif {
        position: absolute;
        padding: 0 5vw 0 0;
    }

    .reverse.circle-block p.circle-text.serif {
        margin: 0 0 0 5vw;
        right: initial;
    }

    .circle-block .half.pad-tb {
        padding-bottom: 0;
    }

    .circle-block p.circle-text.serif {
        right: 0;
    }

    .circle-block .img-block {
        text-align: left;
        min-height: 0;
    }
    .circle-block .half.pad {
        margin-bottom: 40px;
    }

    .circle-block .half.pad h2 {
        margin: 0;
    }

}


/*-- about us page --*/
h2.lower-light {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.large p {
    font-size: calc(22px + 4 * ((100vw - 650px) / 950));
    font-weight: 500;
}
h2.small-title {
    font-size: calc(20px + 4 * ((100vw - 650px) / 950));
}

a.img-card .half.img-block{
    /*background: #c77a41;*/
    overflow:hidden;
    background: #435364;
}
a.img-card .half.img-block .bg-img {
   /* transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
    transition: transform 0.35s ease;
    transform: scale(1);
    opacity:1;*/
    width:calc(100% + 10px);
    transform:translateX(-10px);
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
a.img-card:hover .half.img-block .bg-img {
    /*transform: scale(1.05);
    mix-blend-mode: overlay;
    opacity: 0.45;
    filter: grayscale(1);*/
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
    transform:translateX(0);
}

/*-- contact blocks --*/
.contact-blocks h2{
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300;
    color:white;
    font-size:32px;
}
@media screen and (min-width: 650px) {
    .contact-blocks h2{
        font-size: calc(32px + 16 * ((100vw - 650px) / 950));
    }
}
@media screen and (min-width: 1600px) {
    .contact-blocks h2{
        font-size:48px;
    }
}
.contact-blocks a{
    display:block;
    position:relative;
    color:white;
}
.contact-blocks p,
.contact-blocks .btn,
.contact-blocks h2 span{
    color:white;
}

h2.flex-wrap.consultation {
    position:relative;
  flex-wrap:nowrap;
  align-items:center;
}
i.demo-icon.icon-contact {
    flex-grow:1;
    font-size: 60px;
    opacity: 0.4;
    color:black;
    margin: 0 0 0 15px;
    transition: opacity 0.35s ease, color 0.35s ease;
}
@media screen and (min-width: 650px) {
    i.demo-icon.icon-contact{
        font-size: calc(60px + 30 * ((100vw - 650px) / 950));
    }
}
@media screen and (min-width: 1600px) {
    i.demo-icon.icon-contact{
        font-size:90px;
    }
}
a:hover i.demo-icon.icon-contact{
    opacity:1;
    color:#c77a41;
}

input.freeform-input,
select.freeform-input,
textarea.freeform-input {
    border: none;
    border-bottom: 2px solid #727c7c;
    background: rgb(255 255 255 / 40%);
    border-radius: 0;
    outline: none;
    transition: border-color 0.35s ease, background 0.35s ease;
    padding:12px 15px;
    position: relative;
    margin-bottom:25px;
}
input.freeform-input:focus,
select.freeform-input:focus,
textarea.freeform-input:focus {
    background: white;
    border-color:#c77a41;
}


label.freeform-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 15px 5px;
    font-size: 12px;
    color:#545454;
}

input.freeform-input::-webkit-input-placeholder,
select.freeform-input::-webkit-input-placeholder,
textarea.freeform-input::-webkit-input-placeholder  { 
  color: #636363;
}
input.freeform-input::-moz-placeholder,
select.freeform-input::-moz-placeholder,
textarea.freeform-input::-moz-placeholder { 
  color: #636363;
}
input.freeform-input:-ms-input-placeholder,
select.freeform-input:-ms-input-placeholder,
textarea.freeform-input:-ms-input-placeholder {
  color: #636363;
}
input.freeform-input:-moz-placeholder,
select.freeform-input:-moz-placeholder,
textarea.freeform-input:-moz-placeholder { 
  color: #636363;
}
.freeform-row .freeform-column .freeform-label.freeform-required:after {
    color: #c77a41 !important;
}

.freeform-row .freeform-column .freeform-instructions {
    color: #2d2d2d !important;
    font-family: "Libre Caslon Display";
    font-style:italic;
    margin:0 0px 0px !important;
    display:inline-block;
    float:right;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.freeform-row .freeform-column label.freeform-label {
    display: inline-block;
    float: left;
}

.freeform-row .freeform-column .freeform-instructions::after {
    content: "";
    display: block;
    clear: both;
    float: none;
}

.freeform-row .freeform-column .input-group-one-line {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
form  .freeform-row .freeform-column .freeform-input[type=radio] {
    width: 42px;
}
form .freeform-row .freeform-column .freeform-input[type=radio],
form .freeform-row .freeform-column .freeform-input[type=checkbox]{
    margin: 0 8px 0 0;
}
.freeform-input[type='radio'] {

    width: 42px;
    height: 42px;
    position: relative;
    top: 0px;
    border-radius: 50%;
    display:inline-block;
    float:left;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    border: 2px solid #727c7c;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
    padding:0;
}
.freeform-input[type='radio']:focus{
    outline:none;
} 
.freeform-input[type='radio']:checked {
    -webkit-appearance: none;
    -webkit-appearance: none;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
    display: inline-block;
    padding: 0;
    margin: 0;
    box-shadow: none;
    outline: none;
    background: #fff;
}
.freeform-input[type='radio']:after {
    content: '';
    display: block;
    position: absolute;
    background-color: transparent;
    top: 2px;
    left: 2px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}
.freeform-input[type='radio']:checked:after {
    content: '';
    background-color: #c77a41;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}
.freeform-row .freeform-column label.freeform-label.alt {
    display: block;
    float: none;
}



 div#thank-you {
   /* position: absolute;
    top: 0;
    left: 0;*/
    width: 100%;
   /* height: 100%;*/
    z-index: 1;
    background: #cfcdbf;
}
 div#thank-you h2.serif{
 	color:#435364;
 }
 div#form-wrapper {
    position: relative;
}


.contact-blocks .bg-img {
    transition: transform 0.35s ease;
    transform: scale(1);
}

.contact-blocks a:hover .bg-img {
    transform: scale(1.05);
}

.contact-blocks a {
    display: block;
    overflow: hidden;
}
select#form-input-subject {
    background-image: url(/assets/images/down.svg);
    background-position: calc(100% - 15px) 50%;
    background-size: 15px;
    background-repeat: no-repeat;
    padding: 12px 40px 12px 15px;
}
.input {
		position: relative;
		z-index: 1;
		vertical-align: top;
	}

	.input__field {
		position: relative;
		display: block;
		-webkit-appearance: none; /* for box shadows to show on iOS */
		width: 100%;
		-webkit-transition: background-color 0.3s, border-color 0.3s;
		transition: background-color 0.3s, border-color 0.3s;
	}

	.input__field:focus {
		outline: none;
	}

	.input__label {
		-webkit-font-smoothing: antialiased;
	    -moz-osx-font-smoothing: grayscale;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		margin-bottom:0;
		width: calc(100% - 30px);
		text-align: left;
		position: absolute;
		bottom: 100%;
		pointer-events: none;
		overflow: hidden;
		-webkit-transform: translate3d(0, 48px, 0);
		transform: translate3d(0, 48px, 0);
		-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
		z-index:1;
	}

	.input__label-content {
		position: relative;
		/*display: block;
		width: 100%;*/
		-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
	}

	.input__label-content::after {
		content: attr(data-content);
		position: absolute;
		font-weight: 800;
		bottom: 100%;
		left: 0;
		height: 100%;
		width: 100%;
	}
	.input__field:focus + .input__label,
	.input--filled .input__label {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	.input__field:focus + .input__label .input__label-content,
	.input--filled .input__label-content {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	.input__field:focus + .input__field,
	.input--filled .input__field {
		background-color: white;
		border-color: #c77a41;
	}
	.freeform-row .freeform-column label.freeform-label.input__label {
	    font-family: inherit;
	    font-size: 100%;
	    line-height: 1.15;
	    color: #636363;
	    font-weight: 400;
	    text-transform: none;
	    letter-spacing: 0;
	}
	.freeform-row .freeform-column.input--filled label.freeform-label.input__label,
	.input__label-content::after {
	    text-transform: uppercase;
	    letter-spacing: 1px;
	    margin: 0 15px 0px;
	    font-size: 12px;
	    color: #545454;
	    font-weight:bold;
        overflow:hidden;
	}
	/*.freeform-row .freeform-column .input-group-one-line {
	    margin-top: 27px;
	}*/
    .freeform-row .freeform-column .input-group-one-line{
        margin-bottom:25px;
    }
	.freeform-row .freeform-column .input-group-one-line label {
	    padding-right: 20px !important;
	    display: flex;
	    align-items: center;
        /*flex:1 0;*/
        margin-bottom: 15px;
	}
	.freeform-row .freeform-column.input {
	    padding-top: 7px;
	}
	label.freeform-label.alt {
	    margin: 0;
	}
    /*
@media only screen and (min-width:1580px){
		.freeform-row.break-early{
			display:block;
		}
		.freeform-row.break-early .freeform-column{
			flex:none;
		}
		.freeform-row .freeform-column .input-group-one-line {
		    margin: 0 -15px 25px;
		}
		.freeform-row .freeform-column .input-group-one-line label{
			flex: 1 0;
    		margin: 0 15px !important;
		}
        .freeform-row .freeform-column .input-group-one-line label {
            display: block;
            text-align: center;
        }

        .freeform-row .freeform-column .freeform-input[type=radio] {
            display: block;
            float: none;
            margin: 0 auto 10px;
        }
	}	*/
@media only screen and (max-width:800px){
        .freeform-row .freeform-column .input-group-one-line label,
    .freeform-row .freeform-column .input-group-one-line label:first-of-type {
        display: flex;
        text-align: left;
        margin:0 0 15px !important;
    }
    .freeform-row .freeform-column .freeform-input[type=radio] {
        display: inline;
        margin: 0 8px 0px;
    }
    .freeform-row .freeform-column .input-group-one-line{
        display:block !important;
    }
    .freeform-row .freeform-column .input-group-one-line label{
        flex: none;
        margin: 0 0px 15px !important;
    } 
    .freeform-row .freeform-column .input-group-one-line label:first-of-type{
        margin: 0 0px 15px !important;
    } 
     .freeform-row .freeform-column .input-group-one-line label:last-of-type {
        margin:0 0px 0px !important;
    }
    .input-group-one-line label span {
        width: calc(100% - 49px);
    }
}
@media only screen and (max-width:768px){
    .contact-blocks .half {
        width:100%;
        margin-bottom: 0;
    }

    .contact-blocks .btn {
        margin-bottom: 40px;
    }

}
@media only screen and (max-width:650px){
    .freeform-row {
        display: block !important;
        margin: 0 !important;
    }

    .freeform-row .freeform-column {
        margin: 0 !important;
    }

    
}
