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

/*
|--------------------------------------------------------------------------
| Variables
| Author: P11
| Visit us: @ p11.com
|--------------------------------------------------------------------------
/* GLOBAL*/
/* FONTS*/
/* COLORS */
/* BREAKPOINTS */
/* 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
|
*/
/* BLOCKS */
.feature-section {
  overflow: hidden;
}
.feature-section .feature-section-content {
  display: block;
  min-height: 0;
  position: relative;
}
.feature-section .feature-section-content .feature-section-image {
  position: relative;
  height: 70vh;
  min-height: 500px;
  width: 75%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .feature-section .feature-section-content .feature-section-image {
    height: 45vh;
    min-height: 0;
  }
}
@media (max-width: 640px) {
  .feature-section .feature-section-content .feature-section-image {
    height: 30vh;
  }
}
.feature-section .feature-section-content .feature-section-image:nth-of-type(2) {
  position: absolute;
  top: 10vh;
  top: clamp(100px, 10vh, 100vh);
  right: 0;
  width: 45%;
  min-height: 550px;
  height: 75vh;
  border: 2rem solid #ffffff;
  border-right: none;
  overflow: hidden;
  opacity: 1;
}
@media (max-width: 768px) {
  .feature-section .feature-section-content .feature-section-image:nth-of-type(2) {
    top: clamp(40px, 4vh, 100vh);
    min-height: 0;
    height: 55vh;
    border-width: 1rem;
  }
}
@media (max-width: 640px) {
  .feature-section .feature-section-content .feature-section-image:nth-of-type(2) {
    height: 40vh;
    top: clamp(30px, 3vh, 100vh);
  }
}
.feature-section .feature-section-content .feature-section-image:nth-of-type(2) .angle {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  z-index: 100;
  width: 150px;
  height: 100px;
  background: #ffffff;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  pointer-events: none;
}
@media (max-width: 640px) {
  .feature-section .feature-section-content .feature-section-image:nth-of-type(2) .angle {
    width: 100px;
    height: 50px;
    transform: translateY(0) translateX(0);
  }
}
.feature-section .feature-section-content .feature-section-image .slide {
  backface-visibility: hidden;
}
.feature-section .feature-section-content .feature-section-image .feature-gallery-info {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
  padding: 0.5rem 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feature-section .feature-section-content .feature-section-image .feature-gallery-info .feature-gallery-nav {
  display: inline-block;
}
.feature-section .feature-section-content .feature-section-image .feature-gallery-info .feature-gallery-nav .feature-gallery-prev,
.feature-section .feature-section-content .feature-section-image .feature-gallery-info .feature-gallery-nav .feature-gallery-next {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #003d3d;
  font-weight: 400;
}
.feature-section .feature-section-content .feature-section-image .feature-gallery-info .feature-gallery-nav .feature-gallery-prev:hover,
.feature-section .feature-section-content .feature-section-image .feature-gallery-info .feature-gallery-nav .feature-gallery-next:hover {
  color: #d6c794;
}
.feature-section .feature-section-content .feature-section-image .feature-gallery-info .feature-gallery-caption {
  font-size: 0.85rem;
  text-transform: uppercase;
  display: inline-block;
  color: #003d3d;
  font-weight: 400;
}
.feature-section .feature-section-content .feature-section-text {
  width: 55%;
  padding: 6rem 4rem 4rem 4rem;
  min-height: 0;
  display: block;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
@media (max-width: 768px) {
  .feature-section .feature-section-content .feature-section-text {
    width: 100%;
    padding: 8rem 2rem 0;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .feature-section .feature-section-content .feature-section-text {
    padding: 7rem 1rem 0;
  }
}
.feature-section .feature-section-content .feature-section-text .overlay {
  z-index: -1;
  mix-blend-mode: multiply;
  opacity: 0.95;
}
.feature-section .feature-section-content .feature-section-text h2, .feature-section .feature-section-content .feature-section-text h3, .feature-section .feature-section-content .feature-section-text h4, .feature-section .feature-section-content .feature-section-text h5, .feature-section .feature-section-content .feature-section-text h6 {
  margin-top: 1rem;
}
@media (max-width: 640px) {
  .feature-section .feature-section-content .feature-section-text h2, .feature-section .feature-section-content .feature-section-text h3, .feature-section .feature-section-content .feature-section-text h4, .feature-section .feature-section-content .feature-section-text h5, .feature-section .feature-section-content .feature-section-text h6 {
    margin-top: 0;
    padding: 0 1rem;
  }
}
.feature-section .feature-section-content .feature-section-text .feature-section-text-title {
  margin: 0 0 1rem 0;
}
.feature-section .feature-section-content .feature-section-text.split-list {
  width: 100%;
}
.feature-section .feature-section-content .feature-section-text.split-list .feature-section-text-text {
  column-count: 2;
  column-gap: 2rem;
  column-fill: balance;
}
@media (max-width: 768px) {
  .feature-section .feature-section-content .feature-section-text.split-list .feature-section-text-text {
    column-count: 1;
  }
}
.feature-section .feature-section-content .feature-section-text.split-list .feature-section-text-text li {
  break-inside: avoid;
  page-break-inside: avoid;
}
.feature-section .feature-section-content .feature-section-text p {
  line-height: 1.75em;
}
.feature-section .feature-section-content .feature-section-text p.disclaimer {
  font-size: 0.85em;
  text-align: right;
  margin-bottom: 0;
}
.feature-section .feature-section-content .feature-section-text ul {
  margin-top: 1rem;
  padding-top: 0;
  padding-bottom: 0;
}
.feature-section .feature-section-content .feature-section-text ul li {
  margin: 0 0 0.75rem 0;
  line-height: 1.125em;
}
.feature-section .feature-section-content .feature-section-text-links {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  width: fit-content;
}
@media (max-width: 1024px) {
  .feature-section .feature-section-content .feature-section-text-links {
    right: 0;
  }
}
@media (max-width: 768px) {
  .feature-section .feature-section-content .feature-section-text-links {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 1rem auto 0;
  }
}
.feature-section .feature-section-content .feature-section-text-links a {
  margin: 0 auto;
  width: fit-content;
  margin: 1rem 0.5rem 0.5rem;
  display: inline-block;
}
.feature-section .feature-section-content.bgaccent .feature-section-image .angle {
  background-color: #d6c794 !important;
}
.feature-section.reverse .feature-section-content .feature-section-image:first-child {
  float: right;
}
.feature-section.reverse .feature-section-content .feature-section-image:nth-child(2) {
  right: auto;
  left: 0;
  border: 2rem solid #ffffff;
  border-left: none;
}
@media (max-width: 768px) {
  .feature-section.reverse .feature-section-content .feature-section-image:nth-child(2) {
    border-width: 1rem;
  }
}
.feature-section.reverse .feature-section-content .feature-section-image:nth-child(2) .angle {
  left: auto;
  right: -1px;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
}
.feature-section.reverse .feature-section-content .feature-section-text {
  float: right;
}
.feature-section.reverse .feature-section-content .feature-section-text-links {
  right: auto;
  left: 4rem;
}
@media (max-width: 1024px) {
  .feature-section.reverse .feature-section-content .feature-section-text-links {
    left: 0;
  }
}
@media (max-width: 768px) {
  .feature-section.reverse .feature-section-content .feature-section-text-links {
    left: auto;
  }
}
.feature-section.full-width {
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 768px) {
  .feature-section.full-width {
    margin-bottom: 0;
  }
}
.feature-section.full-width.no-texture .feature-section-content .feature-texture {
  display: none;
}
.feature-section.full-width.no-texture .feature-section-content .feature-section-image {
  top: 0;
  border-top: 0;
  border-bottom: 0;
}
@media (max-width: 768px) {
  .feature-section.full-width.no-texture .feature-section-content .feature-section-image {
    width: 100%;
    border: 0;
  }
}
.feature-section.full-width .feature-section-content {
  position: relative;
  display: flex;
  flex-direction: column;
}
.feature-section.full-width .feature-section-content .feature-texture {
  position: absolute;
  top: 0;
  left: 0;
  height: 65vh;
}
@media (max-width: 768px) {
  .feature-section.full-width .feature-section-content .feature-texture {
    height: 65vw;
  }
}
@media (max-width: 640px) {
  .feature-section.full-width .feature-section-content .feature-texture {
    height: 220px;
  }
}
.feature-section.full-width .feature-section-content .feature-section-image {
  position: relative;
  width: calc(100% - 8rem);
  height: 60vh;
  min-height: 500px;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 768px) {
  .feature-section.full-width .feature-section-content .feature-section-image {
    width: calc(100% - 4rem);
    height: 85vw;
    min-height: 0;
  }
}
@media (max-width: 640px) {
  .feature-section.full-width .feature-section-content .feature-section-image {
    width: calc(100% - 2rem);
    height: 55vw;
  }
}
.feature-section.full-width .feature-section-content .feature-section-image .angle {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  z-index: 100;
  width: 150px;
  height: 100px;
  background: #ffffff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .feature-section.full-width .feature-section-content .feature-section-image .angle {
    width: 21vw;
    height: 17vw;
  }
}
@media (max-width: 640px) {
  .feature-section.full-width .feature-section-content .feature-section-image .angle {
    transform: translateY(0) translateX(0);
  }
}
.feature-section.full-width .feature-section-content .feature-section-image:nth-of-type(2) .angle {
  right: auto;
  left: -1px;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}
.feature-section.full-width .feature-section-content .feature-intro {
  position: relative;
  width: 100%;
  padding: 4rem 1rem 0;
  text-align: center;
  z-index: 2;
}
@media (max-width: 768px) {
  .feature-section.full-width .feature-section-content .feature-intro {
    padding: 2rem 1rem 0;
  }
}
.feature-section.full-width .feature-section-content .feature-intro .feature-intro-content h2.section-title {
  position: relative;
  padding: 0;
  margin: 0;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .feature-section.full-width .feature-section-content .feature-intro .feature-intro-content h2.section-title {
    margin-bottom: 2rem;
  }
}
.feature-section.full-width .feature-section-content .feature-section-text {
  position: relative;
  width: 100%;
  z-index: 2;
  padding-top: 4em;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.feature-section.full-width .feature-section-content .feature-section-text:not([class*=padb]) {
  padding-bottom: 0;
}
@media (max-width: 640px) {
  .feature-section.full-width .feature-section-content .feature-section-text {
    padding: 2rem 0;
  }
}
.feature-section.full-width .feature-section-content .feature-section-text .feature-section-text-content {
  padding: 0 2rem;
}
@media (max-width: 640px) {
  .feature-section.full-width .feature-section-content .feature-section-text .feature-section-text-content {
    padding: 0 1rem;
  }
}
.feature-section.full-width .feature-section-content .feature-section-text-links {
  position: relative;
  width: 100%;
  z-index: 1;
  display: block;
  right: auto;
  bottom: auto;
  text-align: center;
  margin-top: 2rem;
}

/*# sourceMappingURL=content-feature-section.css.map */
