/*
Theme Name: Kimberly Casey Team
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: 'Prompt', sans-serif;
  --font-family-title: 'Antic Didone', serif;
  --font-size-default: 16px;
  --font-size-title: 18px;
  --font-color-default: #000000;
  --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;
  background: rgba(0,0,0,0.9) url("images/submenu-fixer.png");
  display: none;
  padding: 0;
  position: absolute;
 width:100%;
 min-width:180px;
}
#nav .sub-menu a {
  color: #FFFFFF;
  display: block;
  padding: 10px;
}
#nav .sub-menu a:hover {
  background: none repeat scroll 0 0 var(--light);
  color: var(--font-color-default);
  text-decoration: none;
}
#nav .sub-menu .sub-menu {
  margin-left: 100%;
 top:0;
}
#nav li:hover > .sub-menu {
  display: block;
}
#nav .sub-menu li {
  position: relative;
}


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

a, button {
outline:none;
text-decoration: none;
}

a:hover {
text-decoration: none;
color: #818181;
outline: none;
text-decoration: none;

}

  a,
  a:hover,
  a:visited,
  a:focus,
  select,
  input,
  textarea{
      text-decoration: none;
      outline: 0;
      cursor: pointer;
  }

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

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

  .slick-slide{
      outline: 0;
  }

#main-wrapper {
  position: relative;
  overflow: hidden;
}

#main-wrapper .container-fluid {
 padding-left: 50px;
 padding-right: 50px;
}

.area-flex, .cont-flex {
 display: flex;
 justify-content: center;
 align-items: center;
}

.area-flex {
justify-content: flex-end;
}

/*** Header Area ***/

.main-header {
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 50px 0;
}

/*** Header Logo ***/


.hdr-logo {
  display: flex;
  position: relative;
  text-align: center;
  font-family: var(--font-family-title);
}


.hdr-logo img {
 width: 336px;
}



/*** Header right ***/

.hdr-info-wrapp {
display: flex;
justify-content: center;
align-items: center;
}


.hdr-info span {
 margin: 0 15px;
 display: inline-block;
 vertical-align: middle;
    color: #fff;
    letter-spacing: 0.2em;
}
.hdr-info a {
  color: #fff;
}



.slidenavigation {
vertical-align: middle;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
position: relative;
margin-left: 30px;
}

.slidenavigation em {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  font-style: normal;
  letter-spacing: 0.15em;
  margin-right: 8px;

}

.burger-menu-icon {
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

    .burger-menu-icon span {
      display: block;
      position: absolute;
      height: 2px;
      width: 70%;
      background: #fff;
      opacity: 1;
     /* left: 0;*/
       right: 0;
      -webkit-transition: 0.3s all ease-in-out;
      -o-transition: 0.3s all ease-in-out;
      transition: 0.3s all ease-in-out;
      margin: 0 auto;
    }

    .burger-menu-icon:hover span,
    .burger-menu-icon:focus span {
        background: #80898f;
        width: 100%!important;
    }

    .burger-menu-icon span:nth-child(2)
      {
         top: 7px;
         width: 100%;
         right: 0;
         left: 0;
    }

    .burger-menu-icon:hover span:nth-child(2),
    .burger-menu-icon:focus span:nth-child(2) {
         width: 15% !important;
    }

    .burger-menu-icon span:nth-child(3) {
        bottom: 4px;
        width: 100%;
    }

/*** End of header ***/

#nav {
display: block;
}

#nav a {

  font-size: 14px;
  font-weight: 400;
  color:#fff;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transition: all ease .4s;
  -moz-transition: all ease .4s;
  -webkit-transition: all ease .4s;
  font-family: var(--font-family-default);
  letter-spacing: 0.2em;

}

#nav a:hover {
color: #80898f;
}

#nav li a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height:2px;
  background: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;

}


  #nav li:hover a:before {

     width: 100%;
     left: 0;

  }

#nav li {
  position:relative;
}
#nav > li {

  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 20px;

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

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


/* Sub Menu */

#nav .sub-menu {

  list-style: none outside none;
  margin: 0;
  display: none;
  padding: 10px 0;
  position: absolute;
  width:100%;
  text-align: center;
  background: rgba(0,0,0,.6);
}

#nav .sub-menu:before {
  position: absolute;
  content: '';
  background: url(images/sub-m-bg.png) no-repeat center;
  width: 15px;
  height: 10px;
  top: -10px;
  left: 20px;
}

#nav > li > .sub-menu{

  left: -150%;
  right: -150%;
  margin: auto;

}

#nav .sub-menu a {
  color: #FFFFFF;
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#nav .sub-menu a:hover {
  color: #fff;
  background: rgba(0,0,0,0.6);
}

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

#nav li:hover > .sub-menu {
  display: block;
}

#nav .sub-menu li {
  position: relative;
  display: block;
  padding: 0;
  margin: 1px 0 0;
}

#nav .sub-menu li:first-child{
  padding: 0 0 0 0;
}

#nav .sub-menu li a:after,
 #nav .sub-menu li a:before {
  display: none;
}


.fixed-logo {
display: none;
}

/***Header Short***/

.fixed-header{
  background:#fff;
  position: fixed;
  z-index: 101;
  width: 100%;
  left: 0;
  top: -100px;
  transition: all ease .3s;
  -moz-transition: all ease .3s;
  -webkit-transition: all ease .3s;
  padding: 8px 0;
}

.fixed-header.active{
  top: 0;
}
.fixed-header .hdr-logo img {
 filter: invert(100%);
 width: 244px;
}

.fixed-header .hdr-info span {
color:#002349;
}

.fixed-header .burger-menu-icon span {
 background:#002349;
}
.fixed-header .hdr-info a {
  color: inherit;
}
.fixed-header .hdr-info a:hover {
  color: #80898f;
}

/*** Fixed Nav ***/

.nav-wrapp {
  align-items: center;
  margin-right: 56px;
}

.navigation {
display: flex;
justify-content: flex-end;
position: relative;

}


#fixednav {
display: block;
}

#fixednav a {

  font-size: 12px;
  font-weight: 400;
  color:#002349;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transition: all ease .4s;
  -moz-transition: all ease .4s;
  -webkit-transition: all ease .4s;
  letter-spacing: 0.2em;

}

#fixednav a:hover {
color: #80898f;
}

#fixednav li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height:2px;
  background: #49a1ad;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: none;

}

  #fixednav li:hover a:after {

     width: 100%;
     left: 0;

  }

#fixednav li {
  position:relative;
}
#fixednav > li {

  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 10px;

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

#fixednav > li:hover > a{
  color:#49a1ad;
}


/* Sub Menu */

#fixednav .sub-menu {

  list-style: none outside none;
  margin: 0;
  display: none;
  padding: 10px 0;
  position: absolute;
  width:100%;
  text-align: center;
  background: transparent;
  background: rgba(0,0,0,.6);
  min-width: 180px;
}

#fixednav > li > .sub-menu{

  left: -150%;
  right: -150%;
  margin: auto;

}

#fixednav .sub-menu a {
  color: #FFFFFF;
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#fixednav .sub-menu a:hover {
  color: #fff;
  background: rgba(0,60,105,0.6);
}

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

#fixednav li:hover > .sub-menu {
  display: block;
}

#fixednav .sub-menu li {
  position: relative;
  display: block;
  padding: 0;
  margin: 1px 0 0;
}

#fixednav .sub-menu li:first-child{
  padding: 0 0 0 0;
}

#fixednav .sub-menu li a:after,
#fixednav .sub-menu li a:before {
  display: none;
}

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

/*** HP SLIDE ***/

section#slide-main-area {
position: relative;
}

.slide-area {
  width: 100%;
  position: relative;
  z-index: 0;
  top: 0;
  height: 100%;
}

.slide-wrapper {
position: relative;
padding: 10px;
padding-bottom: 0;
}

.hp-slide {
width: 100%;
z-index: 1;
position: relative;
}

.home .cycloneslider-template-responsive {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home .cycloneslider-slide.cycloneslider-slide-image.cycle-slide:before,
.home .cycloneslider-template-responsive .cycloneslider-slide:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.15);
  left: 0;
  right: 0;
  z-index: 2;
}
.home .cycloneslider-slide.cycloneslider-slide-image.cycle-slide:after,
.home .cycloneslider-template-responsive .cycloneslider-slide:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  z-index: 2;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
top: 0;
opacity: 0.8;

}

