/*
Theme Name: Cohen Financial Group
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.4
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/

/*

TABLE OF CONTENTS

1. Custom CSS
2. IP styles
3. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/


.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-bold {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}

.libre-baskerville-regular-italic {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: italic;
}


/*******************************************************
 *
 * 1. Navigation
 *
 *******************************************************/



/* Sub Menu */
#nav li {
    position: relative;
    display: inline-block;
    margin-right: 25px;
}

#nav li a {
     font-size: 14px;
     font-weight: 500;
     letter-spacing: 0.28px;
     color: #fff;
     text-transform: uppercase;
     position: relative;
}

#nav > li > a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    width: 100%;
    height: 3px;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

#nav > li:hover > a:before{
    opacity: 1;
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    width: 100%;
}

#nav li:last-child {
    margin-right: 0;
}

.navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 0;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width:100%;
    min-width: 180px;
    left: 50%;
    -webkit-transform: translate(-50%, 35px);
        -ms-transform: translate(-50%, 35px);
            transform: translate(-50%, 35px);
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

#nav .sub-menu li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.28px;
    color: #1a1612;
    text-transform: uppercase;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

#nav .sub-menu > li {
    position: relative;
    display: block;
    background: #fff;
    margin: 0 auto 1px;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

#nav .sub-menu li:hover {
    background: #236193;
}

#nav .sub-menu li:hover > a {
    color: #fff;
    text-decoration: none;
}

#nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 20px);
        -ms-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
}

#nav li > .sub-menu .sub-menu {
    margin-left: 100%;
    top:0;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
}

#nav .sub-menu .sub-menu li:hover{
    background: #236193;
}



/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/

/* Global */

body{
    font-family: var(--body-font);
    font-size: 14px;
    background: #FFF;
    color: #000000;
    margin: 0;

    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

:root {
    --body-font: 'Montserrat', sans-serif;
    --title-font: 'Libre Baskerville', serif;
    --text-font: 'Baskervville', serif;
}


/*CSS Reset*/
a,
a:hover,
a:visited,
a:focus,
textarea{
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}

.slick-track *{
    outline: none;
    -webkit-transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
}

select::-ms-expand {
    display: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

input[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}

select{
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    outline: none;
}

textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    border-radius: 0;
}

[class*="ai-icon-"] {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}


#main-wrapper{
    overflow: hidden;
}


/* Global Button */


.global-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 262px;
    height: 74px;
    border: 1px solid rgba(255,255,255,.40);
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    font-family: var(--title-font);
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.4px;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.global-btn:hover, .global-btn:focus {
    background: #236092;
    color: #fff;
    border-color: #236092;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.global-btn.is-black {
    color: #323232;
    border-color: #323232;
    border: 1px solid rgba(50,50,50,.40);
    border-left: 3px solid #323232;
    border-right: 3px solid #323232;
}

.global-btn.is-black:hover {
    color: #fff;
    border-color: #236092;
}

/*Floating Box*/

.single-floating-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 243px;
    height: 234px;
    border: 5px solid #e1e1e1;
    pointer-events: none;
}

/*Contact Us Popup*/


.contact-us-popup{
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    overflow: hidden;
}


.contact-us-popup-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px;
}

.contact-us-popup-main{
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 30px auto 0;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    background: #fff;
    padding: 30px 30px;
}

.contact-us-popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 19px;
    color: #696969;
    z-index: 1;
    cursor: pointer;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    padding: 14px;
    border-bottom: 1px solid #696969;
    border-top: 1px solid #696969;
}

.contact-us-popup-close-btn:hover {
    color: #236092;
    border-color: #236092;
}


.contact-us-popup.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}


.contact-us-popup.active .contact-us-popup-main {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    opacity: 1;
}


.contact-us-popup-title {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 10px;
}

.contact-us-popup-caption {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.contact-us-popup-title h2 {
    font-size: 30px;
    text-align: center;
    color: #236092;
    text-transform: uppercase;
    font-family: var(--title-font);
}

.contact-us-popup-caption span {
    font-size: 14px;
    line-height: 1;
}

.contact-us-popup-form {
    display: block;
    position: relative;
}

.contact-us-popup-form-widget {
    display: block;
    position: relative;
}

.contact-us-popup-form-widget form {
    display: block;
    position: relative;
}

.contact-us-popup-row {
    display: flex;
    justify-content: space-between;
}

.contact-us-popup-col {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 15px);
}

.contact-us-popup-row.full label,.contact-us-popup-col label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-us-popup-col input:not([type=submit]),
.contact-us-popup-row.full textarea {
       border: none;
       border-bottom: 2px solid #696969;
       background-image: none;
       background-color: transparent;
       -webkit-box-shadow: none;
       -moz-box-shadow: none;
       box-shadow: none;
       display: block;
       width: 100%;
       font-size: 13px;
       text-transform: uppercase;
       outline: none!important;
       color: #000!important;
       -webkit-appearance: none;
       -moz-appearance: none;
       appearance: none;
       padding: 0;
       text-transform: uppercase;
       height: 31px;
}

.contact-us-popup-row.full {
    display: block;
}

.contact-us-popup-row:not(:last-child) {
    margin-bottom: 20px;
}

.contact-us-popup-row.full textarea {
    height: 55px;
    padding: 15px 0;
    resize: none;
}

.contact-us-popup-row.full input[type=submit] {
    display: block;
    position: relative;
    width: 198px;
    height: 53px;
    font-weight: 500;
    font-size: 15px;
    line-height: 47px;
    text-decoration: none!important;
    vertical-align: top;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    text-transform: uppercase;
    color: #323232;
    border-color: #323232;
    border: 1px solid rgba(50,50,50,.40);
    border-left: 3px solid #323232;
    border-right: 3px solid #323232;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    font-family: var(--title-font);
}

.contact-us-popup-form-widget div.wpcf7 .ajax-loader {
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.contact-us-popup-form-widget .wpcf7 form .wpcf7-response-output {
    text-align: center;
    margin: 10px auto 0;
}

.contact-us-popup-form-widget .use-floating-validation-tip span.wpcf7-not-valid-tip {
    font-size: 11px;
    width: auto;
}

.contact-us-popup-form-widget .wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.contact-us-popup-row.full input[type=submit]:hover {
    background: #236092;
    border-color: #236092;
    color: #fff!important;
}

.contact-us-popup-close-btn:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 50%;
    background: #696969;
    top: 0;
    left: 0;
}

