/*
Theme Name: Paul Margolis - Luxury Homes
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.7
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

*/

:root {
    --primary-font: 'PT Sans Narrow', sans-serif;
    --secondary-font: 'Cormorant Garamond', serif;
    --tertiary-font: 'Montserrat', sans-serif;
    --contact-font: 'Poppins', sans-serif;
}

@font-face {
    font-family: AudreyFont;
    src: url(fonts/Audrey-Normal.otf);
}

@font-face {
    font-family: AudreyFont;
    src: url(fonts/Audrey-Bold.otf);
    font-weight: bold;
}


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


/* Menu and Sub Menus*/

.header-nav {
    position: relative;
    display: block;
    width: 100%;
    z-index: 1;
    text-align: right;
}

.header-nav > li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.header-nav > li > a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    padding: 17px 18px;
}

#main-header.toggle-fixed-header .header-nav > li > a {
    color: #213f9a;
}

.header-nav > li:hover a {
    background: #213f9a;
    color: #fff;
}

#main-header.toggle-fixed-header .header-nav > li:hover a {
    color: #fff;
}


/* 2nd Layer Menu */

.header-nav > li:hover > .sub-menu {
    display: block;
    visibility: visible;
    /* shows sub-menu */
    opacity: 1;
    z-index: 5;
    -webkit-transition-delay: 0s, 0s, 0.4s;
    transition-delay: 0s, 0s, 0.4s;
    -webkit-animation: menu-transition 1.5s ease-in-out;
    animation: menu-transition 1.5s ease-in-out;
}

.header-nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    display: none;
    opacity: 0;
    padding-top: 0;
    position: absolute;
    min-width: 228px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    visibility: hidden;
    overflow: hidden;
}

.header-nav .sub-menu > li {
    position: relative;
}

.header-nav .sub-menu > li > a {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff;
    background: rgba(0, 0, 0, 0.68);
    padding: 10px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.header-nav .sub-menu > li:first-child > a {
    padding-top: 23px;
}

.header-nav .sub-menu > li:last-child > a {
    padding-bottom: 23px;
}

.header-nav .sub-menu > li > a:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
}


/* 3rd Layer Menu */

.header-nav .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
}

@-webkit-keyframes menu-transition {
    from {
        max-height: 0;
    }
    to {
        max-height: 1000px;
    }
}

@keyframes menu-transition {
    from {
        max-height: 0;
    }
    to {
        max-height: 1000px;
    }
}

@-webkit-keyframes autofill {
    to {
        color: #fff;
        background: transparent;
    }
}


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


/* Global */

body {
    font-family: 'PT Sans Narrow', Arial, Helvetica, Georgia, Sans-serif;
    font-size: 16px;
    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;
}

div#main-wrapper {
    overflow: hidden;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

.slick-slider,
.slick-slider *,
.slick-slider a,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

@-moz-document url-prefix() {
    select {
        text-indent: -2px;
    }
}

@supports (-ms-ime-align: auto) {
    select {
        text-indent: -2px;
    }
    .header-nav {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

.sxn {
    position: relative;
    display: block;
    height: auto;
    width: 100%;
    font-size: 0;
}

.sxn-container {
    width: 100%;
    max-width: 1450px;
    padding: 0 15px;
    margin: 0 auto;
}

.extend-to-container {
    margin: 0 -140px;
}

.sxn-heading {
    font-family: 'AudreyFont';
}

.sxn-heading em {
    font-size: 80px;
    letter-spacing: .02em;
    color: #213f9a;
    text-transform: uppercase;
    font-style: normal;
}

.sxn-heading > small {
    display: block;
    font-size: 24px;
    letter-spacing: .4em;
    color: #303030;
    text-transform: uppercase;
    line-height: .9;
}

.sxn-heading--line em {
    position: relative;
    display: inline-block;
}

.sxn-heading--line em::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: 45px;
    width: 26px;
    height: 26px;
    background: url(images/pm-stamp.png) no-repeat center center;
}

.sxn-heading--line em::after {
    content: '';
    position: absolute;
    right: calc(100% + 45px);
    top: 50%;
    margin-top: -1px;
    width: 100vw;
    height: 1px;
    background: #213f9a;
    margin-right: 26px;
}

.sxn-heading--line.line-reverse em::before {
    right: initial;
    left: 100%;
    margin-right: 0;
    margin-left: 45px;
}

.sxn-heading--line.line-reverse em::after {
    right: initial;
    left: calc(100% + 45px);
    margin-left: 26px;
    margin-right: auto;
}

.sxn-heading-secondary {
    display: block;
    font-size: 80px;
    letter-spacing: .08em;
    color: #000000;
    margin-left: 80px;
    text-transform: uppercase;
    margin-top: -7px;
    line-height: .9;
}

.sxn-heading-secondary small {
    display: block;
    font-family: var(--primary-font);
    font-size: 24px;
    letter-spacing: 1.15em;
    color: #303030;
}

.sxn-link {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    min-height: 53px;
    border: 2px solid #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .26em;
    color: #fff;
    text-transform: uppercase;
    background: transparent;
    padding: 5px 30px;
    z-index: 1;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.sxn-link::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.sxn-link:hover,
.sxn-link:focus {
    color: #213f9a;
}

.sxn-link:hover::before,
.sxn-link:focus::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}


/* Header */

#main-header {
    position: absolute;
    z-index: 1010;
    padding-top: 37px;
}

