* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #ffffff;
  text-decoration: none;
}

p {
  color: #ffffff;
  margin: 0;
  font-weight: 100;
}

.playfair-display-light {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inknut-antiqua-light {
  font-family: "Inknut Antiqua", serif;
  font-weight: 300;
  font-style: normal;
}

.inknut-antiqua-regular {
  font-family: "Inknut Antiqua", serif;
  font-weight: 400;
  font-style: normal;
}

.inknut-antiqua-medium {
  font-family: "Inknut Antiqua", serif;
  font-weight: 500;
  font-style: normal;
}

.inknut-antiqua-semibold {
  font-family: "Inknut Antiqua", serif;
  font-weight: 600;
  font-style: normal;
}

.inknut-antiqua-bold {
  font-family: "Inknut Antiqua", serif;
  font-weight: 700;
  font-style: normal;
}

.inknut-antiqua-extrabold {
  font-family: "Inknut Antiqua", serif;
  font-weight: 800;
  font-style: normal;
}

.inknut-antiqua-black {
  font-family: "Inknut Antiqua", serif;
  font-weight: 900;
  font-style: normal;
}

body {
  font-family: "times new roman", serif;
  background-color: #000000;
  background-image: url("./images/bg-lines.jpg");
  background-position: center top 90vh;
  background-size: contain;
  background-repeat: repeat;
  color: #fff;
  -webkit-animation: bg-page 10s ease-out infinite alternate-reverse both;
  animation: bg-page 10s ease-out infinite alternate-reverse both;
}

header.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 30px 0 10px 0;
  background: linear-gradient(to bottom,  rgba(0,0,0,0.86) 0%,rgba(0,0,0,0) 100%);
}

header.fixed-header .open-menu,
header.fixed-header .close-menu {
  background: #000000;
  border: 0;
  color: #ffffff;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  margin-right: 4px;
}

header.fixed-header.sticky {
  background: hsla(0, 0%, 0%, 0.7) !important;
  padding: 10px 0 10px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.6s;
}

header.fixed-header .logo-full {
  width: 141px;
  display: block;
}

header.fixed-header .logo-sticky {
  width: 50px;
  display: none;
}

header.fixed-header.sticky .logo-full {
  display: none;
}

header.fixed-header.sticky .logo-sticky {
  display: block;
}

.logo {
  text-align: center;
}

nav {
  padding: 8px 0;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  transition: all 0.6s;
  font-size: 1rem;
  padding: 5px 10px;
}

nav ul li a:hover {
  color: #efb643;
}

nav ul li a.active {
  border-bottom: 2px solid #efb643;
}

nav ul .contact-link-li {
  background: #efb643;
}

nav ul .contact-link-li .contact-link {
  color: #000000;
}

nav ul li .language {
  background: #000000;
  border: 0;
  padding: 5px 5px;
  color: #ffffff;
  width: 100%;
}

.language {
  position: relative;
}

.language .language-toggle {
  font-family: "times new roman", serif;
  background: transparent;
  border: 0;
  color: #ffffff;
  border: 1px solid #efb643;
  padding: 5px 10px;
}

.language .language-toggle:focus {
  outline: 0;
  outline: 0;
}

.language .language-menu {
  font-family: "times new roman", serif;
  position: absolute;
  z-index: 889;
  opacity: 0;
  transition: all 0.6s;
  list-style: none;
  background: #000000;
  width: 90px;
  top: 33px;
  right: 0;
  padding: 5px 3px;
  display: flex;
  flex-direction: column;
}

.language .language-menu li {
  margin-left: 0 !important;
}

.language .language-menu .language-item {
  text-decoration: none;
  color: #ffffff;
  padding: 10px;
  transition: all 0.6s;
}
.language .language-menu .language-item:hover {
  color: #efb643;
}

.language:hover {
  height: auto;
}

.language:hover .language-menu {
  opacity: 1;
}

