/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */

:root {
            --sitelayout--preset--aspect-ratio--square: 1;
            --sitelayout--preset--aspect-ratio--4-3: 4/3;
            --sitelayout--preset--aspect-ratio--3-4: 3/4;
            --sitelayout--preset--aspect-ratio--3-2: 3/2;
            --sitelayout--preset--aspect-ratio--2-3: 2/3;
            --sitelayout--preset--aspect-ratio--16-9: 16/9;
            --sitelayout--preset--aspect-ratio--9-16: 9/16;
            --sitelayout--preset--color--black: #000000;
            --sitelayout--preset--color--cyan-bluish-gray: #abb8c3;
            --sitelayout--preset--color--white: #ffffff;
            --sitelayout--preset--color--pale-pink: #f78da7;
            --sitelayout--preset--color--vivid-red: #cf2e2e;
            --sitelayout--preset--color--luminous-vivid-orange: #ff6900;
            --sitelayout--preset--color--luminous-vivid-amber: #fcb900;
            --sitelayout--preset--color--light-green-cyan: #7bdcb5;
            --sitelayout--preset--color--vivid-green-cyan: #00d084;
            --sitelayout--preset--color--pale-cyan-blue: #8ed1fc;
            --sitelayout--preset--color--vivid-cyan-blue: #0693e3;
            --sitelayout--preset--color--vivid-purple: #9b51e0;
            --sitelayout--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
            --sitelayout--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
            --sitelayout--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
            --sitelayout--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
            --sitelayout--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
            --sitelayout--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
            --sitelayout--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
            --sitelayout--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
            --sitelayout--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
            --sitelayout--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
            --sitelayout--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
            --sitelayout--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
            --sitelayout--preset--font-size--small: 13px;
            --sitelayout--preset--font-size--medium: 20px;
            --sitelayout--preset--font-size--large: 36px;
            --sitelayout--preset--font-size--x-large: 42px;
            --sitelayout--preset--spacing--20: 0.44rem;
            --sitelayout--preset--spacing--30: 0.67rem;
            --sitelayout--preset--spacing--40: 1rem;
            --sitelayout--preset--spacing--50: 1.5rem;
            --sitelayout--preset--spacing--60: 2.25rem;
            --sitelayout--preset--spacing--70: 3.38rem;
            --sitelayout--preset--spacing--80: 5.06rem;
            --sitelayout--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
            --sitelayout--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
            --sitelayout--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
            --sitelayout--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
            --sitelayout--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
        }

        :where(.is-layout-flex) {
            gap: 0.5em;
        }

        :where(.is-layout-grid) {
            gap: 0.5em;
        }

        body .is-layout-flex {
            display: flex;
        }

        .is-layout-flex {
            flex-wrap: wrap;
            align-items: center;
        }

        .is-layout-flex> :is(*, div) {
            margin: 0;
        }

        body .is-layout-grid {
            display: grid;
        }

        .is-layout-grid> :is(*, div) {
            margin: 0;
        }

        :where(.sitelayout-block-columns.is-layout-flex) {
            gap: 2em;
        }

        :where(.sitelayout-block-columns.is-layout-grid) {
            gap: 2em;
        }

        :where(.sitelayout-block-post-template.is-layout-flex) {
            gap: 1.25em;
        }

        :where(.sitelayout-block-post-template.is-layout-grid) {
            gap: 1.25em;
        }

        .has-black-color {
            color: var(--sitelayout--preset--color--black) !important;
        }

        .has-cyan-bluish-gray-color {
            color: var(--sitelayout--preset--color--cyan-bluish-gray) !important;
        }

        .has-white-color {
            color: var(--sitelayout--preset--color--white) !important;
        }

        .has-pale-pink-color {
            color: var(--sitelayout--preset--color--pale-pink) !important;
        }

        .has-vivid-red-color {
            color: var(--sitelayout--preset--color--vivid-red) !important;
        }

        .has-luminous-vivid-orange-color {
            color: var(--sitelayout--preset--color--luminous-vivid-orange) !important;
        }

        .has-luminous-vivid-amber-color {
            color: var(--sitelayout--preset--color--luminous-vivid-amber) !important;
        }

        .has-light-green-cyan-color {
            color: var(--sitelayout--preset--color--light-green-cyan) !important;
        }

        .has-vivid-green-cyan-color {
            color: var(--sitelayout--preset--color--vivid-green-cyan) !important;
        }

        .has-pale-cyan-blue-color {
            color: var(--sitelayout--preset--color--pale-cyan-blue) !important;
        }

        .has-vivid-cyan-blue-color {
            color: var(--sitelayout--preset--color--vivid-cyan-blue) !important;
        }

        .has-vivid-purple-color {
            color: var(--sitelayout--preset--color--vivid-purple) !important;
        }

        .has-black-background-color {
            background-color: var(--sitelayout--preset--color--black) !important;
        }

        .has-cyan-bluish-gray-background-color {
            background-color: var(--sitelayout--preset--color--cyan-bluish-gray) !important;
        }

        .has-white-background-color {
            background-color: var(--sitelayout--preset--color--white) !important;
        }

        .has-pale-pink-background-color {
            background-color: var(--sitelayout--preset--color--pale-pink) !important;
        }

        .has-vivid-red-background-color {
            background-color: var(--sitelayout--preset--color--vivid-red) !important;
        }

        .has-luminous-vivid-orange-background-color {
            background-color: var(--sitelayout--preset--color--luminous-vivid-orange) !important;
        }

        .has-luminous-vivid-amber-background-color {
            background-color: var(--sitelayout--preset--color--luminous-vivid-amber) !important;
        }

        .has-light-green-cyan-background-color {
            background-color: var(--sitelayout--preset--color--light-green-cyan) !important;
        }

        .has-vivid-green-cyan-background-color {
            background-color: var(--sitelayout--preset--color--vivid-green-cyan) !important;
        }

        .has-pale-cyan-blue-background-color {
            background-color: var(--sitelayout--preset--color--pale-cyan-blue) !important;
        }

        .has-vivid-cyan-blue-background-color {
            background-color: var(--sitelayout--preset--color--vivid-cyan-blue) !important;
        }

        .has-vivid-purple-background-color {
            background-color: var(--sitelayout--preset--color--vivid-purple) !important;
        }

        .has-black-border-color {
            border-color: var(--sitelayout--preset--color--black) !important;
        }

        .has-cyan-bluish-gray-border-color {
            border-color: var(--sitelayout--preset--color--cyan-bluish-gray) !important;
        }

        .has-white-border-color {
            border-color: var(--sitelayout--preset--color--white) !important;
        }

        .has-pale-pink-border-color {
            border-color: var(--sitelayout--preset--color--pale-pink) !important;
        }

        .has-vivid-red-border-color {
            border-color: var(--sitelayout--preset--color--vivid-red) !important;
        }

        .has-luminous-vivid-orange-border-color {
            border-color: var(--sitelayout--preset--color--luminous-vivid-orange) !important;
        }

        .has-luminous-vivid-amber-border-color {
            border-color: var(--sitelayout--preset--color--luminous-vivid-amber) !important;
        }

        .has-light-green-cyan-border-color {
            border-color: var(--sitelayout--preset--color--light-green-cyan) !important;
        }

        .has-vivid-green-cyan-border-color {
            border-color: var(--sitelayout--preset--color--vivid-green-cyan) !important;
        }

        .has-pale-cyan-blue-border-color {
            border-color: var(--sitelayout--preset--color--pale-cyan-blue) !important;
        }

        .has-vivid-cyan-blue-border-color {
            border-color: var(--sitelayout--preset--color--vivid-cyan-blue) !important;
        }

        .has-vivid-purple-border-color {
            border-color: var(--sitelayout--preset--color--vivid-purple) !important;
        }

        .has-vivid-cyan-blue-to-vivid-purple-gradient-background {
            background: var(--sitelayout--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
        }

        .has-light-green-cyan-to-vivid-green-cyan-gradient-background {
            background: var(--sitelayout--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
        }

        .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
            background: var(--sitelayout--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
        }

        .has-luminous-vivid-orange-to-vivid-red-gradient-background {
            background: var(--sitelayout--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
        }

        .has-very-light-gray-to-cyan-bluish-gray-gradient-background {
            background: var(--sitelayout--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
        }

        .has-cool-to-warm-spectrum-gradient-background {
            background: var(--sitelayout--preset--gradient--cool-to-warm-spectrum) !important;
        }

        .has-blush-light-purple-gradient-background {
            background: var(--sitelayout--preset--gradient--blush-light-purple) !important;
        }

        .has-blush-bordeaux-gradient-background {
            background: var(--sitelayout--preset--gradient--blush-bordeaux) !important;
        }

        .has-luminous-dusk-gradient-background {
            background: var(--sitelayout--preset--gradient--luminous-dusk) !important;
        }

        .has-pale-ocean-gradient-background {
            background: var(--sitelayout--preset--gradient--pale-ocean) !important;
        }

        .has-electric-grass-gradient-background {
            background: var(--sitelayout--preset--gradient--electric-grass) !important;
        }

        .has-midnight-gradient-background {
            background: var(--sitelayout--preset--gradient--midnight) !important;
        }

        .has-small-font-size {
            font-size: var(--sitelayout--preset--font-size--small) !important;
        }

        .has-medium-font-size {
            font-size: var(--sitelayout--preset--font-size--medium) !important;
        }

        .has-large-font-size {
            font-size: var(--sitelayout--preset--font-size--large) !important;
        }

        .has-x-large-font-size {
            font-size: var(--sitelayout--preset--font-size--x-large) !important;
        }

        :where(.sitelayout-block-post-template.is-layout-flex) {
            gap: 1.25em;
        }

        :where(.sitelayout-block-post-template.is-layout-grid) {
            gap: 1.25em;
        }

        :where(.sitelayout-block-columns.is-layout-flex) {
            gap: 2em;
        }

        :where(.sitelayout-block-columns.is-layout-grid) {
            gap: 2em;
        }

        :root :where(.sitelayout-block-pullquote) {
            font-size: 1.5em;
            line-height: 1.6;
        }
body {
	font: 15px/1.8em 'Montserrat';, Helvetica, Arial, sans-serif;
	font-weight: 400;
	color: #6c7784;
	background: #FEFBF6;
}
body.single-team {
	background: #FFF;
}
body.available-rentals {
	background: #FFF;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	height: auto;
	vertical-align:bottom;
}
img.alignright {
	float: right;
}
img.alignleft {
	float: left;
}
img.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.overflow-visible {
	overflow: visible !important;
}
a {
	color: #1A4477;
	font-weight: 600;
	text-decoration:none;
}
a:hover {
	color:#143359;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
.view-article {
	color: #1A4477;
}
.view-article:hover {
	color: #770046;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}
figure {
	margin: 0;
	padding: 0;
}
.dark-mode {

}
.dark-mode, .dark-mode h2, .dark-mode h3 {
	color: #FFF;
}

.graybg {
	background: #F2F2F2;
}
.bluebg {
	background: #1A4477;
}
.whitebg {
	background: #FFFFFF;
}
.blackbg {
	background: #101010;
}
.round {
	border-radius: 4px;
}
.round12 {
	border-radius: 12px;
}
.center-svg img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

body.page-id-10 .page-banner, body.page-id-296 .page-banner {
	background-position: top center;
}
.mobile-show {
	display: none;
}


/* Mobile Deb Helper */

.mobile-dev-helper {
	/* display: none !important; */
	display: block;
	position: fixed;
	bottom: 5px;
	left: 5px;
	font-size: 10px;
	padding: 4px;
	color: #aaa;
	z-index: 99999;
}
.mobile-dev-helper span {
	display: none;
}

/* Wordpress */


img.size-full {
	width: 100%;
	height: auto;
}

.ul-check {
	list-style: none;
	padding-left: 50px;
	margin-bottom: 30px;
}
.ul-check li {
	font-size: 17px;
	font-weight: 700;
    margin-bottom: 10px;
}
.ul-check li::before {
	content: '';
   display: inline-block;
   height: 24px;
   width: 24px;
   position: absolute;
   left: 33px;
   background-image: url('../img/check.svg');
   background-size: contain;
   background-repeat: no-repeat;
}




/* Canary Forms */


/*------------------------------------*\
    FORMS
\*------------------------------------*/

input.datepicker {
	width: 100% !important;
}

.gform_wrapper .top_label .gfield_label {
    display: none !important;
}

.inner-page .input[type="submit"] {
	background: #1A4477;
	border: none !important;
	color: #FFF;
	padding: 19px 24px;
	border-radius: 5px;
	    font-weight: 700;
	/* width: 100% !important; */
	text-transform: uppercase;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.5px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.inner-page input[type="submit"]:hover {
	background: #143359;
	border: none;
	color: #FFF;

}

.cta-wrap .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), .cta-wrap .gform_wrapper textarea {
	background: #FFF;
}


.home-banner-one .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), .home-banner-one .gform_wrapper textarea {
	background: rgba(255, 255, 255, 0.8);
}



.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), .gform_wrapper textarea {
	background-color: #f0efea;
	border: 1px solid #e0e0e0;
	/* -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.05);
	box-shadow: 0 0 20px 0 rgba(0,0,0,.05); */
	font-size: 14px !important;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):hover, .gform_wrapper textarea:hover {
	border: 1px solid #1A4477;
}

.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):focus, .gform_wrapper textarea:focus {
	border: 1px solid #1A4477;
}

.form-section-fix {
	margin-bottom: 4px !important;
}

.bigcheckbox ul {

}

.bigcheckbox li {
	display: inline-block;
}

.bigcheckbox input {
	display: none !important;
}
.bigcheckbox .gfield_label {
	display: none !important;
}

.gform_wrapper ul.gfield_checkbox li input[type="checkbox"] + label, .gform_wrapper ul.gfield_radio li input[type="radio"] + label {
	font-weight: normal;
	background: #f5f5f5;
	border: 1px solid #f5f5f5;
	font-size: 14px !important;
	padding: 19px 19px !important;
	max-width: 100%;
	margin-right: 20px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	min-width: 140px;
     text-align: center;
}
.gform_wrapper ul.gfield_checkbox li input[type="checkbox"] + label:hover, .gform_wrapper ul.gfield_radio li input[type="radio"] + label:hover {
background: #d0d0d0;
	border: 1px solid #d0d0d0;
	cursor: pointer;
}

.gform_wrapper ul.gfield_checkbox li input[type="checkbox"]:checked + label, .gform_wrapper ul.gfield_radio li input[type="radio"]:checked + label {
	font-weight: normal !important;
	background: #6e6e66;
	color: #FFF;
	border: 1px solid #6e6e66;
}
.hide-label label {
	display: none !important;
}

.gsection {
	padding-bottom: 0px !important;
}

body .gform_wrapper h2.gsection_title {
	 color: #b3bbb1;
	 font-family: 'Montserrat';
	 line-height: 22px;
	 font-size: 15px;
	 font-weight: 800;
	 text-transform: uppercase;
	 padding-bottom: 7px !important;
	 padding-top: 20px !important;
}
body .gform_wrapper h2.gsection_title:before {
	display: none;
}

.gsection_title:before {
	display: none;

}

.gform_wrapper .top_label li.gfield.gf_left_half, .gform_wrapper .top_label li.gfield.gf_right_half {
	margin-top: 0px !important;
}


/* Forms End */



/*------------------------------------*\
    Layout & Grid
\*------------------------------------*/


/* wrapper */
.wrapper {
	float: left;
     clear: both;
     width: 100%;
     position: relative;
     /* overflow: hidden; */
}

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 8%;
	position: relative;
	max-width: 1520px;
}
.container-small {
	width: 100%;
	margin: 0 auto;
	padding: 0 8%;
	position: relative;
	max-width: 1120px;
}
.container-full {
	width: 100%;
	margin: 0 auto;
	padding: 0 8%;
	position: relative;
	max-width: none;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}




.col {
  margin-right: 30px;
}
.col:last-child {
	margin-right: 0px;
}
.col-full {
  margin-right: 0px;
}

.flex-grid {
  display: flex;
}
.align-center {
	align-items: center;
}
.align-top {
	align-self: flex-start;
}
.align-bottom {
	align-self: flex-end;
}

/* Grid 12 Columns */
.span-1 		{width: 8.333%;}
.span-2 		{width: 16.66%;}
.span-3	 	{width: 25%;}
.span-4 		{width: 33.33%;}
.span-5 		{width: 41.66%;}
.span-6		{width: 49.3%;}
.span-7 		{width: 58.33%;}
.span-8 		{width: 66.66%;}
.span-9 		{width: 75%;}
.span-10 		{width: 83.33%;}
.span-11 		{width: 91.66%;}
.span-12	 	{width: 100%;}

.col-full.span-1 		{width: 8.333%;}
.col-full.span-2 		{width: 16.66%;}
.col-full.span-3	 	{width: 25%;}
.col-full.span-4 		{width: 33.33%;}
.col-full.span-5 		{width: 41.66%;}
.col-full.span-6		{width: 50%;}
.col-full.span-7 		{width: 58.33%;}
.col-full.span-8 		{width: 66.66%;}
.col-full.span-9 		{width: 75%;}
.col-full.span-10 		{width: 83.33%;}
.col-full.span-11 		{width: 91.66%;}
.col-full.span-12	 	{width: 100%;}

/* Padding Top */
.pt10		{padding-top: 10px;}
.pt20		{padding-top: 20px;}
.pt25		{padding-top: 25px;}
.pt30		{padding-top: 30px;}
.pt40		{padding-top: 40px;}
.pt50		{padding-top: 50px;}
.pt60		{padding-top: 60px;}
.pt70		{padding-top: 70px;}
.pt80		{padding-top: 80px;}
.pt90		{padding-top: 90px;}
.pt100		{padding-top: 100px;}
.pt110		{padding-top: 110px;}
.pt120		{padding-top: 120px;}
.pt130		{padding-top: 130px;}
.pt140		{padding-top: 140px;}
.pt150		{padding-top: 150px;}
.pt160		{padding-top: 160px;}

/* Padding Bottom */
.pb10		{padding-bottom: 10px;}
.pb20		{padding-bottom: 20px;}
.pb25		{padding-bottom: 25px;}
.pb30		{padding-bottom: 30px;}
.pb40		{padding-bottom: 40px;}
.pb50		{padding-bottom: 50px;}
.pb60		{padding-bottom: 60px;}
.pb70		{padding-bottom: 70px;}
.pb80		{padding-bottom: 80px;}
.pb90		{padding-bottom: 90px;}
.pb100		{padding-bottom: 100px;}
.pb110		{padding-bottom: 110px;}
.pb120		{padding-bottom: 120px;}
.pb130		{padding-bottom: 130px;}
.pb140		{padding-bottom: 140px;}
.pb150		{padding-bottom: 150px;}
.pb160		{padding-bottom: 160px;}

/* Padding left */
.pl10		{padding-left: 10px;}
.pl20		{padding-left: 20px;}
.pl25		{padding-left: 25px;}
.pl30		{padding-left: 30px;}
.pl40		{padding-left: 40px;}
.pl50		{padding-left: 50px;}
.pl60		{padding-left: 60px;}
.pl70		{padding-left: 70px;}
.pl80		{padding-left: 80px;}
.pl90		{padding-left: 90px;}
.pl100		{padding-left: 100px;}
.pl110		{padding-left: 110px;}
.pl120		{padding-left: 120px;}
.pl130		{padding-left: 130px;}
.pl140		{padding-left: 140px;}
.pl150		{padding-left: 150px;}
.pl160		{padding-left: 160px;}

/* Padding right */
.pr10		{padding-right: 10px;}
.pr20		{padding-right: 20px;}
.pr25		{padding-right: 25px;}
.pr30		{padding-right: 30px;}
.pr40		{padding-right: 40px;}
.pr50		{padding-right: 50px;}
.pr60		{padding-right: 60px;}
.pr70		{padding-right: 70px;}
.pr80		{padding-right: 80px;}
.pr90		{padding-right: 90px;}
.pr100		{padding-right: 100px;}
.pr110		{padding-right: 110px;}
.pr120		{padding-right: 120px;}
.pr130		{padding-right: 130px;}
.pr140		{padding-right: 140px;}
.pr150		{padding-right: 150px;}
.pr160		{padding-right: 160px;}





/*------------------------------------*\
    FONTS
\*------------------------------------*/

/* Google Font Load in Header */



@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fonts/fa-brands-400.eot");
  src: url("fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("fonts/fa-brands-400.woff2") format("woff2"), url("fonts/fa-brands-400.woff") format("woff"), url("fonts/fa-brands-400.ttf") format("truetype"), url("fonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
	font-style: normal;
	font-size: 24px;
}



/*------------------------------------*\
    TYPOGRAPHY
\*------------------------------------*/

p {
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	margin: 0px 0px 20px 0px;
}

strong {
	font-weight: 700;
}

h1 {
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 55px;
	line-height: 1.1em;
	color: #1a1a1a;
	margin: 0px 0px 28px 0px;
	letter-spacing: -2px;
}
h2 {
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 48px;
	line-height: 1.15em;
	color: #425163;
	margin: 0px 0px 22px 0px;
	letter-spacing: -1px;
}
h3 {
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 41px;
	line-height: 1.1em;
	color: #425163;
	margin: 0px 0px 20px 0px;
	letter-spacing: -0.5px;
}
h4 {
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 30px;
	line-height: 1.1em;
	color: #425163;
	margin: 0px 0px 20px 0px;
	letter-spacing: -0.5px;
}
h5 {
	font-weight: 700;
	font-size: 21px;
	line-height: 1.1em;
	color: #1a1a1a;
	margin: 0px 0px 20px 0px;
}
h6 {

	font-weight: normal;
	font-size: 18px;
	line-height: 1.1em;
	color: #101010;
	margin: 0px 0px 20px 0px;
}

h3.no1, h3.no2, h3.no3  {
	position: relative;
}

h3.no1::before {
	content: "01";
	font-size: 124px;
	color: #e5e7e7;
	position: absolute;
	top: 0;
	left: -32px;
	z-index: -1;
}
h3.no2::before {
	content: "02";
	font-size: 124px;
	color: #e5e7e7;
	position: absolute;
	top: 0;
	left: -32px;
	z-index: -1;
}
h3.no3::before {
	content: "03";
	font-size: 124px;
	color: #e5e7e7;
	position: absolute;
	top: 0;
	left: -32px;
	z-index: -1;
}




h4.no1, h4.no2, h4.no3, h4.no4, h4.no5, h4.no6  {
	position: relative;
}

h4.no1::before {
	content: "1";
	font-size: 106px;
	color: #e5e7e7;
	position: absolute;
	top: 0;
	left: -16px;
	z-index: -1;
}
h4.no2::before {
	content: "2";
	font-size: 106px;
	color: #e5e7e7;
	position: absolute;
	top: 0;
	left: -16px;
	z-index: -1;
}
h4.no3::before {
	content: "3";
	font-size: 106px;
	color: #e5e7e7;
	position: absolute;
	top: 0;
	left: -16px;
	z-index: -1;
}
h4.no4::before {
	content: "4";
	font-size: 106px;
	color: #e5e7e7;
	position: absolute;
	top: 0;
	left: -16px;
	z-index: -1;
}
h4.no5::before {
	content: "5";
	font-size: 106px;
	color: #e5e7e7;
	position: absolute;
	top: 0;
	left: -16px;
	z-index: -1;
}
h4.no6::before {
	content: "6";
	font-size: 106px;
	color: #e5e7e7;
	position: absolute;
	top: 0;
	left: -16px;
	z-index: -1;
}



/*------------------------------------*\
    BUTTONS
\*------------------------------------*/


.btn1 {
	font-size: 12px;
	letter-spacing: 0.5px;
	border: 1px solid #1A4477;
	padding: 7px 30px;
	border-radius: 21px;
	display: inline-block;
	color: #1A4477;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.btn1:hover {
	background: #1A4477;
	border: 1px solid #1A4477;
	color: #FFF;
}


.btn2 {
	font-size: 12px;
	letter-spacing: 0.5px;
	border: 1px solid #FFF;
	padding: 7px 30px;
	border-radius: 21px;
	display: inline-block;
	color: #d3d8d2;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.btn2:hover {
	background: #FFF;
	border: 1px solid #FFF;
	color: #1A4477;
}

.btn3 {

	font-size: 14px;
	letter-spacing: 0px;
	border: 1px solid #FFF;
	padding: 10px 28px;
	border-radius: 4px;
	display: inline-block;
	text-transform: uppercase;
	color: #FFF;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.btn3:hover {
	background: #1A4477;
	border: 1px solid #1A4477;
	color: #FFF;
}

.btn4 {
	font-size: 12px;
	letter-spacing: 0.5px;
	display: inline-block;
	text-transform: uppercase;
	color: #6c7784;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.btn4:hover {
	color: #1A4477;
}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/


/* header */
.header {
	height: 70px;
	width: 100%;
	position: fixed;
	z-index: 9999;
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
}
.modal-open .header {
	z-index: 999;
	-webkit-transition: all 0 ease-in-out;
	-moz-transition: all 0 ease-in-out;
	-ms-transition: all 0 ease-in-out;
	-o-transition: all 0 ease-in-out;
	transition: all 0 ease-in-out;
}

.header.scroll-header {
	height: 70px;
	background: #1A4477;
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
}
.header.scroll-header-stay {
	height: 70px;
	background: #1A4477;
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
}


.logo {
	float: left;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 18px;
	/* -webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out; */
	margin-left: 3%;
}
.logo:hover {
	opacity: .7;
}
.header.scroll-header .logo {
	margin-top: 7px;
}
.header.scroll-header-stay .logo {
	margin-top: 7px;
}
.logo svg {
	display: block;
	/* -webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out; */
}
.header .logo img {
	/* image-rendering: -webkit-optimize-contrast; */
	width: 220px;
	height: auto;
	/* -webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out; */
}
.header.scroll-header .logo img {
	width: 170px;
	height: auto;
}
.header.scroll-header-stay .logo img {
	width: 86px;
	height: auto;
}

.header .logo img {

	/* -webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out; */
}

.header-right-btn a {
	line-height: 44px;
	color: #FFF !important;
	background: #1A4477;
	border-radius: 4px;
	padding: 0px 27px !important;
	margin-left: 14px !important;
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
}
.header-right-btn a:hover {
	color: #FFF;
	background: #585C3A;
}
.header.scroll-header .header-right-btn {
	line-height: 60px;
}
.header.scroll-header-stay .header-right-btn {
	line-height: 60px;
}

.header.scroll-header .menu-sign-in {
    background-position: right 13px;
}
.header.scroll-header-stay .menu-sign-in {
    background-position: right 13px;
}

.menu-sign-in {
	background: url('../img/user.svg');
	background-repeat: no-repeat;
	background-position: right 15px;
	margin-right: 11px !important;
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
}
.menu-sign-in a {
	padding-right: 17px !important;
}


.right-menu-wrapper {
	position: absolute;
    top: 48px;
    right: 5%;
    margin-right: 70px;
    cursor: pointer;
    -webkit-transition: all .75s ease-in-out;
    -moz-transition: all .75s ease-in-out;
    -ms-transition: all .75s ease-in-out;
    -o-transition: all .75s ease-in-out;
    transition: all .75s ease-in-out;
}
.right-menu-wrapper a {
	color: #FFF;
	font-size: 11px;

	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.right-menu-wrapper a:hover {
	color: #1A4477 !important;
}

body.page-template-page-no-photo-header .right-menu-wrapper a, body.single-post .right-menu-wrapper a {
	color: #000;
}



.scroll-header .right-menu-wrapper {
	top: 16px;
}
.scroll-header .right-menu-wrapper a {
	color: #000;
	-webkit-transition: all .75s ease-in-out;
     -moz-transition: all .75s ease-in-out;
     -ms-transition: all .75s ease-in-out;
     -o-transition: all .75s ease-in-out;
     transition: all .75s ease-in-out;
}
.scroll-header .right-menu-wrapper a:hover {
	color: #1A4477;
}

/* logo */
.logo {

}
.logo-img {

}







/*------------------------------------*\
    DESKTOP NAV
\*------------------------------------*/

#toggle {
	display: block;
}


.primary_nav_wrap
{
	margin-top: 0px;
	float: right;
	margin-right: 3%;
	margin-top: 29px;
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
}

.primary_nav_wrap.right {
	width: auto;
	right: 4%;
	margin-top: 33px;
}

.primary_nav_wrap ul
{
	list-style:none;
	position:relative;
	display: inline-block;
	margin: 0px 0px 0px 30px;
	padding:0
}

.primary_nav_wrap #menu-right-menu
{
	float: right;
}
.primary_nav_wrap #menu-right-menu li a {
	padding: 2px 32px;
	border: #000 1px solid;
	border-radius: 26px;
	margin-right: 0px;
}
.primary_nav_wrap #menu-right-menu li a:hover {
	border: #1A4477 1px solid;
	color: #FFF;
	background: #1A4477;
}