#main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000', GradientType=0);
    opacity: .8;
}

#main-header.toggle-fixed-header {
    position: fixed;
    padding: 10px 0;
    background: #fff;
}

.toggle-fixed-header .header-brokerage img {
    max-width: 49px;
}

.toggle-fixed-header .header-misc {
    margin-left: 60px;
}

.toggle-fixed-header .header-logo img {
    max-width: 243px;
}

.header-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -15px;
}

.header-col {
    padding: 0 15px;
}

.header-left {
    width: 28.5%;
}

.header-right {
    width: 71.5%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header-misc {
    margin-left: 20px;
}

.header-contact,
.header-translate,
.header-brokerage {
    display: inline-block;
    vertical-align: middle;
}

.contact-list--header {
    display: inline-block;
    vertical-align: middle;
}

.contact-list--header li {
    position: relative;
    display: inline-block;
}

.contact-list--header li a {
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .05em;
    color: #213f9a;
    /* -webkit-transition: all 0.4s ease;
          transition: all 0.4s ease; */
}

.contact-list--header li a:hover {
    color: #213f9a;
    opacity: .6;
}

.contact-list--header em[class^="ai-font-"] {
    display: inline-block;
    vertical-align: middle;
    color: #213f9a;
    font-size: 11px;
    margin-right: 7px;
}

.contact-list--header em[class^="ai-font-phone"] {
    font-size: 13px;
}

.header-translate {
    position: relative;
    margin-left: 15px;
}

.header-translate::before {
    content: '';
    width: 6px;
    height: 6px;
    /*background: rgba(255, 255, 255, 0.54);*/
    background-color: rgba(33, 63, 154, 0.54);
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
    border-radius: 50%;
    display: none;
}

.header-translate::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 3px 0 3px;
    border-color: #213f9a transparent transparent transparent;
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}

.header-translate select {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    letter-spacing: .1em;
    color: #213f9a;
    text-transform: uppercase;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    outline: 0;
    padding-left: 20px;
    padding-right: 15px;
    width: 120px;
    background: transparent url(images/ic-globe-b.png) no-repeat left center;
    cursor: pointer;
}

.header-translate select:hover {
    color: #213f9a;
    opacity: .6;
}

.header-translate select option {
    color: #000;
}

.header-brokerage {
    padding-left: 22px;
    margin-left: 22px;
    border-left: 1px solid #213f9a;
}


/* Slideshow */

#hero-sxn,
.slideshow-view {
    position: relative;
}

.slideshow-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
    z-index: 1;
    display: none;
}

.slideshow-view::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 38.25%;
    width: 100%;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.29) 23%, rgba(0, 0, 0, 0.06) 79%, rgba(0, 0, 0, 0.01) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.29) 23%, rgba(0, 0, 0, 0.06) 79%, rgba(0, 0, 0, 0.01) 100%);
    pointer-events: none;
    z-index: 1;
    display: none;
}

.slideshow-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    /*
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.69) 23%, rgba(0, 0, 0, 0.06) 79%, rgba(0, 0, 0, 0.01) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.69) 23%, rgba(0, 0, 0, 0.06) 79%, rgba(0, 0, 0, 0.01) 100%);
*/
}

.slideshow-tagline h2 {
    font-family: 'AudreyFont';
    font-size: 71px;
    letter-spacing: .02em;
    color: #fff;
    text-transform: uppercase;
    line-height: normal;
}