@media (max-width: 768px) {
  nav {
    display: none;
    background: #000000;
    width: calc(100% - 30px);
    position: absolute;
    right: 15px;
  }

  nav ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 20px;
  }

  nav ul li {
    margin-left: 0;
    width: 100%;
    text-align: right;
  }

  nav ul li a {
    font-size: 24px;
    padding: 20px 10px;
    width: 100%;
    text-align: right;
  }

  .language {
    position: relative;
    margin-top: 10px;
  }
}

.section-page.home {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.section-page.home img {
  width: 100%;
  min-height: 100vh;
  object-fit: cover;
  -webkit-animation: kenburns-top 15s ease-out infinite alternate-reverse both;
  animation: kenburns-top 15s ease-out infinite alternate-reverse both;
}

.section-page.home::before {
  position: absolute;
  top: 0;
  right: 3%;
  width: 7%;
  height: 3px;
  background: #efb643;
  content: "";
  z-index: 120;
}

.section-page.home::after {
  position: absolute;
  top: 0;
  right: 3%;
  width: 1px;
  height: 100vh;
  background: #ffffff;
  content: "";
  opacity: 0.6;
  z-index: 120;
}

.service {
  width: 100%;
  padding: 30px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
  margin-top: -30px;
  margin-bottom: 20px;
  transition: all 0.6s;
  position: relative;
  z-index: 100;
}

.service:hover {
  margin-top: -50px;
}

@media (max-width: 768px) {
  .service {
    margin-bottom: 50px;
  }

  .service:hover {
    margin-top: -30px;
  }
}

.service a {
  color: #ffffff;
  text-decoration: none;
}

.service h2 {
  color: #efb643;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.service.family-office {
  background: #161616;
}

.service.foundation {
  background: #222222;
}

.section-page.about-us {
  padding: 50px 0;
}

.section-page .inner-about-us {
  width: 100%;
  background-image: url("./images/img-about-us.jpg");
  background-position: center right;
  background-size: 416px;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .section-page .inner-about-us {
    background-position: center 50px;
    background-size: 93%;
    background-repeat: no-repeat;
    padding-right: 30px;
  }
}

.section-page.about-us h1 {
  font-size: 40px;
  color: #efb643;
  margin-bottom: 20px;
}

.section-page.about-us h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.section-page.about-us .sobre-frbb {
  font-size: 24px;
  margin-bottom: 50px;
}

.section-page.about-us .line-about {
  height: 100%;
  width: 1px;
  background: #efb643;
}

@media (max-width: 768px) {
  .section-page.about-us .line-about {
    width: 100%;
    height: 1px;
    margin: 40px 0;
  }
}

.section-page.family-office {
  padding: 50px 0;
}

.section-page .inner-family-office {
  width: 100%;
  /* background-image: url("./images/img-investments.jpg");
  background-position: center left;
  background-size: 48%;
  background-repeat: no-repeat; */
}

.section-page.family-office .slide-family-office {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-height: 600px;
  height: 100%;
}

.section-page.family-office .slide-family-office img {
  object-fit: cover;
  min-width: 100%;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-page .slick-slide {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
}

.slick-arrow {
  position: absolute;
  z-index: 2000;
  color: transparent;
  border: 0;
  background: #000;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  justify-items: center;
  align-items: center;
  cursor: pointer;
}

.slick-prev {
  left: 20px;
}

.slick-prev::before {
  content: "\276E";
  color: #fff;
  font-size: 24px;
  position: relative;
  right: -14px;
}

.slick-next {
  right: 20px;
}

.slick-next::before {
  content: "\276F";
  position: relative;
  font-size: 24px;
  left: 14px;
  color: #fff;
}

@media (max-width: 768px) {
  .section-page .inner-family-office {
    background-position: center 80px;
    background-size: 93%;
    background-repeat: no-repeat;
  }

  .section-page .inner-family-office .rectangle-incestment {
    width: 20%;
    position: absolute;
    z-index: 200;
    left: 10%;
    top: 50px;
  }
}

.section-page.foundation {
  padding: 50px 0;
}

.section-page .inner-foundation {
  width: 100%;
  background-image: url("./images/home_frbb_laterial_foundation.png");
  background-position: center right -32%;
  background-size: 50%;
  background-repeat: no-repeat;
}


.section-page .inner-foundation2 {
  width: 100%;
  /* background-image: url("./images/home_frbb_laterial_foundation2.png");
  background-position: center left -23%;
  background-size: 50%;
  background-repeat: no-repeat; */
}

@media (max-width: 768px) {
  .section-page .inner-foundation {
    background-position: center 0px;
    background-size: 93%;
    background-repeat: no-repeat;
    padding: 100% 30px 0 0;
  }

  .section-page .inner-foundation2 {
    background-position: center 0px;
    background-size: 93%;
    background-repeat: no-repeat;
    padding: 100% 30px 0 0;
  }
}

.section-page.foundation a.button {
  background: #efb643;
  text-decoration: none;
  color: #000000;
  transition: all 0.6s;
  font-size: 1rem;
  padding: 5px 10px;
  margin: 50px 0;
}

.section-page.foundation h1 {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  color: #ffffff;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .section-page.foundation h1 {
    font-size: 52px;
  }
}

.section-page.foundation .rectangle-foundation {
  /* margin-left: -90px;
  margin-bottom: -10px; */
}

.section-page.family-office h4,
.section-page.foundation h4 {
  font-size: 24px;
  color: #efb643;
  margin-bottom: 20px;
}

.section-page.foundation h3 {
  font-size: 40px;
  color: #efb643;
  margin-bottom: 20px;
}

.section-page.family-office h2,
.section-page.foundation h2 {
  font-size: 40px;
  color: #ffffff;
}

.section-page.foundation .numbers p {
  color: #efb643;
  margin-bottom: 20px;
}

footer {
  background: hsla(0, 0%, 9%, 0.75);
  padding: 20px 0;
  border-bottom: 16px solid #fed482;
  margin-top: 50px;
}

footer .family-office-footer {
  border-right: 1px solid #efb643;
}

.section-page.instagram h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 30px;
}