.primary_nav_wrap ul a
{
	font-size: 15px;
	line-height: 22px;
	font-weight: 500;
	letter-spacing: 0.5px;
	display:block;
	color:#000;
	text-decoration:none;
	padding: 0 0px;
	margin: 0 16px;
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
}
.header.scroll-header .primary_nav_wrap {
	margin-top: 10px;
}
.header.scroll-header-stay .primary_nav_wrap {
	margin-top: 10px;
}

.scroll-header .primary_nav_wrap ul a {
	line-height: 39px;
}

.scroll-header .primary_nav_wrap ul ul a {
	line-height: 120%;
}




.primary_nav_wrap ul li.last-menu a {
	color: #FFF;
	line-height: 38px;
	background: #1A4477;
	border-radius: 5px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	top: -12px;
	padding: 4px 24px;
	display: inline-block;
	margin-left: 20px;
	margin-right: 0px;
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;

}
.primary_nav_wrap ul li.last-menu a:hover {
	background: #143359;
	color: #FFF;
}

.scroll-header .primary_nav_wrap ul li.last-menu a {
	top: -3px;
}
.scroll-header .primary_nav_wrap ul li.last-menu a:hover {
	background: #143359;
	color: #FFF;
}


.primary_nav_wrap ul li
{
	position:relative;
	float:left;
	margin:0;
	padding:0
}

/* .primary_nav_wrap ul li.current-menu-item a
{
	color: #000;
	background: #F2F0F0;
} */
.scroll-header .primary_nav_wrap ul li.current-menu-item a
{
	color: #000;
}

.scroll-header .primary_nav_wrap ul li.last-menu.current-menu-item a
{
	color: #FFF;
}



.primary_nav_wrap ul li.current-menu-item ul a
{
	/*background:#000;*/
}


#ihf-main-container #saveSearchButton.btn-primary {
	color: #FFF !important;
	border-color: #1a1a1a !important;
}

#ihf-main-container #saveSearchButton.btn-primary:hover {
	color: #FFF !important;
	background: #6e6e66 !important;
	border-color: #6e6e66 !important;

}

.primary_nav_wrap ul li.current-menu-item a:hover
{
	color: #1A4477;
}

.primary_nav_wrap ul li.current-menu-ancestor a
{

}

.primary_nav_wrap ul li.current-menu-ancestor a:hover
{

}

/* .primary_nav_wrap ul li.current-menu-ancestor ul a {
	color: #ababab;
} */

.primary_nav_wrap ul li.current-menu-ancestor ul li.current-menu-item a {
	color: #1A4477;
}

.primary_nav_wrap ul.sub-menu li.current-menu-item a
{
	color: #333;
	background:#FFF;
}

.primary_nav_wrap ul.sub-menu li.current-menu-item a:hover
{
	color: #1A4477;
}

.primary_nav_wrap ul.sub-menu li.current-menu-ancestor a
{
	color: #333;
	background:#FFF;
}

.primary_nav_wrap ul.sub-menu li.current-menu-ancestor a:hover
{
	color: #FFF;
	background:#e9e9e9;
}

.primary_nav_wrap ul li a:hover
{
	color: #1A4477;

}

.primary_nav_wrap ul ul
{
	opacity: 0;
	background: #FFF;
	visibility: hidden;
	position:absolute;
	top:100%;
	left:-20px;
	padding: 14px 0px;
	-webkit-border-radius: 6px;
     border-radius: 6px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-box-shadow: 0 5px 20px 0 rgba(0,0,0,.2);
	box-shadow: 0 5px 20px 0 rgba(0,0,0,.2);
	margin-top: -1px;
}