.slideshow-tagline h2 span {
    display: block;
    font-size: 40px;
    letter-spacing: .2em;
}


/* Welcome */

#wc-sxn .sxn-wrap {
    padding-top: 80px;
    position: relative;
}

.wc-fillers::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(100% + 15px);
    height: 84%;
    width: 215px;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(images/wc-filler.jpg) no-repeat 42% top;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(images/wc-filler.jpg) no-repeat 42% top;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    z-index: -1;
}

.fordesktop {
    display: block;
}

.formobile{
	display:none;
}

.wc-head .sxn-heading em {
    font-size: 120px;
    line-height: 1;
}

.wc-head .sxn-heading em::before {
    margin-right: 0;
    margin-left: 75px;
}

.wc-head .sxn-heading em::after {
    left: calc(100% + 75px);
}

.wc-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.wc-imageview,
.wc-textview {
    padding-top: 90px;
}

.wc-imageview {
    position: relative;
    margin-left: -130px;
    padding-right: 15px;
}

.wc-imageview img {
    width: 100%;
    margin-bottom: -75px;
}

.wc-img-fillers::before {
    content: '';
    position: absolute;
    top: 0;
    right: calc(100% - 115px);
    height: 100%;
    width: 215px;
    background: -webkit-linear-gradient(rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.8)), url(images/wc-filler.jpg) no-repeat 83% center;
    background: linear-gradient(rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.8)), url(images/wc-filler.jpg) no-repeat 83% center;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    z-index: -1;
}

.wc-textview {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    height: 100%;
}

.wc-textview::before {
    content: '';
    display: block;
    position: absolute;
    top: -137px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 438px;
    height: 438px;
    background: url(images/pm-watermark.png) no-repeat center center;
    background-size: 100% 100%;
    pointer-events: none;
    opacity: .04;
}
.wc-textview p {
    font-size: 17px;
    letter-spacing: .05em;
    color: #303030;
    line-height: 1.5;
    margin-top: 30px;
}

.wc-textview p:first-of-type {
    /*margin-top: 0;*/
}

.wc-textview p:last-of-type {
    margin-bottom: 50px;
}

.wc-textview .wc-link {
    position: relative;
    margin-top: auto;
    z-index: 1;
    padding: 40px 35px;
}

.wc-textview .wc-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    background: #213f9a;
    z-index: -1;
}


/* Portfolio */

#portfolio-sxn {
    padding-top: 177px;
}

.portfolio-head p {
    font-size: 19px;
    letter-spacing: .05em;
    color: #303030;
    line-height: 1.5;
    max-width: 590px;
    margin-top: 32px;
}

.portfolio-view {
    position: relative;
}

.portfolio-fillers::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(100% - 114px);
    height: calc(100% - 2px);
    width: 205px;
    background: -webkit-linear-gradient(rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.8)), url(images/portfolio-filler-right.jpg) no-repeat right 40% top;
    background: linear-gradient(rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.8)), url(images/portfolio-filler-right.jpg) no-repeat right 40% top;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    z-index: -1;
}

.portfolio-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: -40px;
}

.portfolio-list .portfolio-col {
    width: 50%;
}

.portfolio-list .portfolio-col:first-child {
    width: 54.2%;
    padding-top: 85px;
}

.portfolio-list .portfolio-col:last-child {
    width: 45.8%;
}

.portfolio-col .portfolio-item {
    width: 100%;
    height: 100%;
}

.portfolio-col.portfolio-half .portfolio-item {
    height: 50%;
}

.portfolio-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
}

.portfolio-link canvas {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .8;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.portfolio-link:hover canvas {
    opacity: .26;
}

.portfolio-link:hover .portfolio-title {
    background: #213f9a;
    border-color: #213f9a;
    color: #fff;
}

.portfolio-item {
    display: block;
    padding: 2px;
}

.portfolio-title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    transform: translate(-50%, -50%) translateZ(0);
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 40px;
    letter-spacing: .2em;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    min-width: 280px;
    min-height: 69px;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.portfolio-link-wrap {
    width: 45.8%;
    margin-left: auto;
    padding: 1px 2px 0;
}

.portfolio-link-wrap .portfolio-btn {
    background: #213f9a;
    padding: 20px 15px;
    width: calc(100% - 115px);
    text-align: right;
}


/* Testimonials */

#testi-sxn {
    padding-bottom: 70px;
}

#testi-sxn::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 70px;
    width: 100%;
    background: #213f9a;
    left: 0;
}