.hp-slide .cycloneslider-template-responsive {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hp-slide .cycloneslider-template-responsive .cycloneslider-slide {
  background-color: transparent;
}

/*** Tagline ***/

.tagline-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 5;
  width: 100%;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tagline-wrapper > .textwidget {
  width: 100%;
}
.tagline-text {
display: block;
font-size: 60px;
letter-spacing: 0.05em;
text-transform: uppercase;
color: #fff;
font-family: var(--font-family-title);
text-align: center;
}
.tagline-text ~ .tagline-text {
  display: none;
}

.tagline-text span {
  display: block;
  font-size: 18px;
  font-family: var(--font-family-default);
  font-weight: 500;
  letter-spacing: 0.5em;
  margin-bottom: 8px;
}

.slide-logo {
 position: absolute;
 right: 105px;
 bottom: 35px;
}

.tagline-wrapper a.hp-link {
 border-color: #fff;
}

.tagline-wrapper a.hp-link span {
   color: #fff;
}


/*** Slide SMI ***/

.slide-smi {
  position: absolute;
  width: 57px;
  z-index: 9;
  text-align: center;
  right: 30px;
  bottom: 35px;

}

.slide-smi .fixed-smi {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
}

.slide-smi .fixed-smi:after {
  content: '';
  height: 57px;
  width: 1px;
  background: #cecece;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.slide-smi .scr-text:before {
  content: '';
  height: 57px;
  width: 1px;
  background: #cecece;
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.slide-smi .fixed-smi:after {
   top: unset;
   bottom: 0;
}

.slide-smi .fixed-smi a {
  display: block;
  color: #fff;
  font-size: 25px;
  margin: 15px 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slide-smi .fixed-smi a:hover {
  color: #e8e8e8;
}

.scr-text {
  position: relative;
  padding-bottom: 35px;
 }

.scr-text span {
  font-size: 12px;
  -webkit-transform: translate(0, 30px) rotate(-90deg);
  -moz-transform: translate(0, 30px) rotate(-90deg);
  -ms-transform: translate(0, 30px) rotate(-90deg);
  -o-transform: translate(0, 30px) rotate(-90deg);
  transform: translate(0, 49px) rotate(-90deg);
  color: #fff;
  text-transform: uppercase;
  vertical-align: top;
  position: absolute;
  left: -32px;
  font-weight: 400;
  width: 120px;
  text-shadow: 1px 0px 5px #000;
  letter-spacing: 0.1em;
}


.slide-smi .smi a:hover {
 background: #e8e8e8;
}

/*** Quick Search ***/

section#qs-section {
position: relative;
overflow: inherit;
}


.qs-wrapper {
  position: relative;
  z-index: 5;
  bottom: 0;
  width: 100%;
   background: url(images/qs-bg.png) no-repeat center;

   padding: 50px 0 100px;
   background-position-y: -30px;
}

.qs-area-wrapp {
  font-size: 0;
  letter-spacing: 0;
  padding: 0;
  text-align: center;
}

.qs-title {

  color: #082942;
  font-weight: 700;
  display: block;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--font-family-title);
  letter-spacing: 0;
  position: relative;
}



.qs-cont {

  width: 100%;
  font-size: 0;
  letter-spacing: 0;
  margin-top: 15px;
}

.qs-cont form {
  margin: 0 auto;
  vertical-align: top;
  display: flex;
}

.qs-cont .field-1 {
  width: 39%;
  max-width: 439px;
}

.qs-cont .field-2, .qs-cont .field-3,
.qs-cont .field-4, .qs-cont .field-5 {
  width: 13.5%;
  max-width: 150px;
}

.qs-cont .field-1, .qs-cont .field-2, .qs-cont .field-3, .qs-cont .field-4, .qs-cont .field-5, .qs-cont .field-6 {
  /*display: inline-block;*/
  margin-right: 5px;
}

.qs-cont input {

  color: #002349;
  font-size: 12px;
  height: 39px;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(images/qs-arrow.png) no-repeat right 8px center transparent;
  text-transform: uppercase;
  border: 2px solid #cbcbcb;
  padding: 0 15px;

}

.qs-cont select {
  color: #002349;
  font-size: 12px;
  height: 39px;
  padding: 0 15px;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(images/qs-arrow.png) no-repeat right 8px center transparent;
  text-transform: uppercase;
  border: 2px solid #cbcbcb;


}

   .qs-cont select > option {
      color: #000;
   }

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

.qs-cont .qs-cont-sub, .qs-cont .adv-srch {
  width: 36px;
  height: 36px;
  background:#082941;
  text-align: center;
  color: #fff;
  appearance: normal !important;
  -webkit-appearance: normal !important;
  -moz-appearance: normal !important;
  border-radius: 0;
  border: 0;
  margin: 0;
  vertical-align: top;
  display: inline-block;
  line-height: 39px;
  font-weight: 400;
  font-size: 0;
  position: relative;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 10px;
  background: url(images/searc-icon.png) no-repeat center transparent;
  }

  .qs-cont .adv-srch {
    background: #80898f;
    margin-left: 0;
  }

  .qs-cont .qs-cont-sub:hover, .qs-cont .adv-srch:hover{
    opacity: 0.8;
  }

.qs-cont p {
font-size: 12px;
padding: 20px 0;
display: block;
font-weight: 300;
}

/** Main Titlte **/

.title-section {
 display: flex;
 align-items: flex-start;
}

.title-widget {
   display: inline-block;
  font-size: 18px;
  color: #ababab;
  position: relative;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 500;
}

 .title-widget span {
  text-transform: uppercase;
  color: #002349;
  margin-bottom: 50px;
  position: relative;
  letter-spacing:0.05em;
  font-weight: 400;
  display: inline-block;
  font-size: 72px;
  line-height: 1;
  z-index: 1;
  display: block;
  font-family: var(--font-family-title);
  position: relative;
 }

 .title-widget span:before {
  content: '';
  position: absolute;
  right: -30px;
  background: url(images/title-acc-icon.png) no-repeat center center;
  width: 16px;
  height: 19px;
  top: 50%;
  transform: translateY(-50%);

 }

 .title-widget span:after {
  content: '';
  position: absolute;
  width: 2000px;
  left: 100%;
  margin-left: 29px;
  background: #cacaca;
  height: 1px;
  /* bottom: 36px; */
  top: 50%;
  transform: translateY(-50%);
 }

/******/

a.hp-link {
  display: block;
  width: 100%;
  max-width: 284px;
  text-align: center;
  line-height: 61px;
  height: 61px;
  border: 2px solid #cbcbcb;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 30px auto;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;


}

   a.hp-link span {
        color: #002349;
        text-align: center;
        font-size: 14px;
        text-transform: uppercase;
        position: relative;
        display: block;
        width: 100%;
        font-family: var(--font-family-default);
        letter-spacing: 0.2em;
        font-weight: 500;
   }

   a.hp-link:hover span {
     color: #fff;

   }


   a.hp-link:hover {
      background: #002349;
      border: 2px solid #002349;
      color: #fff;
   }

.tagline-wrapper a.hp-link {
 width: 231px;
}

/*** Featured Listings ***/

section#fl-section {
  position: relative;
  overflow: hidden;
  background: url(images/fp-bg.jpg) no-repeat top/contain;
  margin: 0 auto;
  background-position-y: -50px;
    padding-top: 80px;
}

 .fl-area {
   width: 100%;
  /* max-width: 1444px; */
   margin: 0 auto;
   position: relative;
   text-align: center;
   padding: 0 75px;
 }

.fl-area .title-widget span:before {
left: -30px;
right: unset;
}

.fl-area .title-widget span:after {
right: 100%;
left: unset;
    margin-left: 0;
    margin-right: 29px;
}

 .fl-wrap {
   position: relative;
   display: flex;
   justify-content: center;
   margin: 0 auto;
   font-size: 0;
   letter-spacing: 0;
   margin-left: -10px;
   margin-right: -10px;
   padding: 10px 0;
 }

.fl-top-l {
     display: block;
     width: 58.37950138504155%;
}

.fl-top-r {
     display: block;
     width: 41.62049861495845%;
}

.fl-bottom {
   width: 33.333%;
   display: block;
}

 .fl-list {
   position: relative;
   width: 100%;
   display: inline-block;
   padding: 0 10px;
 }

  .fl-list a {
     display: block;
     width: 100%;
     margin: 0 auto;
     position: relative;
             -webkit-transition: 0.3s all ease-in-out;
      -o-transition: 0.3s all ease-in-out;
      transition: 0.3s all ease-in-out;
           overflow: hidden;
  }

   .fl-list a > .fl-img-wrap {
     position: relative;
   }

   .fl-list a > .fl-img-wrap canvas {
        display: block;
        width: 100%;
        /*height: 350px;*/
   }

    .fl-list a > .fl-img-wrap img {
       position: absolute;
       left: 0;
       top: 0;
       width: 100%;
       height: 100%;
       object-fit: cover;
       z-index: 1;
       transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
       -webkit-transition: all .25s ease-in-out;
    }

.fl-list a:hover > .fl-img-wrap img {
    -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  transform: scale(1.1);

}

.fl-list a > .fl-img-wrap .fl-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 346px;
  z-index: 3;
  padding: 30px 0 20px;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;

}

 .fl-list a > .fl-img-wrap .fl-details:before {
   content:'';
   position: absolute;
   bottom: 0;
   width: 100%;
   height: 100%;
   /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#9c9c9c+0,000000+100 */
   background: rgb(156,156,156); /* Old browsers */
   background: -moz-linear-gradient(top,  rgba(0,42,92,1) 0%, rgba(0,42,92,1) 100%); /* FF3.6-15 */
   background: -webkit-linear-gradient(top,  rgba(0,42,92,1) 0%,rgba(0,42,92,1) 100%); /* Chrome10-25,Safari5.1-6 */
   background: linear-gradient(to bottom,  rgba(0,42,92,1) 0%,rgba(0,42,92,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9c9c9c', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
   opacity: 0.8;
   left: 0;

 }

 .fl-list a > .fl-img-wrap .fl-details span {
   display: block;
   position: relative;
   color: #fff;

 }

  .fl-list a > .fl-img-wrap .fl-details span.fl-price {
     font-size: 18px;
     padding-bottom: 10px;

  }

  .fl-list a > .fl-img-wrap .fl-details span.fl-address {
     font-size: 24px;
     text-transform: uppercase;
     font-family: var(--font-family-title);

  }

   .fl-list a > .fl-img-wrap .fl-details span.fl-address em {
     display: block;
     font-size: 14px;
     font-style: normal;
     padding-top: 5px;
     font-family: var(--font-family-default);
   }

   .fl-list a > .fl-img-wrap .fl-details span.fl-desc {
     display: flex;
     justify-content: center;
     align-items: center;
     padding-top: 20px;
   }

   .fl-list a > .fl-img-wrap .fl-details span.fl-desc em {
     display: block;
     font-size: 14px;
     font-style: normal;
     padding: 0px 20px;
   }

   .fl-list a > .fl-img-wrap .fl-details span.fl-desc em:nth-child(2){
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
   }

   .fl-list a > .fl-img-wrap .fl-details span.view-d {
     display: block;
     font-size: 14px;
     font-style: normal;
     border: 1px solid #fff;
     max-width: 204px;
     margin: 30px auto 0;
     text-align: center;
     height: 61px;
     line-height: 61px;
     text-transform: uppercase;


   }
.fl-list a > .fl-img-wrap .fl-d-details  {
        transition: all .25s ease-in-out;
   -moz-transition: all .25s ease-in-out;
   -webkit-transition: all .25s ease-in-out;
   opacity: 1;
}
.fl-list a:hover > .fl-img-wrap .fl-d-details {
   opacity: 0;
}

.fl-list a > .fl-img-wrap .fl-h-details {
   opacity: 0;
   transition: all .25s ease-in-out;
   -moz-transition: all .25s ease-in-out;
   -webkit-transition: all .25s ease-in-out;
}

 .fl-list a:hover > .fl-img-wrap .fl-h-details {
     opacity: 1;

 }

  .fl-list a > .fl-img-wrap .fl-h-details .fl-details  {
        width: 100%;
        height: 100%;
        background: rgba(0,42,92,.4);
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
  }

   .fl-list a > .fl-img-wrap .fl-h-details .fl-details:before {
     display: none;
   }


  .fp-more {
     display: flex;
     align-items: center;
     justify-content: center;
  }

  .fp-more a.hp-link {
     width: 284px;
     margin: 30px 10px;
  }



/*** welcome Area ***/

section#about-section {
  position: relative;
  margin-bottom: 64px;
  margin-top: 80px;
}

#about-section:before{
  content: '';
  /* background: url(images/about-bg.jpg) no-repeat center/cover; */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 595px;
  height: 800px;
  z-index: 0;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  opacity: 1;
}

.about-area {
   width: 100%;
   margin: 0 auto;
   position: relative;
   text-align: center;
   padding: 0 75px;
 }

.about-wrap {
 display: flex;
 justify-content: center;
 min-height: 650px
}

.about-photo {
 width: 42%;
 position: relative;

}
.about-photo:before {
 position: absolute;
 content:'';
 background: url(images/team-bg-left.jpg) no-repeat;
 left: -55px;
 bottom: -64px;
 width: 298px;
 height: 643px;

}

.about-photo img {
 object-fit: cover;
 position: relative;
 width: 92%;
 height: 100%;
}

.team-section {
 width: 58%;
 position: relative;
}

.team-section:after {
 position: absolute;
 content:'';
 background: url(images/team-bg-right.jpg) no-repeat;
 right: -32px;
 bottom: -50px;
 width: 32px;
 height: calc(100% + 50px);
}

 .about-text {
   display: block;
   text-align: left;
   padding: 0 50px 0;
   position: relative;
   top: -4px;
 }