.primary_nav_wrap ul ul li
{
	float:none;
	width:224px
}

.primary_nav_wrap ul.sub-menu {
	margin-top: 0px;
	text-align: left;
}

.smaller .primary_nav_wrap ul.sub-menu {
	margin-top: 0px;
}

.primary_nav_wrap ul ul a
{
	line-height:120%;
	padding:7px 12px;
	font-size:13px;
	background:#FFF;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	color: #4D4D4D;
	border-bottom: none !important;
	text-transform: none;
}

.primary_nav_wrap ul ul a:hover {
	color: #1A4477;
}

.primary_nav_wrap ul ul ul
{
	top:0;
	left:100%
}

.primary_nav_wrap ul li:hover > ul
{
	opacity: 1;
	visibility: visible;
}










/*------------------------------------*\
    MOBILE NAV
\*------------------------------------*/

.button_container .menu-text {
	margin-left: -74px;
	color: #c1c1c1;
	text-transform: uppercase;

}

.button_container.active .menu-text {
	color: #FFF;
}

.button_container {
  position: absolute;
  top: 0px;
  right: 0%;
  height: 70px;
  width: 70px;
  background: #1A4477;
  cursor: pointer;
  z-index: 9999;
  /* transition: opacity .25s ease; */
  -webkit-transition: all .75s ease-in-out;
-moz-transition: all .75s ease-in-out;
-ms-transition: all .75s ease-in-out;
-o-transition: all .75s ease-in-out;
transition: all .75s ease-in-out;

}
.header.scroll-header .button_container {

}
header .acc-user-button .user-icon {
    border-color: #3366cc !important;
    color: #3366cc;
    font-weight: 700;
}
header.scroll-header .acc-user-button .user-icon {
    border-color: #fff !important;
    color: #fff;
}

  .listing-page .header { background: #1A4477; }
  .listing-page .header .logo img { width: 170px !important; height: auto; }
  .listing-page .logo { margin-top: 7px !important; }
  .listing-page .acc-user-button .user-icon { border-color: #fff !important; color: #fff; }

.button_container:hover {
  opacity: .7;
}

.button_container .top {
  transition: all .3s ease-in-out;
}
.button_container .middle {
  transition: all .3s ease-in-out;
}
.button_container .bottom {
  transition: all .3s ease-in-out;
}

.button_container.active .top {
  transform: translateY(9px) translateX(0) rotate(45deg);
  transition: all .3s ease-in-out;
}
.button_container.active .middle {
  opacity: 0;
  transition: all .3s ease-in-out;
}
.button_container.active .bottom {
  transform: translateY(-8px) translateX(0) rotate(-45deg);
  transition: all .3s ease-in-out;
  width: 34px;
  left: 20px;
}
.button_container span {
  background: #FFF;
  border: none;
  height: 2px;
  width: 34px;
  position: absolute;
  top: 24px;
  left: 20px;
  transition: all .35s ease;
  cursor: pointer;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.button_container span:nth-of-type(2) {
  top: 33px;
}
.button_container span:nth-of-type(3) {
  top: 41px;
  width: 20px;
  left: 34px;
}



.overlay {
  position: fixed;
  background: #1A4477;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
  z-index: 9998;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
#overlay-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-home {
	background: #101010;
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-home.default {
	opacity: 1
}
#overlay-bg-home.active {
	opacity: 1
}
#overlay-bg-services {
	background: url('../img/menu-services.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-services.default {
	opacity: 1
}
#overlay-bg-services.active {
	opacity: 1
}
#overlay-bg-work {
	background: url('../img/menu-work.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-work.default {
	opacity: 1
}
#overlay-bg-work.active {
	opacity: 1
}

#overlay-bg-impact {
	background: url('../img/menu-impact.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-impact.default {
	/* opacity: 1 */
}
#overlay-bg-impact.active {
	opacity: 1
}

#overlay-bg-about {
	background: url('../img/menu-about.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-about.default {
	opacity: 1
}
#overlay-bg-about.active {
	opacity: 1
}


#overlay-bg-blog {
	background: url('../img/menu-services.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-blog.default {
	opacity: 1
}
#overlay-bg-blog.active {
	opacity: 1
}


.overlay-menu {
	position: relative;
  	top: 50%;
  	transform: translateY(-50%);
}

.overlay-menu .blog-menu {
	display: none;
}
.overlay-menu .start-a-project {
	display: none;
}


.overlay-menu ul {
	text-align: left;
  list-style-type: none;
  overflow: hidden;
  padding: 0;
}

.overlay-menu li {
  transform: translateY(-10%);
  transition: transform 0.5s, opacity 2s;
  opacity: 1;
  margin-bottom: 11px;
}

.overlay-menu li a {
	letter-spacing: .8px;
	font-size: 28px;
     line-height: 38px;
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
	color: #FFF;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.overlay-menu li li a {
	font-size: 22px;
	padding-left: 26px;
}
.overlay-menu .sub-menu {
	margin-top: 14px;
}



.overlay-menu li a:hover {
    color: #FFF;
    opacity: .7;
}

/* .overlay-menu li.current-menu-item a {
	font-size: 45px;
	line-height: 50px;
	color: #FFF;
}
.overlay-menu li.current-menu-item a:hover {
	color: #1A4477;
} */


/*
.overlay-menu li:nth-of-type(1) {
	transition-delay: 0s;
}
.overlay-menu li:nth-of-type(2) {
	transition-delay: .1s;
}
.overlay-menu li:nth-of-type(3) {
	transition-delay: .2s;
}
.overlay-menu li:nth-of-type(4) {
	transition-delay: .3s;
}
.overlay-menu li:nth-of-type(5) {
	transition-delay: .4s;
}
.overlay-menu li:nth-of-type(6) {
	transition-delay: .5s;
}
.overlay-menu li:nth-of-type(7) {
	transition-delay: .6s;
}
.overlay-menu li:nth-of-type(8) {
	transition-delay: .7s;
}
.overlay-menu li:nth-of-type(9) {
	transition-delay: .8s;
}
.overlay-menu li:nth-of-type(10) {
	transition-delay: .9s;
} */


.overlay-menu .show {
  opacity: 1;
  transform: translateY(0%);
}

body.location .visit-location-wrapper {
	display: none;
}

.page-location-wrapper-content {
	padding-left: 8%;
}


/* sidebar */
.sidebar {

}
/* footer */

.wrapper-cta {
	display: block;
	width: 100%;
	float: left;
	color: #d4d8d3;
	padding-bottom: 100px;
}
.wrapper-cta a {
	color: #FFF;
	font-weight: 600;
}
.wrapper-cta h2 {
	color: #FFF;
}
.wrapper-cta p {
	margin-bottom: 30px;
	color: #d4d8d3;
}
.wrapper-cta-left {
	width: 50%;
	float: left;
	text-align: center;
	padding-top: 150px;
	padding-left: 8%;
}
.wrapper-cta-right {
	width: 50%;
	float: left;
	position: relative;
	padding-top: 150px;
	padding-bottom: 110px;
	padding-right: 8%;
}
.wrapper-cta-bg {
	background: #1A4477;
	position: absolute;
	width: 150%;
	height: 100%;
	right: 0;
	top: 0;
	z-index: -1;
}
.testimonial-block-wrapper .slick-dots {
	bottom: auto;
}
footer p {
	color: #d4d8d3;
}
@media only screen and (max-width: 767px) {
	.wrapper-cta-left {
		width: 100%;
		padding-top: 70px;
    		padding-left: 8%;
	}
	.wrapper-cta-right {
		width: 100%;
		top: -100px;
		padding-right: 8%;
		padding-left: 8%;
		padding-bottom: 40px;
		margin-bottom: -100px;
	}
	.wrapper-cta {
		padding-bottom: 0px;
	}
}




.footer {
	background: #1A4477;
	font-size: 14px;
	line-height: 1.7em;
	color: #d4d8d3;
	border-top: 1px solid rgba(0,0,0,.1);
}
.footer strong {
	color: #FFF;
}
.footer a {
	color: #d4d8d3;
	font-weight: normal;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.footer a:hover {
	color: #FFF;
}
.footer-wrapper {
	float: left;width:100%;clear:both;
	padding-left: 8%;
	padding-right: 8%;
}

.footer-col1 img {
	width: 470px !important;
	padding-right: 20px;
}

.footer-col1 {
	float: left;
	width: 40%;
}
.footer-col2 {
	float: left;
	width: 20%;
}
.footer-col3 {
	float: left;
	width: 20%;
}
.footer-col4 {
	float: left;
	width: 20%;
}
.footer h3 {
	color: #FFF;

	font-size: 17px;
	letter-spacing: 0px;
	margin-bottom: 12px;
}
.footer-col2 .widget_nav_menu {
	float: right;
}
#menu-footer-menu {
	width: 100%;
	float: right;
}
#menu-footer-menu li {
	display: inline-block;
}
#menu-footer-menu li a {
	font-size: 14px;
	margin-left: 26px;
}

@media only screen and (max-width: 767px) {
	.footer {
		border-top: 1px solid #4b6d93;
	}
	.footer-col1 img {
		padding-right: 0px;
	}
}

.copyright-wrapper {
	background: #1A4477;
	border-top: 1px solid #4b6d93;
	color: #FFF;
}
.copyright-wrapper .container {

}


.footer .widget_nav_menu {
	margin-top: 0px;
     margin-bottom: 0px;
}
.footer .widget_nav_menu ul {
	list-style: none;
	padding-left: 0px;
	margin-top: 13px;
	margin-bottom: 0px;
}
.footer .widget_nav_menu ul li {
}
.footer .widget_nav_menu ul li a {
	color: #FFF;
	padding: 0px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.footer .widget_nav_menu ul li a:hover {
	color: #1A4477;
}
.footer #custom_html-3 a {
	font-size: 24px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	margin-left: 2px;
	margin-right: 2px;
}
.footer #custom_html-3 a:hover {
	color: #1A4477;
}

.footer-logo {
	float: left;
}
.footer-menu {
	float: right;
	margin-top: 10px;
}
.footer-menu ul {
	list-style: none;
	margin: 0px;
}
.footer-menu ul li {
	display: inline-block;
	margin-left: 24px;
}
.footer-menu ul li a {
	font-size: 14px;

	color: #4D4D4D;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.footer-menu ul li a:hover {
	color: #1A4477;
}
.footer.dark .footer-menu ul li a {
	color: #FFF;
}
.footer.dark .footer-menu ul li a:hover {
	color: #1A4477;
}

.footer-locations {
	float: left;
	width: 100%;
	clear: both;
}
.footer-location-block {
	float: left;
	width: 100%;
	clear: both;
	margin-bottom: 18px;
	font-size: 12px;
	line-height: 20px;
	color: #0E0E0E;
	text-transform: uppercase;
}
.footer.dark .footer-location-block {
	color: #FFF;
}

.footer-location-block strong {

}
.footer-location-block.clear {
	clear: both;
}
.footer-buttons {
	float: left;
	clear: both;
	width: 100%;
	margin-top: -127px;
}
.footer-buttons .btn1 {
	float: right;
	margin-top: 10px;
	clear: both;
}
.footer-button-left {
	float:left;
}
.footer-button-right {
	float:right;
}
.footer-button-right span {
    font-size: 19px;
    top: 3px;
    position: relative;
    padding-right: 7px;
    margin-top: -10px;
    display: inline-block;
}

.copyright p {
	color: #d4d8d3;
	font-size: 11px;
	line-height: 20px;
	padding-top: 6px;
     padding-bottom: 6px;
}
.copyright a {
	color: #d4d8d3;
	font-weight: normal;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.copyright a:hover {
	color: #FFF;
}
.copyright img {
	float: left;
	padding-right: 20px
}


.footer.dark .copyright {
	background: #FFF;
	color: #101010;
}
.footer.dark .copyright a {
	color: #101010;
}
.footer.dark .copyright a:hover {
	color: #1A4477;
}
.footer-logo-white {
	display: none;
}
.footer.dark .footer-logo-black {
	display: none;
}
.footer.dark .footer-logo-white {
	display: block;
}

.footer.dark .footer-buttons .btn1 {
	display: block;
}
.footer.dark .footer-buttons .btn2 {
	display: none;
}


/* Instagram Pull */

.ig-pull {
	width: 100%;
	position: relative;
}
.ig-pull-mobile {
	display: none;
}

.ig-image {
	width: 100%;
	float: left;
	-webkit-background-size: cover;
	  -moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
	  background-position: center center;
	  position: relative;
}
.ig-image:hover .ig-mask {
	opacity: 1;
}
.ig-mask {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255, 191, 0, .8);
	opacity: 0;
	text-align: center;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	display: flex;
	align-items: center;
}
.ig-mask img {
	width: 92px;
	height: 92px;
	margin-left: auto;
	margin-right: auto;
}

.ig-block-1 {
	float: left;
	width: calc(32% - 20px);
	margin-right: 26px;
}
.ig-block-2 {
	float: left;
	width: calc(18% - 10px);
	margin-right: 13px;
	margin-top: -2.4%;
}
.ig-block-3 {
	float: left;
	width: calc(18% - 10px);
	margin-left: 13px;
	margin-bottom: -2.4%;
}
.ig-block-4 {
	float: left;
	width: calc(32% - 20px);
	margin-left: 26px;
}

.ig3 {
	width: calc(100% - 50px);
	margin-top: 26px;
	margin-left: 50px;
}
.ig4 {
	width: calc(100% - 50px);
	margin-bottom: 26px;
	margin-right: 50px;
}


.ig-image-1 {
	float: left;
	width: 25%;
	-webkit-background-size: cover;
	  -moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
}
.ig-image:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.ig-image-2 {
	float: left;
	width: 12.5%;
}
.ig-image-3 {
	float: left;
	width: 12.5%;
}
.ig-image-4 {
	float: left;
	width: 12.5%;
	clear: left;
}
.ig-image-5 {
	float: left;
	width: 12.5%;
}
.ig-image-6 {
	float: left;
	width: 25%;
}


/*------------------------------------*\
    Team
\*------------------------------------*/


.agent-listings.hide {
	display: none;
}

.team-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
}
.team-name {
	font-family: 'butlermedium';
	font-size: 48px;
	line-height: 1em;
	letter-spacing: -1px;
	color: #2D2E32;
	margin-bottom: 10px;
}
.team-phone a {
	font-size: 16px;
	line-height: 26px;
	color: #d4d8d3;
	font-weight: 400;
	padding-left: 24px;
	background: url('../img/i-phone.svg') no-repeat;
	background-position: 0px 6px;
	display: inline-block;
}
.team-phone a:hover {
	color: #FFF;
}
.team-email a {
	font-size: 16px;
	line-height: 26px;
	color: #d4d8d3;
	font-weight: 400;
	padding-left: 25px;
	background: url('../img/i-email.svg') no-repeat;
	background-position: 0px 6px;
	margin-bottom: 30px;
	display: inline-block;
}
.team-email a:hover {
	color: #FFF;
}

.facts {
	list-style: none;
	margin: 0;
	padding: 0;
}
.facts li {
	padding-left: 24px;
	background: url('../img/i-check.svg') no-repeat;
	background-position: 0px 6px;
}

.team-member-photos-wrap img {
	max-height: 360px;
	border-left: 1px solid #FFF;
	border-right: 1px solid #FFF;
}


/* Team Loop Posts */

.team-loop-post-wrapper {
	display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
}

.team-loop-post {
	text-align: center;
}