#testi-sxn .sxn-wrap {
    position: relative;
    padding: 155px 0 132px;
}

#testi-sxn .sxn-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -140px;
    height: 100%;
    width: calc(100% + 280px);
    background: url(images/bg-testi.jpg) no-repeat center center;
    background-size: cover;
    z-index: -1;
}

#testi-sxn .sxn-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -140px;
    height: 100%;
    width: calc(100% + 280px);
    background: url(images/testi-overlay.png) no-repeat center center;
    background-size: cover;
    z-index: -1;
    opacity: .5;
}

.testi-fillers {
    position: relative;
}

.testi-fillers::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 100%;
    height: 74%;
    width: 100vw;
    background: #213f9a;
    z-index: -1;
}

.testi-fillers::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(100% + 140px);
    height: 58%;
    width: 90px;
    background: -webkit-linear-gradient(rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.8)), url(images/testi-filler-right.jpg) no-repeat right top;
    background: linear-gradient(rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.8)), url(images/testi-filler-right.jpg) no-repeat right top;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    z-index: -1;
}

.testi-head .sxn-heading em,
.testi-head .sxn-heading small {
    color: #fff;
    line-height: 1.2;
}

.testi-head .sxn-heading--line em::before {
    background: url(images/pm-stamp-light.png) no-repeat center center;
}

.testi-head .sxn-heading--line em::after {
    background: #fff;
}

.testi-slick {
    padding-top: 50px;
}

.testi-item {
    position: relative;
    max-width: 1040px;
}

.testi-item::before {
    content: '';
    display: block;
    width: 49px;
    height: 45px;
    background: url(images/ic-quote.png) no-repeat center center;
    background-size: 100% 100%;
    opacity: .34;
    margin-bottom: 30px;
}

.testi-item p {
    font-size: 26px;
    letter-spacing: .05em;
    line-height: 1.1;
    color: #e1e1e1;
}

.testi-item .testi-author {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: .05em;
    color: #e1e1e1;
    margin-top: 53px;
}

.testi-holder {
    position: relative;
}

.testi-navigation {
    position: absolute;
    top: -49px;
    left: calc(100% + 8px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 38px 23px;
}

.testi-navigation span {
    width: 18px;
    height: 40px;
    background: url(images/ic-testi-arrow.png) no-repeat center center;
    display: inline-block;
    cursor: pointer;
    margin: 0 12px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.testi-navigation span.testi-prev {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.testi-navigation span:hover {
    background: url(images/ic-testi-arrow-hover.png) no-repeat center center;
}


/* Blogs */

#blogs-sxn .sxn-wrap {
    position: relative;
    padding: 95px 0 0;
}

.blogs-fillers::before {
    content: '';
    position: absolute;
    top: 0;
    right: calc(100% + 15px);
    height: 100%;
    width: 215px;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(images/blogs-filler-left.jpg) no-repeat left 34% top;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(images/blogs-filler-left.jpg) no-repeat left 34% top;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    z-index: -1;
}

.blogs-head {
    display: block;
    text-align: right;
}

.blogs-head .sxn-heading--line em::before {
    margin-right: 73px;
}

.blogs-head .sxn-heading--line em::after {
    right: calc(100% + 73px);
}

.blogs-head p {
    font-size: 18px;
    letter-spacing: .05em;
    color: #303030;
    margin-top: 30px;
}

.blogs-view {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.blogs-slick {
    margin-top: 60px;
}

.blogs-slick .slick-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.blogs-slick .slick-list {
    margin: 0 -10px;
}

.blogs-slick .slick-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    margin: 0 10px;
}

.blog-wrap {
    height: 100%;
}

.blogs-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%;
}

.blog-slick-fillers::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(100% + 35px);
    height: 100%;
    width: 215px;
    background: -webkit-linear-gradient(rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.8)), url(images/blogs-filler-right.jpg) no-repeat left 2% top;
    background: linear-gradient(rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.8)), url(images/blogs-filler-right.jpg) no-repeat left 2% top;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    z-index: -1;
}

.blogs-imageview {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
}

