/*
Theme Name: Bob PennyPacker
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.0
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. Variables
2. Custom CSS
3. IP styles
4. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/


/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/

:root {
    /** Font default */
    --font-family-default: 'Poppins', sans-serif;
    --font-family-secondary: 'Cinzel', serif;
    ;
    --font-family-title: 'Noto Serif', serif;
    --font-size-default: 15px;
    --font-size-title: 18px;
    --font-color-default: #555;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}


/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/


/* Sub Menu */

#nav li {
    position: relative;
    display: inline-block;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
    background: #002349;
}

#nav .sub-menu a:hover,
#nav .sub-menu a:focus {
    background: #e96035;
}

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

#nav li:hover > .sub-menu {
    opacity: 1;
    pointer-events: auto;
}

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


/* Sub Menu */

#fixednav li {
    position: relative;
    display: inline-block;
}

#fixednav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

#fixednav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
    background: #002349;
}

#fixednav .sub-menu a:hover,
#fixednav .sub-menu a:focus {
    background: #e96035;
}

#fixednav .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
}

#fixednav li:hover > .sub-menu {
    opacity: 1;
    pointer-events: auto;
}

#fixednav .sub-menu li {
    position: relative;
    display: block;
}


/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/


/* Global */

body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    background: #FFFFFF;
    color: var(--font-color-default);
    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; */
}


/*******************************************************
 *
 * 4. 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, .35);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    background-color: var(--dark);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.ip-banner h1 {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #FFFFFF;
    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: 72.08%;
}

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


/* Adjust width of sidebar */

.sidebar {
    width: 25.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-size: 45px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.030em;
}


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

#content .archive-subtitle {}

input.global-bttn,
em.global-bttn,
a.global-bttn,
.global-bttn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #002349;
    color: #fff;
    display: inline-flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-width: 151px;
    height: 151px;
    border: 0px;
    padding: 5px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.200em;
    text-transform: uppercase;
    outline: 0;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

input.global-bttn:hover,
em.global-bttn:hover,
a.global-bttn:hover,
.global-bttn:hover,
input.global-bttn:focus,
em.global-bttn:focus,
a.global-bttn:focus,
.global-bttn:focus {
    background: #e96035;
}

.sec-title {
    position: relative;
}

.sec-title h2 {
    font-weight: 800;
    margin: 0 0 0;
    text-transform: uppercase;
    position: relative;
    letter-spacing: -0.050em;
}

.sec-title h2 span {
    font-size: 59px;
    display: block;
    text-align: right;
    color: #000;
    letter-spacing: -0.020em;
    margin: 0 0 -15px;
}

.sec-title h2 em {
    display: block;
    font-style: normal;
    position: relative;
    z-index: 1;
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    color: #000;
    background-clip: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec-title h2:after {
    z-index: 2;
    content: attr(data-text);
    position: absolute;
    z-index: 0;
    left: 9px;
    bottom: -18px;
    color: #000000;
    font-size: inherit;
    letter-spacing: inherit;
    pointer-events: none;
    background-image: url(images/title-pattern.png);
    background-position: center;
    background-size: 1600px auto;
    background-repeat: repeat;
    color: transparent;
    background-clip: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}

body.home {
    overflow: auto;
}

body.home.intro-played,
body.home.user-navigated-from-a-page-on-the-site,
body.home.done-intro {
    overflow: auto;
}

body.home #main-wrapper {
    opacity: 1;
    transition: all ease .5s;
    -moz-transition: all ease .5s;
    -webkit-transition: all ease .5s;
}

body.home.done-intro #main-wrapper {
    opacity: 1;
}

#intro-wrap {
    position: fixed;
    z-index: 95;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    pointer-events: none;
    background: #fff;
    transition: all ease 1.5s;
    -moz-transition: all ease 1.5s;
    -webkit-transition: all ease 1.5s;
}

#intro-wrap.done-intro {
    opacity: 0;
}

body.home.intro-played #intro-wrap {
    display: none;
}

#intro-wrap .intro-vid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#intro-wrap .intro-vid video {
    display: block;
    width: 100vw;
    height: 100vh;
}

#intro-wrap .intro-skip {
    pointer-events: auto;
    position: absolute;
    right: 2vw;
    bottom: 2vw;
    cursor: pointer;
    font-size: 1.4vw;
    color: #000;
}