.contact-us-popup-close-btn:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 50%;
    background: #696969;
    bottom: 0;
    right: 0;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.contact-us-popup-close-btn span {
    font-weight: 700!important;
}

.contact-us-popup-close-btn:hover:after, .contact-us-popup-close-btn:hover:before {
    background: #236092;
}


/*Fixed Header*/

#fixed-header {
    position: fixed;
    z-index: 1029;
    top: 0;
    left: 0;
    width: 100%;
    /*-webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);*/
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 8px 0;
    background: #236193;
    font-size: 0;
}

#fixed-header.active{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

/*#fixed-header:not(.active) {
   opacity: 0;
   pointer-events: none;
}*/

#fixed-header > .container {
    width: 100%;
    max-width: 1510px;
}

#fixed-header .header-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#fixed-header .header-contacts span {
    border-color: #697178;
}

#fixed-header .logo {
    max-width: 238px;
}

.headernav-wrapper {
    padding: 0;
    margin-left: auto;
}

#fixedheadernav {

}
#fixedheadernav > li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 0.938vw;
}
#fixedheadernav > li:last-child {
    display: none;
}
#fixedheadernav > li:first-child {
    margin-left: 0;
}
#fixedheadernav > li:nth-last-child(2) {
    margin-right: 0;
}
#fixedheadernav > li > a {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
#fixedheadernav > li:hover > .sub-menu, #fixedheadernav > li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: initial;
}
#fixedheadernav > li > ul {
    list-style: none;
    margin: 0;
    background: transparent;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 225px;
    padding-top: 28px;
    opacity: 0;
    pointer-events: none;
}
#fixedheadernav > li > ul li {
    display: block;
    position: relative;
    background: #243f60;
}
#fixedheadernav > li > ul li:hover {
    background-color: #236193;
}
#fixedheadernav > li > ul li a {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 5px;
}
#fixedheadernav > li > ul li .sub-menu {
    margin-left: 100%;
    top: 0;
    padding-top: 0;
}
#fixedheadernav > li > ul li:hover > .sub-menu {
    opacity: 1;
    pointer-events: initial;
}

/* Header */

.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1028;
    width: 100%;
    font-size: 0;
    -webkit-transition: 0.4s all ease-out;
    -o-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-wrapper > .container {
    width: 100%;
    max-width: 1510px;
}

.header-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.logo {
    display: block;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    max-width: 334px;
}

.logo a {
    display: block;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    max-width: 100%;
}

.logo img {
    max-width: 100%;
}


/* Header Contacts */

.header-contacts {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-left: auto;
    margin-right: 47px;
    padding: 19px 0;
}

.header-contacts span {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.7px;
    color: #fff;
    padding: 0 20px;
    border-right: 1px solid #434445;
}

.header-contacts span:nth-child(2) {
    border: none;
    padding-right: 0;
}


.header-contacts span em {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.header-contacts span:first-child {
    padding-left: 0;
}

.header-contacts span:last-child {
    padding-right: 0;
    border: none;
}

.header-contacts span a {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.header-contacts span a:hover {
    color: #85b6e0;
}


/*Slideshow*/
.slideshow-container {
    position: relative;
}

.slideshow-wrapper{
    position: relative;
}

.slideshow-container .slide-spacer {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 800px;
}
.slideshow-container .cycloneslider {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}
.slideshow-container .cycloneslider .cycloneslider-slides,
.slideshow-container .cycloneslider .cycloneslider-slide,
.slideshow-container .cycloneslider .cycloneslider-slide canvas {
    width: 100%;
    height: 100%;
}
.slideshow-container .cycloneslider .cycloneslider-slide canvas {
    background-position: center top;
}


/*Burger Menu*/
.burger-menu-wrap {
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    display: inline-block;
    vertical-align: middle;
}


.burger-menu-icon {
    width: auto;
    height: auto;
    cursor: pointer;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 14px 14px;
    border: 1px solid rgba(255,255,255,.15);
}

/*.burger-menu-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  left: 0;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}*/

.bm-lines {
    width: 27px;
    height: 18px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

/*.burger-menu-icon:hover {-webkit-transform: scale(1.1);-ms-transform: scale(1.1);transform: scale(1.1);}*/


.burger-menu-icon span:first-child{
    /*right: 0;
    left: auto;*/
    top: 0;
    width: 51.85%;
}

.burger-menu-icon span:nth-child(2) {
    /* top: 50%;
     -webkit-transform: translateY(-50%);
         -ms-transform: translateY(-50%);
             transform: translateY(-50%);*/
    top: 50%;
    transform: translateY(-50%);
}

.burger-menu-icon span:last-child {
    top: auto;
    bottom: 0;
    width: 77.77%;
}

.burger-menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    right: 0;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    top: 9px;
}

.burger-menu-wrap.open-b-menu .burger-menu-icon span:first-child,
.burger-menu-wrap.open-b-menu .burger-menu-icon span:last-child{
    top: 9px;
}

.burger-menu-wrap.open-b-menu .burger-menu-icon span:last-child {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(223deg);
    opacity: 1;
}

.burger-menu-wrap.open-b-menu .burger-menu-icon span:first-child {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(136deg);
    opacity: 1;
}

.burger-menu-wrap.open-b-menu .burger-menu-icon span {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(136deg);
    opacity: 0;
}




/*Side Menu*/

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1055;
    width: 75%;
    height: 100vh;
    /* visibility: hidden; */
    pointer-events: none;
    font-size: 0;
    opacity: 0;
}

.side-menu.active .side-menu-bg{
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
}

.side-menu-bar, .side-menu-overlay {
    height: 100%!important;
}

.side-menu-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1056;
    background: #236193;
    -webkit-transition: all ease .6s;
    -o-transition: all ease .6s;
    transition: all ease .6s;
    opacity: 0;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
}

.side-menu-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/sm-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    opacity: .10;
}

.side-menu-bg:after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 37.714%;
    height: 907px;
    background: url(images/sm-accent-logo.png) no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    opacity: .05;
}



.side-menu-bg .simplebar-scrollbar:before{
    background: #eee;
}

.side-menu-bg .simplebar-track.horizontal .simplebar-scrollbar:before{
    display: none;
}

.side-menu-container {
    width: 100%;
    position: relative;
    padding: 189px 60px 90px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1054;
    width: 100%;
    height: 100%;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    opacity: 0;
}