.blogs-imageview canvas {
    display: block;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.blogs-imageview:hover canvas {
    -webkit-transform: scale(1.1) translateZ(0);
    transform: scale(1.1) translateZ(0);
}

.blogs-item p {
    font-size: 18px;
    letter-spacing: .05em;
    line-height: 1.5;
    color: #303030;
    margin-top: 15px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.blogs-item .sxn-link {
    border-color: #b4b4b4;
    color: #000;
    padding: 5px 25px;
    margin-top: 35px;
}

.blogs-item .sxn-link::before {
    display: none;
}

.blogs-item .sxn-link:hover {
    border-color: #213f9a;
    color: #fff;
    background: #213f9a;
}

.blogs-title {
    display: inline-block;
    font-size: 30px;
    letter-spacing: .02em;
    color: #000;
    text-transform: uppercase;
    margin-top: 22px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.blogs-title:hover {
    color: #213f9a;
}

.blog-link-wrap {
    margin-top: 70px;
    margin-right: calc((100% / 3) + 5px);
}

.blog-link-wrap .blog-btn {
    position: relative;
    padding: 39px 45px;
    background: #213f9a;
    text-align: right;
}

.blog-link-wrap .blog-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100%;
    background: #213f9a;
}

.blog-link-wrap .blog-btn .sxn-link {
    max-width: 264px;
    width: 100%;
}


/* Media */

#media-sxn {
    padding: 125px 0 95px;
}

.media-head .sxn-heading--line.line-reverse em::before {
    margin-left: 53px;
}

.media-head .sxn-heading--line.line-reverse em::after {
    left: calc(100% + 53px);
}

.media-head p {
    font-size: 18px;
    letter-spacing: .05em;
    line-height: 1.5;
    color: #303030;
    margin-top: 37px;
}

.media-list {
    margin-top: 34px;
}

.media-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 38px;
    margin: 0 -10px;
}

.media-item {
    padding: 0 10px;
}


/* Section Filler */

.section-fillers {
    position: relative;
}

.section-fillers::before {
    content: '';
    position: absolute;
    top: 0;
    right: calc(100% - 15px);
    width: 100vw;
    height: 31.2%;
    background: #fff;
    display: block;
    z-index: 1;
}

.section-fillers::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(100% - 15px);
    width: 100vw;
    height: 31.2%;
    background: #fff;
    display: block;
    z-index: 1;
}

.section-bg-filler {
    position: relative;
}

.section-bg-filler .filler-canvas {
    position: relative;
    background: #070707;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
}

.section-bg-filler::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 81.7%;
    height: 70px;
    background: #213f9a;
    z-index: 2;
}

.section-bg-filler::after {
    content: '';
    position: absolute;
    top: 31.2%;
    right: 100%;
    width: 100vw;
    height: 68.8%;
    background: #213f9a;
    display: block;
    z-index: 2;
}

.section-bg-filler canvas {
    display: block;
    width: 100%;
    background: url(images/footer-filler-top.jpg) no-repeat center center;
    background-size: cover;
    opacity: .15;
}


/* Main Footer */

#main-footer {
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(images/bg-footer.jpg) no-repeat center center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(images/bg-footer.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 80px 0 50px;
}

.footer-logos img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 18px;
}

.footer-logos img.fl-separator {
    padding-right: 44px;
    border-right: 1px solid rgba(255, 255, 255, 0.43);
}

.contact-list--footer {
    display: inline-block;
    vertical-align: middle;
    margin-top: 33px;
}

.contact-list--footer li {
    position: relative;
    display: inline-block;
    padding-right: 23px;
    margin-right: 23px;
    border-right: 1px solid rgba(255, 255, 255, 0.55);
}

.contact-list--footer li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
}

.contact-list--footer li a {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    letter-spacing: .15em;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.contact-list--footer li a:hover {
    color: #fff;
    opacity: .6;
}

.contact-list--footer em[class^="ai-font-"] {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 13px;
    margin-right: 9px;
}

.contact-list--footer em[class^="ai-font-phone"] {
    font-size: 15px;
}

.smi-list--footer {
    position: relative;
    display: block;
    margin-top: 33px;
}

.smi-list--footer li {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    font-size: 21px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    margin: 0 5px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
    background: rgba(109, 109, 109, 0.25);
}

.smi-list--footer li:hover {
    background: #fff;
    color: #213f9a;
}

.smi-list--footer li > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
}

.footer-dre {
    display: block;
    text-align: center;
    margin: 20px 0 0;
    font-size: 18px;
    letter-spacing: .15em;
    color: #fff;
}

.footer-copyright {
    margin-top: 25px;
}

.footer-copyright .copyright {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .1em;
    color: #8e8e8e;
}

.footer-copyright .copyright .sitename {
    color: #8e8e8e;
}