#intro-wrap.done-intro .intro-skip {
    pointer-events: none;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    color: #fff;
}

.header .hdr-container {
    width: calc(100% - 30px);
    margin: 0 auto;
    max-width: 1400px;
}

.header .hdr-inner {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
}

.main-hdr {
    position: relative;
    z-index: 0;
    padding: 25px 0;
}

.main-hdr .logo {
    max-width: 277px;
    margin: 0 auto 0 0;
}

.main-hdr .hdr-broker {
    max-width: 243px;
    margin: 0 0 0 48px;
}

#nav {
    font-size: 0;
}

#nav > li {
    margin: 0 0 0 37px;
}

#nav > li:first-child {
    margin: 0 0 0 0;
}

#nav a {
    font-size: 14px;
    display: block;
    font-weight: 600;
    letter-spacing: 0.100em;
    text-transform: uppercase;
    position: relative;
    color: #fff;
}

#nav > li > a {
    transition: all ease .5s;
    -moz-transition: all ease .5s;
    -webkit-transition: all ease .5s;
}

#nav > li:hover > a {
    color: transparent;
}

#nav > li > a:before {
    color: #e96035;
    font-weight: 600;
    letter-spacing: 0.100em;
    content: attr(data-title);
    position: absolute;
    opacity: 0;
    text-shadow: 0 0 1px rgb(255 255 255 / 30%);
    -webkit-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
    -moz-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
    transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    -moz-transition: -moz-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    pointer-events: none;
}

#nav > li:hover > a:before {
    -webkit-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
    -moz-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
    transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
    opacity: 1;
}

#nav > li > .sub-menu {
    padding: 30px 0 0;
    margin: 0 auto;
    left: -150%;
    right: -150%;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

#nav > li:hover > .sub-menu {
    padding: 10px 0 0;
}

.fxd-hdr {
    position: fixed;
    top: 5vw;
    left: 0;
    width: 100%;
    z-index: 0;
    padding: 14px 0;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.fxd-hdr.active {
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
    pointer-events: auto;
}

.fxd-hdr .logo {
    max-width: 355px;
    margin: 0 auto 0 0;
}

.fxd-hdr .hdr-broker {
    max-width: 243px;
    margin: 0 0 0 48px;
}

#fixednav {
    font-size: 0;
}

#fixednav > li {
    margin: 0 0 0 30px;
}

#fixednav > li:first-child {
    margin: 0 0 0 0;
}

#fixednav a {
    font-size: 14px;
    display: block;
    font-weight: 600;
    letter-spacing: 0.100em;
    text-transform: uppercase;
    position: relative;
    color: #fff;
}

#fixednav > li > a {
    transition: all ease .5s;
    -moz-transition: all ease .5s;
    -webkit-transition: all ease .5s;
}

#fixednav > li:hover > a {
    color: transparent;
}

#fixednav > li > a:before {
    color: #e96035;
    font-weight: 600;
    letter-spacing: 0.100em;
    content: attr(data-title);
    position: absolute;
    opacity: 0;
    text-shadow: 0 0 1px rgb(255 255 255 / 30%);
    -webkit-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
    -moz-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
    transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    -moz-transition: -moz-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    pointer-events: none;
}

#fixednav > li:hover > a:before {
    -webkit-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
    -moz-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
    transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
    opacity: 1;
}

#fixednav > li > .sub-menu {
    padding: 56px 0 0;
    margin: 0 auto;
    left: -150%;
    right: -150%;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

#fixednav > li:hover > .sub-menu {
    padding: 36px 0 0;
}

#hp-hero {
    position: relative;
    min-height: 100vh;
    z-index: 1;
}

#hp-hero:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 130%);
    opacity: .35;
}

#hp-hero .video-slide:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    pointer-events: none;
}

#hp-slide {
    min-height: 100vh;
    width: 100%;
    /*position: fixed;*/
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

#hp-slide.remove-grayscale {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

#hp-slide .cycloneslider-template-video .cycloneslider-slides,
#hp-slide .cycloneslider-template-video .canvas-holder {
    min-height: 100vh;
}

#hp-tagline {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.tagline-wrap {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.tagline-wrap h1 {
    font-size: 5.208vw;
    font-weight: 700;
    letter-spacing: -0.030em;
}

.tagline-wrap span {
    display: block;
    font-size: 1.5625vw;
    letter-spacing: 0.200em;
}