.side-menu-overlay.active {
     visibility: visible;
     pointer-events: auto;
     opacity: 1;
}

.side-menu.active {
    /* visibility: visible; */
    pointer-events: auto;
    opacity:1;
}

.side-menu-wrapper {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}


.sm-exit-btn {
    position: absolute;
    top: 46px;
    right: 60px;
    z-index: 20;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
    font-weight: 500;
    padding: 14px 17px;
    border: 1px solid rgba(255,255,255,.20);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .20);
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .20);
}

.sm-exit-btn span {
    font-size: 21px;
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
}

.sm-exit-btn:hover{-webkit-transform: scale(1.1);-ms-transform: scale(1.1);transform: scale(1.1);}

/* Side Menu Logo */

.side-menu-logo {
    display: block;
    position: relative;
    margin: 0 auto;
    -webkit-transition: 1s all ease;
    -o-transition: 1s all ease;
    transition: 1s all ease;
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0;
}

.side-menu.active .side-menu-logo {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    opacity: 1;
}

.side-menu-logo img {
    max-width: 100%;
}

.side-menu-logo a {
    display: block;
    position: relative;
}

#sidemenu-nav > li > a {
    font-family: var(--title-font);
    font-size: 17px;
    line-height: 1;
    letter-spacing: 1.2px;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    position: relative;
}

#sidemenu-nav li .sub-menu > li > a:hover {
    color: #b2c8d9;
}

#sidemenu-nav > li > a:hover {
    color: #85b6e0;
}

#sidemenu-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

#sidemenu-nav > li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 79px;
    width: calc(100% / 3);
}

#sidemenu-nav > li:nth-child(n+4) {
    margin-bottom: 0;
}



#sidemenu-nav > li > .sub-menu > li:last-child {
    margin-bottom: 0;
}

.menu-sidemenu-nav-container {
    display: block;
    width: 100%;
}

#sidemenu-nav li .sub-menu > li > a {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.7px;
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#sidemenu-nav li .sub-menu {
    display: block;
    position: relative;
    margin-top: 27px;
}

#sidemenu-nav li .sub-menu > li {
    display: block;
    position: relative;
}

#sidemenu-nav li .sub-menu > li:not(:last-child) {
    margin-bottom: 10px;
}


.side-menu-nav {
    position: relative;
    width: 100%;
    -webkit-transition: 1s all ease;
    -o-transition: 1s all ease;
    transition: 1s all ease;
    -webkit-transform: translateX(30%);
        -ms-transform: translateX(30%);
            transform: translateX(30%);
    opacity: 0;
    padding-left: 170px;
    padding-right: 50px;
    max-width: 1446px;
    margin: 0 auto;
}

.side-menu.active .side-menu-nav {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
}

.side-menu-nav:before {
    display: table;
    clear: both;
    content: '';
}


/*SM Contacts*/
.side-menu-contacts span {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.9px;
    color: #fff;
    display: block;
    font-family: var(--text-font);
}

.side-menu-contacts span a {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.side-menu-contacts span a:hover {
    color: #85b6e0;
}

.side-menu-contacts span:not(:last-child) {
    margin-bottom: 20px;
}


.side-menu-contacts {
    display: block;
    z-index: 1;
    position: relative;
    margin-top: 25px;
}

.side-menu-contacts-main {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32%;
}

/* Slideshow Caption */

.slideshow-caption {
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    font-size: 0;
}

.slideshow-caption-item {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}



.slideshow-caption-slide:not(.slick-initialized) .slideshow-caption-item:nth-child(n+2) {
    display: none;
}


.slideshow-caption-slide {
    display: block;
    position: relative;
    width: 100%;
    max-width: 70%;
    margin: 75px auto 0;
    text-align: center;
}

.slideshow-caption-wrapper {
    display: block;
    position: relative;
}

.slidehow-caption-content {
    display: block;
    position: relative;
    text-align: center;
}

.slidehow-caption-content span {
    font-size: 26px;
    line-height: 1;
    letter-spacing: 3.12px;
    color: #fff;
    font-family: var(--title-font);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.slidehow-caption-content h2 {
    font-size: 60px;
    line-height: 1;
    color: #fff;
    font-family: var(--title-font);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.slidehow-caption-content p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.8px;
    color: #fff;
}

.slideshow-btns {
    display: block;
    text-align: center;
    margin-top: 38px;
}


.slideshow-btn {
    display: inline-block;
    vertical-align: middle;
    padding: 0 15px;
}

.slideshow-btn a {
    width: 314px;
}

.slideshow-btn:first-child {
    padding-left: 0;
}

.slideshow-btn:last-child {
    padding-right: 0;
}


.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img img {
    object-position: top center;
}

.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img canvas {
    min-height: 100%!important;
}

.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide {
    height: 100%!important;
}

.slideshow-container .splide__track {
    height: 100%!important;
}

.slideshow-container .splide__track--fade>.splide__list>.splide__slide {
    height: 100%!important;
}

.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img {
    height: 100%!important;
}

/* Slideshow Floating Title */

.slide-floating-title {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 100%;
    left: 0;
    display: block;
    text-align: right;
    max-width: 90%;
    margin: 0 auto;
}

.slide-floating-title-wrap {
    display: inline-block;
    position: relative;
}

.slide-floating-title-text {
    display: block;
    position: relative;
    text-align: center;
}

.slide-floating-title-text h2 {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 2.8px;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--title-font);
}

.slide-floating-title-text span {
    font-size: 11px;
    line-height: 1;
    letter-spacing: 1.1px;
    color: #fff;
    text-transform: uppercase;
}

/*Welcome*/


.welc-container {
    display: block;
    position: relative;
    background: #fff;
    padding: 40px 0 205px;
    font-size: 0;
    overflow: hidden;
}

.welc-container:before {
    position: absolute;
    content: '';
    bottom: -37%;
    left: 0;
    width: 591px;
    height: 971px;
    background: url(images/welc-accent-logo.png) no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
    opacity: .02;
}

/* .welc-container:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: url(images/welc-bg.jpg) no-repeat;
    background-position: top center;
    background-size: cover;
    pointer-events: none;
} */

.welc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 575px;
    pointer-events: none;
}

.welc-bg:before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/welc-bg.jpg) no-repeat;
        background-position: bottom;
        background-size: cover;
        pointer-events: none;
        opacity: .12;
}