.team-loop-post img {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
     filter: grayscale(100%);
	border-radius: 50%;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
.team-loop-post:hover img {
	-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
     filter: grayscale(0%);
}

.team-loop-title {
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 17px;
	line-height: 24px;
	color: #6c7784;
	margin-top: 24px;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
.team-loop-post:hover .team-loop-title {
	color: #1A4477;
}

.team-loop-jobtitle {
	font-size: 13px;
	font-weight: 500;
	color: #6c7784;
	line-height: 18px;
     margin-top: 4px;
}



.team-post-wrap {
	display: block;
	position: relative;
	overflow: hidden;
	/* cursor: pointer; */
	float: left;
	width: 25%;
}

.team-post-wrap img {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.team-post-wrap:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.team-post-wrap-mask {
	z-index: 10;
	background: rgba(233, 193, 77, 0);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
  align-items: center;
  justify-content: center;

	text-align: center;
	opacity: 0;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.team-post-wrap:hover .team-post-wrap-mask {
	background: rgba(255, 192, 0, 0.6);
	opacity: 1;
}

.team-post-mame {
	font-size: 15px;
	line-height: 19px;
	color: #FFF;

	text-transform: uppercase;
}
.team-post-job-title {
	font-size: 13px;
	line-height: 19px;
	color: #FFF;
	text-transform: uppercase;
}
.team-post-spacer {
	border-bottom: 1px solid #FFF;
	height: 1px;
	margin-top: 12px;
	margin-bottom: 13px;
}
.team-post-wrap-mask .fab {
	color: #FFF;
	font-size: 17px;
	padding-left: 3px;
	padding-right: 3px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.team-post-wrap-mask .fab:hover {
	color: #000;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}



/* PAGE HERO */

.page-hero-wrapper {
	float: left;
     clear: both;
     width: 100%;
     position: relative;
     overflow: visible;
	display: flex;
	align-items: center;
	padding-top: 60px;
}
.page-hero-bg {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	display: block;
	width: 70%;
	height: 100%;
	background: #1A4477;
	z-index: -1;
	-webkit-border-radius: 0 0 20px 0;
	border-radius: 0 0 20px 0;
}
.page-hero-left {
	width: 50%;
	padding-top: 200px;
	padding-bottom: 120px;
	padding-left: 8%;
	color: #FFF;
	position: relative;
}
body.single-team .page-hero-left {
	padding-top: 160px;
	padding-bottom: 80px;
}
.page-hero-left h1 {
	color: #FFF;
	font-size: 4.6vw;
	margin-bottom: 14px;
}
body.single-team .page-hero-left h1 {
	margin-bottom: 5px;
}
.hero-sub-headline {
	font-size: 17px;
	color: #d4d8d3;
	margin-bottom: 30px;
}
.hero-sub-headline strong {
	color: #FFF;
}
.page-hero-right {
	width: 50%;
	padding-right: 5%;
	padding-left: 5%;
}
body.home .page-hero-right img {
		box-shadow: none;
		border-radius: 0px;
}
.page-hero-right img {
	width: 660px;
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	position: relative;
	top: 80px;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
}
body.single-team .page-hero-right img {
	width: 360px;
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	position: relative;
	top: 80px;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
}

@media only screen and (max-width: 1420px) {
	.page-hero-wrapper {
		padding-top: 20px;
	}
}
@media only screen and (max-width: 1260px) {
	.page-hero-left {
	    padding-top: 154px;
	    padding-bottom: 80px;
	}
	.hero-sub-headline {
	    font-size: 15px;
	}
}
@media only screen and (max-width: 1030px) {
	.page-hero-left {
		padding-top: 120px;
     	padding-bottom: 70px;
	}
	.page-hero-left h1 {
		letter-spacing: -1px;
	}
}
@media only screen and (min-width:1620px) {
	.page-hero-left h1 {
		font-size: 72px;
	}
}
@media only screen and (max-width: 767px) {
	.page-hero-wrapper {
	    flex-direction: column;
	}
	.page-hero-bg {
	    width: 100%;
	    border-radius: 0px;
	}
	.page-hero-left {
		width: 100%;
		padding-left: 8%;
		padding-right: 8%;
		padding-top: 110px;
	     padding-bottom: 0px;
	}
	.page-hero-right {
		width: 100%;
		padding-left: 8%;
		padding-right: 8%;
	}
	.page-hero-left h1 {
	    font-size: 34px;
	}
	.page-hero-right img {
	    top: 60px;
	}
}



.number-box h2 {
	color: #8ea2ba;
	font-size: 78px;
	margin-bottom: 6px;
}
.number-box strong {
	color: #FFF;
	font-size: 18px;
	letter-spacing: 0.5px;
}
.number-box {

}
.numbers-row .vc_col-sm-3 {
	border-right: 1px solid #4b6d93;
}
.numbers-row .vc_col-sm-3:last-of-type {
	border-right: none;
}


.border-left-bottom {
	position: relative;
	border-radius: 20px;
}
.border-left-bottom::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 34px;
	left: -34px;
	background: #1A4477;
}


.dif-box {
	padding-left: 56px;
	position: relative;
	margin-bottom: 70px !important;
}
.dif-box p {
	margin-bottom: 10px;
}
.dif-box h4 {
	margin-bottom: 10px;
}
.dif-box1::after {
	content: "1";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 80px;
	color: #FFF;
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
}
.dif-box2::after {
	content: "2";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 80px;
	color: #FFF;
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
}
.dif-box3::after {
	content: "3";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 80px;
	color: #FFF;
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
}
.dif-box4::after {
	content: "4";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 80px;
	color: #FFF;
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
}
.dif-box5::after {
	content: "5";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 80px;
	color: #FFF;
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
}
.dif-box6::after {
	content: "6";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 80px;
	color: #FFF;
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
}


.location-box {
	display: block;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.location-box img {
	width: 100%;
}
.location-box h3 {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
     align-items: center;
	color: #FFF;
	font-size: 3.6vw;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
.location-box:hover h3 {
	background: rgba(110, 125, 105, 0.8);
}
@media only screen and (min-width:1520px) {
	.location-box h3 {
		font-size: 52px;
	}
}
@media only screen and (max-width:768px) {
	.location-box h3 {
		font-size:32px;
	}
}






/*------------------------------------*\
    HERO
\*------------------------------------*/

#myVideo-mask {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .2;
    z-index: 1;
}

#myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-size: 100% 100%;
    background-image: /* our video */;
    background-position: center center;
    background-size: contain;
    object-fit: cover;
    z-index: 0;
}

.hero {
	background: url('../img/hero.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	height: 100vh;
}


.hero-text {
	width: 100%;
	z-index: 2;
	text-align: center;
	position: relative;
	overflow: visible;
}
.hero-text img {
	margin-left: auto;
	margin-right: auto;
	display: block;
	padding-left: 29px;
    padding-right: 40px;
    margin-bottom: 50px;
}

.hero h1 {
	color: #FFF;
	font-size: 4.2vw;
	line-height: 1.1em;
     letter-spacing: -2px;
	font-family: 'Montserrat';
	font-weight: 800;
}

.hero p {
	color: #FFF;
	font-size: 16px;

	text-align: center;
}

.hero-mask {
	/* background: rgba(0, 0, 0, 0.1); */
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10;
}



.hero .btn1 {
	margin-top: 12px;
}


.slick-hero {
	height: 100vh;
	position: relative;
}
.slick-hero .slick-list {
	height: 100vh !important;
}
.slick-hero .slick-list .slick-track {
	height: 100vh !important;
}

.slick-hero-slide {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	display: flex !important;
	align-items: center;
  	justify-content: center;
	-webkit-background-size: cover;
     -moz-background-size: cover;
     -o-background-size: cover;
     background-size: cover;
     background-position: top center;
     background-repeat: no-repeat;
	font-size: 80vh;

}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

/* PAGE/POST Banner */

body.contact .wrapper-cta {
	display: none;
}

.page-banner {
    height: 680px;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-bottom: 10px;
    /* overflow: visible;
    backgrouncolor: rgba(0, 0, 0, 0.2);
    background-blend-mode: darken; */
}
.page-banner-tint {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.15);
}


.page-banner.no-page-banner {
	height: 280px;
	padding-top: 100px;
}

body.page-template-page-no-photo-header .page-banner {
	margin-bottom: -80px;
}

.page-banner.tall {
	height: 720px;
}


.page-title-wrap {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: #FFF;
}
.page-title-wrap h1 {
	color: #FFF;
	font-size: 4vw;
	line-height: 1em;
	letter-spacing: -2px;
}


/* body.single-post .page-title-wrap h1  {
	color: #FFF;
    font-size: 56px;
    line-height: 56px;
    letter-spacing: 1px;
    font-family: 'Novecento-CondMedium';
    text-transform: uppercase;
}
body.single-post .no-page-banner .page-title-wrap h1 {
	color: #000;
	font-size: 48px;
	line-height: 48px;
} */

body.page-template-page-no-photo-header .page-title-wrap, body.single-work .page-title-wrap {
	color: #0B0B0B;
}
body.page-template-page-no-photo-header .page-title-wrap h1, body.single-work .page-title-wrap h1 {
	color: #101010;
}



.page-title-wrap p {

	 font-size: 17px;
}
.page-sub-headline {
	padding-left: 18%;
	padding-right: 18%;
}
.post-date {
	color: #0B0B0B;
}

.back-to {
	color: #1A4477;
	font-size: 11px;
	line-height: 13px;

	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	margin-right: -20px;
	margin-bottom: 18px;
	display: inline-block;
}
.back-to:hover {
	opacity: .8;
}
.back-to::after {
	content: "";
	height: 9px;
	width: 10px;
	background: url('../img/arrow-yl.svg');
	position: absolute;
	left: -20px;
	top: 2px;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
.back-to:hover::after {
	left: -24px;
}




.forward-to {
	color: #010101;
	font-size: 11px;
	line-height: 13px;

	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	margin-right: -20px;
	margin-bottom: 18px;
	display: inline-block;
}
.forward-to:hover {
	opacity: .8;
}
.forward-to::after {
	content: "";
	height: 9px;
	width: 10px;
	background: url('../img/aarow-yr.svg');
	position: absolute;
	right: -20px;
	top: 2px;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
.forward-to:hover::after {
	right: -24px;
}



body.single-post .back-to, body.single-work .back-to {
	color: #101010;
}
body.post-type-archive-team .back-to:hover {
	color: #FFF;
}




/* About Page */


.values-tabber ul {
	margin: 0;
	list-style: none;
}
.values-tabber ul li {
	color: #1a1a1a;
	border-bottom: 1px solid #4d4d4d;
	font-weight: 800;
	font-size: 30px;
	line-height: 36px;
	padding: 20px 0px;
	letter-spacing: -0.5px;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
.values-tabber ul li:last-child {
	border-bottom: 0px;
}
.values-tabber ul li.active {
	color: #1A4477;
	border-left: 5px solid #1A4477;
	padding-left: 14px;
}
.values-tabber ul li:hover {
	color: #1A4477;
	border-left: 5px solid #1A4477;
	padding-left: 14px;
}

.values-tabber .tab-content {
	display: none;
	padding-left: 60px;
}
.content-1.active, .content-2.active, .content-3.active, .content-4.active, .content-5.active, .content-6.active {
	display: block;
}

.mortgage-partner img.alignleft {
	margin-right: 20px;
}
.mortgage-partner p {
	margin-bottom: 10px;
}


.h2-number1, .h2-number2, .h2-number3 {
		position: relative;
}
.h2-number1::after {
	content: "1";
	font-size: 380px;
	line-height: 380px;
	display: block;
	position: absolute;
	top: -86px;
     left: -74px;
	z-index: -1;
	color: #eaebe5;
}
.h2-number2::after {
	content: "2";
	font-size: 380px;
	line-height: 380px;
	display: block;
	position: absolute;
	top: -86px;
     left: -74px;
	z-index: -1;
	color: #eaebe5;
}
.h2-number3::after {
	content: "3";
	font-size: 380px;
	line-height: 380px;
	display: block;
	position: absolute;
	top: -86px;
     left: -74px;
	z-index: -1;
	color: #eaebe5;
}


.about-pullup1 {
	margin-top: -300px;
	background: #FFF;
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
	border-radius: 4px;
	padding: 40px 4% 46px;
	width: 50%;
	float: right;
}


.about-icon-box {
	margin-left: 13%;
}
.about .about-icon-box {
	text-align: center;
}
.about-icon-box img {
	width: 64px;
	height: auto;
	margin-bottom: 21px;
	padding-top: 17px;
	margin-right: 10px;
}
.about .about-icon-box img {
	float: none;
	margin-bottom: 9px;
	margin-right: 0px;
}
.about-icon-box span.number {
	color: #1A4477;
	font-family: 'butlerregular';
	font-size: 48px;
	display: inline-block;
}
.about-icon-box span.number-text {
	display: inline-block;
	clear: both;
	font-size: 17px;

	color: #7B7B7B;
}


.contact-info-box {
	margin-top: -84px;
	background: #FFF;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
	padding: 36px 40px 2px;
	outline: 1px solid #e6e6e6;
     outline-offset: -17px;
}


/* .contact-icon-box {
	margin-left: 13%;
} */
.contact-icon-box img {
	width: 64px;
	height: auto;
	margin-bottom: -28px;
	/* padding-top: 17px;
	margin-right: 10px; */
}
.contact-icon-box span.number {
	color: #333333;
	font-family: 'butlermedium';
	font-size: 27px;
	display: inline-block;
	margin-bottom: 10px;
}
.contact-icon-box span.number-text {
	display: inline-block;
	clear: both;
	font-size: 15px;
	line-height: 1.4em;
	color: #000000;
}



.big-number {
	font-size: 82px;
	line-height: 70px;
	letter-spacing: -4px;
	color: #1A4477;

}
.row-rule {
	border-bottom: 1px solid #E6E6E6;
}


.about-img1 {
	float: right;
	position: relative;
	right: -70px;
	top: 120px;
}
.about-img2 {
	margin-bottom: 30px;
}
.about-img3 {
	float: right;
	margin-top: -250px;
     margin-bottom: -60px;
}
.mid-page-banner {
	height: 600px;
}


.family-post-wrap {
	width: 44%;
	float: left;
	margin-left: 3%;
	margin-right: 3%;
	margin-bottom: 40px;
}
.family-post-wrap a {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 5px;
}
.family-post-wrap img {
	-webkit-transition: all .5s ease-in-out;
     -moz-transition: all .5s ease-in-out;
     -ms-transition: all .5s ease-in-out;
     -o-transition: all .5s ease-in-out;
     transition: all .5s ease-in-out;
}
.family-post-wrap-mask {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	text-align: center;
	background: rgba(0, 0, 0, .2);
	color: #FFF;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
	display: flex;
  	align-items: center;
  	justify-content: center;
}
.family-post-wrap a:hover .family-post-wrap-mask {
	opacity: 1;
}
.family-post-wrap a:hover img {
	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
	-o-transform: scale(1.15);
	-ms-transform: scale(1.15);
	transform: scale(1.15);
}
.person-name {
	font-family: 'Novecento-CondMedium';
	font-size: 19px;
	text-align: center;
	margin-top: 18px;
	margin-bottom: 0px;
}
.person-title {
	text-align: center;
	color: #4D4D4D;
}





/**************************\
  Basic Modal Styles
\**************************/

.modal {
  font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0,0,0,.8);
}

.modal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0,0,0,.8);
  border-radius: .25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}



/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}




/* CONTACT PAGE */

.contact-loc-wrapper {
	display: flex;
	line-height: 1.4em;
}
.contact-loc-wrapper {
	color: #d4d8d3;
}
.contact-loc-wrapper strong {
	color: #FFF;
}
.contact-loc-left {
	width: 50%;
}
.contact-loc-right {
	width: 50%;
}


body.contact .testimonial-block-wrapper {
	display: none;
}

body.contact .gform_wrapper textarea.large {
	height: 100px;
}

body.contact .gform_wrapper .top_label .gfield_label, body.contact .gform_wrapper legend.gfield_label {
    font-size: 21px;
    letter-spacing: -1px;
}

.contact-wrapper-top-left {
	background: #101010;
     align-items: center;
	padding-left: 8%;
	padding-right: 8%;
	padding-top: 160px;
	padding-bottom: 100px;
}
.contact-wrapper-top-right {
	background: url('https://wordpress-389218-1225773.cloudwaysapps.com/sitelayout-content/uploads/2020/05/contact-banner.jpg');
	background-size: cover;
	background-position: center right;
}
.contact-wrapper-top-left h2 {
	color: #FFF;
}


/* WooCommerce */


#menu-shop-menu {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
#menu-shop-menu .sub-menu {
	padding-left: 20px;
	list-style: none;
}
#menu-shop-menu li {
	margin-bottom: 20px;
}
#menu-shop-menu li li {
	margin-bottom: 0px;
}
#menu-shop-menu li li li {
	margin-bottom: 0px;
}
#menu-shop-menu a:hover {
	color: #1A4477;
}