.footer-copyright .copyright a {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.footer-copyright .copyright a:hover {
    color: #fff;
}

.broker-logos {
    margin-top: 15px;
}

.broker-logos em {
    color: #8e8e8e;
    font-size: 26px;
    margin: 0 3px;
}

.footer-nav {
    display: block;
    margin-top: 85px;
}

.footer-nav li {
    display: inline-block;
    margin: 0 20px;
}

.footer-nav li a {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    letter-spacing: .1em;
    text-transform: uppercase;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.footer-nav li a:hover {
    color: #fff;
    opacity: .6;
}


/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/

.ip-banner {
    position: relative;
    width: 100%;
}

.ip-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    display: none;
}

.ip-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 61.2%;
    width: 100%;
    z-index: 1;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.29) 23%, rgba(0, 0, 0, 0.06) 79%, rgba(0, 0, 0, 0.01) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.29) 23%, rgba(0, 0, 0, 0.06) 79%, rgba(0, 0, 0, 0.01) 100%);
    /* display: none; */
}

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

.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: 700;
    font-size: 32px;
    text-align: center;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

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


/* 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: 77.08%;
}

#content-full #content {
    width: 100%;
}


/* Adjust width of sidebar */

.sidebar {
    width: 20.83%;
}


/* 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-family: AudreyFont;
    font-size: 80px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #213f9a;
    line-height: 1;
    font-weight: normal;
}


/* Styles for category/archive/search/etc subheadings (h2) */

#content .entry {
    font-weight: 400;
    font-size: 19px;
    color: #303030;
    letter-spacing: .05em;
}

.ai-default-cf7wrap input[type="submit"],
.ai-default-cf7wrap input.wpcf7-submit {
    background: #303030 !important;
}

.ai-contact-wrap input.wpcf7-submit:hover,
.ai-default-cf7wrap input.wpcf7-submit:hover,
.error-forms input.wpcf7-submit:hover {
    background: #213f9a !important;
}


/* Sidebar Goes Here */

.sidebar-item {
    padding: 15px 0;
    text-align: center;
    font-size: 0;
    letter-spacing: 0;
}


/* Inner Page Styles */

.ip-heading {
    font-family: AudreyFont;
}

.ip-heading span {
    font-size: 80px;
    letter-spacing: .02em;
    color: #213f9a;
    text-transform: uppercase;
    font-style: normal;
    line-height: 1;
}

.ip-heading > small {
    display: block;
    font-size: 24px !important;
    letter-spacing: .4em;
    color: #303030;
    text-transform: uppercase;
    line-height: .9;
}

.ip-heading--line span {
    position: relative;
    display: inline-block;
}

.ip-heading--line span::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: 45px;
    width: 26px;
    height: 26px;
    background: url(images/pm-stamp.png) no-repeat center center;
}

.ip-heading--line span::after {
    content: '';
    position: absolute;
    right: calc(100% + 45px);
    top: 50%;
    margin-top: -1px;
    width: 100vw;
    height: 1px;
    background: #213f9a;
    margin-right: 26px;
}

.ip-heading--line.line-reverse span::before {
    right: initial;
    left: 100%;
    margin-right: 0;
    margin-left: 45px;
}

.ip-heading--line.line-reverse span::after {
    right: initial;
    left: calc(100% + 45px);
    margin-left: 26px;
    margin-right: auto;
}

.ip-heading-secondary {
    display: block;
    font-size: 80px;
    letter-spacing: .08em;
    color: #000000;
    margin-left: 80px;
    text-transform: uppercase;
    margin-top: -7px;
    line-height: .9;
}

.ip-heading-secondary small {
    display: block;
    font-family: var(--primary-font);
    font-size: 24px;
    letter-spacing: 1.15em;
    color: #303030;
}

.ip-link {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    min-height: 53px;
    border: 2px solid #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .26em;
    color: #fff;
    text-transform: uppercase;
    background: transparent;
    padding: 5px 30px;
    z-index: 1;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.ip-link::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.ip-link:hover,
.ip-link:focus {
    color: #213f9a;
}

.ip-link:hover::before,
.ip-link:focus::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}


/******************************
  **** Additional CSS Here ******
  *******************************/


/* Google Translate Style */

#goog-gt-tt {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-menu-value:hover {
    text-decoration: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

body {
    top: 0 !important;
}

#google_translate_element2 {
    display: none!important;
}


/* End */

