/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Variables
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
|
| This file holds all of the variables for the site.
| 1. Fonts
| 2. Colors
| 3. Color Variations
| 4. Transparent Colors
| 5. Color List
| 6. Screen Sizes / Breakpoints
|
*/
/*
| 1. Fonts
| --------------------------------------------------
| These font variables are used to hold the values for
| the sitewide fonts used on the project.
|
*/
/*
| 2. Colors
| --------------------------------------------------
| The variables are used to store the color theme for
| the site.
|
*/
/*
| 3. Color Variations
| --------------------------------------------------
| These color variations are auto generated by the
| following functions below.
*/
/*
| 4. Transparent Colors
| --------------------------------------------------
| These transparent colors are auto generated by the
| following functions below.
*/
/*
| 5. Colors List
| --------------------------------------------------
| This list is used for building out the various
| classes for using colors accross the site, classes
| for type, background colors, etc.
*/
/*
| 6. Screen Sizes / Breakpoints
| --------------------------------------------------
| Breakpoint variables in pixel widths for media queries.
|
*/
/*
| Extra small mobile
*/
/*
| Mobile
*/
/*
| Tablet
*/
/*
| Middle Sized Devices
*/
/*
| Small Laptop
*/
/*
| Large Laptop / Desktop
*/
/*
| Large Desktop
*/
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Mixins
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
| 1. Resets
| 2. Positioning
|
| Notes: Define patterns of property value pairs, which can then be reused in other rule sets
|
*/
/*
| Font Smoothing
| --------------------------------------------------
|
| Aligns most of the browsers with the same font antialiasing.
|
*/
/*
| Strict Button Style
| --------------------------------------------------
|
| Sets the button style appearance to none for various
| mobile browsers and OS's that will auto change the styling
|
*/
/*
| Positioning
| --------------------------------------------------
|
| The following mixins are used for positioning elements
| via the absolute rule
|
*/
/*
| Transition
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| transition property
|
*/
/*
| Box Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| box-shadow property
|
*/
/*
| Text Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| text-shadow property
|
*/
/*
| SVG Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| filter property
|
*/
/*
| Responsive Media Query Mixins
| --------------------------------------------------
|
| The following mixins are used for applying various
| media queries and specified breakpoints
|
*/
/*
| Transparent Colors
| --------------------------------------------------
|
| Function for creating transparent colors.
|
*/
/*
| Gradient Backgrounds
| --------------------------------------------------
|
| Mixin for creating gradient backgrounds
| @include bg-gradient(fn-transparent-color($color-black, 1), fn-transparent-color($color-black, 0), top, bottom, 0%, 100%);
|
*/
/*
| Rotation
| --------------------------------------------------
|
| Mixin for applying the correct browser prefixes for the
| transform: rotate property
|
*/
/*
| Keyframe animations
| --------------------------------------------------
| Mixin for applying animations to elements
|
*/
.amenities-section {
  position: relative;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .amenities-section {
    margin-bottom: 0;
  }
}
.amenities-section .amenities-section-content {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .amenities-section .amenities-section-content {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.amenities-section .amenities-section-content:before {
  content: "";
  position: absolute;
  top: 0;
  right: 40%;
  left: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/client-theme/images/global/gold-circle-light.svg");
  background-size: 70px;
  background-attachment: fixed;
  z-index: -1;
}
@media (max-width: 1024px) {
  .amenities-section .amenities-section-content:before {
    right: 0;
  }
}
.amenities-section .amenities-section-content .fs-image {
  position: absolute;
  left: 0;
  top: 6rem;
  bottom: 6rem;
  width: 45%;
  z-index: 1;
  margin: 0;
}
@media (max-width: 1024px) {
  .amenities-section .amenities-section-content .fs-image {
    position: relative;
    height: 400px;
    width: 100%;
    left: 0;
    top: 0;
  }
}
.amenities-section .amenities-section-content .fs-text {
  position: relative;
  width: 900px;
  max-width: 60%;
  display: flex;
  justify-content: center;
  /* align-items: flex-start; */
  flex-direction: column;
  min-height: 60vh;
  margin-left: 42%;
  background-color: #b2945b;
  padding: 75px 150px 100px;
  z-index: 0;
  border-radius: 0 300px;
}
@media (max-width: 1248px) {
  .amenities-section .amenities-section-content .fs-text {
    padding: 75px 75px 100px;
  }
}
@media (max-width: 1024px) {
  .amenities-section .amenities-section-content .fs-text {
    min-height: 0;
    padding: 2rem 4rem 3rem;
    width: 100%;
    max-width: 600px;
    transform: translate(0) !important;
    margin: 2rem auto 0;
    border-radius: 0 150px;
  }
}
@media (max-width: 640px) {
  .amenities-section .amenities-section-content .fs-text {
    align-items: center;
    text-align: center;
  }
}
.amenities-section .amenities-section-content .fs-text .fs-title {
  margin-bottom: 2rem;
  /* color: $color-white; */
  display: block;
}
.amenities-section .amenities-section-content .fs-text p {
  color: #000000;
}
.amenities-section .amenities-section-content .fs-text p.disclaimer {
  font-size: 0.75em;
  text-align: right;
  width: 100%;
}
.amenities-section .amenities-section-content .fs-text ul {
  text-align: left;
}
.amenities-section .amenities-section-content .fs-text .fs-links {
  margin-top: 2rem;
}
.amenities-section .amenities-section-content .fs-text .fs-link {
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 1rem;
  color: #b2945b;
  display: inline-block;
  border: 2px solid #b2945b;
  padding: 1.25rem 1.5rem;
  border-radius: 30px 0;
  text-decoration: none;
  font-size: 1.25em;
  min-width: 270px;
}
.amenities-section .amenities-section-content .fs-text .fs-link:hover {
  background-color: #b2945b;
  color: #ffffff;
  border-radius: 0 30px;
}
.amenities-section.reverse .amenities-section-content {
  /* &:before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% + 80px);
    right: 0;
    bottom: 0;
    @include mq-md {
      left: 0;
      right: 0;
      bottom: 50%;
    }
  }
  &:after {
    right: calc(50% + 500px);
    left: 0;
    @include mq-md {
      top: 50%;
      right: 0;
      left: 0;
    }
  } */
}
.amenities-section.reverse .amenities-section-content .fs-image {
  left: auto;
  right: 0;
}
@media (max-width: 768px) {
  .amenities-section.reverse .amenities-section-content .fs-image {
    position: relative;
    height: 400px;
    width: 100%;
    left: 0;
    top: 0;
  }
}
.amenities-section.reverse .amenities-section-content .fs-text {
  margin-left: auto;
  margin-right: 42%;
}
@media (max-width: 1024px) {
  .amenities-section.reverse .amenities-section-content .fs-text {
    min-height: 0;
    padding: 2rem 4rem 3rem;
    width: 100%;
    max-width: 600px;
    transform: translate(0) !important;
    margin: 2rem auto 0;
    border-radius: 0 150px;
  }
}
.amenities-section.reverse .amenities-section-content:before {
  left: 40%;
  right: 0;
}
@media (max-width: 1024px) {
  .amenities-section.reverse .amenities-section-content:before {
    left: 0;
  }
}

.flats .amenities-section .amenities-section-content .fs-text {
  background-color: #808082;
}
.flats .amenities-section .amenities-section-content:before {
  background-image: url("/wp-content/themes/client-theme/images/global/grey-pattern.svg");
  background-size: 300px;
}

.fp-disclaimer {
  width: 100%;
  min-height: 4rem;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .fp-disclaimer {
    padding: 0 1rem 1rem;
  }
}
.fp-disclaimer a.arrowlink {
  font-size: 2rem;
  line-height: 1.125em;
  margin-bottom: 1rem;
  font-weight: 600;
  display: block;
}
@media (max-width: 640px) {
  .fp-disclaimer a.arrowlink {
    font-size: 1.5rem;
  }
}
.fp-disclaimer p {
  font-size: 0.75rem;
  line-height: 1.125rem;
}

/*# sourceMappingURL=villas-flats.css.map */