.scroll-down {
    text-align: center;
    position: absolute;
    bottom: 17.593vh;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
}

.scroll-down span {
    display: inline-block;
    color: #fff;
    font-size: 0.5208vw;
    letter-spacing: 0.200em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    pointer-events: auto;
}

.scroll-down span:before {
    content: '';
    display: block;
    width: 1px;
    background: #fff;
    height: 2.792vw;
    opacity: 0.5;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 1.042vw;
    pointer-events: none;
}

.scroll-down span:after {
    content: '';
    display: block;
    width: 1px;
    background: #fff;
    height: 0.729vw;
    opacity: 0.5;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 1.042vw;
    pointer-events: none;
}

#hp-abt {
    /*background: url(images/abt-bg.jpg) center center no-repeat #fff;*/
    background: #fff;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 0 0 62px;
}

.abt-wrap {
    width: calc(100% - 20px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 1px 0 0;
}

.abt-wrap .abt-inner {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin: -6vw 0 0;
    overflow: unset;
}

.abt-wrap .abt-l {
    width: calc(57.5% - 28px);
    margin-top: -4vw;
}

.abt-wrap .abt-photo {
    max-width: 626px;
    width: 100%;
    margin: 0 0 0 30px;
}

.abt-wrap .abt-photo img{
    width: 100%;
}

.abt-wrap .abt-txt {
    line-height: 1.9;
    letter-spacing: 0.020em;
}

.abt-wrap .abt-txt h3 {
    font-size: 31px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin: 0 0 15px;
}

.abt-wrap .abt-txt p {}

.abt-wrap .abt-left-txt {
    margin: 58px 0 0;
    max-width: 600px;
}

.abt-wrap .abt-contact {
    margin: 40px 0 0;
}

.abt-wrap .abt-contact a {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    vertical-align: middle;
}

.abt-wrap .abt-contact a:hover,
.abt-wrap .abt-contact a:focus {
    color: #e96035;
}

.abt-wrap .abt-contact span {
    font-size: 25px;
    color: #002349;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 0 0;
    font-weight: 700;
}

.abt-wrap .abt-bttn {
    text-align: right;
}

.abt-wrap .abt-r {
    width: 42.5%;
}

.abt-wrap .abt-title {
    margin: -10px 0 0 -183px;
}

.abt-wrap .abt-title.sec-title h2 {
    font-size: 235px;
}

.abt-wrap .abt-title.sec-title h2 em {
    background-image: url(images/fc-title.jpg);
}

.abt-wrap .abt-vid {
    margin: 83px auto 0;
    max-width: 598px;
}

.abt-wrap .abt-vid a {
    display: block;
    position: relative;
}

.abt-wrap .abt-vid a:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/abt-play.png) center center no-repeat rgba(0, 0, 0, 0.3);
    background-size: 13.978% auto;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.abt-wrap .abt-vid a:hover:after,
.abt-wrap .abt-vid a:focus:after {
    background: url(images/abt-play.png) center center no-repeat rgba(0, 0, 0, 0);
    background-size: 13.978% auto;
}

.abt-wrap .abt-vid canvas {
    display: block;
    width: 100%;
    height: auto;
    background: url(images/abt-vid.jpg) center center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

#hp-fc {
    background: #fff;
    padding: 62px 0 45px;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.comm-vid-bg {
    position: relative;
    background: #fff;
}

.comm-vid-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.comm-vid {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.comm-vid .cycloneslider {}

.comm-vid .cycloneslider-template-video .cycloneslider-slides,
.comm-vid .cycloneslider-template-video .canvas-holder {
    min-height: 100vh;
}

.fc-wrap {
    position: relative;
    z-index: 0;
}

.fc-wrap .fc-title {}

.fc-wrap .fc-title.sec-title h2 {
    font-size: 167px;
}

.fc-wrap .fc-title.sec-title h2 em {
    background-image: url(images/fc-title.jpg);
}

.fc-list {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin: 43px 0 0;
    padding: 0 0 60px;
}

.fc-list .fc-single {
    width: calc(25% - 22px);
}

.fc-list .fc-single:first-child {
    margin: 0 0 0;
}

.fc-list .fc-single a {
    display: block;
    position: relative;
}

.fc-list .fc-single a .fc-img {
    position: relative;
    z-index: 0;
    background: #e96035;
}

.fc-list .fc-single a canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    opacity: 1;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.fc-list .fc-single a:hover canvas,
.fc-list .fc-single a:focus canvas {
    opacity: 0.5;
}

.fc-list .fc-single a h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-family-secondary);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.050em;
    color: #111;
    margin: 32px 0 0;
}