.welc-bg:after {
        position: absolute;
        content: '';
        bottom: 0;
        left: 0;
        width: 100%;
        height: 55%;
        background: -webkit-gradient(linear,  left top, left bottom,  from(rgba(255,255,255,0)),to(rgba(255,255,255,1)));
        background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
        background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}


.welc-wrapper {
    display: block;
    position: relative;
}

.welc-main {
    display: block;
    position: relative;
}

.welc-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.welc-col {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    width: 50%;
}

.welc-agent-photo img {
    max-width: 100%;
    margin-left: auto;
    display: block;
    margin-right: 65px;
}

.welc-agent-photo {
    display: block;
    position: relative;
    z-index: 1;
}

.welc-title {
    display: inline-block;
    position: relative;
    margin-bottom: 85px;
}

.welc-content-wrap {
    display: block;
    position: relative;
    padding: 0 0;
    z-index: 2;
    margin-right: -29px;
    padding-bottom: 10px;
}

.welc-content-container {
    display: block;
    position: relative;
}

.welc-title span {
    font-size: 26px;
    line-height: 1;
    letter-spacing: 3.12px;
    color: #323232;
    text-transform: uppercase;
    display: block;
    margin-bottom: 26px;
    font-family: var(--title-font);
}

.welc-title h1 {
    font-size: 50px;
    line-height: 1.2;
    color: #236092;
    text-transform: uppercase;
    font-family: var(--title-font);
}

.welc-wrapper .custom-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.welc-content-text p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.7px;
    color: #4b4b4b;
}

.welc-content-text p:not(:last-child) {
    margin-bottom: 20px;
}

.welc-agent-photo:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100%  - 120px);
    /*background: #236092;*/
    z-index: -1;
    pointer-events: none;
}


.welc-agent-photo:after{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100%  - 120px);
    z-index: -1;
    /*background: url(images/agent-bg.jpg) no-repeat;*/
    background-position: center;
    background-size: cover;
    pointer-events: none;
}



.welc-content-text {
    display: block;
    position: relative;
    margin-bottom: 45px;
    z-index: 1;
}

.welc-content-wrap:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 51%;
    width: calc(100% + 203px);
    height: calc(100% + 109px);
    background: #fff;
    right: 0;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    z-index: 1;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}

.welc-btn {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-direction: row;
    justify-content: space-between;
}

/*.welc-btn a {
    width: 305px;
}*/
.welc-btn a{
    width: 212px;
    text-align: center;
    line-height: 1.5;
}

.welc-content-text strong {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.9px;
}

.welc-content-text strong strong{
    font-weight: 700;
}

.welc-col:first-child {
    width: 46.3%;
    margin-bottom: -43px;
}

.welc-col:last-child {
    width: 53.7%;
    margin-right: -92px;
}

.welc-agent-container {
    display: block;
    position: relative;
}

.welc-agent-container:before {
    position: absolute;
    content: '';
    top: 80px;
    left: -39px;
    width: 243px;
    height: 232px;
    border: 5px solid #d3d3d3;
    pointer-events: none;
}


.floating-square {
    position: absolute;
    top: 67%;
    right: -38px;
    width: 243px;
    height: 100%;
}

.floating-square span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(50% - 62.5px);
    border: 5px solid #e1e1e1;
}

.floating-square span + span {
    bottom: 0;
    top: auto;
}

/*Surrounding Area*/


.sa-container {
    display: block;
    position: relative;
    font-size: 0;
    padding-bottom: 149px;
    background: #fff;
}

.sa-wrapper {
    display: block;
    position: relative;
}

.sa-main {
    display: block;
    position: relative;
    padding: 40px 0;
}

.sa-video {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.sa-video .cycloneslider-template-video,
.sa-video #aios-slider-hp-surrounding-areas {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.sa-video .cycloneslider-template-video canvas,
.sa-video #aios-slider-hp-surrounding-areas .aios-slider-splide .aios-slider-img canvas, 
.sa-video #aios-slider-hp-surrounding-areas .aios-slider-splide .aios-slider-custom-video canvas {
    min-height: 673px;
}



.sa-video .cycloneslider-template-video .canvas-holder {
    height: 100%!important;
}

.sa-video .cycloneslider-template-video .cycloneslider-slides {
    height: 100%!important;
    width: 100%!important;
}

.sa-video .cycloneslider-template-video .buffering:before {
    display: none;
}



.sa-video canvas {
    /* display: block; */
    /* width: 100%; */
    /* height: 100%; */
    /* background: #000; */
    /* min-height: 673px; */
}

.sa-video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 1;
}

.sa-video-icon span.ai-icon-youtube {
    background-image: url(images/ai-youtube-icon.html);
    width: 55px;
    width: 3.438vw;
    height: 41px;
    height: 2.563vw;
}

.sa-video-icon span.ai-font-play-button-a {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    font-size: 32px;
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}



.sa-video:hover span.ai-font-pause-button-a {
    opacity: 1;
}

.sa-video-icon span.ai-icon-play {
    background-image: url(images/ai-play-icon.png);
    width: 96px;
    height: 96px;
    cursor: pointer;
}


.sa-video-icon span.ai-font-pause-button-a{
     position: absolute;
     content: '';
     top: 50%;
     left: 50%;
     -webkit-transform: translate(-50%,-50%);
     -ms-transform: translate(-50%,-50%);
     transform: translate(-50%,-50%);
     font-size: 40px;
     color: #ddd;
     -webkit-transition: 0.3s all ease-in-out;
     -o-transition: 0.3s all ease-in-out;
     transition: 0.3s all ease-in-out;
     display: none;
     opacity: 0;
     cursor: pointer;
}


.sa-video-icon {
    position: absolute;
    top: 50%;
    left: 27%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    z-index: 10;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    width: auto;
    height: auto;
    z-index: 2;
}


.sa-floating-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 598px;
    margin-left: auto;
    margin-right: 147px;
    background: rgba(40,70,105,.83);
    padding: 36px 30px 36px 49px;
}

.sa-content-title {
    display: block;
    position: relative;
    margin-bottom: 26px;
}

.sa-content-text {
    display: block;
    position: relative;
    margin-bottom: 30px;
}

.sa-btn {
    display: block;
    position: relative;
}

.sa-content-title span {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 3.12px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
    font-family: var(--title-font);
}

.sa-content-title h2 {
    font-size: 36px;
    line-height: 48px;
    color: #4da9ff;
    text-transform: uppercase;
    font-family: var(--title-font);
}