.ginput_recaptcha {
transform:scale(0.77);
-webkit-transform:scal(0.77);
transform-origin:0 0;
-webkit-transform-origin:0 0;
}


.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	text-align: center;
}

.woocommerce .quantity .qty {
    height: 34px;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #1A4477;
    color: #fff;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #1A4477 !important;
}
.sku_wrapper {
	display: none;
}
.tagged_as {
	display: none;
}
#coupon_code {
	width: 132px;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    padding: 12px 10px;
    border: 1px solid;
}
li.product .button {
	display: none !important;
}
.woocommerce ul.products li.product .price {
	color: #1A4477 !important;
}


/* MARKETPLACE PAGE */

.check-list {
	list-style: none;
	padding-left: 0px;
}
.check-list li {
	margin-bottom: 20px;
	font-family: 'Novecento-CondMedium';
	font-size: 21px;
}
.check-list li img {
	margin-right: 8px;
}

.phone-left {
	padding-left: 5%;
	float: left;
	width: 50%;
}
.phone-right {
	padding-left: 5%;
	float: left;
	padding-top: 20%;
	width: 50%;
}
.phone-block {
	padding-top: 80px;
	padding-bottom: 140px;
}

.ad-image {
	position: absolute;
    padding-left: 10%;
}
.ad-content {
	margin-top: 155px;
     margin-bottom: 220px !important;
}
.overflow-hidden {
	overflow: hidden;
}
.bg-left {
	background-position: left;
	background-repeat: no-repeat;
	background-size: 56%;
}

/* APPLICATION PAGE */

.page-template-page-app .cta-wrapper {
	display: none;
}
.page-template-page-app .footer-main {
	display: none;
}
.page-template-page-app .footer {
	border-top: none;
}


/* APPLY PAGE */

.page-template-page-apply .cta-wrapper {
	display: none;
}
.page-template-page-apply h2, .page-template-page-apply h3, .page-template-page-apply .bluebg p {
	color: #FFF;
}
.apply-left {
	border-right: 1px solid #FFF;
}




/* Square Photo Posts */

.square-photo-post-wrapper {
	margin-left: -1px;
	width: calc(100% + 2px);
}

.square-photo-post {
	width: 33.33%;
	float: left;
	border: 1px solid #FFF;
	position: relative;
	display: block;
	overflow: hidden;
}
.square-photo-post .content {
	position: relative;
	z-index: 2;
	display: flex;
  	justify-content: center;
  	align-items: center;
	position: absolute;
  	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.0);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.square-photo-post:hover .content {
	background: rgba(24,65,158,.8);
}
.square-photo-post img {
	-webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
     -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
     transition: all .4s ease-in-out;
}
.square-photo-post:hover img {
	filter: grayscale(100%);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.square-photo-post .content h3 {
	color: #FFF;
	text-transform: uppercase;
	text-align: center;
}





.industry-block {
	overflow: hidden;
	border-radius: 20px;
	background: #FFF;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
}
.industry-block h4 {
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 18px;
}
.industry-block p:nth-of-type(2) {
	padding-left: 30px;
	padding-right: 30px;
}
.industry-block p:last-of-type {
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 40px;
	font-size: 15px;
	line-height: 1.6em;
}

body .vc_tta.vc_general .vc_tta-panel-title .vc_tta-title-text {
	font-weight: 800;
    font-size: 23px;
    line-height: 1.1em;
    color: #1a231a;
    margin: 0px 0px 20px 0px;
    letter-spacing: -0.5px;
}
body .vc_tta-color-grey.vc_tta-style-flat .vc_tta-panel.vc_active .vc_tta-panel-heading {
	background-color: #FFF;
}
body .vc_tta-color-grey.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-body {
	background-color: #FEFBF6;
}
body .vc_tta-color-grey.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading {
	border-radius: 20px;
	background: #FFF;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
	margin-bottom: 20px;
}
body .vc_tta.vc_general .vc_tta-panel-body {
    padding: 14px 0px;
    overflow: visible;
}
body .vc_tta-tabs.vc_tta-tabs-position-left .vc_tta-tabs-container {
    width: 50%;
    padding-right: 44px;
}

body .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab>a {
	font-family: "superior-title", serif;
    font-weight: 700;
    font-style: normal;
	font-size: 24px;
	color: #425163;
	background-color: #FEFBF6;
	padding: 13px 30px 11px;
	border-radius: 29px !important;
	margin-bottom: 5px;
}
body .vc_tta-color-grey.vc_tta-style-flat.vc_tta-tabs .vc_tta-panels {
	background-color: #FEFBF6 !important;
}
body .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab:last-of-type>a {
	border-bottom: none;
}
body .vc_tta-color-grey.vc_tta-style-flat .vc_tta-tab.vc_active>a {
	color: #FFF;
	background-color: #1A4477;
}
body .vc_tta-color-grey.vc_tta-style-flat.vc_tta-tabs .vc_tta-panels {
	background-color: #FFF;
}


.vc_tta-tabs-list .vc_tta-tab:nth-of-type(1) .vc_tta-title-text::before {
	content: "1";
	width: 30px;
	display: inline-block;
	color: #b5bfcb;
}
.vc_tta-tabs-list .vc_tta-tab:nth-of-type(2) .vc_tta-title-text::before {
	content: "2";
	width: 30px;
	display: inline-block;
	color: #b5bfcb;
}
.vc_tta-tabs-list .vc_tta-tab:nth-of-type(3) .vc_tta-title-text::before {
	content: "3";
	width: 30px;
	display: inline-block;
	color: #b5bfcb;
}
.vc_tta-tabs-list .vc_tta-tab:nth-of-type(4) .vc_tta-title-text::before {
	content: "4";
	width: 30px;
	display: inline-block;
	color: #b5bfcb;
}
.vc_tta-tabs-list .vc_tta-tab:nth-of-type(5) .vc_tta-title-text::before {
	content: "5";
	width: 30px;
	display: inline-block;
	color: #b5bfcb;
}
.vc_tta-tabs-list .vc_tta-tab:nth-of-type(6) .vc_tta-title-text::before {
	content: "6";
	width: 30px;
	display: inline-block;
	color: #b5bfcb;
}
.vc_tta-tabs-list .vc_tta-tab:nth-of-type(7) .vc_tta-title-text::before {
	content: "7";
	width: 30px;
	display: inline-block;
	color: #b5bfcb;
}
.vc_tta-tabs-list .vc_tta-tab:nth-of-type(8) .vc_tta-title-text::before {
	content: "8";
	width: 30px;
	display: inline-block;
	color: #b5bfcb;
}
.vc_tta-tabs-list .vc_tta-tab:nth-of-type(9) .vc_tta-title-text::before {
	content: "9";
	width: 30px;
	display: inline-block;
	color: #b5bfcb;
}
.vc_tta-tabs-list .vc_tta-tab:nth-of-type(10) .vc_tta-title-text::before {
	content: "10";
	width: 30px;
	display: inline-block;
	color: #b5bfcb;
}





/*------------------------------------*\
    IDX
\*------------------------------------*/

body #ihf-main-container .ihf-virtual-tour-link {
    background: none !important;
}

body #ihf-main-container .title-bar-1 {
	border: none;
}

#ihf-main-container .ihf-virtual-tour-link a {
	background: #1A4477;
	border-radius: 24px;
	padding: 13px 31px;
	color: #FFF !important;
	font-size: 16px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
#ihf-main-container .ihf-virtual-tour-link a:hover {
	background: #1A4477;
	color: #FFF !important;
	opacity: .7;
}

.home .pagination {
	display: none !important;
}

#ihf-main-container .btn-link:hover, #ihf-main-container .btn-link:focus {
	color: #1A4477 !important;
	text-decoration: none !important;
}

#ihf-main-container .dropdown-menu > .active > a, #ihf-main-container .dropdown-menu > .active > a:focus, #ihf-main-container .dropdown-menu > .active > a:hover {
	background-color: #e6e6e6 !important;
}

#ihf-main-container .dropdown-menu > li > a:focus, #ihf-main-container .dropdown-menu > li > a:hover {
	background-color: #f2f2f2 !important;
	color: #000 !important;
}



#ihf-agent-sellers-rep-own-listing-info {
	display: none !important;
}

.home #ihf-board-disclaimers {
	display: none !important;
}
.home .ihf-powered-by {
	display: none !important;
}
.home .ihf-listing-search-results .fs-11 {
	display: none !important;
}
.home .pagination {
	padding-bottom: 0px !important;
}

.ihf-results-grid-photo {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.ihf-results-grid-photo:hover {
	opacity: .7;
}

.ihf-grid-result {
	margin-bottom: 100px;
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.ihf-grid-result .ihf-grid-result-container .row .col-xs-12 {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

#ihf-main-container .modal-dialog {
	margin-top: 66px;
}

#ihf-main-container .ihf-grid-result .well {
	border: none !important;
	padding: 0 !important;
	position: relative;
	margin-bottom: 0px !important;
	-webkit-border-radius: 12px 12px 0 0;
	border-radius: 12px 12px 0 0;
}

#ihf-main-container .ihf-grid-result .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

#ihf-main-container .ihf-grid-result .row:nth-of-type(4) {
	display: none !important;
}

#ihf-main-container .ihf-grid-result .row:nth-of-type(4) {
	display: none !important;
}

#ihf-main-container .ihf-grid-result .row:nth-of-type(3) {
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#ihf-main-container .ihf-grid-result .row:nth-of-type(2) {
	margin-left: 0px !important;
	margin-right: 0px !important;
	position: absolute;
	left: 0;
	bottom: -70px;
	z-index: 10;
	width: 100% !important;
	-webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
     box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
	-webkit-border-radius: 0 0 12px 12px;
	border-radius: 0 0 12px 12px;
	background: #FFF;
}

.listings-embed-row #ihf-main-container .ihf-grid-result .row:nth-of-type(2) {
	bottom: -76px;
	padding-bottom: 18px;
}

#ihf-main-container .ihf-grid-result .ihf-grid-result-price {
	font-weight: normal !important;
	font-family: 'gotham_htf_bookregular' !important;
	font-size: 13px;
}

.ihf-grid-result .ihf-results-grid-photo {
	height: 250px !important;
	-webkit-border-radius: 12px 12px 0 0;
	border-radius: 12px 12px 0 0;
}

.ihf-grid-result .ihf-grid-result-container .row:nth-of-type(1) {
	position: absolute;
	bottom: -64px;
	z-index: 11;
	margin-left: 0px !important;
	margin-right: 0px !important;
	padding-left: 15px !important;
}

.ihf-grid-result a .ihf-grid-result-address {
	color: #425163 !important;
}

.ihf-grid-result .title-bar-1 {
	padding: 0px !important;
	background: none !important;
	font-size: 11px;
}

.ihf-grid-result .ihf-grid-result-price {
	margin: 0px !important;
}

.ihf-grid-result .row:nth-of-type(2) .col-xs-10 {
	/* background: rgba(0, 0, 0, 0.4); */
	padding-bottom: 12px;
	padding-top: 9px;
}
.ihf-grid-result .ihf-grid-result-container .row:nth-of-type(2) .col-xs-10 a {
	color: #FFF !important;
}


.ihf-grid-result .ihf-grid-result-container .pull-right {
	display: none;
}

.ihf-grid-result .ihf-grid-result-address-container {
    margin-bottom: 10px !important;
}


#ihf-main-container .ihf-social-share .btn-sm, #ihf-main-container .ihf-social-share .btn-xs {
	color: #FFF !important;
}



#ihf-main-container .ihf-grid-result-price a {
    color: #6d6e71 !important;
    font-size: 11px;
    font-family: 'Montserrat';
    font-weight: 500;
}

#ihf-main-container a {
    color: #6d6e71 !important;
    text-decoration: none !important;
}

#ihf-main-container a:hover {
    color: #4a6074 !important;
    text-decoration: none !important;
}

.leaflet-container h2.map-title {
	font-size: 22px;
	letter-spacing: 0px;
	padding-bottom: 8px;

}
.leaflet-container .btn {
	background: #1A4477;
	color: #FFF;
	text-transform: uppercase;
	font-size: 14px;
	padding: 8px 20px;
	margin-top: 4px;
	margin-bottom: 2px;
	display: inline-block;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
.leaflet-container .btn:hover {
	opacity: .8;
	color: #FFF;
}
.leaflet-popup-tip {
	display: none;
}

.ihf-slide .thumbnail {
	position: relative;
	overflow: hidden;
	border: none !important;
	min-height: 300px;
	margin: 5px 5px 12px !important;

}

.ihf-container.ihf-widget.ihf-slideshow-container .row .pagination {
	display: none !important;
}

.ihf-slide .thumbnail .gallery-address a {
	display: inline-block;
	font-family: "gotham_htfbold";
	font-size: 16px;
	line-height: 18px;
	padding-bottom: 6px;
	padding-top: 16px;
}

.ihf-slide .gallery-prop-info {
	font-size: 15px;
	font-family: 'gotham_htf_lightregular';
	color: #939598;
	padding-bottom: 20px;
}

.ihf-slide .gallery-prop-info strong {
	font-size: 24px;
	font-family: 'gotham_htf_lightregular' !important;
	color: #939598;
	font-weight: normal !important;
}

.ihf-slide .gallery-prop-info .col-xs-6:nth-child(2) {
	padding-top: 10px;
}

.ihf-slideshow-container {
	overflow: visible !important;
}
.ihf-slideshow .ihf-slider-col .thumbnail {
	min-height: 400px;
}

.feat-prop-wrap #ihf-main-container {
	padding-bottom: 40px;
	display: block !important;
}

.ihf-slide .gallery-prop-info .col-xs-6 {
	width: 100% !important;
	clear: both;
	text-align: center !important;
}

.ihf-slide .ihf-small-results-photo > a {
    background: #333 none repeat scroll 0 0;
    display: block;
    margin: 0 0 30px;
    overflow: hidden;
    padding-top: 65%;
    position: relative;
}
.ihf-slide .thumbnail .row:first-of-type {
    left: 0;
    padding-top: 200px;
    text-align: center;
    top: 0;
    width: 100%;
    position: relative;
}

.ihf-slide .thumbnail .row:nth-child(2) {
	position: absolute;
	height: 200px;
	top: 0;
	left: 0;
}

.ihf-gallery-slider-photo {
	height: 200px !important;
}

.ihf-gallery-slider-photo img.ihf-slider-img {
	height: 200px !important;
	width: 100%;
	max-height: 200px !important;
}


#ihf-main-container {
	/* font-family: 'gotham_htf_bookregular'; */
}
#ihf-main-container .btn-primary {
	background-color: #1A4477;
	    border-color: #1A4477;
	    border-radius: 10px !important;
	    color: #ffffff !important;
	    font-family: "Poppins", sans-serif;
	    text-transform: uppercase;
	    -webkit-transition: all .2s ease-in-out;
	    -moz-transition: all .2s ease-in-out;
	    -o-transition: all .2s ease-in-out;
	    -ms-transition: all .2s ease-in-out;
	    transition: all .2s ease-in-out;
}
#ihf-main-container .btn-primary:hover, #ihf-main-container .btn-primary:focus, #ihf-main-container .btn-primary:active, #ihf-main-container .btn-primary.active {
    background-color: #143359;
        border-color: #143359;
        color: #FFF !important;
}

#ihf-main-container a, #ihf-main-container .btn-link {
	color: #1A4477;
}
#ihf-main-container a:hover, #ihf-main-container a:focus {
	color: #7c7776;
	text-decoration: none;
}
#saveSearchButton {
	background: #1A4477 !important;
	border: 1px solid #1A4477 !important;
}
#saveSearchButton:hover {
	opacity: .8;
}
#ihf-main-container .title-bar-1 {
	border: none;
	padding: 7px 8px;
	background: #1A4477;
}
.ihf-grid-result-address {
    padding-bottom: 0px;
    line-height: 17px;
    display: inline-block;
}
.ihf-grid-result-address::first-line {
    padding-bottom: 10px;
    /* font-family: "gotham_htfbold"; */
    font-weight: 700;
    display: inline-block;
}