.fc-bttn {
    text-align: center;
}

#hp-fp {
    background: #fff;
    position: relative;
    padding: 45px 0 84px;
    z-index: 3;
}

.fp-wrap {}

.fp-wrap .fp-title.sec-title {}

.fp-wrap .fp-title.sec-title h2 {
    font-size: 205px;
}

.fp-wrap .fp-title.sec-title h2 em {
    background-image: url(images/fc-title.jpg);
}

.fp-slide {
    margin: 22px auto 0;
    max-width: 1115px
}

.fp-slide .slick-slide {
    margin: 0 7.5px;
}

.fp-slide ul {
    margin: 0 -7.5px;
    font-size: 0;
}

.fp-slide li {}

.fp-slide .fp-single {}

.fp-slide .fp-single a {
    display: block;
    position: relative;
}

.fp-slide .fp-single a .fp-img {
    position: relative;
    z-index: 0;
    background: #000;
}

.fp-slide .fp-single a canvas {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    opacity: 0.7;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.fp-slide .fp-single a:hover canvas,
.fp-slide .fp-single a:focus canvas {
    opacity: 1;
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

.fp-slide .fp-single a .fp-add {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.050em;
    text-transform: uppercase;
    padding: 0 5px 33px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0);
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.fp-slide .fp-single a:hover .fp-add,
.fp-slide .fp-single a:focus .fp-add {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 1);
}

.fp-navs {
    margin: 15px 0 0;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.fp-navs .fp-nav {
    width: 70px;
    height: 150px;
    color: #fff;
    font-size: 37px;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    background: #002349;
    cursor: pointer;
    margin: 0 7px;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.fp-navs .fp-nav:hover {
    background: #e96035;
}

#hp-med {
    background: #fff;
    position: relative;
    padding: 84px 0 75px;
    z-index: 3;
}

.med-wrap {}

.med-wrap .med-inner {}

.med-wrap .med-left {}

.med-wrap .med-thumb {
    margin: 0 -22px 0 0;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.med-wrap .med-thumb > div {
    width: calc(50% - 5px);
    max-width: 275px;
}

.med-wrap .med-thumb > div:first-child {}

.med-wrap .med-thumb a {
    display: block;
    position: relative;
    background: #000;
}

.med-wrap .med-thumb a:hover {}

.med-wrap .med-thumb a img {
    position: relative;
    z-index: 0;
    opacity: 0.7;
    filter: grayscale(1);
    -moz-filter: grayscale(1);
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.med-wrap .med-thumb a:hover img,
.med-wrap .med-thumb a:focus img {
    filter: grayscale(0);
    -moz-filter: grayscale(0);
}

.med-wrap .med-thumb a h3 {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.050em;
    color: #fff;
    text-transform: uppercase;
    padding: 0 0 37px;
}

.med-wrap .med-right {}

.med-wrap .med-content {}

.med-wrap .med-title.sec-title {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.med-wrap .med-title.sec-title h2 {
    font-size: 160px;
}

.med-wrap .med-title.sec-title h2 em {
    background-image: url(images/fc-title.jpg);
    padding: 0 9px 0 0;
}

.med-wrap .med-desc {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.050em;
    padding: 0 20px 0 40px;
    margin: 12px 0 0;
}

.med-wrap .med-bttn {
    text-align: center;
    margin: 29px 0 0;
}

#hp-museum {
    background: #fff;
    position: relative;
    padding: 75px 0 127px;
    z-index: 3;
}

.museum-wrap {}

.museum-wrap .museum-l {}

.museum-wrap .museum-title.sec-title {}

.museum-wrap .museum-title.sec-title h2 {
    font-size: 156px;
}

.museum-wrap .museum-title.sec-title h2 span {
    text-align: left;
}

.museum-wrap .museum-title.sec-title h2 em {
    background-image: url(images/fc-title.jpg);
}

.museum-wrap .museum-desc {
    line-height: 1.5;
    letter-spacing: 0.020em;
    margin: 23px 0 21px;
}

.museum-wrap .museum-bttn {
    text-align: right;
}

.museum-wrap .museum-photo-mobile {
    display: none;
    width: 100%;
    margin: 20px auto 30px;
    max-width: 410px;
}

.museum-wrap .museum-r {}

.museum-wrap .museum-photo {
    margin: 0 auto;
    max-width: 416px;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.museum-wrap .museum-photo:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

.footer {
    background: #021c39;
    position: relative;
    z-index: 3;
}

.ftr-git {
    position: relative;
    background: #fff;
}

.ftr-git .git-content {}

.ftr-git .git-bg {
    position: relative;
    z-index: 0;
    opacity: 0.5;
}

.ftr-git .git-bg img {
    display: block;
    width: 100%;
    height: 54vw;
}

.ftr-git .git-title {
    position: absolute;
    top: 5.625vw;
    left: 0;
    padding: 0 7.375vw 0 0;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
}

.ftr-git .git-title h2 {
    font-weight: 700;
    margin: 0 0 0;
    text-transform: uppercase;
    position: relative;
    letter-spacing: -0.020em;
    font-size: 11.875vw;
    color: rgba(255, 255, 255, 0.75);
    padding: 0 1vw 0 0;
}

.ftr-git .git-title h2:before {
    z-index: 2;
    content: attr(data-text);
    position: absolute;
    z-index: 0;
    left: 0.625vw;
    bottom: -0.625vw;
    color: #000000;
    font-size: inherit;
    letter-spacing: inherit;
    pointer-events: none;
    background-image: url(images/title-pattern.png);
    background-position: center;
    background-size: 1600px auto;
    background-repeat: repeat;
    color: transparent;
    background-clip: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: invert(1);
    -webkit-filter: invert(1);
}

.ftr-git .git-title h2 em {
    display: block;
    font-style: normal;
}

.ftr-git .git-fillup {
    position: absolute;
    width: 100%;
    padding: 0 8.375vw 0 0;
    left: 0;
    top: 17.188vw;
    z-index: 2;
    pointer-events: none;
}

.ftr-git .git-phone {
    text-align: right;
}

.ftr-git .git-phone a {
    font-size: 1.563vw;
    color: #fff;
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
    pointer-events: auto;
}

.ftr-git .git-phone a:hover,
.ftr-git .git-phone a:focus {
    color: #e96035;
}

.ftr-git .git-phone a span {
    margin: 0 0.625vw 0 0;
}

.ftr-git .git-phone a em {
    font-style: normal;
}

.ftr-git .git-form {
    width: 52.500vw;
    margin: 0.938vw 0 0 auto;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 3.250vw 5.875vw 1px;
}

.ftr-git .git-form form {
    position: relative;
    pointer-events: auto;
}

.ftr-git .git-form::-webkit-input-placeholder {
    /* Edge */
    text-transform: uppercase;
}

.ftr-git .git-form:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    text-transform: uppercase;
}

.ftr-git .git-form::placeholder {
    text-transform: uppercase;
}

.ftr-git .git-form h3 {
    font-family: var(--font-family-secondary);
    font-size: 2.188vw;
    font-weight: 500;
    text-transform: uppercase;
}

.ftr-git .git-form .wpcf7 form .wpcf7-response-output {
    /*max-width: 29vw;
    margin: 0 0 1vw auto;
    text-align: center;
    font-size: 0.8vw;
    padding: .3vw;*/
    max-width: 30vw;
    width: 100%;
    margin: 0 0 1vw auto;
    text-align: center;
    font-size: 0.8vw;
    padding: .3vw;
    position: absolute;
    bottom: 7vw;
    right: 0;
}

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

.ftr-git .git-form .wpcf7-not-valid-tip {
    font-size: .65vw;
}

.ftr-git .git-fields {
    margin: 1vw 0 0;
}

.ftr-git .git-row.dual {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}

.ftr-git .git-row.dual > div {
    width: 19.125vw;
}

.ftr-git .git-row.dual > div:first-child {
    margin: 0 0 0;
}

.ftr-git .git-row.git-input input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    background: none;
    border: 0;
    padding: 0 0;
    border-bottom: 1px solid #fff;
    outline: 0;
    font-size: 0.938vw;
    height: 2.625vw;
}

.ftr-git .git-row.git-msg {
    margin: 2.188vw 0 0;
}

.ftr-git .git-row.git-msg textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    background: none;
    border: 0;
    padding: 0 0;
    border-bottom: 1px solid #fff;
    outline: 0;
    font-size: 0.938vw;
    resize: none;
    height: 4.813vw;
}

.ftr-git .git-row.git-submit {
    margin: 3.938vw 0 -6.500vw;
    position: relative;
    z-index: 1;
}

.ftr-git .git-row.git-submit input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #002349;
    color: #fff;
    display: inline-flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 9.438vw;
    height: 9.438vw;
    border: 0px;
    padding: 0.313vw;
    font-size: 0.875vw;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.200em;
    text-transform: uppercase;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.ftr-git .git-row.git-submit input:hover,
.ftr-git .git-row.git-submit input:focus {
    background: #e96035;
}

.ftr-git .git-photo {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54.438vw;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
    /*pointer-events: none;*/
    z-index: 1;
}

.ftr-git .git-photo:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

.ftr-git .git-photo img {
    display: block;
    width: 100%;
    height: auto;
}

.ftr-content {
    background: #002349;
    padding: 35px 0;
}

.ftr-container {
    width: calc(100% - 30px);
    margin: 0 auto;
    max-width: 1400px;
}

.ftr-info {}

.ftr-logos {}

.ftr-logos ul {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}

.ftr-logos li {}

.ftr-logos li:nth-child(2) {
    /*margin: 0 0 0 200px;*/
    /*margin: 0 0 0 130px;*/
}

.ftr-logos li:nth-child(3) {}

.ftr-contact {
    margin: 24px 0 0;
}

.ftr-contact ul {
    text-align: center;
    font-size: 0;
}

.ftr-contact li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 14px;
}

.ftr-contact li:first-child {
    padding-left: 0;
}

.ftr-contact li:last-child {
    padding-right: 0;
}

.ftr-contact li:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    width: 1px;
    max-height: 12px;
    background: #fff;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.ftr-contact li:first-child:before {
    display: none;
}