.sa-content-text p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.7px;
    color: #fff;
}

.sa-content-text p:not(:last-child) {
    margin-bottom: 21px;
}

.sa-btn a {
    width: 212px;
}


.sa-main > .single-floating-box {
    left: 100px;
    bottom: -42px;
}

.sa-video-icon span.ai-icon-play:hover {
    opacity: .75;
}


/*Reviews*/


.reviews-container {
    display: block;
    position: relative;
    padding: 100px 0 78px;
    background: #fff;
}

.reviews-wrapper {
    display: block;
    position: relative;
    z-index: 3;
}

.reviews-main {
    display: block;
    position: relative;
}

.reviews-main-title {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 55px;
}

.reviews-caption {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 24px;
}

.reviews-btn {
    display: block;
    position: relative;
}

.reviews-row {
    display: block;
    position: relative;
    margin-top: 77px;
}


.reviews-row:before {
    position: absolute;
    content: '';
    top: 151px;
    right: calc((100vw - 1140px) / -2);
    background: url(images/cu-accent-logo.png) no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
    width: calc(100vw - 1009px);
    height: 917px;
    opacity: 0.02;
}

.reviews-main-title h2 {
    font-size: 36px;
    line-height: 1.34;
    letter-spacing: 4.32px;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--title-font);
}

.reviews-caption span {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.9px;
    color: #fff;
    display: block;
}

.reviews-btn a {
    margin: 0 auto;
    max-width: 252px;
}

.reviews-caption span:not(:last-child) {
    margin-bottom: 50px;
}

.review-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
}

.reviews-item {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: calc(100% / 3);
    padding: 0 15px;
}

.reviews-title {
    display: block;
    position: relative;
    padding-bottom: 36px;
    margin-bottom: 36px;
}

.reviews-content {
    display: block;
    position: relative;
    padding: 0 9px;
}

.reviews-title span {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #323232;
    text-transform: uppercase;
    font-family: var(--title-font);
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.reviews-content p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.7px;
    color: #4b4b4b;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.reviews-content-wrapper {
    background: #fff;
    display: block;
    position: relative;
    padding: 109px 41px 86px;
    text-align: center;
    height: 100%;
    z-index: 2;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.reviews-title:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 69px;
    height: 1px;
    background: #236092;
    margin: 0 auto;
    pointer-events: none;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.reviews-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 628px;
    z-index: 1;
    background: #236092 url(images/reviews-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
}

.reviews-bg span{
    position: absolute;
    /*content: '';*/
    top: 50%;
    left: 50%;
    width: 350px;
    height: 475px;
}

.reviews-bg span::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/reviews-accent-logo.png) no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    opacity: .10;
}

.reviews-item:hover .reviews-content-wrapper {
    background: #236092;
}

.reviews-item:hover .reviews-title span {
    color: #fff;
}

.reviews-item:hover .reviews-title:before {
    background: #73b2e6;
}

.reviews-item:hover .reviews-content p {
    color: #fff;
}

.reviews-item:hover .reviews-content-wrapper:before{
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

.reviews-content-wrapper:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 15px solid #b2c8d9;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: visible;
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
}

.single-floating-box.top-left {
    bottom: auto;
    top: -42px;
    left: -29px;
    opacity: .35;
    border-color: #c4c4c4;
}

.single-floating-box.bot-right {
    bottom: -48px;
    left: -30px;
    opacity: .35;
    border-color: #c4c4c4;
}


/*Contact Form*/

.section-wrapper {
    position: relative;
}


.cu-container {
    display: block;
    position: relative;
    background: #fff;
    padding: 78px 0 119px;
}

.cu-wrapper {
    display: block;
    position: relative;
    z-index: 3;
}

.cu-btn-title {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.cu-btn-title h2 {
    font-size: 36px;
    line-height: 1.34;
    letter-spacing: 4.32px;
    color: #236092;
    text-transform: uppercase;
    font-family: var(--title-font);
}

.cu-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.cu-btn {
    display: inline-block;
    vertical-align: middle;
    padding: 0 15px;
}

.cu-btn:first-child {
    padding-left: 0;
}

.cu-btn:last-child {
    padding-right: 0;
}

.cu-btn-wrap {
    display: block;
    position: relative;
    margin-bottom: 140px;
}

.cu-btn:first-child a {
    width: 262px;
}

.cu-btn:last-child a {
    width: 302px;
}

.cu-bg {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 750px;
    background: url(images/cu-bg.jpg) no-repeat;
    background-position: bottom;
    background-size: cover;
    pointer-events: none;
    opacity: .12;
}

.cu-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 57%;
    background: -webkit-gradient(linear,  left top, left bottom,  from(rgba(255,255,255,1)),to(rgba(255,255,255,0)));
    background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
}

/*Form*/

.cu-form-title {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.cu-form-title h2 {
    font-size: 36px;
    line-height: 1.34;
    color: #236092;
    text-transform: uppercase;
    font-family: var(--title-font);
    display: block;
    margin-bottom: 30px;
}

.cu-form-title span {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 1.2px;
    color: #323232;
    font-weight: 500;
}

.cu-form-submit input[type=submit] {
    width: 100%;
    background: transparent;
    color: #323232;
    text-align: center;
    display: block;
    padding: 0;
}

.cu-form-submit {
    max-width: 212px;
    margin: 0 auto;
    display: block;
    position: relative;
}

.cu-form-submit input[type=submit]:hover {
    color: #fff!important;
    border-color: #236092;
    background: #236092;
}

.cu-form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 54px;
}

.cu-form-col {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 15px);
    position: relative;
}

.cu-form-col input:not([type=submit]) {
    width: 100%;
    height: 60px;
    background: transparent;
    padding: 0 5px;
    border: none;
    border-bottom: 1px solid #696969;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.7px;
    color: #323232;
}

.cu-form-widget div.wpcf7 .ajax-loader {
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.cu-form-widget div.wpcf7-response-output {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.cu-form-widget {
    display: block;
    width: 100%;
    max-width: 944px;
    margin: 0 auto;
}

.cu-form-widget form {
    position: relative;
}

/*Footer*/
.footer-container {
    display: block;
    position: relative;
    padding: 74px 0 60px;
    font-size: 0;
    background: #236193;
    overflow: hidden;
}

.footer-container:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/footer-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    opacity: .10;
}


.footer-wrapper {
    display: block;
    position: relative;
}

.footer-contacts-container {
    display: block;
    position: relative;
    margin-bottom: 58px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,.17);
}