.ihf-grid-result-basic-info-container {
	color: inherit;
}
.ihf-grid-result .ihf-grid-result-container.well .row:nth-child(5),
.ihf-grid-result .ihf-grid-result-container.well .row:nth-child(6),
.ihf-grid-result .ihf-grid-result-container.well .row:nth-child(7),
.ihf-grid-result .ihf-grid-result-container.well .row:nth-child(8) {
	display: none !important;
}

#ihf-main-container .modal-header {
	background: #1A4477;
}
#ihf-main-container .modal-title {
	font-weight: normal;
	font-family: "Poppins", sans-serif;
}
#ihf-main-container .close {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: normal;
    line-height: 22px;
    opacity: 1;
    padding-bottom: 4px;
    text-shadow: none;
}
#ihf-main-container b, #ihf-main-container strong {
	font-weight: normal;
}

.ihf-listing-detail .ihf-address {
	font-size: 23px !important;
	font-weight: normal !important;
	color: #425163 !important;
	letter-spacing: -0.5px !important;

}
.tab-content #ihf-main-container .mt-10 {
    margin-top: 30px;
}

.ihf-description {
	font: 21px/1.4;
}
.listing-info-item {
	font: 14px/1.3;
}
#ihf-main-container .nav-tabs>li.active>a, #ihf-main-container .nav-tabs>li.active>a:focus {
	background-color: #FEFBF6;
	color: #425163;
}
.ihf-share-btn-more {
	display: none !important;
}


#ihf-main-container .listing-info-item {
    padding: 6px 0;
}

#ihf-main-container .tab-content .title-bar-1 {
	font-size: 18px;
	font-family: "Poppins", sans-serif;
	letter-spacing: -0.5px;
	color: #FFF;
	margin-top: 32px;
	padding: 12px 15px;
	margin-bottom: 10px;
	border-radius: 10px;
}











/* HOME PAGE */


.pl-stat-box {
	background: #1A4477;
	border-radius: 12px;
	color: #FFF;
	position: absolute;
	left: -130px;
	top: 30%;
	width: 230px;
	padding: 30px 0px;
}
.pl-stat-box h2 {
	font-size: 53px;
	letter-spacing: -2px;
	margin-bottom: 4px;
	color: #FFF;
}
.pl-stat-box p {

	font-size: 14px;
	line-height: 18px;
}
.pl-offer-box h2 {
	color: #FFF;
}
.vcard-box {
	font-size: 16px;
}
.vcard-box img {
	margin-right: 10px;
	position: relative;
	top: -5px;
	border-radius: 50%;
	border: 3px solid #FFF;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
}


.el-row .vc_col-sm-3{
	text-align: right;
}


.num-box-wrapper {
	display: flex;
}
.num-box {
	width: 25%;
	text-align: center;
	border-right: 1px solid #4d4d4d;
	padding: 20px 0px 0px 0px;
}
.num-box h3 {
	font-size: 72px;
	line-height: 78px;
	color: #c7b299;
	margin-bottom: 10px;
}
.num-box h3 span {
	position: relative;
	top: -20px;
	margin-bottom: -20px;
	font-size: 52px;
	line-height: 0px;
}
.num-box p {

	text-transform: uppercase;
}

.bign-box .sitelayoutb_wrapper {
	margin-bottom: 50px !important;
}
.bign-box p {
	margin-left: 68px;
}

.bign {
	float: left;
	font-size: 74px;
	color: #c7b299;
	font-family: 'butlermedium';
	line-height: 70px;
	width: 67px;
     text-align: center;
}

.strata-logo-slider-single {
	text-align: center;
	margin-left: 15px;
	margin-right: 15px;
	text-align: center;
}



.featured-video-wrapper {
	display: flex;
	align-items: center;
}
.featured-video-left {
	float: left;
	width: 50%;
	position: relative;
	z-index: 2;
}
.featured-video-right {
	float: left;
	width: calc(50% + 80px);
	position: relative;
	z-index: 1;
	padding: 18px;
	margin-left: -80px;
	background: #000;
}
.featured-video-right-content {
	border: 1px solid #fff;
	padding: 110px 110px 110px 150px;
	color: #FFF;

}
.featured-video-right-content h4 {
	color: #FFF;
}
.fv-address {
	font-size: 20px;

	text-transform: uppercase;
	margin-bottom: 2px;
}
.fv-meta {
	text-transform: uppercase;
	font-size: 14px;

	margin-bottom: 30px;
}

.featured-video-link {
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 0.3) url('../img/play.svg');
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
.featured-video-link:hover {
	background: rgba(0, 0, 0, 0.5) url('../img/play.svg');
	background-position: center center;
	background-repeat: no-repeat;
}




.imgloading-container span {
	image-rendering: -webkit-optimize-contrast;
}

.ben-home-photo {
	margin-top: -60px;
}

.small-quote {
	position: relative;
	margin-top: 26px;
     margin-bottom: 22px;
}
.small-quote::after {
	content: "";
	width: 42px;
	height: 37px;
	top: -10px;
	left: -12px;
	position: absolute;
	background: url('../img/small-quote.svg') no-repeat;
	z-index: -1;
}

.icon-facts-wrapper {
	z-index: 10;
	position: relative;

}
.icon-facts {
	margin-top: -14%;
	background: #FFF;
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
	width: 77%;
	clear: both;
	float: left;
	padding: 40px 26px;
	border-radius: 4px;
}
.icon-facts-box {
	width: 33.33%;
	float: left;
	color: #7b7b7b;

	font-size: 18px;
	display: flex;
	align-items: center;
}
.icon-facts-box img {
	display: inline-block;
	clear: both;
	margin-bottom: 10px;
}
.icon-facts-box-left {
	float: left;
	width: 74px;
}
.icon-facts-box-right {
	float: left;
	width: calc(100% - 74px);
}
.icon-facts-box .big-num {
	color: #1A4477;
	font-family: 'butlerregular';
    font-weight: normal;
    font-size: 36px;
    margin-bottom: 2px;
}


.home-plax {
	height: 65vh;
}
.home-plax2 {
	padding-top: 80px;
	padding-bottom: 0px !important;
	margin-bottom: 0px !important;
	/* color: #FFF; */
}
.home-plax2 h2 {
	/* color: #FFF; */
}
.home-plax2 .btn1 {
	margin-top: 10px;
}

.home-pullup1 {
	margin-top: -200px;
	background: #FFF;
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
	border-radius: 4px;
	padding: 40px 7% 46px;
}