.ftr-contact li a {
    color: #fff;
}

.ftr-contact li > a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.050em;
}

.ftr-contact li > a:hover,
.ftr-contact li > a:focus {
    color: #e96035;
}

.ftr-contact li > a > span {
    font-size: 12px;
}

.ftr-contact li > a > em {
    font-style: normal;
}

.ftr-contact .ft-sm {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.ftr-contact .ft-sm a {
    font-size: 20px;
    margin: 0 0 0 18px;
}

.ftr-contact .ft-sm a:first-child {
    margin: 0 0 0 0;
}

.ftr-contact .ft-sm a:hover,
.ftr-contact .ft-sm a:focus {
    color: #e96035;
}

.ftr-credit {
    padding: 32px 0;
}

.credit-inner {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.copyright {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.050em;
    line-height: 1.8;
}

.copyright span {}

.copyright a[target="_blank"] {
    text-decoration: underline;
}

.copyright a:hover,
.copyright a:focus {
    color: #e96035;
}

.sothebys-trademark {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.050em;
    line-height: 1.8;
}

.re-logos {
    font-size: 0;
}

.re-logos span {
    display: inline-block;
    font-size: 22px;
    margin: 0 0 0 5px;
}

.re-logos span:first-child {
    margin: 0 0 0 0;
}

.client-lic {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.050em;
    color: #fff;
    text-align: center;
    margin: 0 0 20px;
}

.post-type-archive-communities #content .archive-title {
    display: none;
}

#content .fc-wrap .fc-title.sec-title h2 {
    font-size: 167px;
    margin: 0;
}