div.wpcf7-response-output {
    text-align: center;
    font-size: 13px;
}


/* BLOG */

#content .archive-subtitle {
    margin-top: 0;
    line-height: 1;
}

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


/* SITEMAP */

ul.sitemap-list li.page-item-64 {
    display: none;
}

.home .section-fillers {
    display: none;
}


/*
.page-id-18  #content .entry-title{

    font-size: 27px;

    font-weight: bolder !important
}*/

.footer-form .aidefcf-title {
    color: #FFF;
    text-align: left;
    margin-bottom: 5px;
}

.footer-form .ai-default-cf7wrap>div.aidefcf-cl3>span.wpcf7-form-control-wrap {
    display: inline-block !important;
}

.footer-form .ai-default-cf7wrap input[type=email],
.footer-form .ai-default-cf7wrap input[type=tel],
.footer-form .ai-default-cf7wrap input[type=text],
.footer-form .ai-default-cf7wrap textarea {
    color: #a5a4a4;
    font-size: 13px;
    font-family: var(--primary-font);
}

.footer-form .ai-default-cf7wrap input[type=email],
.footer-form .ai-default-cf7wrap input[type=tel],
.footer-form .ai-default-cf7wrap input[type=text] {
    height: 35px;
}

.footer-form .ai-default-cf7wrap textarea {
    height: 95px;
    resize: none;
}

.cf-msg-snd {
    position: relative;
}

.ai-default-cf7wrap .cf-snd input[type="submit"] {
    width: 21px;
    height: 18px;
    background: url(images/send-btn.png) no-repeat center !important;
    position: absolute;
    right: 10px;
    top: 67px;
    font-size: 0;
    border: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.ai-default-cf7wrap .cf-snd input[type="submit"]:hover {
    opacity: 0.8;
}

.footer-form .use-floating-validation-tip span.wpcf7-not-valid-tip {
    width: 100%;
    font-size: 11px;
}

.footer-form div.wpcf7-response-output {
    color: #FFF;
    margin: 0;
}

.wpcr3_respond_1 p,
.wpcr3_respond_2 p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 120% !important;
    margin-top: 2px !important;
    margin-bottom: 2px !important;
    font-size: 24px !important;
}

#main-header.nf-head .header-nav > li > a,
{
    color: #fff;
}

#main-header .header-misc * {
    color: #fff !important;
}

#main-header.toggle-fixed-header .header-misc * {
    color: #213f9a !important;
}

#main-header.nf-head .header-translate::before {
    background: #fff;
}

#main-header.nf-head .header-translate::after {
    border-color: #fff transparent transparent transparent;
}

#main-header.nf-head .header-brokerage {
    border-left: 1px solid #fff;
}

#main-header .header-brokerage img {
    filter: brightness(0) invert(1);
    max-width: 120px;
}

#main-header.toggle-fixed-header .header-brokerage img {
    filter: unset;
}

#main-header .header-logo img {
    filter: brightness(0) invert(1);
}

#main-header.toggle-fixed-header .header-logo img {
    filter: unset;
}

#main-header.nf-head .header-translate select {
    background: transparent url(images/ic-globe-w.png) no-repeat left center;
}

.ip-video-tours {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: row wrap;
    margin: 0 -15px;
}

.ip-video-tours .resp-iframe {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.resp-iframe .video-holder {
    position: relative;
}

.resp-iframe .video-holder canvas {
    display: block;
    width: 100%;
    height: auto;
}

.resp-iframe .video-holder iframe,
.resp-iframe .video-holder video {
    width: 100%;
    height: 95%;
    position: absolute;
    top: 0;
    left: 0
}

.iptestimonials {
    width: 100%;
    max-width: 700px;
    margin: 0px auto;
    text-align: center;
    position: relative;
}

a.revarrow {
    height: 60px;
    width: 60px;
    display: block;
    text-align: center;
    line-height: 60px;
    font-style: normal !important;
    font-size: 25px;
    background: rgba(33, 63, 154, 0.1);
    color: #203e9a;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-54%);
    transition: all 0.3s ease-in-out;
}

.revprev {
    left: -86px;
}

.revnext {
    right: -86px;
}

.revitem p {
    font-size: 24px;
}

a.reviewer {
    color: #213f9a;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.04em;
}

a.revarrow i {
    font-style: normal !important;
}

a.revarrow:hover {
    background: #203e9a;
    color: #fff;
}

.revitem {
    position: relative;
}

a.reviewer {
    color: #213f9a;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.04em;
    padding: 18px;
    border-top: 3px solid #203e9a;
    margin-top: 44px;
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0px auto;
    margin-top: 44px;
}

.page-id-10505 .social-media-icons li:nth-child(1) {
    display: none;
}

/*.aios-smf-group-items li:nth-child(1),
.aios-smf-group-items li:nth-child(2),
.aios-smf-group-items li:nth-child(4) {
    display: none;
}*/

.page-id-10268 .aios-smf-theme-three .aios-smf-header #theme-title {
    display: none;
}