.section-page.contact {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-page.contact {
    padding: 50px 0;
  }
}

.section-page.contact h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 30px;
}

.section-page.contact p span {
  color: #fed482;
}

.section-page.contact input,
.section-page.contact textarea {
  background: #000000;
  border: 0;
  padding: 20px 10px;
  border-bottom: 4px solid #efb643;
  color: #ffffff;
  width: 100%;
  margin-bottom: 10px;
}

.section-page.contact textarea {
  height: 100px;
}

.section-page.contact button {
  font-family: "times new roman", serif;
  font-size: 16px;
  background: #efb643;
  border: 0;
  text-decoration: none;
  color: #000000;
  transition: all 0.6s;
  font-size: 1rem;
  padding: 5px 10px;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .section-page.contact button {
    width: 100%;
  }
}

.slide-in-blurred-top {
  -webkit-animation: slide-in-blurred-top 0.6s cubic-bezier(0.23, 1, 0.32, 1)
    both;
  animation: slide-in-blurred-top 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@-webkit-keyframes slide-in-blurred-top {
  0% {
    -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
    transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
    transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slide-in-blurred-top {
  0% {
    -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
    transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
    transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

.slide-in-right {
  -webkit-animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
  -webkit-animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.kenburns-top {
  -webkit-animation: kenburns-top 10s ease-out infinite alternate-reverse both;
  animation: kenburns-top 10s ease-out infinite alternate-reverse both;
}

@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}
@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}

@-webkit-keyframes bg-page {
  0% {
    background-position: center top 20vh;
    background-size: 100%;
  }
  100% {
    background-position: center top 100vh;
    background-size: 130%;
  }
}
@keyframes bg-page {
  0% {
    background-position: center top 20vh;
    background-size: 100%;
  }
  100% {
    background-position: center top 100vh;
    background-size: 130%;
  }
}