#content .fc-wrap .fc-title.sec-title h2 em {
    font-style: normal;
}


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

.single-communities iframe {
    width: 100%;
    height: 627px;
    /* overflow: hidden; */
    overflow: hidden !important;
}

#content .media-img {}

#content .media-img a {}

#content .media-img a br {
    display: none;
}

#content .media-img img {
    position: relative;
    z-index: 0;
    margin: 0 auto;
    max-width: 100%;
}

#content .media-img a:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/yt-bttn.png) center center no-repeat;
    background-size: 17% auto;
}

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

.sp-forms .bootstrap-select.btn-group .dropdown-menu.inner {
    max-height: 200px !important;
}

.sp-forms .bootstrap-select.btn-group .dropdown-menu {
    top: 50px;
    bottom: auto;
}

.sp-forms .btn-group.open .dropdown-toggle,
.sp-forms .bootstrap-select>.dropdown-toggle.bs-placeholder,
.sp-forms .bootstrap-select>.dropdown-toggle.bs-placeholder:hover,
.sp-forms .bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.sp-forms .bootstrap-select>.dropdown-toggle.bs-placeholder:active {
    background: transparent !important;
    box-shadow: unset !important;
    outline: 0 !important;
    color: #fff;
}

#IDX-coreSearchFields ul.select2-choices,
#IDX-advancedFieldsMod-1 ul.select2-choices {
    margin: 0;
}