.footer-contacts-main {
    display: block;
    position: relative;
}

.footer-contacts-col {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.footer-contacts-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}


/*Footer Logo*/
.footer-logo {
    display: block;
    position: relative;
    margin-bottom: 35px;
    max-width: 438px;
}

.footer-contacts {
    margin-bottom: 29px;
    display: block;
    position: relative;
}

.footer-logo a {
    display: block;
    position: relative;
    max-width: 334px;
}

.footer-logo img {
    max-width: 100%;
	

}

/*Footer Contacts*/
.footer-contacts span {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #fff;
    padding: 0 24px;
    border-right: 1px solid #878787;
}

.footer-contacts span:first-child {
    padding-left: 0;
}

.footer-contacts span:last-child {
    padding-right: 0;
    border: none;
}

.footer-contacts span a {
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-contacts span a:hover {
    color: #85b6e0;
}


/*Footer SMi*/
.footer-smi a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 57px;
    height: 57px;
    border: 1px solid rgba(255,255,255,.50);
    border-radius: 50%;
    margin-right: 21px;
    font-size: 21px;
    color: #fff;
    line-height: 1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-smi a:hover {
    background: #85b6e0;
    border-color: #85b6e0;
}

.footer-smi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-smi a:last-child {
    margin-right: 0;
}

/*Footer Map*/
.footer-map-widget {
    display: block;
    position: relative;
    padding-top: 20px;
}

.footer-location {
    display: block;
    position: relative;
    margin-bottom: 25px;
}

.footer-map {
    display: block;
    position: relative;
}

.footer-location span {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    color: #fff;
}

.footer-static-map {
    position: relative;
}

.footer-static-map canvas {
    display: block;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*Navigation*/
#footer-nav > li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 14px;
}

#footer-nav > li:first-of-type {
    padding-left: 0;
}

#footer-nav > li:last-of-type {
    padding-right: 0;
}

.footer-nav-wrap {
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

#footer-nav > li > a {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#footer-nav > li > a:hover {
    color: #85b6e0;
}

#footer-nav > li.append-contact-info {
    display: none;
}


/*Copyright*/
.copyright {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 1.2px;
    color: #fff;
    position: relative;
    display: block;
    text-align: center;
    font-weight: 300;
    width: 100%;
    max-width: 92%;
    margin: 0 auto 24px;
}

.copyright a {
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    text-transform: uppercase;
}

.copyright a:hover {
    color: #85b6e0;
}

.mls-logo {
    position: relative;
    display: block;
    text-align: center;
}

.mls-logo span {
    margin: 0 14px;
}

.mls-logo span.ai-icon-eho {
    background-image: url(images/ai-eho-icon-b.png);
    width: 56px;
    height: 65px;
}

.mls-logo span.ai-icon-ehl {
    background-image: url(images/ai-ehl-icon-b.png);
    width: 56px;
    height: 65px;
}

/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
.ip-container #breadcrumbs {
    font-size: 14px;
    text-transform: uppercase;
}

.ip-container #breadcrumbs span.breadcrumb_last {
    color: #236092;
    font-weight: 700;
}

.ip-container #breadcrumbs a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.ip-container #breadcrumbs a:hover {
    color: #236092;
}

.ip-container .footer-contact-us {
    position: relative;
}

.ip-container .footer-contact-us .cu-container {
    padding-top: 100px;
}

.ip-container .footer-contact-us:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 592px;
    height: 100%;
    background: url(images/cu-accent-logo.png) no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
    opacity: 0.012;
}

.ip-container .footer-contact-us .cu-btn-wrap {
    margin-bottom: 120px;
}

.ip-container .footer-contact-us .cu-form-title h2 {
    margin-bottom: 35px;
}

.ip-container .footer-contact-us .cu-form-title {
    margin-bottom: 55px;
}

.ip-banner{
    position: relative;
    overflow: hidden;
}

.ip-banner canvas{
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 350px;
    background: #f9f7f7;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.ip-banner .container{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    z-index: 2;
}

.ip-banner h1 {
    font-weight: 400;
    font-size: 45px;
    text-align: center;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.ip-banner h1 span{
    display: block;
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
}

/* Adjust minimum height of page area */
#content-sidebar, #content-full{ min-height: 500px; margin-top: 20px;}

/** Adjust width of content columns **/
#content-sidebar #content{ width: 74.08%; }
#content-full #content { width: 100%; }

/* Adjust width of sidebar */
.sidebar{ width: 23.83%; margin-top: 80px; }

/* fullwidth template */
.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}

.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
    margin-left: -15px;
    margin-right: -15px;
}

/* Adjust line height of page elements */
#content h4, aside h4,
#content p, aside p,
#content blockquote, aside blockquote,
#content ul, aside ul,
#content fieldset, aside fieldset,
#content form, aside form,
#content ol, aside ol,
#content dl, aside dl,
#content dir, aside dir,
#content menu, aside menu { line-height:1.7 }

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    font-size: 50px;
    line-height: 1.2;
    color: #236092;
    text-transform: uppercase;
    font-family: var(--title-font);
}

#content .entry{
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.7px;
    color: #4b4b4b;
}
/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    margin-top: 0;
    font-size: 50px;
    line-height: 1.2;
    color: #236092;
    text-transform: uppercase;
    font-family: var(--title-font);
}

.grecaptcha-badge {
    z-index: 9999;
}

.postid-747 .ip-banner canvas,
.postid-721 .ip-banner canvas,
.postid-745 .ip-banner canvas,
.postid-746 .ip-banner canvas,
.blog-single .ip-banner canvas {
    height: 177px;
    min-height: 0;
    background-image: url(images/our-firm/banner.jpg)!important;
}
.postid-747 #breadcrumbs,
.postid-721 #breadcrumbs,
.postid-745 #breadcrumbs,
.postid-746 #breadcrumbs {
    margin: -50px 0 0;
    color: #fff;
}
.postid-747 #breadcrumbs span,
.postid-721 #breadcrumbs span,
.postid-745 #breadcrumbs span,
.postid-746 #breadcrumbs span {
    color: #fff !important;
    font-size: 12px;
}