.a-block {
	float: left !important;
	height: 400px !important;
	background-position: center center;
	background-size: cover;
	padding: 0px 1px;
	margin-left: 1px;
	margin-right: 1px;
	position: relative;
}
.a-content {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	text-align: center;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
.a-content:hover {
	background: rgba(0, 0, 0, 0.4);
}
.the-a-title {
	color: #FFF;
	font-size: 25px;

}
.slick-a-wrap .slick-list {
	border-radius: 20px;
}






.home-three-box h3 {
	margin-top: 23px;
	margin-bottom: 14px;
}
.home-three-box .btn1 {
	margin-top: 8px;
}

.home-posts-wrapper h2 {
	float: left;
}
.home-posts-wrapper .btn1 {
	float: right;
}

.t-block {
	width: 33.33%;
	float: left;
	padding: 20px 30px;
}
.t-block-content {
	background: #FFF;
	border-radius: 20px;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
}
.t-content-lower {
	background: #1A4477;
	color: #FFF;
	-webkit-border-radius: 0 0 20px 20px;
	border-radius: 0 0 20px 20px;
	padding: 16px 24px;
}

.t-block-img {
	margin-bottom: 20px;
}
.t-location {
	font-size: 15px;
}
.a-location {
	color: #FFF;
	font-size: 16px;
	text-transform: uppercase;
}
.a-content-wrapper {
	position: absolute;
	bottom: 60px;
	width: 100%;
}

.slick-t-wrap {
	position: unset !important;
}
.slick-t-wrap h4 {
	color: #58595B;
	font-size: 25px;
}
.slick-t-wrap p {

}

.test-intro {
	padding-left: 15%;
	padding-right: 15%;
	margin-bottom: 60px;
}


.testimonial-block-wrapper {
	display: flex;
	align-items: center;
	background: #f2f1ec;
	padding-top: 100px;
	padding-bottom: 100px;
}
.testimonial-block-left {
	width: 50%;
	padding-left: 5%;
}
.testimonial-block-right {
	width: 50%;
	padding-right: 5%;
	padding-left: 5%;
}


.t-content {

}
.the-title {
	font-size: 17px;
	font-weight: 700;
}
.the-location {
	margin-top: -4px;
}
.t-content a {
	display: inline-block;
}

.t-content .the-content p {
	font-family: "superior-title", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 2.2vw;
	line-height: 1.4em;
	color: #425163;
	margin: 20px 0px 0px 0px;
	letter-spacing: -0.5px;
}
@media only screen and (min-width:1440px) {
	.t-content .the-content p {
		font-size: 31px;
	}
}

.t-content .the-title {
	color: #6c7784;
	margin-bottom: -4px;
    font-size: 15px;
    margin-top: 12px;
}
.t-content .the-title span {
	color: #6c7784;
}


.circle-profile {
	border-radius: 100%;
	-webkit-box-shadow: 5px 5px 30px 0 rgba(0,0,0,.1);
	box-shadow: 5px 5px 30px 0 rgba(0,0,0,.1);
}

.white-block {
	background: #FFF;
	border-radius: 5px;
	padding: 50px 44px 58px !important;
	-webkit-box-shadow: 1px 1px 20px 0 rgba(0,0,0,.2);
	box-shadow: 1px 1px 20px 0 rgba(0,0,0,.2);
}
@media only screen and (max-width: 767px) {
	.testimonial-block-wrapper {
	    flex-direction: column-reverse;
	    padding-top: 60px;
	    padding-bottom: 50px;
	}
	.testimonial-block-left {
		width: 100%;
		padding-left: 0px;
	}
	.testimonial-block-right {
		width: 100%;
		display: none;
	}
	.t-content .the-content p {
	    font-size: 19px;
	}
	.testimonial-block-wrapper .slick-dots {
		text-align: center;
	}
}






.featued-wine-title {
	margin-top: 20px;
}

.home-event-wrapper img.size-full {
	width: 731px;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.home-event-date {

	text-transform: uppercase;
	margin-bottom: 10px;
}

.home-event-title {
	font-size: 26px;

	line-height: 1.3em;
}

.wine-block {
	text-align: center;
	text-transform: uppercase;
}

.wine-block img.size-full {
	width: 263px;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
	clear: both;
}

.home-intro-wrapper {
	font-size: 33px;
	text-transform: uppercase;

	line-height: 1.35em;
	text-align: center;
	letter-spacing: -1px;
}


.our-clients {
	background: #f7f7f9;
}
.our-clients .clients-headline {
	color: #707070;
	font-size: 11px;

	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding-top: 15px;
}

.location-home-main {
	color: #FFF;
}


.home-large-text {
	font-size: 14px;
	padding-bottom: 26px;
	padding-top: 10px;
	text-transform: uppercase;

}

.vertical-rule {
	height: 64px;
	width: 1px;
	margin-left: auto;
	margin-right: auto;
	background: #000;
	margin-top: 80px;
	margin-bottom: 28px;
}


.watch-video {
    position: absolute;
    top: 41%;
    left: 53%;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.watch-video:hover {

	opacity: .8;
}






/*------------------------------------*\
    BLOG
\*------------------------------------*/

.category-events .blog-menu-wrapper {
	visibility: hidden;
}


.blog-post-standard {
	display: block;
	background: #FFF;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
	position: relative;
}
.blog-post-standard-content {
	padding: 24px 20px 30px;
	margin-bottom: 32px;
}

.blog-post-standard-event-date {
	text-transform: uppercase;
	color: #FFF;
	margin-bottom: 4px;
	position: absolute;
	top: 0;
	left: 0;
	background: #1A4477;
	padding: 10px 24px;
	font-family: 'Novecento-CondMedium';
	font-size: 18px;
	z-index: 10;
}

.blog-post-standard-title {
	text-transform: uppercase;

	margin-bottom: 8px;
}
.blog-post-standard-title a {
	color: #000;
	line-height: 1.3em;
    display: inline-block;
}
.blog-post-standard-title a:hover {
	color: #1A4477;
}
.blog-post-standard img {
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
.blog-post-standard img:hover {
	opacity: .8;
}
.blog-post-standard-exceprt {
	color: #999999;
	font-size: 13px;
	line-height: 1.5em;
}

/* Blog Categoty Menu */

.blog-menu-wrapper .menu {
	list-style: none;
	font-size: 14px;
	line-height: 16px;

	text-transform: uppercase;
	margin-top: 40px;
     margin-bottom: 40px;
	text-align: center;
	padding-left: 0px;
}
.blog-menu-wrapper .menu li {
	display: inline-block;
	margin-left: 25px;
	margin-right: 25px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.blog-menu-wrapper .menu li a {
	color: #0B0B0B;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

.blog-menu-wrapper .menu li a:hover {
	color: #1A4477;
}

.blog-menu-wrapper .menu li.current-menu-item a, .blog-menu-wrapper .menu li.current_page_item a {

}


/* Blog Tiles */

.blog-post-wrap {
	display: block;
	position: relative;
	overflow: hidden;
	/* cursor: pointer; */
	float: left;
	width: 33.33%;
}
.blog-post-wrap.wide {
	width: 66.66%;
}

.blog-post-wrap img {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	width: 100%;
	height: auto;
}

.blog-post-wrap:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.blog-post-wrap-mask {
	z-index: 10;
	background: rgba(233, 193, 77, 0);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
     align-items: flex-end;

	text-align: left;
	opacity: 0;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.blog-post-wrap:hover .blog-post-wrap-mask {
	background: rgba(255, 192, 0, 0.6);
	opacity: 1;
}

.blog-post-title {
	font-size: 25px;
	line-height: 27px;
	color: #FFF;

	text-transform: uppercase;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
}





/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

/* MENU  */
@media only screen and (max-width:1160px) {
	#toggle {
		display: block;
	}
	#menu-desktop-menu {
		display: none;
	}

	.num-box h3 {
	    font-size: 50px;
	    margin-bottom: 0px;
	}
	.num-box h3 span {
	    font-size: 32px;
	}
	.num-box p {
	    font-size: 14px;
	    line-height: 22px;
	}
	.t-content {
	    margin-top: 20px;
	    padding-left: 20px;
	    padding-right: 20px;;
	}
	.slick-t-wrap p {
	    font-size: 15px;
	    line-height: 1.4em
	}

	.about-pullup1 {
		width: 100%;
		margin-top: 0px;
	}
	.home-plax {
		height: auto;
	}

	body.about .home-plax {
	    height: 280px;
	}

	.home-plax {
	    height: 280px;
	}

	.icon-facts {
		width: 100%;
		margin-top: 0px;
	}
	.primary_nav_wrap, .header-right-btn {
		display: none;
	}
	.header {
		height: 70px;
		background: #1A4477;
		overflow: visible;
	}
	.header .logo {
		margin-top: 7px;
		margin-left: 5%;
	}
	.header .logo img {
	    width: 170px;
	    height: auto;
	}
	.logo svg {
		/* width: 228px;
    		height: auto; */
	}
	.header .cls-logo1 {
		fill:#6e6e66;
	}
	.header .button_container {
	    /* top: 19px; */
	}
	.hero {
	    margin-top: 60px;
	}
	/* .slick-t-wrap p {
		    font-size: 18px;
		    line-height: 1.4em;
	} */
	.featured-video-wrapper {
		flex-direction: column;
	}
	.featured-video-left {
		width: 100%;
	}
	.featured-video-right {
		width: 100%;
		margin-left: 0px;
	}
	.featured-video-right-content {
	    padding: 33px 21px;
	}
	.fv-address {
		font-size: 16px;
	}
	.fv-meta {
	    font-size: 12px;
	    margin-bottom: 16px;
	}
	.featured-video-right-content h4 {
		margin-bottom: 18px;
	}
	.hero {
	    height: 80vh;
	}

}


/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 767px) {

	.pl-stat-box {
		display: none;
	}

	#menu-footer-menu li a {
	    margin-left: 0px;
	}
	.values-tabber .tab-content {
		display: block;
		padding-left: 0px;
		margin-bottom: 60px !important;
	}

	.mobile-dev-helper span.help-all-mobile {
		display: block;
	}

	.featured-video-wrapper {
		flex-direction: column;
	}
	.featured-video-left {
		width: 100%;
	}
	.featured-video-right {
		width: 100%;
		margin-left: 0px;
	}
	.featured-video-right-content {
	    padding: 33px 21px;
	}
	.fv-address {
		font-size: 16px;
	}
	.fv-meta {
	    font-size: 12px;
	    margin-bottom: 16px;
	}
	.featured-video-right-content h4 {
		margin-bottom: 18px;
	}

	.footer h3 {
	    line-height: 12px;
	}

	.num-box-wrapper {
		flex-direction: column;
	}
	.num-box {
	    width: 100%;
	    border-bottom: 1px solid #4d4d4d;
	    border-right: none;
	    padding: 37px 0px 15px 0px;
	}
	.num-box:last-of-type {
		border-bottom: 0px;
	}
	body.contact .page-banner {
	    margin-top: 18px;
	}
	.el-row .vc_col-sm-3{
		text-align: left;
	}
	.values-tabber .values-tab {
		display: none;
	}
	.tab-content {
		padding-left: 0px;
	}
	.tab-content.respect-content, .tab-content.communication-content, .tab-content.longevity-content, .tab-content.about-content, .tab-content.global-content
	 {
		display: block !important;
		margin-bottom: 60px;
	}
	.tab-content.respect-content .btn2, .tab-content.communication-content .btn2, .tab-content.longevity-content .btn2, .tab-content.about-content .btn2, .tab-content.global-content .btn2 {
		display: none;
	}


	.square-photo-post {
	    width: 100%;
	}
	.contact-icon-box {
	    margin-left: 4%;
	}

	.page-banner {
	    height: 300px;
	    position: relative;
	    margin-top: 60px;
	}

	.h2-number1::after, .h2-number2::after, .h2-number3::after {
	    font-size: 200px;
	    line-height: 200px;
	    top: -41px;
	    left: -37px;
	}
	body.contact .page-banner {
	    height: 380px;
	}

	.footer-col1 {
		width: 100%;
		clear: both;
		margin-bottom: 50px;
	}
	.footer-col2, .footer-col3, .footer-col4 {
		width: 100%;
		clear: both;
		margin-bottom: 12px;
	}

	.cta-wrapper p {
		padding-left: 0px;
		padding-right: 0px;
	}

	.home-plax2 {
	    padding-top: 60px;
	    padding-bottom: 60px;
	}


	.icon-facts {
	    width: 100%;
	}
	.icon-facts-box {
			width: 100%;
			margin-bottom: 40px;
			text-align: center;
			display: block;
	}
	.icon-facts-box-left, .icon-facts-box-right {
		width: 100%;

	}


	.slick-slide {
		text-align: center;
	}

	.slick-t-wrap p {
		    font-size: 24px;
		    line-height: 1.4em;
	}

	.footer-buttons {
		margin-top: 0px;
	}

	.copyright {
		text-align: center;
	}
	.copyright img {
		float: none;
		margin-left: auto;
		margin-right: auto;
		display: block;
    		padding-right: 0px;
	}
	.footer-logo {
		width: 100%;
	}

	/* .mobile-show {
		display: block;
	} */
	 .createmodel .form-group .login_btn {
		max-width: max-content;
	 }

	.mobile-hide {
		display: none;
	}
	.team-loop-post {
	    width: 100%;
	}

	.home-three-box {
		margin-bottom: 60px;
	}
	.cta-wrapper .btn2 {
		margin-bottom: 20px;
	}
	.footer-main {
		text-align: center;
	}
	.footer-buttons .btn1 {
	    float: none;
	    margin-top: 26px;
	}
	.apply-left {
		border-right: none;
	}

	.slick-t-wrap p {
		font-size: 15px;
    		line-height: 1.65em;
	     text-align: center;
	}
	.t-content .the-title {
		text-align: center;
	}


	.vc_row.vc_rtl-columns-reverse {
		flex-direction: column-reverse;
		display: flex;
	}
	.footer .widget_nav_menu ul li {
	    display: inline-block;
	    width: 100%;
	    margin-bottom: 3px;
	}
	.footer .widget_nav_menu {
	    margin-top: 0px;
	    margin-bottom: 10px;
	}

	/* .col {  margin: 1% 0 1% 0%; } */

	.col { margin-right: 0px;
	}
	.flex-grid {flex-flow: row wrap;}

	.flex-grid.mobile-wrap-reverse {
		flex-flow: wrap-reverse;
	}

	.span-1, .span-2, .span-3, .span-4, .span-5, .span-6, .span-7, .span-8, .span-9, .span-10, .span-11, .span-12 {
		width: 100%;
	}

	.col-full.span-1, .col-full.span-2, .col-full.span-3, .col-full.span-4, .col-full.span-5, .col-full.span-6, .col-full.span-7, .col-full.span-8, .col-full.span-9, .col-full.span-10, .col-full.span-11, .col-full.span-12 {
		width: 100%;
	}

	/* Padding Top */
	.mpt0		{padding-top: 0px;}
	.mpt10		{padding-top: 10px;}
	.mpt20		{padding-top: 20px;}
	.mpt25		{padding-top: 25px;}
	.mpt30		{padding-top: 30px;}
	.mpt40		{padding-top: 40px;}
	.mpt50		{padding-top: 50px;}
	.mpt60		{padding-top: 60px;}
	.mpt70		{padding-top: 70px;}
	.mpt80		{padding-top: 80px;}
	.mpt90		{padding-top: 90px;}
	.mpt100		{padding-top: 100px;}
	.mpt110		{padding-top: 110px;}
	.mpt120		{padding-top: 120px;}
	.mpt130		{padding-top: 130px;}
	.mpt140		{padding-top: 140px;}
	.mpt150		{padding-top: 150px;}
	.mpt160		{padding-top: 160px;}

	/* Padding Bottom */
	.mpb0		{padding-bottom: 0px;}
	.mpb10		{padding-bottom: 10px;}
	.mpb20		{padding-bottom: 20px;}
	.mpb25		{padding-bottom: 25px;}
	.mpb30		{padding-bottom: 30px;}
	.mpb40		{padding-bottom: 40px;}
	.mpb50		{padding-bottom: 50px;}
	.mpb60		{padding-bottom: 60px;}
	.mpb70		{padding-bottom: 70px;}
	.mpb80		{padding-bottom: 80px;}
	.mpb90		{padding-bottom: 90px;}
	.mpb100		{padding-bottom: 100px;}
	.mpb110		{padding-bottom: 110px;}
	.mpb120		{padding-bottom: 120px;}
	.mpb130		{padding-bottom: 130px;}
	.mpb140		{padding-bottom: 140px;}
	.mpb150		{padding-bottom: 150px;}
	.mpb160		{padding-bottom: 160px;}

	/* Padding left */
	.mpl0		{padding-left: 0px;}
	.mpl10		{padding-left: 10px;}
	.mpl20		{padding-left: 20px;}
	.mpl25		{padding-left: 25px;}
	.mpl30		{padding-left: 30px;}
	.mpl40		{padding-left: 40px;}
	.mpl50		{padding-left: 50px;}
	.mpl60		{padding-left: 60px;}
	.mpl70		{padding-left: 70px;}
	.mpl80		{padding-left: 80px;}
	.mpl90		{padding-left: 90px;}
	.mpl100		{padding-left: 100px;}
	.mpl110		{padding-left: 110px;}
	.mpl120		{padding-left: 120px;}
	.mpl130		{padding-left: 130px;}
	.mpl140		{padding-left: 140px;}
	.mpl150		{padding-left: 150px;}
	.mpl160		{padding-left: 160px;}

	/* Padding right */
	.mpr0		{padding-right: 0px;}
	.mpr10		{padding-right: 10px;}
	.mpr20		{padding-right: 20px;}
	.mpr25		{padding-right: 25px;}
	.mpr30		{padding-right: 30px;}
	.mpr40		{padding-right: 40px;}
	.mpr50		{padding-right: 50px;}
	.mpr60		{padding-right: 60px;}
	.mpr70		{padding-right: 70px;}
	.mpr80		{padding-right: 80px;}
	.mpr90		{padding-right: 90px;}
	.mpr100		{padding-right: 100px;}
	.mpr110		{padding-right: 110px;}
	.mpr120		{padding-right: 120px;}
	.mpr130		{padding-right: 130px;}
	.mpr140		{padding-right: 140px;}
	.mpr150		{padding-right: 150px;}
	.mpr160		{padding-right: 160px;}


	.logo svg {
		width: 228x;
    		height: auto;
	}


	/* header */

	.header .logo {
 		margin-left: 5%;
	}
	.right-menu-wrapper {
	    top: 16px;
	}
	.header .button_container {
	    /* top: 19px; */
	}
	.right-menu-wrapper a {
		display: none;
	}
	.overlay-menu li a {
		font-size: 20px;
	    line-height: 30px;
	}
	.overlay-menu li li a {
		font-size: 18px;
		padding-left: 26px;
	}
	.overlay-menu .sub-menu {
		margin-top: 14px;
	}

	/* .overlay-menu li.current-menu-item a {
	    font-size: 26px;
 	    line-height: 40px;
	} */
	.overlay-menu .blog-menu {
		display: block;
	}
	.overlay-menu .start-a-project {
		display: block;
	}

	.hero {
		margin-top: 40px;
	}

	.visit-location-wrapper {
	    background-position: 58% center;
	}
	.mid-page-banner {
	    height: 300px;
	}

	.app-cta {
		display: flex;
		flex-direction: column-reverse;
	}
	.app-cta .white-block {
		margin-top: 40px;
	}


	/* Typography */

	h1 {
		font-size: 39px;
		line-height: 45px;
	}
	h2 {
		font-size: 33px;
		line-height: 42px;
	}
	h3 {
		font-size: 33px;
		line-height: 42px;
	}

	.page-title-wrap h1 {
		font-size: 38px;
	    line-height: 43px;
	    letter-spacing: -2px;
	}
	.page-sub-headline {
		padding-left: 0px;
		padding-right: 0px;
	}


	/* home */

	.slick-hero-slide {
		font-size: 60vh;
	}
	.hero h1 {
		font-size: 29px;
	    line-height: 42px;
	    letter-spacing: -1px;
	    margin-bottom: 0px;
	}
	.vertical-rule {
		margin-top: 40px;
	}
	.canary-word-salad {
	    font-size: 50px;
	    line-height: 50px;
	}
	.word-salad-1 {
		padding-left: 18%;
	}
	.word-salad-5 {
		padding-left: 10%;
	}
	.word-salad-3 {
		padding-left: 25%;
	}
	.word-salad-4 {
		padding-right: 23%;
	}
	.word-salad-5 {
		padding-left: 22%;
	}
	.home-large-text {
	    padding-bottom: 20px;
	    padding-top: 0px;
	}
	.canary-global-bg {
		margin-left: 0px;
		padding-bottom: 0px;
		padding-top: 0px;
		background: #1A4477;
		background-image: none !important;
	}
	.watch-video {
		display: none;
	}
	.canary-global-content {
		margin-left: 0px;
	}
	.ig-image {
		width: 33.33%;
	}
	.ig-pull-mobile {
		display: block;
	}
	.ig-pull {
		display: none;
	}
	.hero .flex-grid {
		flex-flow: wrap-reverse;
	}



	/* services */

	.block-services-wrapper {
		padding-top: 120px;
		padding-bottom: 80px;
	}
	.metro-box-wrapper {
		margin-bottom: 30px;
		min-height: 230px;
	}


	/* forms */


	body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
	    padding: 8px 11px;
	}
	body .gform_wrapper ul li.gfield {
	    margin-top: 20px !important;
	}
	body.start-a-project .gform_wrapper {
		margin-top: 50px;
	}
	.photo-checkbox ul.gfield_checkbox {
		width: 103.5%;
	}
	.gform_wrapper .photo-checkbox ul.gfield_checkbox li {
		width: 33.33%;
	}
	.gform_wrapper .photo-checkbox ul.gfield_checkbox li label, .gform_wrapper ul.gfield_radio li label {
		width: 90%;
	}
	.gform_wrapper .three-col-checkbox ul.gfield_checkbox li {
		width: 100%;
	}
	body .gform_wrapper .gform_footer input.button, body .gform_wrapper .gform_footer input[type=submit] {
		width: 100%;
		padding: 13px;
	}



	.footer-menu {
		display: none;
	}
	.footer-location-block {
		width: 50%;
	}
	.footer-button-left, .footer-button-right {
		width: 100%;
	}
	.footer-button-left .btn1, .footer-button-left .btn2, .footer-button-right .btn1, .footer-button-right .btn2 {
		width: 100%;
		text-align: center;
		margin-bottom: 16px;
	}
	.copyright {
		font-size: 11px;
		padding-left: 4%;
		padding-right: 4%;
	}


	/* Post & blog */

	.blog-post-wrap {
		width: 50%;
	}
	.work-post-wrap {
		width: 50%;
	}
	.related-post-wrapper .work-post-wrap {
		width: 100%;
	}
	.work-post-wrap.wide {
		width: 100%;
	}
	.grid-sizer, .grid-item {
	    width: 50%;
	}
	.grid-item--wide {
		width: 100%;
	}

	.home-intro-wrapper {
		font-size: 21px;
	    line-height: 1.5em;
	}
	.hero {
	    height: 80vh;
	}

}



/* PHONE (portrait and landscape)  */
@media only screen and (max-width:480px) {
	.mobile-dev-helper span.help-mobile {
		display: block;
	}

	.check-list li {
	    margin-bottom: 8px;
	    font-family: 'Novecento-CondMedium';
	    font-size: 12px;
	}
	.hero {
	    height: 60vh;
	}

}


/* TABLET */
@media only screen and (min-width : 768px) and (max-width : 1024px) {
	.mobile-dev-helper span.help-tablet {
		display: block;
	}
	.tablet-hide {
		display: none;
	}

	.team-loop-post {
    width: 48%;
}
.team-loop-post:nth-of-type(2n+2) {
	margin-right: 0px;
}
.team-loop-post:nth-of-type(3n+3) {
	margin-right: 2%;
}



	.span-1.tablet-100, .span-2.tablet-100, .span-3.tablet-100, .span-4.tablet-100, .span-5.tablet-100, .span-6.tablet-100, .span-7.tablet-100, .span-8.tablet-100, .span-9.tablet-100, .span-10.tablet-100, .span-11.tablet-100, .span-12.tablet-100 {
		width: 100%;
	}
	.tablet-wrap {
		flex-wrap: wrap;
	}

	.hero h1 {
	    /* font-size: 24px;
	    line-height: 31px; */
	}
	/* Padding Top */
	.mpt0		{padding-top: 0px;}
	.mpt10		{padding-top: 10px;}
	.mpt20		{padding-top: 20px;}
	.mpt25		{padding-top: 25px;}
	.mpt30		{padding-top: 30px;}
	.mpt40		{padding-top: 40px;}
	.mpt50		{padding-top: 50px;}
	.mpt60		{padding-top: 60px;}
	.mpt70		{padding-top: 70px;}
	.mpt80		{padding-top: 80px;}
	.mpt90		{padding-top: 90px;}
	.mpt100		{padding-top: 100px;}
	.mpt110		{padding-top: 110px;}
	.mpt120		{padding-top: 120px;}
	.mpt130		{padding-top: 130px;}
	.mpt140		{padding-top: 140px;}
	.mpt150		{padding-top: 150px;}
	.mpt160		{padding-top: 160px;}

	/* Padding Bottom */
	.mpb0		{padding-bottom: 0px;}
	.mpb10		{padding-bottom: 10px;}
	.mpb20		{padding-bottom: 20px;}
	.mpb25		{padding-bottom: 25px;}
	.mpb30		{padding-bottom: 30px;}
	.mpb40		{padding-bottom: 40px;}
	.mpb50		{padding-bottom: 50px;}
	.mpb60		{padding-bottom: 60px;}
	.mpb70		{padding-bottom: 70px;}
	.mpb80		{padding-bottom: 80px;}
	.mpb90		{padding-bottom: 90px;}
	.mpb100		{padding-bottom: 100px;}
	.mpb110		{padding-bottom: 110px;}
	.mpb120		{padding-bottom: 120px;}
	.mpb130		{padding-bottom: 130px;}
	.mpb140		{padding-bottom: 140px;}
	.mpb150		{padding-bottom: 150px;}
	.mpb160		{padding-bottom: 160px;}

	/* Padding left */
	.mpl0		{padding-left: 0px;}
	.mpl10		{padding-left: 10px;}
	.mpl20		{padding-left: 20px;}
	.mpl25		{padding-left: 25px;}
	.mpl30		{padding-left: 30px;}
	.mpl40		{padding-left: 40px;}
	.mpl50		{padding-left: 50px;}
	.mpl60		{padding-left: 60px;}
	.mpl70		{padding-left: 70px;}
	.mpl80		{padding-left: 80px;}
	.mpl90		{padding-left: 90px;}
	.mpl100		{padding-left: 100px;}
	.mpl110		{padding-left: 110px;}
	.mpl120		{padding-left: 120px;}
	.mpl130		{padding-left: 130px;}
	.mpl140		{padding-left: 140px;}
	.mpl150		{padding-left: 150px;}
	.mpl160		{padding-left: 160px;}

	/* Padding right */
	.mpr0		{padding-right: 0px;}
	.mpr10		{padding-right: 10px;}
	.mpr20		{padding-right: 20px;}
	.mpr25		{padding-right: 25px;}
	.mpr30		{padding-right: 30px;}
	.mpr40		{padding-right: 40px;}
	.mpr50		{padding-right: 50px;}
	.mpr60		{padding-right: 60px;}
	.mpr70		{padding-right: 70px;}
	.mpr80		{padding-right: 80px;}
	.mpr90		{padding-right: 90px;}
	.mpr100		{padding-right: 100px;}
	.mpr110		{padding-right: 110px;}
	.mpr120		{padding-right: 120px;}
	.mpr130		{padding-right: 130px;}
	.mpr140		{padding-right: 140px;}
	.mpr150		{padding-right: 150px;}
	.mpr160		{padding-right: 160px;}


	.slick-hero-slide {
		font-size: 60vh;
	}

	.home-large-text {
	    font-size: 13px;
	    line-height: 1.45em;
	}
	.canary-word-salad {
		font-size: 80px;
		line-height: 74px;
	}
	.location-block h3 {
	    font-size: 88px;
	}
	/* .page-title-wrap h1 {
	    font-size: 48px;
	} */

	.metro-box-wrapper {
	    min-height: 275px;
	}
	.home-large-text {
	    padding-top: 0px;
	}
	.slick-slide img {
	    padding-left: 5px;
	    padding-right: 5px;
	}
	.our-clients .clients-headline {
	    padding-top: 6px;
	    line-height: 16px;
	}

	.footer-menu ul li {
	    margin-left: 20px;
	}

	.home-intro-wrapper {
		font-size: 21px;
	    line-height: 1.5em;
	}


}


/* DESKTOP SMALL */
@media only screen and (min-width : 1025px) and (max-width : 1280px) {
	.mobile-dev-helper span.help-small-desktop {
		display: block;
	}

	.contact-icon-box {
	    margin-left: 0%;
	}

	/* .slick-t-wrap p {
		    font-size: 20px;
		    line-height: 1.4em;
	} */

	.icon-facts {
		margin-top: -8%;
	}


	.hero h1 {
	    /* font-size: 31px;
	    line-height: 38px; */
	}
	.home-large-text {
	    font-size: 13px;
	    line-height: 1.45em;
	}
	.canary-word-salad {
		font-size: 90px;
		line-height: 74px;
	}
	.location-block h3 {
	    font-size: 88px;
	}
	/* .page-title-wrap h1 {
	    font-size: 48px;
	} */

	.metro-box-wrapper {
	    min-height: 275px;
	}
	.home-large-text {
	    padding-top: 0px;
	}
	.slick-slide img {
	    padding-left: 5px;
	    padding-right: 5px;
	}
	.our-clients .clients-headline {
	    padding-top: 6px;
	    line-height: 16px;
	}
}


@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {

}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

/* .alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
} */
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.sitelayout-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.sitelayout-caption.alignnone {
	margin:5px 20px 20px 0;
}
.sitelayout-caption.alignleft {
	margin:5px 20px 20px 0;
}
.sitelayout-caption.alignright {
	margin:5px 0 20px 20px;
}
.sitelayout-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.sitelayout-caption .sitelayout-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}









/*------------------------------------*\
    SLICK SLIDER JS
\*------------------------------------*/
/* Slider */
.slick-loading .slick-list
{
    /* background: #fff url('../img/ajax-loader.gif') center center no-repeat; */
}

/* Icons */
/* @font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('fonts/slick.eot');
    src: url('fonts/slick.eot?#iefix') format('embedded-opentype'), url('fonts/slick.woff') format('woff'), url('fonts/slick.ttf') format('truetype'), url('fonts/slick.svg#slick') format('svg');
} */
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 40%;
    z-index: 10;

    display: block;

    width: 36px;
    height: 59px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-a-wrap .slick-prev,
.slick-a-wrap .slick-next
{
    width: 36px;
    height: 36px;
    top: 49%;
    -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
	border-radius: 18px;
}
/*.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}*/


.team-wrap .slick-prev
{
    left: 0px;
    background: url('../img/aarowleft2.svg') no-repeat left top;
}

.slick-prev
{
    left: 0px;
    background: url('../img/aarowleft.svg') no-repeat left top;
}

.slick-a-wrap .slick-prev
{
    left: -19px;
    background: url('../img/al.svg') no-repeat left top;
}
.team-member-photos-wrap .slick-prev
{
    left: 18px;
    background: url('../img/al.svg') no-repeat left top;
}


[dir='rtl'] .slick-prev
{
    right: 0px;
    left: auto;
}
/*.slick-prev:before
{
    content: 'â†';
}
[dir='rtl'] .slick-prev:before
{
    content: 'â†’';
}*/

.team-wrap .slick-next
{
    right: -1px;
    background: url('../img/aarowright2.svg') no-repeat left top;
}

.slick-next
{
    right: -1px;
    background: url('../img/aarowright.svg') no-repeat left top;
}

.slick-a-wrap .slick-next
{
    right: -19px;
    background: url('../img/ar.svg') no-repeat left top;
}
.team-member-photos-wrap .slick-next
{
    right: 18px;
    background: url('../img/ar.svg') no-repeat left top;
}

[dir='rtl'] .slick-next
{
    right: auto;
    left: 0px;
}
/*.slick-next:before
{
    content: 'â†’';
}
[dir='rtl'] .slick-next:before
{
    content: 'â†';
}*/

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{


    margin-top: 30px;

    display: block;

    width: 100%;
    padding: 0;


    list-style: none;

    text-align: left;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 9px;
    height: 12px;
    margin: 0 3px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 13px;
    height: 13px;
    padding: 4px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: #FFF;
    border: 2px solid #FFF;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

.slick-dots li.slick-active button {
	background: #6c7784;
	border: 2px solid #6c7784;
}

.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    /*font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: 'â€¢';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
}
.slick-dots li.slick-active button:before
{
    /*opacity: .75;
    color: black;*/
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
	outline: none;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    /* display: block; */
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
    /* display: flex; */
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}




/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.5.0 (11/03/2018)
 */
/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */
@font-face {
  font-family: 'lightcase';
  src: url("fonts/lightcase.eot?55356177");
  src: url("fonts/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("fonts/lightcase.woff?55356177") format("woff"), url("fonts/lightcase.ttf?55356177") format("truetype"), url("fonts/lightcase.svg?55356177#lightcase") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 12, ../scss/components/fonts/_font-lightcase.scss */
[class*='lightcase-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-play:before {
  content: '\e800';
}

/* line 36, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-pause:before {
  content: '\e801';
}

/* line 37, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-close:before {
  content: '\e802';
}

/* line 38, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-prev:before {
  content: '\e803';
}

/* line 39, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-next:before {
  content: '\e804';
}

/* line 40, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-spin:before {
  content: '\e805';
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */
@-webkit-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 640px) {
  /* line 16, ../scss/components/modules/_case.scss */
  html[data-lc-type=inline] #lightcase-case, html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
  }
}

@media screen and (min-width: 641px) {
  /* line 4, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
  }
}
@media screen and (min-width: 641px) {
  /* line 23, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content, html[data-lc-type=video] #lightcase-content {
    background-color: #333;
  }
}
/* line 31, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 640px) {
  /* line 31, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
/* line 43, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  /* line 43, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px;
  }
  /* line 52, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=error] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }
  /* line 59, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }
}
@media screen and (max-width: 640px) {
  /* line 70, ../scss/components/modules/_content.scss */
  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 640px) and (min-width: 641px) {
  /* line 74, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content .lightcase-contentInner, html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75;
  }
}

/* line 82, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  overflow: hidden !important;
}
@media screen and (max-width: 640px) {
  /* line 91, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
@media screen and (min-width: 641px) {
  /* line 100, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 640px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #FFF;
  }
  #lightcase-content .person-name {
	  color: #FFF;
  }
  #lightcase-content .person-title {
	  color: #FFF;
	  margin-bottom: 30px;
  }
}
@media screen and (min-width: 641px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #333;
  }
}

/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}
@media screen and (max-width: 640px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 30px 0;
  }
}
@media screen and (min-width: 641px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 0;
  }
}

/* line 4, ../scss/components/modules/_global.scss */
.lightcase-open body {
  overflow: hidden;
}
/* line 8, ../scss/components/modules/_global.scss */
.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%;
}

/* line 1, ../scss/components/modules/_info.scss */
#lightcase-info {
  position: absolute;
  padding-top: 15px;
}
/* line 9, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis;
}
/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa;
}
@media screen and (max-width: 640px) {
  /* line 19, ../scss/components/modules/_info.scss */
  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: #333;
  }
}
/* line 33, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa;
}
/* line 39, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa;
}
@media screen and (max-width: 640px) {
  /* line 45, ../scss/components/modules/_info.scss */
  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* line 51, ../scss/components/modules/_info.scss */
  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static;
  }
}