a.skiptobtn {
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 15px;
    z-index: -1;
    opacity: 0;
    background: rgba(255, 255, 255, 0.5);
    color: #000;
}

a.skiptobtn:focus {
    opacity: 1;
    z-index: 9;
    display: block;
}

.select2-drop {
    z-index: 2 !important;
}

.select2-drop-mask {
    z-index: 1 !important;
}

.aios-mobile-header-wrapper .amh-navigation .amh-menu li:hover > a,
.aios-mobile-header-wrapper .amh-navigation .amh-menu li.open > a {
    background: #e96035;
}

.aios-mobile-header-wrapper .amh-navigation .amh-menu li ul {
    background: #002349;
}

.aios-mobile-header-wrapper .amh-navigation .amh-menu li ul a {
    color: #fff;
}

.post-page-testimonials div#inner-page-wrapper > .container {
    /* width: 100%;
    padding: 0; */
}

.ui-dialog #IDX-registrationContent .close {
    font-size: 12px !important;
    margin-right: 8em !important;
}

.error404 .wpcf7 form .wpcf7-response-output {
    text-align: center;
}

.IDX-advancedWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
}

.IDX-advancedWrap label {
    width: 100%;
}

.IDX-wrapper-standard .IDX-advancedWrap input.IDX-advancedRange,
.IDX-wrapper-standard .IDX-mobileFirst--neutral input {
    padding: 5px;
    margin: 1px 0;
    color: #666;
    outline: 1px solid #ccc;
    border: 0;
    -webkit-box-shadow: none;
}

.IDX-wrapper-standard .IDX-mobileFirst--neutral input {
    width: 100%;
}

.IDX-wrapper-standard #IDX-action-buttons button,
.IDX-wrapper-standard #IDX-action-buttons-bottom button {
    width: calc(50% - 30px);
    margin: 0 15px;
    height: 35px;
    background: #002349;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.IDX-wrapper-standard #IDX-action-buttons button:hover,
.IDX-wrapper-standard #IDX-action-buttons-bottom button:hover {
    background: #e96035;
    border: none;
    color: #fff;
}


.brklg {
    width: 100%;
    max-width: 183px !important;
    filter: brightness(0) invert(1);
}

.hdr-inner .h-brk {
    filter: brightness(0) invert(1);
    width: 100%;
    max-width: 134px;
}


.footer-button a {
    background: #e96035;
    color: #fff;
    padding: 5px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    height: 80px;
    letter-spacing: 0.200em;
    text-transform: uppercase;
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.footer-button a:hover{
    color: #002349;
    background: #fff;
}

.footer-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 30px;
}

























.start-conversation {
    position: fixed;
    right: 0;
    bottom: 22%;
    z-index: 9;
    width: 100%;
    max-width: 800px;
}

.sc-wrapper {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    transition: all 0.3s ease-in-out;
    transform: translateX(100%);
    position: relative;
    z-index: 3;
}

.sc-button a {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.1em;
    background: #e96034;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 76px;
    transition: all 0.3s ease-in-out;
}

.sc-button {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 300px;
    transition: all 0.3s ease-in-out;
}

.sc-button-wrapper {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}

.sc-photo {
    width: calc((300  / 800)* 100%);
}

.sc-content {
    width: calc((500/ 800)* 100%);
    display: flex;
    align-items: center;
    background: #e96034;
    padding-left: 55px;
}

.sc-photo-wrapper canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.sc-photo-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sc-photo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

a.sc-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: #002349;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    transition: all 0.3s ease-in-out;
}