.postid-747 h1.entry-title,
.postid-721 h1.entry-title,
.postid-745 h1.entry-title,
.postid-746 h1.entry-title,
article.blog-single h1.entry-title {
    display: block;
    margin: 82px 0 82px !important;
    position: relative;
    padding-left: 37px;
    font-family: var(--title-font) !important;
    font-size: 40px !important;
    line-height: 1 !important;
    letter-spacing: 0.050em;
}
.postid-747 h1.entry-title:before,
.postid-721 h1.entry-title:before,
.postid-745 h1.entry-title:before,
.postid-746 h1.entry-title:before,
article.blog-single h1.entry-title:before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0;
    bottom: auto;
    margin: auto;
    width: 17px;
    height: 33px;
    background: url(images/mark-cohen/title-accent.png) no-repeat;
    background-size: 100% auto;
}
article.blog-single p#breadcrumbs{
    position: absolute;
    top: -28px;
    left: 0;
    width: 100%;
    max-width: 1510px;
    margin: 0 auto;
    padding: 0 15px;
    right: 0;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.6px;
}
article.blog-single p#breadcrumbs .breadcrumb_last{
    font-weight: 600;
    color: #ffffff;
}
article.blog-single h1.entry-title{
    font-size: 40px !important;
    line-height: 1 !important;
    letter-spacing: 0.050em !important;
    color: #236092 !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
}

/*Custom Table*/

.ip-content-table-post {
    position: relative;
    display: block;
}

.ip-content-table-post .ip-content-table {
    display: block;
    position: relative;
    width: 100%;
    padding: 0 48px 20px;
}

.ip-content-table-post .ip-content-table-desc {
    display: block;
    padding: 24px 0;
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.054em;
    color: #4b4b4b;
}

.ip-content-table-post .ip-content-table-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.ip-content-table-post .ip-content-table-tr {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    position: relative;
    text-align: center;
}

.ip-content-table-post .ip-content-table-td {
    position: relative;
    width: 100%;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #000;
    font-family: var(--title-font);
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #323232;
}

.ip-content-table-post .ip-content-table-td:first-child {
    background-color: #236193;
    color: #fff;
}

.ip-content-table-post .ip-content-table-td:first-child {
    border-bottom: none;
    font-size: 14px;
    letter-spacing: 0.7px;
}

.ip-content-table-post .ip-content-table-disclaimer {
    padding: 37px 0 0;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.6px;
    color: #434343;
}

.ip-content-table-post .ip-content-table-disclaimer a {
    color: #236193;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.ip-content-table-post .ip-content-table-disclaimer a:hover {
    color: #85b6e0;
}

.blog-single #content .entry {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.054em;
}

.ip-banner.blog-single canvas{
    height: 177px;
    min-height: 0;
    background-image: url(images/our-firm/banner.jpg)!important;
}

body #pojo-a11y-toolbar {
    bottom: 0 !important;
    top: auto !important;
}

body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top: auto !important;
    bottom: 0 !important;
}

button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

#pojo-a11y-toolbar .pojo-a11y-btn-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background,
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display:none !important;
}

#content .am-content-bio h3 {
    font-size: 20px;
}


#surrounding-areas {
    display: none;
}

.cycloneslider-slide-image {
    background: #08070c !important;
}

.slideshow-wrapper .aios-slider{

    display: block;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.page-id-3 .ip-banner canvas {
    height: 177px;
    min-height: 0;
    background-image: url(images/our-firm/banner.jpg) !important;
}

.page-id-3 #breadcrumbs {
    position: absolute;
    top: -28px;
    left: 0;
    width: 100%;
    max-width: 1510px;
    margin: 0 auto;
    padding: 0 15px;
    right: 0;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.6px;
}

.page-id-3 #breadcrumbs span a {
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition:  0.3s all ease-in-out;
    transition:  0.3s all ease-in-out;
}

.page-id-3 #breadcrumbs span a:hover {
    color: #85b6e0;
}

.page-id-3 #breadcrumbs span.breadcrumb_last {
    font-weight: 600;
    color: #fff;
}

.page-id-3 #inner-page-wrapper > .container {
    width: 100%;
    padding: 0;
}

.page-id-3 #content .entry-title {
    width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
}

.single-press .ip-banner canvas {
    background-size: contain;
}
.single-press .ip-banner {	}

.wow {
    visibility: hidden;
}

/*thank you page*/
.page-id-106929 #inner-page-wrapper,
.page-id-106972 #inner-page-wrapper,
.page-id-106969 #inner-page-wrapper,
.page-id-106967 #inner-page-wrapper,
.page-id-106965 #inner-page-wrapper,
.page-id-106963 #inner-page-wrapper,
.page-id-106961 #inner-page-wrapper,
.page-id-106959 #inner-page-wrapper,
.page-id-106957 #inner-page-wrapper,
.page-id-106954 #inner-page-wrapper,
.page-id-106951 #inner-page-wrapper,
.page-id-106949 #inner-page-wrapper,

.page-id-107135 #inner-page-wrapper,

.page-id-107095 #inner-page-wrapper,
.page-id-107098 #inner-page-wrapper,
.page-id-107105 #inner-page-wrapper {
	margin-bottom: 0;
	margin-top: 50px;
}
.page-id-106929  #content-full,
.page-id-106972 #content-full,
.page-id-106969 #content-full,
.page-id-106967 #content-full,
.page-id-106965 #content-full,
.page-id-106963 #content-full,
.page-id-106961 #content-full,
.page-id-106959 #content-full,
.page-id-106957 #content-full,
.page-id-106954 #content-full,
.page-id-106951 #content-full,
.page-id-106949 #content-full,

.page-id-107135 #content-full,

.page-id-107105 #content-full {
	min-height: auto;
  margin-top: 0;
}
.page-id-106929 .ip-banner, .page-id-106929 #breadcrumbs,
.page-id-106972 .ip-banner, .page-id-106972 #breadcrumbs,
.page-id-106969 .ip-banner, .page-id-106969 #breadcrumbs,
.page-id-106967 .ip-banner, .page-id-106967 #breadcrumbs,
.page-id-106965 .ip-banner, .page-id-106965 #breadcrumbs,
.page-id-106963 .ip-banner, .page-id-106963 #breadcrumbs,
.page-id-106961 .ip-banner, .page-id-106961 #breadcrumbs,
.page-id-106959 .ip-banner, .page-id-106959 #breadcrumbs,
.page-id-106957 .ip-banner, .page-id-106957 #breadcrumbs,
.page-id-106954 .ip-banner, .page-id-106954 #breadcrumbs,
.page-id-106951 .ip-banner, .page-id-106951 #breadcrumbs,
.page-id-106949 .ip-banner, .page-id-106949 #breadcrumbs,