.about-text .title-widget span {
 font-size: 60px;
}

.about-text .title-widget span:before,
.about-text .title-widget span:after {
 display: none;
}


   .about-text p {
     font-size: 15px;
     color: #5b5b5b;
     letter-spacing: 0.02em;
     line-height: 24px;
     margin: 25px 0 30px;
   }

.about-text .title-widget span {
margin-bottom: 0;
}

.about-text a {
color: blue;
}

.about-text a:hover {
color: #002349;
}

.about-text a.hp-link {
 max-width: 520px;
 margin: 0;
}

.team-slide-wrap {
position: relative;
}

.team-slide {
 position: relative;
 font-size: 0;
 letter-spacing: 0;
 padding: 20px 75px 0;
 margin-left: -30px;
 margin-right: -30px;
}

.team-slide:not(.slick-initialized) {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
}

.team-slide:not(.slick-initialized) .team-list {
width: calc(100% / 3);
}

.team-slide:not(.slick-initialized) .team-list:nth-child(3) ~ div {
display: none;
}


.team-slide .slick-slide {
  outline: 0;
  padding: 0 30px;
}

.team-list {
   position: relative;
   display: block;
}

.team-list:before {
  position: absolute;
  content: '';
  background: url(images/team-accnt.png) no-repeat;
  left: -25px;
  top: 50px;
  width: 158px;
  height: 172px;
  z-index: 1
}

 .team-list a {
   display: block;
   width: 100%;
   position: relative;
 }

  .team-list a > .mt-img {
     position: relative;

  }

   .team-list a > .mt-img canvas {
      display: block;
      width: 100%;
   }

   .team-list a > .mt-img img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-position: top;
      object-fit: cover;
      z-index: 1;
      transition: all .25s ease-in-out;
      -moz-transition: all .25s ease-in-out;
      -webkit-transition: all .25s ease-in-out;
   }

      .team-list a > .mt-name {
        position: relative;
        display: block;
        margin: 0 15px;
        font-size: 20px;
        text-transform: uppercase;
        font-family: var(--font-family-title);
        text-align: center;
        background: #fff;
        color: #002349;
        top: -15px;
        z-index: 2;
        padding: 20px 0;
        letter-spacing: 0.05em;
        font-weight: 500;
        border-bottom: 2px solid;
        transition: all .25s ease-in-out;
        -moz-transition: all .25s ease-in-out;
        -webkit-transition: all .25s ease-in-out;
        text-align: center;
        height: 80px;
      }

      .team-list a:hover > .mt-name {
         padding: 0;
         display: flex;
         justify-content: center;
         align-items: center;

       }

      .team-list a:hover > .mt-name span.mt-a-name {
          display: none;
          text-align: center;
      }

       .team-list a > .mt-name span.mt-a-name em {
          font-size: 15px;
          margin-top: 5px;
          font-style: normal;
          display: block;
       }

      .team-list a > .mt-name .mt-view {
        display: none;
        transition: all .25s ease-in-out;
        -moz-transition: all .25s ease-in-out;
        -webkit-transition: all .25s ease-in-out;
      }

      .team-list a:hover > .mt-name .mt-view {
         display: block;
      }

      .team-list a:hover > .mt-name .mt-view em {
         font-style: normal;
         font-size: 14px;
         letter-spacing: 0.2em;
      }

      .team-list a:hover > .mt-name {
         background: #002349;
         color: #fff;
      }



.mt-nav {
  margin: 0 auto;
  position: absolute;
  z-index: 10;
  font-size: 0;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

}

button.mt-prev {
  position: relative;
  left: 15px;
  display: block !important;
  outline: none;
  text-decoration: none;
  color: #002349;
  margin: 0;
  font-size: 30px;
  letter-spacing: 0.2em;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  top: 0;
  font-weight: 700;
  border: none;
  background: none;
  cursor: pointer;
  text-transform: uppercase;
}


button.mt-next {
  right: 20px;
  display: block !important;
  outline: none;
  text-decoration: none;
  color: #002349;
  margin: 0;
  font-size: 30px;
  letter-spacing: 0.2em;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  top: 0;
  font-weight: 700;
  border: none;
  background: none;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
}


/** Testimonials **/


section#testi-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}


.testi-area {
   position: relative;
   padding:0 20px;
   width:100%;
   margin: 0 auto;
   display: block;
   text-align: center;
   margin-top: 140px;

}



.testi-bg {

  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  margin: 0 auto;
      display: flex;

}


.testi-bg .bg-left {
 position: relative;
 width: 56.02564102564103%;
}

.testi-bg .bg-right {
 position: relative;
 width: 43.974358974358974%;
 margin-top: 80px;
}

.testi-bg .bg-left canvas,
.testi-bg .bg-right canvas {
 width: 100%;
 background-size: cover;
 background-repeat: no-repeat;
 height: 664px;
}
.testi-bg .bg-right canvas {
 height: 612px;
}

.testi-main-wrap {
padding-top: 140px;
/*padding-top: 30px; */
position: relative;
}

.testi-title-wrap {
 display: flex;
 justify-content: flex-end;
}

.testi-title-wrap .title-widget {
  text-align: right;
}

.testi-title-wrap .title-widget span {
  margin-bottom: 0;
}

.testi-title {
  background: #fff;
  padding: 75px;
  width: 786px;
  max-width: 100%;
  padding-left: 0;
  padding-right: 200px;
}


 .testi-wrap {
   position: relative;
   display: block;
   width: 100%;
   max-width: 1284px;
   background: #002349;
   margin: 0 auto;
   padding:  68px 75px;

 }

.testi-wrap:before {
  position: absolute;
  content: '';
  background: url(images/testi-text-bg.png) no-repeat;
  left: 20px;
  top: 0;
  width: 547px;
  height: 376px;
}



.r-more a.hp-link {
 margin-top: 57px;
 margin-bottom: 0;
 max-width: 344px;
}

  .testi-slide {
     position: relative;
     font-size: 0;
     letter-spacing: 0;

  }

  .testi-slide:before {
      content:'';
      position: absolute;
      top: 0;
      background: url(images/testi-q.png) no-repeat center;
      width: 39px;
      height: 35px;

  }

.testi-slide .slick-slide {
  outline: 0;
  padding: 0 70px;
}



   .testi-list {
     position: relative;
     display: block;
   }

    .testi-list p {
       font-size: 15px;
       color: #dfdfdf;
       letter-spacing: 0.05em;
       line-height: 28px;
       margin-top: 70px;
       display: block;
       font-weight: 300;
       font-style: italic;

    }
     .testi-list span {
       display: block;
       text-transform:capitalize;
       font-size: 18px;
       font-weight: 500;
       margin-top: 40px;
       color: #dfdfdf;
     }

.testi-nav {
  margin: 0 auto;
  position: absolute;
  z-index: 10;
  font-size: 0;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

}

button.testi-prev {
  position: relative;
  left: 75px;
  display: block !important;
  outline: none;
  text-decoration: none;
  color: #616161;
  margin: 0;
  font-size: 40px;
  letter-spacing: 0.2em;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  top: 0;
  font-weight: 700;
  border: none;
  background: none;
  cursor: pointer;
  text-transform: uppercase;
}


button.testi-next {
  right: 75px;
  display: block !important;
  outline: none;
  text-decoration: none;
  color: #616161;
  margin: 0;
  font-size: 40px;
  letter-spacing: 0.2em;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  top: 0;
  font-weight: 700;
  border: none;
  background: none;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
}



/** Instagram Area **/

section#ig-section {
  position: relative;
  margin-bottom: 64px;
  margin-top: 80px;
}

.ig-area {
   width: 100%;
   margin: 0 auto;
   position: relative;
   text-align: center;
   padding: 0 75px;
}

.ig-main-wrap {
 display: flex;
 justify-content: center;
}

.ig-left {
  width: 45%;
  position: relative;
  padding-left: 170px;
  display: flex;
align-items: center;
}

.ig-left:before {
  position: absolute;
  content: '';
  background: url(images/qs-bg.png) no-repeat;
  left: -110px;
  top: 0;
  width: 645px;
  height: 500px;
}


  .ig-info {
    position: relative;
    text-align: left;
  }

  .ig-info .title-widget span {
     margin-bottom: 0;
  }

  .ig-info .title-widget span:before {
  left: -30px;
  right: unset;
  }

  .ig-info .title-widget span:after {
  right: 100%;
  left: unset;
  margin-left: 0;
  margin-right: 29px;
  }

  .ig-info a.hp-link {
    margin: 40px 0;
    max-width: 364px;
  }

  .smi {
     display: block;
  }

   .smi a {
      color: #002349;
      font-size: 30px;
          transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
   }

   .smi a:hover {
    opacity: .6;
}

   .smi a:nth-child(2) {
     margin: 0 50px;
   }

.ig-right {
   width: 55%;
   position: relative;
   text-align: center;
}

.ig-list-wrap {
   font-size: 0;
   letter-spacing: 0;
   margin-left:-6px;
   margin-right: -6px;
   position: relative;
}

 .ig-list {
   position: relative;
   display: inline-block;
   vertical-align: top;
   width: 33.333%;
   padding: 0 6px;
   margin: 6px 0;
 }

  .ig-list a {
      width: 100%;
      display: block;
      background: #002349;
   }

    .ig-list a > img {
       width: 100%;
           transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;

    }

     .ig-list a:hover > img {
       opacity: 0.6;
     }

/*** Media Press ***/



section#mp-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 100px;
}


.mp-area {
   width: 100%;
   margin: 0 auto;
   position: relative;
   text-align: center;
   padding: 0 75px;
    margin-top: 70px;
}

 .mp-list-wrap {
   position: relative;
   max-width: 1310px;
   margin: 0 auto;
 }


 .mp-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
 }

  .mp-list a {
      display: block;
  }


/*** Work With Us ***/

section#wwwu-section {
  position: relative;
  z-index: 1;
  overflow: hidden;

}


.wwwu-area {
   width: 100%;
   margin: 0 auto;
   position: relative;
   text-align: center;
   padding: 0 10px;
}


.wwwu-wrap {

  position: relative;
  margin: 0 auto;
  width: 100%;
  background: url(images/wwus-bg.jpg) no-repeat center/cover;
  padding: 100px 0;
    margin-top: 80px;

}


.wwwu-text {
  display: block;
  position: relative;
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
  background: rgba(0,42,92,.4);
  padding: 100px 80px 80px;
  text-align: center;
  display: flex;
  align-items: center;
  color: #fff;
}

.wwwu-text .title-widget span {
font-size: 36px;
color: #fff;
}
.wwwu-text .title-widget span:before,
.wwwu-text .title-widget span:after {
 display: none;
}

.wwwu-text a.hp-link {
 max-width: 224px;
 border: 1px solid #fff;
 margin: 50px auto;
}

.wwwu-text a.hp-link:hover {
 max-width: 224px;
 border: 1px solid #fff;
 background: #fff;
}
.wwwu-text a.hp-link span {
  color: #fff;
}