.page-id-10268 .aios-smf-theme-three .aios-smf-group .aios-smf-group-items li {
    width: calc( ( 100% / 2) - 11px);
    margin-top: 0px !important;
}

.page-id-10268 .aios-smf-theme-three .aios-smf-group[data-feed-style=styletwo] .aios-smf-group-items li .aios-smf-group-item .filter-view-status {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
}

.page-id-10268 .aios-smf-theme-three[data-layout=ungrid] .aios-smf-group .aios-smf-group-items {
    padding-top: 0px !important;
}

.wc-textview h3 {
    font-size: 23px;
    font-weight: bold;
    letter-spacing: .05em;
    color: #303030;
    line-height: 1.6;
}

.ai-contact-wrap span.context-email em.ai-font-envelope {
    font-size: 13px;
}

.ai-contact-wrap span.context-mob em.ai-font-phone, .ai-contact-wrap span.context-email em.ai-font-envelope {
    color: #5b5b5b;
    min-width: 25px;
}

.ai-contact-wrap span.context-mob em, .ai-contact-wrap span.context-email em {
    vertical-align: middle;
    display: inline-block;
}

.slide1 h2 div {
	letter-spacing: 86px;
	margin-left: 79px;
}

.slide2 h2 div {
	letter-spacing: 87px;
	padding-left: 74px;
}

.slide3 h2 div {
	padding-left: 32px;
	letter-spacing: 45px;
}

.slide4 h2 div {
  padding-left: 38px;
  letter-spacing: 53px;
}

.slide5 h2 div {
	padding-left: 26px;
	letter-spacing: 34px;
}

body .aios-smf-theme-three .aios-smf-group .aios-smf-group-items li .aios-smf-group-item .filter-view-img::before {
	opacity: 0;
}

.slide-tagline-wrap {
	margin-top: 100px;
}

/*.aios-smf-theme-three [data-feed-type="youtubevideo"] li:nth-of-type(1), .aios-smf-theme-three [data-feed-type="youtubevideo"] li:nth-of-type(2), .aios-smf-theme-three [data-feed-type="youtubevideo"] li:nth-of-type(4) {
    display: none;
}*/

h2.sxn-heading.ip-heading-td,
h2.sxn-heading.ip-heading-td em{
    font-size: 35px !important;
    line-height: 1.2;
}
h2.sxn-heading.ip-heading-td span {
    font-family: var(--primary-font);
}

.home .cycloneslider-template-video .cycloneslider-volume {
    display: none;
}
a.testi-btn{
  margin-top: 50px;
}

/* .page-id-17 .ip-about-imageview::before {
	content: '';
	position: absolute;
	bottom: 171px;
	left: calc(100% + -91px);
	height: 75%;
	width: 90px;
	background: -webkit-linear-gradient(rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.8)), url(images/wc-filler.jpg) no-repeat 40% center;
	background: linear-gradient(rgba(7, 7, 7, 0.8), rgba(7, 7, 7, 0.8)), url(images/wc-filler.jpg) no-repeat 40% center;
	background-size: auto, auto;
	background-size: cover;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	z-index: 2;
}

.page-id-17 .ip-about-textview-filler::after {
	display: none;
}
 */
/* .page-id-17 .ip-about-textview-filler::after {
	right: calc(100% + 12px);
} */
.page-template-contact .contact-card-list em[class^="ai-font-"] {
	display: inline-block;
	vertical-align: middle;
	color: #213f9a;
	font-size: 15px;
	margin-right: 13px;
}

h2.sub-h {
    font-size: 19px !important;
    max-width: 605px;
    letter-spacing: .05em;
    line-height: 1.5 !important;
    color: #838383;
    margin: 30px 20px 0px !important;
    font-weight: normal !important;
}

#content-full h2 {
    margin-left: 20px;
}

#main-header .header-translate select option {
	color: #213f9a !important;
}


/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