/* line 1, ../scss/components/modules/_loading.scss */
#lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  -moz-animation: lightcase-spin 0.5s infinite linear;
  -o-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear;
}
/* line 20, ../scss/components/mixins/_presets.scss */
#lightcase-loading, #lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}
/* line 32, ../scss/components/mixins/_presets.scss */
#lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px;
}

/* line 2, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}
/* line 20, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'], a[class*='lightcase-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}
/* line 32, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'] > span {
  display: inline-block;
  text-indent: -9999px;
}
/* line 49, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white;
}
/* line 10, ../scss/components/modules/_navigation.scss */
.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
  color: #aaa;
  text-shadow: none;
}
/* line 17, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none;
}
/* line 28, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-prev {
  left: 15px;
}
/* line 33, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-next {
  right: 15px;
}
/* line 38, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em;
}
@media screen and (min-width: 641px) {
  /* line 38, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
    opacity: 0;
  }
}
@media screen and (max-width: 640px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 15px;
    font-size: 24px;
  }
}
@media screen and (min-width: 641px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }
  /* line 57, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-']:hover, #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
    opacity: 1;
  }
}

/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: rgba(0,0,0,.9);
}
@media screen and (max-width: 640px) {
  /* line 1, ../scss/components/modules/_overlay.scss */
  #lightcase-overlay {
    opacity: 1 !important;
  }
}



.vc_custom_1713983064810{background-color: #1a4477 !important;}
.vc_custom_1712179509526{background-color: #f2f1eb !important;}
.vc_custom_1713982397446{margin-bottom: 0px !important;}
.wp-block-button__link {
color: #fff;
background-color: #32373c;
border-radius: 9999px;
box-shadow: none;
text-decoration: none;
padding: calc(.667em + 2px) calc(1.333em + 2px);
font-size: 1.125em
}

.wp-block-file__button {
background: #32373c;
color: #fff;
text-decoration: none
}
.lightcase-open .button_container { opacity: 0; }

.dropdown-btn.sortby-dropdown i.gray { display: inline-flex; position: relative; top: -2px; right: -2px; }
.login-btn { position: absolute; right: 100px; top: 14px; display: flex; }
.login-btn .btn1, .inner-page-listings .btn1 { background-color: #3366CC; border-color: #3366CC; color: #fff; font-size: 13px; }
.inner-page-listings .btns { display: flex; align-items: center; justify-content: center; flex-direction: column; }
#loginmodal .modal-dialog { margin: 100px auto 0 auto; }
.menu-open .login-btn { opacity: 0; }
.contactForm ul li.gfield  { width: 50%; margin-bottom: 0; display: inline-block; }
/* .contactForm ul li.gfield:nth-last-child(odd) { padding-right: 15px; } */
.contactForm ul li.gfield .form-control { height: auto; margin-bottom: 25px; }
.contactForm input[type="submit"] {
    background: #1A4477;
    border: none !important;
    color: #FFF;
    padding: 19px 24px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.5px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.white-card h3 { margin-bottom: 0; }
table#fixedheader-table { margin-bottom: 0; }
#list_view_datas .list-pagination .form-group .btn.batchactions { display: none; }
.search-form .form-group .btn.save-search-btn { font: 13px / 1.8em 'Montserrat'; font-weight: 600; text-align: center; }
.followup-checkbox { width: 26px; height: 26px; margin-top: 2px; }

.contactForm .form-group {
  position: relative;
  margin-bottom: 30px;
}
.contactForm input.form-control { 
	height: 60px; 
}
.contactForm .form-group textarea.form-control {
	height: 140px;
	resize: none;
}
.contactForm .form-control {
  padding: 19px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  font-weight: 500;
}
.contactForm .form-control:focus {
	color: #495057;
    background-color: #fff !important;
	outline: 0;
	box-shadow: none;
}

.contactForm .floating-label {
  position: absolute;
  top: 18px;
  left: 35px;
  font-size: 16px;
  font-weight: 500;
  color: #777;
  pointer-events: none;
  transition: 0.2s ease all;
}
#charCount { text-align: right; }
.contactForm .form-group.focused .floating-label,
.contactForm .form-group.filled .floating-label {
  top: 2px;
  font-size: 12px;
  color: #333;
  font-weight: 500;
}
.contactForm .form-group.filled input.form-control, .contactForm .form-group.focused input.form-control {
	padding-top: 40px;
	box-shadow: none;
}
.contactForm .form-group.filled textarea.form-control, .contactForm .form-group.focused textarea.form-control {
	padding-top: 30px;
	box-shadow: none;
}
.contactForm .error-message { position: absolute; color: #ff0000; }
.contactForm label { color: #333333; }
.contactForm label a { font-weight: 500; }
.contactForm .btn { min-width: 220px; min-height: 50px; }
.custom-control-label, .modal a { font-weight: 500;; font-family: 'Montserrat', sans-serif; }
#siginmodal.modal { overflow: auto !important; margin-top: 40px; }
.dropdown-menu.acc-dropdown-menu.show { z-index: 99999; }


@media only screen and (min-width: 768px) {
	.header .acc-dropdown-menu { right: -20px !important; left: 0 !important; margin-top: 15px; }
	.header .acc-dropdown-menu::before { left: 10px; right: 0; margin: 0 auto; }
}
@media only screen and (max-width: 1160px) {
	header .acc-user-button .user-icon { border-color: #fff !important; color: #ffffff; }
}

@media only screen and (max-width: 991px) {
	.contactForm ul li.gfield  { width: 100%; }
	.contactForm ul li.gfield:nth-last-child(odd) { padding-right: 0; }
	.contactForm ul li.gfield:nth-last-child(even) { padding-left: 0; }
	.sitelayoutb_button, .sitelayoutb_content_element, ul.sitelayoutb_thumbnails-fluid>li { margin-bottom: 20px; }
	.login-btn { right: 75px; }
	.login-btn .btn1 { font-size: 13px; padding: 5px 12px; }
	#loginmodal .modal-dialog { margin: 100px 15px; }

}

@media only screen and (max-width: 767px) {
	.dropdown-menu.show { left: -60px !important; }
	.header .dropdown-menu.show { top: 10px !important; }
	.vc_row { margin-left: 0 !important; margin-right: 0 !important; }
	/* body { overflow-x: hidden; } */
	.container { padding: 0 15px; }
	.ceo-details h3 { line-height: 30px; margin-bottom: 0; }
	

}