.wwwu-text a.hp-link:hover span {
   color: #002349;
}

.wwwu-text p {
   font-size: 15px;
   letter-spacing: 0.02em;
   line-height: 24px;
   margin: 15px 0;
   display: block;
}



/*** Footer ***/

section#ftr-section {
 position: relative;
 z-index: 1;
 padding: 0 10px 10px;

}


.footer {
  font-size: 11px;
  font-weight: 500;
  width: 100%;
  padding: 100px 0 80px;
  text-align: center;
  color: #fff;
  background: #002349;

}


/*** Footer Contact Info ***/


.cont-text-wrapp {
  position: relative;
  font-size: 16px;
  color: #171717;
  padding-bottom: 20px;
  font-weight: 400;
  text-align: center;
  width: 100%;
  max-width: 1301px;
  margin: 0 auto;
}

.ftr-logo-name {

 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 100px;

}
.ftr-logo-name img.logo1 {
   width: 398px;
   margin: 0 40px;
   display: block;
}

.ftr-logo-name img.logo2 {
   width: 250px;
   margin: 0 40px;
   display: block;
}


.cont-info-wrap {
 display: flex;
 padding: 0 30px;

}

.info-col-l {
 color: #fff;
 font-size: 15px;
 width: 25%;
 text-align: left;
 font-weight: 300;
}

.info-col-r {
 color: #fff;
 font-size: 15px;
 width: 75%;
 text-align: left;
 font-weight: 300;
     display: flex;
  justify-content: flex-end;
}

.ftr-info-title {
  display: block;
  font-family: var(--font-family-title);
   font-size: 24px;
   margin-bottom: 45px;
   text-transform: uppercase;
   letter-spacing: 0.15em;
}

 .ftr-phone, .office-name {
   font-size: 18px;
   letter-spacing: 0.15em;
   display: block;
   margin-bottom: 25px;
   text-transform: uppercase;

 }

 .ftr-phone a:hover {
      opacity: 0.5;
 }

 .ftr-name {
    font-size: 15px;
    text-transform: uppercase;
    line-height: 25px;
 }


 .office-list {
   display: block;
   padding: 0 40px;
 }
  .office-add {
    line-height: 25px;
    font-size: 15px;

  }
  .office-list:nth-child(1) {
     padding-left: 0;
  }
  .office-list:nth-child(2) {
     border-left: 1px solid #414141;
     border-right: 1px solid #414141;
  }

  .office-list:nth-child(3) {
    padding-right: 0;
  }


.info-address {
 display: flex;
}
/** Footer Nav **/

.footernav {
  font-size: 0px;
}
  .footernav li {
      font-size: 13px;
      color: #fff;
      display: inline-block;
      text-transform: uppercase;
      padding: 0px 15px;
      /*border-left: 1px solid rgba(212, 212, 212, 0.1);*/
      letter-spacing: 0.1em;
      font-weight: 300;

  }

  .footernav li:first-of-type {
      border-left: 0px;
  }



.footer .copyright {
       color:#b9b9b9;
       padding: 8px 0;
       letter-spacing: 0.05em;
       line-height: 20px;
       font-weight: 400;
       font-size: 13px;
       text-transform: capitalize;
       text-align: center;
}

.footer .copyright p {
   display: block;
   padding: 10px 0;
}



.footer .copyright a {
   color: #fff;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;

}


.footer .copyright a:hover {

  color: #8d8d8d;

}


.copyright span {
 text-transform: uppercase;
}


.ftr-logos {
 display: block;
 font-size: 22px;
 text-align: center;
}
.ftr-logos em {
  color: #646464;
  }

.copyright-wrapp {
 border-top: 1px solid rgba(255,255,255,0.1);
 position: relative;
 z-index: 2;
 width: 100%;
 max-width: 1301px;
 margin: 60px auto 0;
 padding-top: 60px;
}


.f-smi {
      position: relative;
      display: block;
      margin: 15px 0;
      text-align: left;

  }

   .f-smi a {
       color: #80898f;
       font-size: 20px;
       margin: 0 10px;
      transition: all .3s ease;
      display: inline-block;
      line-height: 35px;
      text-align: center;
   }

   .f-smi a:first-child {
     margin-left: 0;
   }

  .f-smi a:hover {
      color: #666;
  }


/** Connect Area **/

.close-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: -1;
}


.connect-content {
  width: 100%;
  max-width: 718px;
  height: 100%;
  background:#002349;
  position: fixed;
  right: -2000px;
  top: 0;
  z-index: 1010;
  opacity: 1;
  text-align: center;
  padding: 0;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  overflow: auto;
}

.connect-content:before {
  position: absolute;
  content: '';
  background: url(images/testi-text-bg.png) no-repeat;
  right:0;
  bottom: 0;
  width: 547px;
  height: 376px;
  opacity: 0.3;
}

.connect-content.active {
 opacity: 1;
 right: 0;
}

.connect-content .close-bttn {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
  width: 26px;
  height: 26px;
  position: absolute;
  right: 40px;
  top: 60px;
  cursor: pointer;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  text-align: center;
  margin: 0 auto;
  color: #fefefe;
  z-index: 9;
  font-size: 26px;
}
.connect-content .close-bttn:hover {
   color: #80898f;

}

.slide-details {
  width: calc(100% - 150px);
  display: flex;
  justify-content: flex-start;
  /* padding-right: 150px; */
  position: relative;
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid #4e6475;
  overflow: hidden;
}

.slide-info, .slide-info-r {
display: block;
text-align: left;
width: 70%;
color: #fff;
}

.slide-info-r {
  width: 30%;
}

.slide-info a:hover {
color: #80898f;
}

.slide-info-r .f-smi {
  position: relative;
  display: block;
  margin: 0;
  text-align: left;
}


.slide-info i.ai-font-location-c {
  color: #80898f;
  font-size: 20px;
  top: 5px;
  margin-right: 10px;
}


/*** Slide Nav ***/

.slide-nav-wrapp {
 width: 100%;
 font-size: 0;
 padding-left: 64px;
 padding-bottom: 80px;
}

.slide-navi {
  position: relative;
  width: 100%;
  /*margin: 150px auto 0;*/
  margin: 120px auto 0;
}

.slide-nav {
  width: 100%;
  vertical-align: top;
  padding-bottom: 30px;
  font-size: 0;
  letter-spacing: 0;
}

.slide-nav li {

  position: relative;
  text-align: left;
  vertical-align: top;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 13px;

}

.slide-nav > li {
  min-height: 75px;
}


.slide-nav li a {

 color: #fff;
  font-size: 28px;
  font-weight: 400;
  display: block;
  margin-top: 0;
  outline: none;
  text-decoration: none;
  padding: 0 0 11px;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-family-title);

}

.slide-nav li a:hover {
  color: #80898f;

}

 .slide-nav .sub-menu {
  min-width: auto;
  left: 0;
  margin-left: 0;
  z-index: 9;
  padding: 0 0 30px;
  background: block;
  color: #fff;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

  }

      .slide-nav .sub-menu a {
         padding: 0;
         color: #fff;
       }

        .slide-nav .sub-menu li {
            width: 100%;
            position: relative;
            margin: 0 auto;
            text-align: left;
            background: transparent;
            padding: 0;

          }

          .slide-nav .sub-menu li:before {
              display: none;
          }

  .slide-nav .sub-menu li a {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    padding: 5px 0;
    text-transform: none;
    color: #808080;
    text-transform: uppercase;
    border-left: none;
    margin: 0 auto;
    letter-spacing: 0.05em;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: var(--font-family-default);
  }


       .slide-nav .sub-menu li a:hover {
            color: #eee;
            background: transparent;

          }

.slide-nav .sub-menu .sub-menu {
  margin-left:0;
  top: 0;
  display: none;
}

.slide-nav .sub-menu .sub-menu li a {
 font-size: 16px;
}

.slide-navi ul.aios-split-nav.slide-nav {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  width: 50%;
}

.slide-form-wrap {
 position: relative;
 display: block;
 margin-top: 150px;
 text-align: left;
}

.form-title {
 font-size: 18px;
 font-family: var(--font-family-title);
 color: #fff;
 text-transform: uppercase;
 letter-spacing: 0.05em;

}

.slide-form {
  font-size: 0;
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 10px auto 0;

}

.field-flex {
display: flex;
align-items: center;
}

 .git-field-w {
    width: 100%;
    max-width: 516px;
    position: relative;
 }

.slide-form input[type='email']  {

  width: 100%;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  height: 51px;
  font-weight: 300;
  -webkit-appearance: none;
  -moz-appearance: none;
  vertical-align: top;
  background: transparent;
  border: transparent;
  outline: none;
  text-transform:capitalize;
  padding: 10px 0;
  border:2px solid #4a4a4a;
  letter-spacing: 0.1em;
  padding: 0 20px;

}


div.slide-form input.wpcf7-form-control.wpcf7-submit {
  font-size: 0;
  border: 0;
  width: 36px;
  height: 32px;
  position: relative;
  bottom: 8px;
  background: url(images/send-icon.png) no-repeat;
  background-position: center;
  margin-left: 15px;
}

div.slide-form div.wpcf7-response-output {
  color: #fff;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  bottom: -30px;
  padding: 5px 0;
  position: absolute;
  max-width: 516px;
}


div.slide-form .use-floating-validation-tip span.wpcf7-not-valid-tip {
font-size: 12px;
}

div.slide-form .wpcf7 .ajax-loader {
  position: absolute;
}



/*******************************************************
*
* 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,.6);
  }
  .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: 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-size: 50px;
font-family: var(--font-family-title);
letter-spacing: 0.1em;
text-transform: uppercase;
color: #000;
text-align: left;
position: relative;
font-weight: 400;
}



/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {

}


/*** QS cta ***/

.ip-qs-cont {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  background: #fff;
  width: 100%;
}

.ip-qs-cont .ip-qs-title {
  font-size: 28px;
  line-height: 56px;
  color: #000;
  text-transform: uppercase;
}

.ip-qs-cont .ip-qs-title em {
  position: relative;
}

.ip-qs-cont .ip-qs-title em:before {
  content: '';
  position: absolute;
  top: 6px;
  height: 63px;
  width: 2px;
  background: #c4aa5f;
  transform-origin: top right;
  ms-transform: skew(-30deg, 0deg);
  -webkit-transform: skew(-30deg, 0deg);
  transform: skew(-30deg, 0deg);
  left: 20px;
  z-index: 1;

}

.ip-qs-cont .ip-qs-title span.ip-qs-g {
  position: relative;
  display: inline-block;
  color: #c4aa5f;
}

  .ip-qs-cont .ip-qs-title span.ip-qs-b {
  position: relative;
  display: inline-block;
  color: #000;
  top: 17px;
}

.ip-qs-cont form {
  width: 100%;
  margin: 30px auto;
  display: inline-block;
  text-align: right;
  vertical-align: middle;
  font-size: 0;
}


.ip-qs-cont .field-r {
  float: right;
}
.ip-qs-cont .field-l {
  float: left;
}


.ip-qs-cont .field-long {
  width: 100%;
}