.page-id-107135 .ip-banner, .page-id-107135 #breadcrumbs,

.page-id-107095 .ip-banner, .page-id-107095 #breadcrumbs,
.page-id-107098 .ip-banner, .page-id-107098 #breadcrumbs,
.page-id-107105 .ip-banner, .page-id-107105 #breadcrumbs {
	display: none;
}
.page-id-106929 #content .entry-title,
.page-id-106972 #content .entry-title,
.page-id-106969 #content .entry-title,
.page-id-106967 #content .entry-title,
.page-id-106965 #content .entry-title,
.page-id-106963 #content .entry-title,
.page-id-106961 #content .entry-title,
.page-id-106959 #content .entry-title,
.page-id-106957 #content .entry-title,
.page-id-106954 #content .entry-title,
.page-id-106951 #content .entry-title,
.page-id-106949 #content .entry-title,

.page-id-107135 #content .entry-title,

.page-id-107095 #content .entry-title,
.page-id-107098 #content .entry-title,
.page-id-107105 #content .entry-title {
	display: none;
}
.thky-container {
	min-height: 700px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
	position: relative;
}
.thky-title {
	display: block;
	position: relative;
	text-align: center;
	margin-bottom: 30px;
}
.thky-title div {
	font-size: 36px;
	line-height: 1.54;
	letter-spacing: 2.32px;
	color: #236092;
	text-transform: uppercase;
	font-family: var(--title-font);	
}
.thky-btns {
	text-align: center;
}
.thky-btns .global-btn.is-black {
	margin: 50px auto 0;
}
.thky-btns p {
	font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #323232;
  font-weight: 400;
}
.page-id-106929 .footer-contact-us,
.page-id-106972 .footer-contact-us,
.page-id-106969 .footer-contact-us,
.page-id-106967 .footer-contact-us,
.page-id-106965 .footer-contact-us,
.page-id-106963 .footer-contact-us,
.page-id-106961 .footer-contact-us,
.page-id-106959 .footer-contact-us,
.page-id-106957 .footer-contact-us,
.page-id-106954 .footer-contact-us,
.page-id-106951 .footer-contact-us,
.page-id-106949 .footer-contact-us,

.page-id-107135 .footer-contact-us,

.page-id-107095 .footer-contact-us,
.page-id-107098 .footer-contact-us,
.page-id-107105 .footer-contact-us {
	display: none;
}
.page-id-106929 #inner-page-wrapper::before,
.page-id-106972 #inner-page-wrapper::before,
.page-id-106969 #inner-page-wrapper::before,
.page-id-106967 #inner-page-wrapper::before,
.page-id-106965 #inner-page-wrapper::before,
.page-id-106963 #inner-page-wrapper::before,
.page-id-106961 #inner-page-wrapper::before,
.page-id-106959 #inner-page-wrapper::before,
.page-id-106957 #inner-page-wrapper::before,
.page-id-106954 #inner-page-wrapper::before,
.page-id-106951 #inner-page-wrapper::before,
.page-id-106949 #inner-page-wrapper::before,

.page-id-107135 #inner-page-wrapper::before,

.page-id-107095 #inner-page-wrapper::before,
.page-id-107098 #inner-page-wrapper::before,
.page-id-107105 #inner-page-wrapper::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 57%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)),to(rgba(255,255,255,0)));
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
	z-index: 1;
}
.page-id-106929 #inner-page-wrapper::after,
.page-id-106972 #inner-page-wrapper::after,
.page-id-106969 #inner-page-wrapper::after,
.page-id-106967 #inner-page-wrapper::after,
.page-id-106965 #inner-page-wrapper::after,
.page-id-106963 #inner-page-wrapper::after,
.page-id-106961 #inner-page-wrapper::after,
.page-id-106959 #inner-page-wrapper::after,
.page-id-106957 #inner-page-wrapper::after,
.page-id-106954 #inner-page-wrapper::after,
.page-id-106951 #inner-page-wrapper::after,
.page-id-106949 #inner-page-wrapper::after,

.page-id-107135 #inner-page-wrapper::after,

.page-id-107095 #inner-page-wrapper::after,
.page-id-107098 #inner-page-wrapper::after,
.page-id-107105 #inner-page-wrapper::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 750px;
	background: url(images/cu-bg.jpg) no-repeat;
	background-position: bottom;
	background-size: cover;
	pointer-events: none;
	opacity: .12;
}
.thky-container::before {
	position: absolute;
	content: '';
	top: 0;
	left: 50%;
	width: 400px;
	height: 543px;
	background: url(images/reviews-accent-logo.png) no-repeat;
	background-position: center;
	background-size: cover;
	pointer-events: none;
	z-index: 1;
	opacity: 0.015;
	transform: translateX(-50%);
	filter: brightness(0);
}


.error404-btn {
    position: relative;
}
    .error404-btn a.global-btn.is-black {
        width: 300px;
        max-width: 100%;
        margin: 0 auto;
    }

.error404.ip-container .footer-contact-us {
    display: none;
}

#content .error-page-image-holder {
	display: none;
}
#content .error-page-content-wrapper {
    max-width: 1160px;
    margin: 0;
    padding: 80px 15px 140px;
}
#content .error-page-excerpt {
    font-family: var(--body-font);
    font-size: 14px;
    color: #3f3f3f;
    line-height: 1.7;
    letter-spacing: 0.05em;
    text-align: center;
}
#content .error-page-excerpt p {
	font-family: "Libre Baskerville", serif;
	font-weight: 400;
    font-style: normal;
    font-size: 36px;
    margin: 0.5em 0;
    color: #236193;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}
#content .error-page-excerpt p span {
	display: block;
	font-size: 170px;
	font-weight: 500;
    margin-bottom: 10px;
}
body.error404 .ip-banner {
	display: none;
}
body.error404 #inner-page-wrapper {
	margin-top: 72px;
    margin-bottom: 0;
    background: #e3e3e3;
}
body.error404 #content-full {
    margin-top: 0;
}
body.error404 #content p#breadcrumbs {
    display: none;
}

.wpcf7-form-control-wrap {
    display: block;
}

body.admin-bar #fixed-header {
    top: 32px;
}

.overflow-x {
	overflow-x: auto;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */