@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");
*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  font-size: 16px;
}

body {
  font-family: "Poppins", serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  height: 100%;
  color: #333333;
  background-color: #ededed;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 3vw;
}

a {
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-family: "Poppins", serif;
}

p {
  font-family: "Poppins", serif;
}

section {
  margin: 5rem 0;
}

.form-control {
  border-radius: 0px;
  padding: 8px 20px;
  border: 1px solid #dddddd;
  transition: all linear 0.2s;
  color: #333333;
}
.form-control:focus {
  border-color: #dddddd;
  box-shadow: 0 0 0 0.25rem rgba(182, 164, 138, 0.2509803922);
  transition: all linear 0.2s;
}
.form-control::-moz-placeholder {
  color: #666666;
}
.form-control::placeholder {
  color: #666666;
}
.form-control.form-check-input {
  padding: 0px !important;
  display: inline-block;
  margin-right: 0.35rem;
}
.form-control.form-check-input:checked {
  background-color: #b6a48a;
  border-color: #b6a48a;
}

.form-check-label a {
  color: #b6a48a;
}

.fyf-mt-3 {
  margin-top: 3rem;
}

.fyf-mt-4 {
  margin-top: 4rem;
}

.logoTitle {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 2.85rem;
  color: #ededed;
}

.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.flex-item-content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-column-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flex-column-2 > div {
  width: 50%;
}

.flex-column-4 {
  display: flex;
  flex-direction: row;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.flex-column-4 div {
  width: 25%;
  margin: 10px;
  height: 412px;
  border: 0px solid transparent;
  background-size: 100%;
  background-attachment: inherit;
  background-position: 50% 0%;
  transition: all linear 0.3s;
}
.flex-column-4 div:hover {
  transition: all linear 0.3s;
  background-size: 105%;
}
.flex-column-4 div:last-child {
  border: 1px solid rgba(255, 255, 255, 0.4196078431);
}
.flex-column-4 div:last-child h4 {
  text-align: center;
  text-transform: uppercase;
  font-size: 2.15rem;
  line-height: 50px;
  margin: 0;
  filter: none;
}

.row-reverse {
  flex-direction: row-reverse;
}

.flex-item-end {
  align-items: end;
  text-align: right;
}

.flex-item-start {
  align-items: start;
  text-align: left;
}

.flex-justify-start {
  justify-content: start;
}

.flex-video {
  position: relative;
  height: 100vh;
  min-height: 500px;
  z-index: 1;
  overflow: hidden;
}

.modal .modal-content {
  border-radius: 0;
}
.modal .modal-content .modal-header {
  position: absolute;
  height: 50px;
  width: 50px;
  right: 0;
  background-color: #ededed;
  border-radius: 0;
  border: none;
  z-index: 9;
}
.modal .modal-content .modal-header .modal-title {
  display: none;
}
.modal .modal-content .modal-header button.btn-close {
  width: 32px;
  height: 32px;
  position: relative;
  right: 4px;
}
.modal .modal-content .modal-body {
  background-color: #000000;
}
.modal .modal-content .modal-body iframe {
  width: 100%;
  height: 600px;
  aspect-ratio: 16/9;
}

footer {
  background-color: #b6a48a;
  padding: 1rem;
}
footer p {
  max-width: 1400px;
  text-align: left;
  color: #ffffff;
  margin: 0 auto;
  font-size: 0.875rem;
}

.navbar {
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  margin: 1%;
  border-radius: 50px;
  padding: 0.35rem 0.25rem;
  width: 112px;
  right: 0;
  transition: all linear 0.2s;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}
.navbar button {
  border: none;
  padding: 0;
}
.navbar button:focus {
  box-shadow: none;
}
.navbar .navbar-brand img {
  animation: filter 2s infinite alternate; /* Infinite animation with alternate direction */
}
@keyframes filter {
  0% {
    filter: invert(1);
  }
  100% {
    filter: invert(0);
  }
}
.navbar .navbar-nav {
  margin: 1rem 0;
}
.navbar .navbar-nav .nav-item {
  text-align: right;
}
.navbar .navbar-nav .nav-link {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 400;
  color: #334f64;
  display: inline-block;
  position: relative;
}
.navbar .navbar-nav .nav-link:hover::before {
  opacity: 1;
  transition: all linear 0.2s;
}
.navbar.scrolled {
  transition: all linear 0.1s;
  display: flex;
  height: auto;
  align-items: flex-start;
  box-shadow: 0px 5px 15px rgba(10, 10, 10, 0.1803921569);
}
.navbar.scrolled .navbar-brand {
  visibility: visible;
  height: auto;
  width: auto;
}
.navbar.scrolled.active {
  width: 250px;
  transition: all linear 0.1s;
  border-radius: 12px;
  height: auto;
  display: flex;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.8);
}
.navbar.scrolled.active .navbar-brand {
  visibility: visible;
  height: auto;
  width: auto;
}
.navbar.active {
  width: 250px;
  transition: all linear 0.1s;
  border-radius: 12px;
  height: auto;
  display: flex;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.8);
}
.navbar.active .navbar-brand {
  visibility: visible;
  height: auto;
  width: auto;
}
.navbar .navbar-togglerr {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar .navbar-toggler.collapsed span.icon-bar:nth-child(2) {
  transform: translateY(0) rotate(0);
}
.navbar .navbar-toggler.collapsed span.icon-bar:nth-child(3) {
  opacity: 1;
}
.navbar .navbar-toggler.collapsed span.icon-bar:nth-child(4) {
  transform: translateY(0) rotate(0);
}
.navbar .navbar-toggler span.icon-bar {
  transition: all 300ms;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #333;
  display: block;
}
.navbar .navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}
.navbar .navbar-toggler span.icon-bar:nth-child(2) {
  transform: translateY(300%) rotate(45deg);
}
.navbar .navbar-toggler span.icon-bar:nth-child(3) {
  opacity: 0;
}
.navbar .navbar-toggler span.icon-bar:nth-child(4) {
  transform: translateY(-300%) rotate(-45deg);
}

.loader {
  width: 100%;
  height: 100%;
  background-color: #325063;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.loader img {
  max-width: 250px;
  animation: pulse 7s infinite;
  transition: all linear;
}
.loader h5 {
  margin-top: 32px;
  color: #FFF;
  font-family: "Montserrat";
  margin-bottom: 0;
  font-size: 20px;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

ul.fyf_indicators {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  list-style-type: none;
  margin-right: 1%;
}
ul.fyf_indicators .fyf_indicator {
  position: relative;
  height: 6px;
  width: 6px;
  background-color: #333333;
  border-radius: 6px;
  padding: 5px;
  cursor: pointer;
  margin: 8px;
  filter: invert(1);
}
ul.fyf_indicators .fyf_indicator span {
  display: none; /* Hide the span initially */
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  padding: 0px 0px;
  text-align: right;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid #333;
  white-space: nowrap;
}
ul.fyf_indicators .fyf_indicator:hover span {
  display: inline-block; /* Show the span on hover */
}

.fyf-mt-3 {
  margin-top: 3rem;
}

.fyf-mb-1 {
  margin-bottom: 1rem !important;
}

.fyf_about_color .fyf-content-specific h1, .fyf_about_color .fyf-content-specific h5 {
  color: #334f64;
  font-family: "Playfair Display", serif;
}
.fyf_about_color .fyf-content-specific h4 {
  color: #b6a48a;
}

.flex-column-70 {
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
  .container {
    max-width: 100%;
  }
  .flex-column-4 div {
    background-size: cover;
  }
  .fyf_video-overlay h4 {
    font-size: 1rem !important;
    width: 100% !important;
    padding: 0 15px;
  }
  .fyf-content {
    margin: 75px 0;
  }
  .fyf-content h1 {
    font-size: 2rem;
  }
  .fyf-content p {
    font-size: 1rem !important;
    line-height: 32px !important;
  }
}
@media (max-width: 990px) {
  .fyf-hero h1 .on-des:before, .fyf-hero h1 .on-des:after {
    display: none;
  }
  .fyf_video-overlay h1 {
    display: block;
  }
}
@media (max-width: 768px) {
  .navbar, .fyf_logo_moving img {
    margin: 4% 1.5% !important;
  }
  .fyf-4 .flex-column-2 > div {
    width: 100%;
    padding: 100px 50px !important;
  }
  .fyf-4 .flex-column-2 .flex-video {
    max-height: 450px;
  }
  .flex-column-4 {
    flex-wrap: wrap;
  }
  .flex-column-4 div {
    width: 47%;
  }
  .fyf-contact .flex-column-2 {
    flex-wrap: wrap;
  }
  .fyf-contact .flex-column-2 div {
    width: 100% !important;
  }
  .fyf-4 .flex-item-content-center.flex-item-end.p-4 {
    align-items: flex-start;
    text-align: left;
  }
  .flex-highlighter-figure {
    min-width: 50px !important;
  }
  .fyf-content h1 {
    font-size: 1.85rem;
  }
}
@media (max-width: 768px) {
  .fyf-content {
    margin: 50px 0px !important;
  }
  .fyf-content a {
    font-size: 1.15rem !important;
    padding: 10px 35px !important;
  }
  .flex-column-4 {
    flex-wrap: wrap;
  }
  .flex-column-4 div {
    width: 100%;
  }
  .fyf-4 h2 {
    font-size: 1.85rem !important;
    margin-bottom: 20px !important;
  }
  .fyf_logo_moving img {
    display: none;
  }
  .on-des {
    display: none !important;
  }
  .fyf_video-overlay h1 {
    display: block !important;
  }
  .logoTitle {
    font-size: 2.5rem;
  }
  .fyf-contact {
    padding: 0rem 0rem !important;
  }
  .fyf-content-specific {
    padding: 50px 0px !important;
  }
  .flex-column-70 {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .fyf-hero h1 {
    font-size: 5vw !important;
    padding-top: 23% !important;
  }
  .flex-column-70 {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .logoTitle {
    font-size: 2rem;
  }
  .fyf-hero.fyf-sub h1 {
    font-size: 1.5rem !important;
  }
  .fyf-content-specific h1 {
    font-size: 1.85rem !important;
    margin-bottom: 2rem !important;
    word-wrap: break-word;
  }
  .fyf-testimonials h2 {
    font-size: 1.85rem !important;
  }
  .fyf-testimonials .testimonial-slider .slick-slide {
    height: 525px !important;
  }
  .fyf-content-specific h4 {
    font-size: 1.25rem !important;
  }
  .artist-sec {
    flex-direction: column !important;
  }
  .artist-sec .artist-fig {
    width: 100% !important;
    margin-bottom: 24px;
  }
}
.fyf-hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  flex-direction: column;
}
.fyf-hero h1 {
  font-size: 3vw;
  font-weight: 300;
  color: #FFF;
  position: absolute;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-top: 13%;
  font-family: "Montserrat", serif;
}
.fyf-hero div {
  height: 100%;
  position: relative;
  padding: 0;
}
.fyf-hero div .fyf_logo_moving img {
  margin: 1%;
  border-radius: 5px;
  height: 75px;
}
.fyf-hero div .fyf_video-overlay {
  bottom: 50px;
  height: auto !important;
  width: 100%;
  z-index: 999;
  left: 0;
  position: absolute !important;
  color: #FFF;
  margin: 0 auto;
  display: block;
}
.fyf-hero div .fyf_video-overlay h1 {
  position: relative !important;
  display: none;
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}
.fyf-hero div .fyf_video-overlay h4 {
  font-weight: 400;
  text-align: center;
  font-size: 1.5vw;
  width: 50%;
  margin: 0 auto;
  line-height: inherit;
}
.fyf-hero div.video-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 5px;
  display: none; /* Initially hide controls */
}
.fyf-hero div.video-controls button {
  background-color: transparent;
  border: none;
  color: #fff;
  margin: 0 5px;
  cursor: pointer;
}
.fyf-hero.fyf-sub {
  height: auto;
  background-color: #334f64;
  min-height: auto;
  padding: 50px 0px;
}
.fyf-hero.fyf-sub div {
  height: 100%;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.fyf-hero.fyf-sub h1 {
  position: relative;
  font-family: "Playfair Display";
  font-size: 1.85rem;
  font-weight: 700;
  background: #fff;
  text-align: center;
  margin: 20px auto 0;
  z-index: 99;
  width: auto;
  text-transform: uppercase;
}
.fyf-hero.fyf-sub h1::before {
  position: absolute;
  content: "";
  height: 1.25px;
  width: 55%;
  background-color: #ffffff;
  top: 51%;
  left: -60%;
}
.fyf-hero.fyf-sub h1::after {
  position: absolute;
  content: "";
  height: 1.25px;
  width: 55%;
  background-color: #ffffff;
  top: 51%;
  right: -60%;
}

video {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 105%;
  height: 105%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  outline: none;
}

.document_download {
  margin-top: 30px;
}
.document_download h5 {
  font-weight: 600;
  color: #325063;
  font-family: "Playfair Display", serif;
}
.document_download a {
  color: #b6a48a;
  margin-bottom: 5px;
  text-decoration: underline;
}

.fyf-content {
  margin: 15vh 0;
}
.fyf-content h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #325063;
}
.fyf-content p {
  text-align: center;
  font-size: 1.5rem;
  line-height: 48px;
  margin-bottom: 30px;
  max-width: 1312px;
}
.fyf-content a {
  font-weight: 600;
  color: #ffffff;
  background-color: #b6a48a;
  font-size: 1.5rem;
  padding: 10px 60px;
  border-radius: 24px;
}

.fyf-bg-1 {
  background-color: #898d74;
}

.fyf-bg-2 {
  background-color: #334f64;
}

.fyf-4 {
  color: #ffffff;
}
.fyf-4 h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.fyf-4 p {
  font-size: 1.125rem;
  width: 75%;
}
.fyf-4 a {
  background: rgb(211, 251, 251);
  background: linear-gradient(90deg, rgb(211, 251, 251) 0%, rgb(251, 221, 151) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  font-family: "Poppins", serif;
}
.fyf-4 a:hover {
  animation-name: glow;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.fyf-4 a img.a-link {
  margin-right: 0.25rem;
  height: 18px;
}
@keyframes glow {
  from {
    text-shadow: 0px 0px 5px rgb(211, 251, 251), 0px 0px 5px rgb(251, 221, 151);
  }
  to {
    text-shadow: 0px 0px 20px rgb(211, 251, 251), 0px 0px 20px rgb(251, 221, 151);
  }
}

.fyf-testimonials {
  background-color: #898d74;
  padding: 5rem 0 7.5rem;
  position: relative;
}
.fyf-testimonials::after {
  position: absolute;
  width: 100%;
  height: 165px;
  content: "";
  left: 0;
  background-image: url(/assets/images/fyf_effect.png);
  background-size: cover;
  background-repeat: no-repeat;
  bottom: -120px;
}
.fyf-testimonials h2 {
  font-size: 2.5rem;
  color: #FFF;
  text-align: center;
  width: 100%;
  max-width: 850px;
  margin: 0 auto 40px;
}
.fyf-testimonials h4 {
  color: #ffffff;
  font-size: 1.5rem !important;
  font-weight: 500 !important;
  display: flex;
  height: auto;
  align-items: flex-end;
  justify-content: end;
  margin-bottom: 0px;
  line-height: normal !important;
  background-color: #000;
  width: 100%;
  padding: 2px 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.fyf-testimonials p {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 400;
  align-items: flex-end;
  background-color: #000;
  padding: 2px 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 100%;
  text-align: right;
}
.fyf-testimonials .btn {
  bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: 400;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 6px 24px;
  line-height: normal;
  font-style: normal;
  color: #ffffff;
  transition: all linear 0.2s;
}
.fyf-testimonials .btn:hover {
  background-color: #b6a48a;
  color: #ffffff;
  border: 1px solid #b6a48a;
  transition: all linear 0.2s;
}
.fyf-testimonials .testimonial-slider {
  max-width: 1440px;
  display: block;
  margin: 0 auto;
}
.fyf-testimonials .testimonial-slider .slick-slide {
  height: 512px;
  margin: 0 10px;
  padding: 15px 10px;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.fyf-testimonials .slick-arrow {
  display: none !important;
}
.fyf-testimonials .slick-dots {
  bottom: -35px;
}
.fyf-testimonials .slick-dots li button:before {
  font-size: 30px;
}

.fyf-contact {
  position: relative;
  padding: 5rem 0;
  margin: 5rem 0 1rem;
}
.fyf-contact .flex-column-2 {
  max-width: 1400px;
  margin: 0 auto;
}
.fyf-contact .flex-column-2 > div:first-child {
  width: 40%;
}
.fyf-contact .flex-column-2 > div:last-child {
  width: 60%;
}
.fyf-contact h3 {
  font-size: 2rem;
  color: #325063;
  margin-bottom: 1rem;
}
.fyf-contact p {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 1rem;
}
.fyf-contact p a {
  font-size: 1.125rem;
  color: #b6a48a;
  font-weight: 700;
  display: inline;
}
.fyf-contact .btn-submit {
  border: none;
  background-color: #b6a48a;
  color: #ffffff;
  font-size: 1.125rem;
  padding: 8px 20px;
  border-radius: 16px;
}

.youtube-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#fyf_video {
  display: none;
}

.text-left {
  text-align: left !important;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  padding-left: 0%;
  padding-right: 0%;
}
.video-container:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: transparent;
  z-index: 1;
  display: block;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.25);
}
.video-container .playButton {
  position: absolute;
  height: 95px;
  width: 95px;
  background-color: #334f64;
  display: block;
  z-index: 1;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}

.inner-content h1 {
  text-align: left;
  font-size: 2.75rem;
}
.inner-content h1 span {
  font-weight: 400;
  font-size: 75%;
}
.inner-content > p {
  margin-top: 0.75rem;
}
.inner-content h3 {
  font-family: "Poppins", serif;
  font-size: 1.5rem;
}
.inner-content p {
  text-align: left;
  font-size: 1.25rem;
  line-height: normal;
  max-width: 100%;
}

.thumb-content .thumb-list {
  flex-direction: row;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  margin-bottom: 2rem;
}
.thumb-content .thumb-fig img {
  height: 60px;
}
.thumb-content .thumb-context h5 {
  margin-bottom: 0rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.thumb-content .thumb-context p {
  margin-bottom: 0px;
  font-size: 1rem;
}

.fyf-content-specific {
  background-color: #ffffff;
  margin: 0 0;
  padding: 5rem 0;
}
.fyf-content-specific h1 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 400;
}
.fyf-content-specific h4 {
  font-size: 1.5rem;
  font-weight: 600;
}
.fyf-content-specific h6 {
  font-family: "Poppins", serif;
  font-size: 1.15rem;
  font-weight: 600;
}
.fyf-content-specific p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 2rem;
}
.fyf-content-specific p:last-child {
  margin-bottom: 0;
}
.fyf-content-specific .artist-fig {
  width: 40%;
}
.fyf-content-specific .artist-fig img {
  border-radius: 20px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
}
.fyf-content-specific.fyf-content-specific-bg-1 {
  background-color: #e1f2ff;
}
.fyf-content-specific.fyf-content-specific-bg-1 h1 {
  margin-bottom: 0.85rem;
  color: #334f64;
}
.fyf-content-specific.fyf-content-specific-bg-1 p {
  margin-bottom: 3rem;
  color: #334f64;
}
.fyf-content-specific.fyf-content-specific-bg-1 p.fyf-p-highlighter {
  color: #b5a389;
}
.fyf-content-specific.fyf-content-specific-clr-2 h1 {
  color: #898d74;
}
.fyf-content-specific.fyf-content-specific-clr-2 .by-bold {
  font-weight: 500;
  color: #898d74;
  text-align: right;
}
.fyf-content-specific.fyf-content-specific-bg-2 {
  background-color: #eaeae6;
}
.fyf-content-specific.fyf-content-specific-bg-3 {
  background-color: #fff6e8;
}
.fyf-content-specific .fyf_terms h4 {
  color: #898d74;
  font-size: 1.35rem;
}
.fyf-content-specific .fyf_terms p {
  line-height: 32px;
}
.fyf-content-specific.fyf-content-specific-bg-6 {
  background-color: #f3f3f1;
}
.fyf-content-specific.fyf-content-specific-bg-6 h4 {
  color: #bdad95;
}
.fyf-content-specific.fyf-content-specific-bg-6 h6 {
  color: #bdad95;
}

.flex-highlighter {
  display: flex;
  flex-wrap: wrap;
  row-gap: 3rem;
}
.flex-highlighter .flex-highlighter-item {
  width: 50%;
  display: flex;
}
.flex-highlighter .flex-highlighter-content {
  display: flex;
  flex-direction: column;
  padding: 0rem 1rem;
}
.flex-highlighter .flex-highlighter-content h5 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.flex-highlighter .flex-highlighter-content p {
  margin-bottom: 0px;
  max-width: 85%;
}
.flex-highlighter.flex-highlighter-2 {
  row-gap: 2rem;
  margin: 2rem 0;
}
.flex-highlighter.flex-highlighter-2 .flex-highlighter-content {
  padding: 0;
}
@media (max-width: 990px) {
  .flex-highlighter .flex-highlighter-item img {
    width: 80px;
  }
}
@media (max-width: 768px) {
  .flex-highlighter .flex-highlighter-item {
    width: 100%;
  }
  .flex-highlighter .flex-highlighter-item img {
    width: 50px;
  }
  .flex-highlighter .flex-highlighter-item .flex-highlighter-content p {
    width: 100%;
    max-width: 100%;
  }
}

.fyf_process .fyf-content-specific h1 {
  position: relative;
  padding-left: 32px;
  color: #334f64;
}
.fyf_process .fyf-content-specific h1:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 24px;
  background-image: url("/assets/images/fyf_process_h.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.fyf_process .fyf-content-specific h5 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-family: "Playfair Display", serif;
}
.fyf_process .fyf-content-specific h6 {
  margin-bottom: 0;
}
.fyf_process .fyf-content-specific h5, .fyf_process .fyf-content-specific h6 {
  position: relative;
}
.fyf_process .fyf-content-specific .flex-highlighter-h6 h6:before {
  display: none;
}
.fyf_process .fyf-content-specific a {
  color: #b6a48a;
}

.breadcrumb-section {
  padding-top: 20px;
  padding-bottom: 20px;
}
.breadcrumb-section ol {
  margin-bottom: 0;
}
.breadcrumb-section ol a {
  color: #b6a48a;
}

.fyf-email {
  color: #b6a48a;
}

.flex-highlighter-figure {
  min-width: 100px;
}/*# sourceMappingURL=main.css.map */