.ip-qs-cont .field-short {
  width: 50%;
}


.ip-qs-cont input {

  color: #656565;
  font-size: 12px;
  height: 39px;
  padding: 0 5px;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background: #fff;
  border: 1px solid #002349;
  margin: 2px 0;
  text-transform: uppercase;


}


.ip-qs-cont select {
  color: #656565;
  font-size: 12px;
  height: 39px;
  padding: 0 5px;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(images/qs-arrow.png) no-repeat #fff;
  background-position: 94% 50%;
  border: 1px solid #002349;
  margin: 2px 0;
  text-transform: uppercase;
}


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

.ip-qs-cont .qs-cont-sub, a.qs-sett {
 width: 100%;
  height: 39px;
  background: #000;
  text-align: center;
  color: #fff;
  appearance: normal !important;
  -webkit-appearance: normal !important;
  -moz-appearance: normal !important;
  border-radius: 0;
  border: 0;
  margin: 5px auto;
  vertical-align: top;
  display: inline-block;
  font-weight: 400;
  font-size: 12px;
  position: relative;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  letter-spacing: 0.05em;
  font-style: normal;
  margin-left: 1px;
  line-height: 39px;
  }


  a.qs-sett {
      background:#5c571d;
  }


 .ip-qs-cont .qs-cont-sub:hover{
    opacity: 0.8;
  }


button.btn.dropdown-toggle {
  height: 39px;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(images/qs-arrow.png) no-repeat right 8px center transparent;
  text-transform: uppercase;
  border: 2px solid #cbcbcb;
  padding: 0 15px;
  border-radius: unset;
}
span.filter-option.pull-left{
  color: #002349 !important;
  font-size: 12px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

ul.dropdown-menu.inner {
  max-height: 150px !important;
}

.aiosp-container {
  padding: 0;
}

.aiosp-wrap .aiosp-container .aios-popup-body {
  background: rgba(0,0,0,0.9) !important;
  width: 100%;
  min-height: 800px;
  padding: 0;
}

.aios-popup-body .aiosp-close {
  color: #FFF;
  right: 50px;
  top: 60px !important;
  width: 26px;
  height: 26px;
  font-size: 0;
  background: url(images/pop-close.png) no-repeat center center;
}

.pop-cta-title {
  position: relative;
  text-align: center;
  margin-top: 190px;
}

.pop-cta-title .title-widget {
  color: #FFF;
}

.pop-cta-title .title-widget span {
  color: #FFF;
  margin-bottom: 70px;
}

.pop-cta-title .title-widget span:before {
  left: -30px;
  right: unset;
  background: url(images/title-acc-icon-pop.png) no-repeat center center;
}

.pop-cta-title .title-widget span:after {
  right: 100%;
  left: unset;
  margin-left: 0;
  margin-right: 29px;
  background: #FFF;
}

.pop-cta {
  position: relative;
}

.pop-cta > a > span {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%,-50%);
  z-index: 2;
  color: #FFF;
  font-size: 24px;
  font-family: var(--font-family-title);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: normal;
  width: 100%;
  max-width: 300px;
}

.pop-cta > a > span span.add-price {
	text-transform: none;
	font-size: 16px;
}

.pop-cta-img {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.pop-cta-img img {
 height: 300px;
}

.pop-cta-img:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
}

.aios-contact-info {
 text-align: center;
}

.aios-contact-info span:first-child {
 font-weight: 500;
}

.aios-contact-info span {
color: #fff;
display: block;

}

.aios-contact-info span > i {
 font-style: normal !important;
 font-size: 11px !important;
}

.aios-contact-info a {
   font-size: 14px !important;
}

/** Agent Page **/

#agents-single .agents-right .agents-description-line {
 margin-bottom: 0 !important;
}
#agents-single .agents-smi {
display: none !important;
}
#agents-single .agents-contact li {
  margin: 0px auto 15px !important;
}

body #agents-single .agents-button {
  margin-top: 5px;
}


.agents-right ul {

 list-style: disc;
 margin-left: 40px;
 margin-top: 20px;
 margin-bottom: 20px;

}

.agents-right ul > li {
 padding: 10px 0;
}

.c-logo img {
  filter: invert(1);
  width: 300px;
  margin: 30px auto; }


/** About Page **/

.aios-about-wrap .aios-about-title strong {
font-family: var(--font-family-title);
    letter-spacing: 0.05em;
    text-transform: uppercase;

}

.page-id-63 #content h2 {
 text-align: center;
font-family: var(--font-family-title);
  letter-spacing: 0.05em;
  text-transform: uppercase;

}


.page-id-63 #content h3 {
 margin-bottom:0;
 padding-bottom:0;
 margin-top:0;
 padding-top:0
}

.page-id-63 #content .center-title {
 text-align: center;
}

.page-id-63 #content .cont-p {
 margin-top: 0 !important;
 padding-top: 0 !important;
}

#agents-results .agent-top {
margin: 5px 0 !important;
}



#content .archive-subtitle {
margin: 0;
}

#content .archive-thumbnail {
  margin-top: 10px;
}

#content .entry-title, #content .archive-title {
 line-height: 1;
}

h1.agent-entry-title {
  font-family: var(--font-family-title) !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-weight: normal !important;
}

#listings-details .listings-address, h1.entry-title,
.aios-contact-wrap .aios-contact-main .aios-contact-title,
#aios-testimonials.aios-testimonials-page h1 {
  font-family: var(--font-family-title) !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-weight: normal !important;
}

.ihf-results-template #content-full .entry-title {
width: 100% !important;
padding: 0 !important;
}

/** Contact **/

.page-id-67 .aios-contact-wrap .aios-contact-main {
padding: 60px 0 0 0;
margin: 0 auto;
}

.page-id-67 .aios-contact-info .container {
  width: 100%;
}

/*.slide-nav > li.menu-item-810 {
  margin-top: 24px;
}*/

/** Categ post **/

.category-newsletter #content .archive-thumbnail a img {
 width: 100% !important;
 height: 180px !important;
}

#listings-details .listings-form h2 span {
font-size: 27px !important;
}
#listings-details .listings-address span {
color: #000 !important;
}

/** Categ IP banner **/

.category-blog .ip-banner canvas {
background-image:url(images/blog-banner.jpg) !important;
}

.page-id-0 .ip-banner canvas {
background-image:url(images/sp-banner.jpg) !important;
}

.category-media-press .ip-banner canvas {
background-image:url(images/mp-banner.jpg) !important;
}

.category-newsletter .ip-banner canvas {
background-image:url(images/ip-banner-newsletter.jpg) !important;
}

.single-aios-agents .ip-banner canvas {
background-image:url(images/agent-banner.jpg) !important;
}


.page-id-53 #listings-results .listings-main {
  margin-bottom: 93px;
}

.aiosp-wrap .aiosp-container .aios-popup-body {
      background: rgba(0,0,0,0.9);
  width: 100% !important;
  max-width: none !important;
  min-height: 800px !important;
  padding: 0 !important;
}

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

.aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content {
  width: 50% !important;
  min-height: auto !important;
  padding: 80px !important;
  background: #fff !important;
}

#agents-single .agents-contact li.agent-contact-centered > div {
flex-wrap: initial !important;
}


/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
.single-aios-agents p#breadcrumbs,
.aios-testimonials-page p#breadcrumbs{
margin: 20px 0 0;
}

.aiosp-wrap .aiosp-ref-\#agents-popup-form .aios-popup-body {
width: 100%!important;
max-width: 500px !important;
min-height: 0 !important;
padding: 30px !important;
}

.aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit],
.aiosp-wrap .aiosp-ref-\#agents-popup-form h2 {
color: #fff !important;
}

.aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=text], .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=email],
.aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=tel],
.aiosp-wrap .aiosp-ref-\#agents-popup-form textarea{
color: #fff !important;
border-bottom: 1px solid #fff !important;
}

.single-aios-agents .c-logo img {
filter: invert(0);
}

.single-aios-agents .aios-popup-body .aiosp-close {
top: 37px;
}

.ihf-results-template-shortcode h1.entry-title,
.ihf-results-template #content-full .entry-title {
text-align: center !important;
}

ul#ihf-search-location-tabs, ul#ihf-detail-extrainfotabs,
ul.chosen-results {
    margin-left: 0px !important;
    padding-left: 0px !important;
}
#ihf-main-container .nav-tabs {
    margin-left: 0;
}

#ihf-main-container .ihf-advanced-property-search #ihf-main-search-form ul.chosen-results {
  max-height: 100px;
}

.aios-contact-info a:hover {
  opacity: .6;
}

.aios-contact-form-inner .use-floating-validation-tip .wpcf7-not-valid-tip {
  top: -34px;
  padding: 5px;
  width: 86%;
  font-size: 12px;
}

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

.agents-popup-form .wpcf7 form .wpcf7-response-output {
      color: #fff;
    font-size: 14px;
    text-align: center;
}

.agents-popup-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    width: 100%;
    font-size: 12px;
}

#listings-details .listings-slideshow .listings-slideshow-slide:after {
  z-index: 5 !important;
  background: rgba(0, 0, 0, 0.2) !important;
}



#aios-testimonials.aios-testimonials-page > .container {
  padding: 0;
  width: 100%;
}

  #aios-testimonials .aios-testimonials {
    margin: 0 !important;
   }

   #listings-results {
    margin-top: -88px;
}




.aios-contact-wrap .aios-contact-main .aios-contact-info{
  padding: 0 90px;
}

.aios-contact-main .slide-smi{
  bottom: unset;
  top: 15%;
}



.ip-properties-widget .pop-cta-title{
  margin-top: 0;
}

.ip-properties-widget .pop-cta-title .title-widget span{
  margin-bottom: 0;
}

.ip-properties-widget .pop-cta-title .title-widget,
.ip-properties-widget .pop-cta-title .title-widget span{
  color: #000;
}
.ip-properties-widget .pop-cta-title .title-widget span:before{
  filter: invert(1);
}
.ip-properties-widget .pop-cta-title .title-widget span:after{
  background: #000;
}

/*optimize*/
.hdr-info a:hover{
    color: #80898f;
}
#wwwu-section, #fl-section, #ig-section, #mp-section {
    display: none;
}
/* 
#about-section,
#slide-main-area{
  opacity: 0;
} 

#testi-section{
    opacity: 0;
} */

/* Newsletter CSS */

.newsletter-wrap {
	max-width: 665px;
	width: 100%;
	margin: 0 auto;
	background: #fff;
	padding: 10px;
}

.newsletter-header {
	background: #002349;
	text-align: center;
	padding: 40px 0;
}

.newsletter-desc {
	padding: 40px;
}

.newsletter-desc p {
	font-size: 15px;
	line-height: 26px;
	color: #666;
	font-weight: 400;
	font-family: arial;
	margin-bottom: 20px;
}

.page-template-template-newsletter #inner-page-wrapper {
	background: #002349;
	margin-bottom: 0;
	position: relative;
	z-index: 1;
	padding: 0 0 30px;
}

.page-template-template-newsletter .ip-banner {
	display: none;
}

.page-template-template-newsletter .header {
	display: none;
}

.page-template-template-newsletter #wwwu-section {
	display: none !important;
}

.page-template-template-newsletter #ftr-section {
	display: none;
}

.newsletter-welcome img {
	margin: 0 auto;
	display: block;
}

.newsletter-social {
	padding: 15px 0;
	text-align: center;
	background: #002349;
	margin-top: 40px;
}

.newsletter-social a {
	color: #fff;
	font-size: 30px;
	padding: 8px 0;
	width: 45px;
	height: 45px;
	display: inline-block;
	text-align: center;
	border-radius: 100%;
	background: #999999;
	margin: 0 8px;
}

.newsletter-title h2 {
	font-size: 60px;
	font-family: times new roman;
	text-transform: uppercase;
	text-align: center;
	color: #002349;
}

.newsletter-title strong {
	text-align: center;
	display: block;
	font-family: times new roman;
	text-transform: uppercase;
	color: #002349;
	font-size: 28px;
	font-weight: 400;
}

.newsletter-title {
	padding: 36px 0 30px;
}

.newsletter-listing-item {
	width: calc(100% / 3);
	display: inline-block;
	vertical-align: top;
}

.newsletter-listing-item img {
	width: 100%;
}

.newsletter-listing-item {
	width: calc(100% / 3 - 7px);
	display: inline-block;
	vertical-align: top;
	text-align: center;
	font-size: 0;
	margin-bottom: 10px;
}

.newsletter-listing-items .newsletter-listing-item:nth-child(2) {
	margin: 0 10px;
}

.newsletter-listing-desc {
	padding: 20px 0 25px;
	color: #fff;
	background: #002349;
}

.newsletter-listing-desc h2 {
	font-size: 22px;
	font-family: times new roman;
}

.newsletter-listing-desc div {
	margin-top: 15px;
}

.newsletter-listing-desc div, .newsletter-listing-desc div span {
	font-size: 14px;
	display: block;
	line-height: 22px;
}

.newsletter-inventory-title {
	background: #002349;
	padding: 40px 0;
}

.newsletter-inventory-title h2 {
	text-align: center;
	font-size: 36px;
	font-family: times new roman;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.newsletter-inventory-gallery {
	text-align: center;
	padding: 25px 0;
}

.newsletter-inventory-desc p {
	color: #fff;
	font-size: 15px;
	line-height: 26px;
	font-weight: 100;
	letter-spacing: -1px;
	text-align: justify;
}

.newletter-feat-prop-title h2 {
	text-align: center;
	padding: 50px 0 25px;
	font-size: 36px;
	font-family: times new roman;
	color: #002349;
}

.newsletter-featured-property-thumbnail {
	position: relative;
	font-size: 0;
}

.newsletter-featured-property-misc {
	position: absolute;
	bottom: 0;
	padding: 25px 32px;
	background: rgba(102,102,102,.5);
	width: 100%;
}

.newsletter-featured-property-misc h2 {
	font-size: 30px;
	color: #fff;
	font-family: times new roman;
	letter-spacing: 1px;
}

.newsletter-featured-property-desc {
	padding: 25px 30px 50px;
}

.newsletter-featured-property-desc p {
	font-size: 15px;
	color: #666666;
	line-height: 24px;
	margin-bottom: 20px;
}

.newsletter-featured-property-desc strong {
	font-size: 15px;
	color: #666666;
	line-height: 24px;
	margin-bottom: 20px;
	display: block;
}

.newsletter-featured-property-desc h3 span {
	display: block;
	font-size: 15px;
	color: #666666;
	line-height: 24px;
}

.newsletter-featured-property-desc h3 {
	margin-bottom: 20px;
	font-size: 15px;
	color: #666666;
	line-height: 24px;
}

.newsletter-featured-property-desc a {
	border: 1px solid #666666;
	color: #666666;
	padding: 15px 30px;
	text-transform: uppercase;
	display: inline-block;
}

.newsletter-featured-property-desc p img {
	float: right;
}

.newsletter-featured-property-misc h2 span {
	display: block;
}

.newsletter-gallery {
	margin: -40px auto 30px;
	display: block;
	padding: 20px 0;
	background: #002349;
	max-width: calc(100% - 45px);
	text-align: center;
	position: relative;
}

.newsletter-gallery img {
	display: inline-block;
	margin: 0 12px;
}

.newsletter-featured-property-thumbnail img {
	width: 100%;
}

.newsletter-gallery-items > img {
	width: 100%;
}

.newsletter-gallery-desc p {
	padding: 30px 30px 25px;
	line-height: 24px;
	font-size: 15px;
	text-align: justify;
	color: #666666;
}

.newsletter-gallery-post {
	padding: 30px 0;
	background: #002349;
	display: flex;
	align-content: space-evenly;
}

.newsletter-gallery-post-item {
	position: relative;
	padding-bottom: 60px;
}

.newsletter-gallery-post-item h2 {
	color: #fff;
	text-align: center;
	padding: 20px 30px;
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
}

.newsletter-gallery-post-item a {
	max-width: 200px;
	text-align: center;
	display: block;
	margin: 0 auto;
	color: #fff;
	border: 1px solid;
	padding: 15px 30px;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%);
	text-transform: uppercase;
	font-weight: 100;
	font-size: 13px;
}

.newsletter-gallery-desc.blue-bg {
	background: #002349;
	padding: 25px 30px 0;
}

.newsletter-gallery-desc.blue-bg h2 {
	font-size: 26px;
	color: #fff;
	font-family: times new roman;
	margin-bottom: 20px;
}

.newsletter-gallery-desc.blue-bg p {
	padding: 0 0 25px;
	color: #fff;
	font-weight: 100 !important;
}

.newsletter-gallery-post.blue-bg {
	padding-bottom: 0;
}

.newsletter-gallery-post.blue-bg .newsletter-gallery-post-item {
	padding-bottom: 30px;
}

.newsletter-gallery-desc a {
	margin: 15px auto 10px;
	display: block;
	text-align: center;
	max-width: 160px;
	border: 1px solid #666;
	padding: 15px;
	color: #666;
}

.newsletter-social-title {
	text-align: center;
	padding: 25px 0;
	background: #002349;
}

.newsletter-social-item {
	display: inline-block;
	padding: 10px 0 0;
}

.newsletter-social-items {
	padding: 12px 0 0;
}

.newsletter-social-item:nth-child(2n) {
	padding: 0 12px;
}

.newsletter-footer-contact-social {
	padding: 15px 0;
	text-align: center;
	background: #002349;
	margin-top: 0;
}

.newsletter-footer-contact-social a {
	color: #fff;
	font-size: 20px;
	padding: 8px 0;
	width: 35px;
	height: 35px;
	display: inline-block;
	text-align: center;
	border-radius: 100%;
	background: #999999;
	margin: 0 8px;
}

.newsletter-gallery-desc.blue-bg p a {
	margin: 0;
	display: inline-block;
	padding: 0;
	line-height: 15px;
	border: 0;
	color: #fff;
	border-bottom: 1px solid;
}

.newsletter-footer-contact-wrapper {
	background: #002349;
	padding: 0 0 20px;
}

.newsletter-footer-contact-info {
	text-align: center;
}

.newsletter-footer-contact-info h2 span {
	display: block;
	font-size: 18px;
	text-transform: capitalize;
}

.newsletter-footer-contact-info a {
	display: block;
	margin: 10px auto;
	color: #fff;
}

.newsletter-footer-contact-info h2 {
	color: #fff;
	font-size: 26px;
	text-transform: uppercase;
	line-height: 30px;
	margin: 30px;
}

.newsletter-footer-contact-wrapper {
	background: #002349;
	padding: 30px 0 40px;
	border-bottom: 1px solid #666;
}

.newsletter-footer-disclaimer-wrapper {
	background: #002349;
	text-align: center;
	padding: 20px 30px;
}

.newsletter-footer-disclaimer-wrapper img {
	margin: 20px 0;
}

.newsletter-footer-disclaimer-wrapper p {
	text-align: left;
	color: #666;
	font-size: 13px;
	padding: 20px 0 0;
	line-height: 18px;
}

.page-template-template-newsletter-two .newsletter-inventory-gallery {
	text-align: center;
	padding: 25px 0 0;
}

.page-template-template-newsletter-two .newsletter-featured-property-desc p img {
  padding-bottom: 50px;
  padding-left: 20px;
}

.page-template-template-newsletter-two .newsletter-gallery-post {
	padding: 0 0 30px;
	background: #002349;
	display: flex;
	align-content: space-evenly;
}

.page-template-template-newsletter-two .newsletter-gallery-post > div:nth-child(1) {
	margin-right: 19px;
}

.page-template-template-newsletter-two .newsletter-gallery-post {
	padding: 0 0 30px;	
	display: flex;
	align-content: space-evenly;
}

.page-template-template-newsletter-two .newsletter-gallery-items.suggested-read .newsletter-gallery-post > div:nth-child(1) {
	margin-right: 0;
}

.page-template-template-newsletter-two .newsletter-gallery-items.suggested-read .newsletter-gallery-post > div:nth-child(even) {
	margin: 0 10px;
}

.newsletter-listing-item img {
	height: 152px;
	object-fit: cover;
	object-position: center;
}

.page-template-template-newsletter-two .newsletter-gallery-items.suggested-read .newsletter-gallery-post {
	background: transparent;
}

.page-template-template-newsletter-two .newsletter-gallery-undelined {
	margin-bottom: 50px;
}

.page-template-template-newsletter-two .newsletter-gallery-undelined h2 {
	text-align: center;
	font-size: 20px;
	line-height: 40px;
	font-weight: 500;
	color: #666;
	text-decoration: underline;
}

.page-template-template-newsletter-two .newsletter-gallery-undelined h2 {
	text-align: center;
}

.page-template-template-newsletter-two .newsletter-gallery-undelined h2 span {
	display: inline-block;
	text-align: center;
	font-size: 20px;
	line-height: 40px;
	border-bottom: 2px solid #666;
	color: #666;
}

.blue-bg {
	background: #002349;
	padding: 25px 30px;
}

.ig-list-wrap .ig-list img[src$="logo-header.png"]{
  height: 275px;
  object-fit: contain;
}

.page-template-template-newsletter-two #inner-page-wrapper {
	background: #002349;
	margin-bottom: 0;
	position: relative;
	z-index: 1;
	padding: 0 0 30px;
}

.page-template-template-newsletter-two .ip-banner {
	display: none;
}

.page-template-template-newsletter-two .header {
	display: none;
}

.page-template-template-newsletter-two #wwwu-section {
	display: none !important;
}

.page-template-template-newsletter-two #ftr-section {
	display: none;
}

.newsletter-inventory-desc.blue-bg {
	margin-bottom: 10px;
}

.newsletter-inventory-desc.blue-bg h2 {
	text-align: center;
	color: #fff;
	font-size: 26px;
	font-family: times new roman;
	line-height: 36px;
}

.page-template-template-newsletter-three .newletter-feat-prop-title h2 {
	text-align: center;
	padding: 30px 0 30px;
	font-size: 36px;
	font-family: times new roman;
	color: #fff;
	background: #002349;
	margin-bottom: 10px;
}

.newsletter-listings.recent-sales {
	margin-bottom: 60px;
}

.newsletter-callout-banner {
	margin-bottom: 40px;
}

.newsletter-event-desc {
	text-align: center;
	border: 2px solid #002349;
	margin-bottom: 100px;
	line-height: 30px;
}

.newsletter-event-desc h2 {
	font-size: 25px;
	background: #002349;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	padding: 30px 0;
}

.newsletter-event-desc h2 span {
	display: block;
}

.newsletter-event-desc div {
	padding: 40px 36px;
	text-transform: uppercase;
	color: #666;
	position: relative;
}

.newsletter-event-desc div.newsletter-bottom-txt {
	position: absolute;
	padding: 5px 10px;
	background: #fff;
	left: 50%;
	transform: translate(-50%,-20px);
}

.newsletter-event-banner.inner-border {
	position: relative;
}

.newsletter-event-banner.inner-border .newsletter-event-title h2 {
	text-align: center;
	font-size: 36px;
	font-family: times new roman;
	color: #002349;
	display: block;
	padding: 0 10px;
	margin: 0 auto 20px;
	max-width: 480px;
	background: #fff;
	position: relative;
	z-index: 1;
}

.newsletter-event-banner.inner-border::after {
	content: '';
	border: 2px solid;
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	max-width: 88%;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 0;
}

.newsletter-event-banner.inner-border  .newsletter-event-desc {
	border: 0;
	max-width: 85%;
	display: block;
	margin: 0 auto;
}

.newsletter-event-banner.inner-border .newsletter-event-desc p {
	font-size: 15px;
	text-transform: none;
	font-weight: 100;
	line-height: 25px;
}

.newsletter-event-banner.inner-border .newsletter-event-title {
	position: relative;
	top: -15px;
}

.newsletter-event-banner.inner-border img {
	width: 100%;
	z-index: 2;
	position: relative;
}

.newsletter-event-gallery-items {
	display: flex;
	justify-content: space-between;
}

.newsletter-event-gallery-items .newsletter-event-gallery-item {
	width: calc(100% / 2 - 8px);
	font-size: 0;
}

.newsletter-event-gallery-items .newsletter-event-gallery-item img {
	width: 100%;
	height: 312px;
	object-fit: cover;
}

.newsletter-event-gallery {
	margin: 100px 0;
	position: relative;
}

.newsletter-event-gallery-desc {
	background: #001c3b;
	padding: 30px;
	height: 300px;
}

.newsletter-event-gallery-desc p {
	color: #fff;
	font-size: 15px;
	font-weight: 100;
	line-height: 23px;
}

.newsletter-event-gallery-title {
	font-size: 36px;
	text-transform: uppercase;
	text-align: center;
	font-family: times new roman;
	color: #fff;
	background: rgba(0,0,0,.5);
	position: absolute;
	padding: 15px 20px;
	top: calc(50% - 96px);
	left: 50%;
	transform: translate(-50%);
	width: 100%;
	max-width: 70%;
}

.newsletter-event-gallery-float {
	position: relative;
	margin-bottom: 150px;
}

.newsletter-event-gallery-float img {
	width: 100%;
}

.newsletter-event-gallery-float .newsletter-event-gallery-float-desc {
	position: absolute;
	background: #002349;
	max-width: 90%;
	padding: 20px;
	text-align: center;
	left: 50%;
	transform: translate(-50%);
	width: 100%;
	border: 10px solid #fff;
	color: #fff;
	margin-top: -70px;
}

.newsletter-gallery-wrapper.gallery-01 {
	margin-bottom: 80px;
}

.newsletter-gallery-wrapper.gallery-01 a {
  max-width: 300px;
  font-size: 13px;
  text-transform: uppercase;
  border-color: #a8a8a8;
}

.newsletter-gallery-wrapper.gallery-02 {
	font-size: 0;
}

.newsletter-gallery-wrapper.gallery-03 {
	margin-top: 30px;
	font-size: 0;
	margin-bottom: 50px;
}

.page-template-template-newsletter-three .newsletter-gallery-wrapper.gallery-04 .newletter-feat-prop-title h2 {
	color: #002349;
	background: transparent;
}

.page-template-template-newsletter-three .newsletter-gallery-undelined {
  text-align: center;
}

.page-template-template-newsletter-three .newsletter-gallery-undelined h2 {
	padding: 0 20px;
}

.page-template-template-newsletter-three .newsletter-gallery-undelined h2 span {
	display: inline-block;
	text-align: center;
	font-size: 20px;
	line-height: 40px;
	border-bottom: 2px solid #666;
	color: #666;
}

.newsletter-gallery-wrapper.gallery-04 {
	padding-bottom: 80px;
}

.page-template-template-newsletter-three .newsletter-social-items {
	padding: 12px 0 0;
	font-size: 0;
	display: flex;
	justify-content: space-evenly;
	align-items: baseline;
}

.page-template-template-newsletter-three .newsletter-social-item {
	padding: 0;
}

.page-template-template-newsletter-three .newsletter-social-wrapper {
	padding-bottom: 10px;
}

.page-template-template-newsletter-three #inner-page-wrapper {
	background: #002349;
	margin-bottom: 0;
	position: relative;
	z-index: 1;
	padding: 0 0 30px;
}

.page-template-template-newsletter-three .ip-banner {
	display: none;
}

.page-template-template-newsletter-three .header {
	display: none;
}

.page-template-template-newsletter-three #wwwu-section {
	display: none !important;
}

.page-template-template-newsletter-three #ftr-section {
	display: none;
}


.page-template-template-newsletter-four #inner-page-wrapper {
	background: #002349;
	margin-bottom: 0;
	position: relative;
	z-index: 1;
	padding: 0 0 30px;
}

.page-template-template-newsletter-four .ip-banner {
	display: none;
}

.page-template-template-newsletter-four .header {
	display: none;
}

.page-template-template-newsletter-four #wwwu-section {
	display: none !important;
}

.page-template-template-newsletter-four #ftr-section {
	display: none;
}

.newsletter-event-banner.event-first .newsletter-event-desc.blue-bg h2 {
	font-family: times new roman;
	font-weight: 100;
	font-size: 50px;
	line-height: 50px;
}

.newsletter-event-banner.event-first .newsletter-event-desc.blue-bg h2 span {
	font-size: 28px;
	line-height: 35px;
	margin-top: 5px;
}

.newsletter-event-banner.event-first .newsletter-event-desc.blue-bg p {
	font-size: 15px;
	text-transform: none;
	margin-bottom: 20px;
	color: #fff;
	text-align: left;
	line-height: 26px;
	text-align: justify;
}

.newsletter-event-banner.event-first .newsletter-event-desc.blue-bg div {
	padding: 0 10px 20px;
}

.newsletter-event-banner.event-first .newsletter-event-desc.blue-bg {
	padding-bottom: 0;
}

.newsletter-event-banner.event-first .newsletter-event-banner.event-first img {
	margin-bottom: -12px;
}

.newsletter-event-banner.inner-border-full .newsletter-event-title {
	background: #002349;
	max-width: 90%;
	padding: 15px 0;
	margin: 0 auto -45px;
	border: 5px solid #fff;
	position: relative;
	z-index: 2;
}

.newsletter-event-banner.inner-border-full .newsletter-event-title h2 {
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
	font-family: times new roman;
	font-weight: 500;
	color: #fff;
}

.newsletter-event-banner.inner-border-full .newsletter-event-desc {
	padding: 60px 10px 30px;
}

.newsletter-event-banner.inner-border-full .newsletter-event-desc div {
	padding: 40px 36px 0;
}

.newsletter-event-banner.inner-border-full .newsletter-event-desc p, .newsletter-event-banner.inner-border-full .newsletter-event-desc p span {
	display: block;
	text-transform: none;
}

.newsletter-event-banner.inner-border-full .newsletter-event-desc p {
	margin-bottom: 20px;
	line-height: 24px;
}

.newsletter-event-banner.inner-border-full .newsletter-event-desc p span {
	font-weight: 600;
	margin-bottom: 30px;
}

.newsletter-event-banner.event-first .newsletter-event-desc.blue-bg img {
	margin-bottom: -12px;
}

.newsletter-event-banner.event-second {
	font-size: 0;
}

.newsletter-event-banner.event-second .newsletter-event-desc h2 {
	background: transparent;
	color: #002349;
	font-family: times new roman;
	font-size: 36px;
	font-weight: 100;
	letter-spacing: 2px;
	line-height: 34px;
	padding-bottom: 0;
	padding-top: 0;
}

.newsletter-event-banner.event-second .newsletter-event-desc div:nth-child(2) {
	padding: 30px 36px 40px;
}

.newsletter-event-banner.event-second .newsletter-event-desc div p {
	font-size: 15px;
	text-transform: none;
	text-align: left;
	margin-bottom: 20px;
}

.page-template-template-newsletter-four .newsletter-event-banner > img {
	width: 100%;
}

.newsletter-event-banner.event-second .newsletter-event-desc > img {
  max-width: 415px;
  position: absolute;
  transform: translate(-50%,-40px);
}

.newsletter-gallery-items-flex {
	display: flex;
	justify-content: space-between;
}

.newsletter-gallery-wrapper.gallery-05 {
	font-size: 0;
	margin-bottom: 50px;
}

.newsletter-gallery-wrapper.gallery-06 {
	margin: 30px 0;
}

.newsletter-gallery-wrapper.gallery-07 {
	margin: 30px 0 50px;
}

.newsletter-gallery-wrapper.gallery-07 p strong {
	color: #002349;
}

.newsletter-gallery-wrapper.gallery-07 .newsletter-gallery-desc ol {
  padding: 0 30px 0 45px;
  list-style: decimal;
}

.newsletter-gallery-wrapper.gallery-07 .newsletter-gallery-desc ol li {
	margin-bottom: 10px;
	font-size: 15px;
	color: #666;
	line-height: 22px;
	text-align: justify;
}

.newsletter-gallery-wrapper.gallery-07 a {
	margin: 40px 20px 0 40px;
}

.page-template-template-newsletter-four .newsletter-social-wrapper {
	font-size: 0;
}

.page-template-template-newsletter-four .newsletter-social-items {
	padding: 12px 0 0;
	display: flex;
	align-items: baseline;
}

.page-template-template-newsletter-four .newsletter-social-items {
	padding: 0 0 0;
}

.page-template-template-newsletter-four .newsletter-social-wrapper {	
	margin-bottom: 10px;
}

.page-template-template-newsletter-five .newsletter-wrap {
	padding: 0;
}

.page-template-template-newsletter-five .newsletter-welcome img {	
	width: 100%;
}

.page-template-template-newsletter-five .ip-banner {
	display: none;
}

.page-template-template-newsletter-five .fixed-header.active {	
	display: none;
}

.page-template-template-newsletter-five #wwwu-section {
	display: none !important;
}

.page-template-template-newsletter-five #ftr-section {
	display: none;
}

.page-template-template-newsletter-five .newsletter-header {
	background: transparent;
	padding: 0;
}

.page-template-template-newsletter-five .newsletter-social-title {	
	background: transparent;
}

.page-template-template-newsletter-five #inner-page-wrapper {
	background: #f3f5f6;
}

.page-template-template-newsletter-five .newsletter-featured-property-misc {
	position: relative;	
	background: transparent;
	width: 100%;
}

.page-template-template-newsletter-five .newsletter-featured-property-misc h2 {	
	letter-spacing: 1px;
	text-align: center;
	padding: 0 0 25px;
	font-size: 30px;
	font-family: times new roman;
	color: #002349;
}

.page-template-template-newsletter-five .newsletter-featured-property-desc > strong {	
	color: #002349;	
}

.page-template-template-newsletter-five .newsletter-featured-property-desc {
	padding: 20px 30px 20px;
}

.page-template-template-newsletter-five .newsletter-featured-property-item > img {
	margin: 0 auto;
	display: block;
}

.page-template-template-newsletter-five .newsletter-featured-property-desc li strong {
	display: unset;
}

.page-template-template-newsletter-five .newsletter-featured-property-desc ul {
	list-style: disc;
	padding-left: 20px;
}

.page-template-template-newsletter-five .newsletter-featured-property-desc li {
	color: #666;
}

.page-template-template-newsletter-five .newsletter-event-banner.event-first .newsletter-event-desc.blue-bg img {
	margin-bottom: 0;
	width: 100%;
}

.page-template-template-newsletter-five .newsletter-event-banner.event-first .newsletter-event-desc.blue-bg {
	padding-bottom: 0;
	padding: 25px 0 0;
	border: 0 none;
	margin-bottom: 0;
	background: transparent;
}

.page-template-template-newsletter-five .newsletter-event-banner.event-first .newsletter-event-desc.blue-bg h2 {
	letter-spacing: 1px;
	text-align: center;
	padding: 0 0 25px;
	font-size: 30px;
	font-family: times new roman;
	color: #002349;
	background: transparent;
	font-weight: normal;
	text-transform: capitalize;
	line-height: 1;
}

.page-template-template-newsletter-five .newsletter-event-banner.inner-border-full .newsletter-event-title {
	background: transparent;	
	padding: 15px 0;
	margin: 0 auto 0;
	max-width: 100%;
}

.page-template-template-newsletter-five .newsletter-event-banner.inner-border-full .newsletter-event-title h2 {
	letter-spacing: 1px;
	text-align: center;
	padding: 0 0 25px;
	font-size: 30px;
	font-family: times new roman;
	color: #002349;
	text-transform: capitalize;
}

.page-template-template-newsletter-five .newsletter-event-banner.event-first .newsletter-event-desc.blue-bg p {
	font-size: 15px;
	text-transform: none;
	margin-bottom: 20px;
	color: #666;
	text-align: left;
	line-height: 26px;
	text-align: justify;
	margin-top: 20px;
}

.page-template-template-newsletter-five .newletter-feat-prop-title h2 {
	text-align: center;
	padding: 0 0 25px;
	font-size: 36px;
	font-family: times new roman;
	color: #002349;
}

.page-template-template-newsletter-five .newsletter-event-banner.inner-border-full .newsletter-event-desc div {
	padding: 0;
}

.page-template-template-newsletter-five .newsletter-featured-property-desc a {
	border: 1px solid #002349;
	color: #fff;
	padding: 15px 0;
	text-transform: uppercase;
	display: inline-block;
	background: #002349;
	margin: 0 auto;
	display: block;
	max-width: 160px;
	text-align: center;
}

.page-template-template-newsletter-five .newsletter-event-banner.inner-border-full .newsletter-event-desc {
	padding: 20px 30px 20px;
	border: 0 none;
	text-align: left;
	margin-bottom: 0;
}

.page-template-template-newsletter-five .newsletter-event-banner.event-first .newsletter-event-desc.blue-bg div {
	padding: 0 30px 20px;
}

.page-template-template-newsletter-five .newsletter-featured-property-desc li strong {
	color: #002349;
	font-weight: normal;
}

.short-spacer {
	margin: 0 auto;
	display: block;
}

.page-template-template-newsletter-five .newsletter-event-desc div {
	padding: 20px 36px 0;
	text-transform: uppercase;
	color: #666;
	position: relative;
}

.page-template-template-newsletter-five .newsletter-event-desc div.newsletter-event-title strong {
	font-size: 15px;
	text-align: left;
	display: block;
}

.page-template-template-newsletter-five .newsletter-event-desc {
	text-align: center;
	border: 0 none;
	margin-bottom: 100px;
	line-height: 30px;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-03 {
	text-align: center;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-01 .newsletter-event-title h2 {
	letter-spacing: 1px;
	text-align: center;
	padding: 0 0 25px;
	font-size: 30px;
	font-family: times new roman;
	color: #002349;
	text-transform: capitalize;
}

.page-template-template-newsletter-five .newsletter-event-desc {	
	margin-bottom: 30px;	
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-01 {
	margin-bottom: 30px;
}

.page-template-template-newsletter-five .newsletter-gallery-desc a {
	border: 1px solid #002349;
	color: #fff !important;
	padding: 15px 0;
	text-transform: uppercase;
	display: inline-block;
	background: #002349;
	margin: 0 auto;
	display: block;
	max-width: 160px;
	text-align: center;
	font-size: 14px;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-04 img {
	margin: 0 auto 5px;
	width: 100%;
	max-width: calc(100% - 60px);
	display: block;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-04 {
	padding-bottom: 30px;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-05 {
	font-size: 0;
	margin-bottom: 50px;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-05 img {
	width: 100%;
	max-width: calc(100% - 60px);
	margin: 0 auto;
	display: block;
}

.page-template-template-newsletter-five .newsletter-gallery-desc.blue-bg {
	background: transparent;
	padding: 25px 30px 0;
}

.page-template-template-newsletter-five .newsletter-gallery-desc.blue-bg p{
	color:#666666;
	text-align: left;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-05 ul li {
	color: #666;
	font-size: 14px;
	font-weight: 100;
	letter-spacing: 2px;
	line-height: 20px;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-05 ul {
	padding-left: 20px;
	list-style: disc;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-06 .newsletter-gallery-desc p {
	padding: 5px 30px 0;	
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-06 {
	margin: 30px 0;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-06 .newsletter-event-title h2 {
	letter-spacing: 1px;
	text-align: center;
	padding: 0 0 25px;
	font-size: 30px;
	font-family: times new roman;
	color: #002349;
	text-transform: capitalize;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-05 .newsletter-gallery-desc.blue-bg a {
	max-width: 300px;
	margin-top: 50px;
	margin-bottom: 30px;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-06 strong {
	color: #002349;
	font-weight: normal;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-07 span {
	text-transform: uppercase;
	color: #333;
	font-size: 12px;
	margin-bottom: 30px;
	display: block;
	padding-left: 30px;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-07 h2 {
	font-size: 28px;
	padding-left: 30px;
	font-family: times new roman;
	color: #002349;
	text-transform: capitalize;
}

.page-template-template-newsletter-five .newsletter-footer-contact-wrapper {
	background: transparent;
	padding: 0;
	border-bottom: 0 none;
}

.page-template-template-newsletter-five .newsletter-footer-contact-social {	
	background: transparent;	
}

.page-template-template-newsletter-five .newsletter-footer-disclaimer-wrapper {
	background: transparent;	
}

.page-template-template-newsletter-five .newsletter-footer-disclaimer-wrapper p {
	text-align: center;
}

.page-template-template-newsletter-five .newsletter-gallery-wrapper.gallery-02 {
	text-align: center;
}

.page-template-template-newsletter-five .newsletter-footer-contact-social a {
	color: #666666;
	font-size: 34px;
	padding: 8px 0;
	width: auto;
	height: auto;
	display: inline-block;
	text-align: center;
	border-radius: 100%;
	background: transparent;
	margin: 0 50px;
}

.page-template-template-newsletter-five .newsletter-event-desc a {
	border: 1px solid #002349;
	color: #fff;
	padding: 15px 0;
	text-transform: uppercase;
	display: inline-block;
	background: #002349;
	margin: 0 auto;
	display: block;
	max-width: 240px;
	text-align: center;
	font-size: 16px;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  top: auto;
  width: auto;
}

.slide-nav-wrapp .use-floating-validation-tip .wpcf7-not-valid-tip{
  left: 20%;
  border: 1px solid #dc3232;
  background: #fff;
  top: 20%;
  padding: 3px;
  width: auto;
  font-size: 12px;
}

.slide-nav-active{
  overflow: hidden;
}





body #agents-single ul.agents-contact li > div {
  text-align: center;
}

body #agents-single .agents-contact li > div > span {
  float: none;
}


.single-aios-agents .aios-popup-body .aiosp-close {
  top: 15px!important;
  right: 15px!important;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form form .wpcf7-spinner {
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form form {
  position: relative;
}

body .agents-popup-form .wpcf7 form .wpcf7-response-output {
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  margin: 0 auto;
  font-size: 11px;
}


body .aiosp-wrap .aiosp-ref-\#agents-popup-form .aios-popup-body {
  width: 100%!important;
  max-width: 555px!important;
  padding: 40px 15px!important;
}

body .aiosp-container.aiosp-inline-holder[class*="agents-popup-form"] {
  padding: 0 6px;
}

body .agents-popup-form .wpcf7-not-valid-tip {
  top: 20%;
  left: 20%;
  right: auto;
  width: auto!important;
}

#ihf-main-container span.glyphicon.glyphicon-remove-circle {
  color: #fff!important;
}


body #listings-details .listings-form textarea::-webkit-scrollbar{
  display: none;
}


body #listings-details .listings-form textarea {
  padding-right: 40px;
}

body #listings-details .listings-form div.wpcf7-response-output {
  position: absolute;
  bottom: -42px;
  left: 0;
  width: 100%;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.2;
}

body #listings-details .listings-form form {
  position: relative;
}

body #listings-details .listings-form span.wpcf7-not-valid-tip {
  position: absolute;
  top: 20%!important;
  left: 20%!important;
  right: auto!important;
  width: auto!important;
  font-size: 11px!important;
  padding: 3px;
  line-height: 1;
}

body #listings-details .listings-form form .wpcf7-spinner {
  position: absolute;
    bottom: -35px;
    right: 0;
    left: auto;
    margin: 0;
}

a.hp-link.w-auto {
    width: max-content;
    max-width: unset;
    line-height: 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 25px;
    height: auto;
}

#aios-testimonials .ai-testimonials-pagination ul li:has(.prev) + li {
  border-left: none;
}

#aios-testimonials .ai-testimonials-pagination ul li:has(.next) {
  border-left: none;
}

#aios-testimonials .ai-testimonials-pagination ul li a.prev,
#aios-testimonials .ai-testimonials-pagination ul li a.next {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s ease-in-out;
  width: 46px;
  height: 44px;
  background: var(--aios-testimonials-primary);
  color: #fff;
}