.sc-content-inner p {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.sc-content-inner  a {
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-decoration: underline;
}

.sc-button a:hover {
    background: #002349;
    color: #fff;
}

.sc-wrapper.active {
    transform: translateX(0);
}









a.sc-close:hover {
    opacity: 80%;
}

.sc-content-inner a {
    transition: all 0.3s ease-in-out;
}

.sc-content-inner a:hover {
    opacity: 80%;
}
















.sc-content:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 354px;
    height: 351px;
    background-image: url(https://cdn.agentimagehosting.com/RkmCyjfrlUFpK3t7HtsO0/2025/05/logo-wtrmark.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 6%;
}

.sc-content {
    position: relative;
    overflow: hidden;
}

.sc-content-inner {
    position: relative;
    z-index: 2;
}

#heygen-streaming-embed {
    left: auto !important;
    right: 40px;
}




.yt-col a, .fb-sc-col a , .ins-col a {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}





.soc-photo canvas {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.soc-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    object-position: center;
}

.ins-row {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
}

.ins-col {
    width: calc(100% / 4 - 7.5px);
}

.ins-col a i.ai-font-instagram {
    position: absolute;
    z-index: 1;
    color: #fff;
    font-size: 22px;
    top: 12px;
    left: 12px;
    transition: all 0.3s ease-in-out;
}

img.perfmatters-lazy.entered.pmloaded {}

.ins-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
    gap: 48px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.ins-hover i {
    color: #fff;
    font-size: 18px;
}

.ins-col a .soc-photo img {
    filter: grayscale(1);
}

.ins-col a:hover .ai-font-instagram {
    opacity: 0;
}

.ins-col a:hover .soc-photo img {
    filter: none;
}

.ins-col a:hover .ins-hover {
    opacity: 1;
}


.yt-row {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    justify-content: space-between;
}

.yt-col {
    width: calc(100% / 3 - 7.5px);
}

.yt-col a .ai-font-youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    color: #fff;
    font-size: 32px;
    transform: translate(-50% , -50%);
    opacity: 90%;
}

.yt-col a .soc-photo img {
    filter: grayscale(1);
}

.yt-col a:hover .soc-photo img {
    filter: none;
}


a.sc-btn {
    display: flex;
    width: 150px;
    height: 150px;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    background: #002349;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-top: 12px;
    margin-bottom: 85px;
    transition: all 0.3s ease-in-out;
}

a.sc-btn:hover {
    background: #e96034;
}


.socmed-title h2 {
    font-size: 156px;
}

.socmed-title h2 em {
    background-image: url(./images/fc-title.jpg);
    text-align: right;
    padding-right: 10px;
}



.fb-sc-row {
    display: flex;
    flex-flow: row wrap;
    gap: 13px;
    margin-bottom: 16px;
    justify-content: space-between;
}

.fb-sc-row:first-child .fb-sc-col:first-child {
    width: calc((400/ 1140)* 100%);
}

.fb-sc-row:first-child .fb-sc-col:nth-child(2) {
    width: calc((460/ 1140) * 100%);
}

.fb-sc-row:first-child .fb-sc-col:last-child {
    width: calc((240/ 1140) * 100%);
}

.fb-sc-row:nth-child(2) .fb-sc-col:first-child {
    width: calc((240 / 1140) * 100%);
}

.fb-sc-row:nth-child(2) .fb-sc-col:nth-child(2) {
    width: calc((460/ 1140) * 100%);
}

.fb-sc-row:nth-child(2) .fb-sc-col:last-child {
    width: calc((400/ 1140)* 100%);
}



.fb-sc-col .soc-photo img {
    filter: grayscale(1);
}

.fb-sc-col .ai-font-facebook {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 26px;
    color: #fff;
    z-index: 2;
}

.fb-sc-col a:hover .soc-photo img {
    filter: none;
}

.fb-sc-col a .soc-photo:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e96034;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.fb-sc-col a:hover .soc-photo:before {
    opacity: 30%;
}

.fb-sc-col a span {
    color: #fff;
    z-index: 2;
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.fb-sc-col a:hover span {
    opacity: 1;
}

.ip-container.listing-module-page #inner-page-wrapper .container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0;
}
@media (min-width: 768px) {
    .ip-container.listing-module-page #inner-page-wrapper .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .ip-container.listing-module-page #inner-page-wrapper .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .ip-container.listing-module-page #inner-page-wrapper .container {
        width: 1170px;
    }
}

.ip-banner[data-type="page"][data-id="13"] {
    display: none;
}