:root {
  --body: #575756;
  --white: #fff;
  --primary: #EBEBEB;
  --secondary: #10312B;
  --grey: #929291;
  --green: #90ABA0;
}

/* remove blue focus on tap mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--body);
}

.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

.section-padding {
  padding: 55px 0px;
}

.section-padding-xl {
  padding: 90px 0px;
}

.padding-bottom-xl {
  padding-bottom: 90px;
}

.padding-top-xl {
  padding-top: 90px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 500;
  line-height: normal;
}

h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
}

h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
}

h3, .h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
}

h4, .h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
}

h5, .h5 {
  font-size: 21px;
}

h6, .h6 {
  font-size: 18px;
}

.txt-italic {
  font-style: italic;
}

.txt-body {
  color: var(--body);
}

.mb-40 {
  margin-bottom: 40px;
}

strong {
  font-weight: 600 !important;
}

a {
  text-decoration: none;
  color: var(--body);
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: var(--secondary);
}

#typed {
  text-transform: uppercase;
  display: inline-block;
}

.fade {
  transition: opacity 0.2s ease-in-out;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600 !important;
}

.f-inter {
  font-family: 'Inter', sans-serif !important;
}

.f-playfair {
  font-family: 'Playfair Display', serif !important;
}

.f-poppins {
  font-family: 'Poppins', sans-serif !important;
}

.bg-cream {
  background-color: var(--primary);
}

.bg-grey {
  background-color: var(--grey);
}

.bg-green {
  background-color: var(--green);
}

.h-viewport {
  height: 100vh;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: 0;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.arrow-cta {
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.arrow-cta.white {
  color: white;
}

.arrow-cta::before {
  content: '';
  position: relative;
  height: 2px;
  margin: 0px;
  width: 60px;
  background-color: var(--secondary);
  transition: all 0.2s ease-in-out;
  order: 2;
}

.arrow-cta.white::before {
  background-color: white;
}

.arrow-cta::after {
  content: url('../icons/arrow-green.svg');
  position: relative;
  margin-right: 15px;
  margin-left: -9px;
  height: 20px;
  order: 1;
  transform: translateY(8%);
}

.arrow-cta.white::after {
  content: url('../icons/arrow-white.svg');
}

.top-button {
  position: fixed;
  top: 550px;
  right: 15px;
  z-index: 100;
  height: 45px;
  width: 45px;
  border: none;
  background: rgba(15, 51, 44, 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-button img {
  transform: rotate(90deg);
}

.arrow-cta:hover::before {
  width: 80px;
  transition: all 0.2s ease-in-out;
}

.hero {
    min-height: 448px;
    padding: 266px 0px 153px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: flex-end;
}

.hero .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
  top: 0px;
  left: 0px;
}

.hero.with-title {
  padding: 266px 0px 82px;
}

.section-image {
  height: 580px;
  overflow: hidden;
}

.section-image.big {
  height: 630px;
  overflow: hidden;
}

.section-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.breadcrumb {
  color: white;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.breadcrumb a {
  color: white;
  transition: all 0.2s ease-in-out;
}

.breadcrumb.dark {
  color: var(--secondary);
}

.breadcrumb a:hover {
  color: white;
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}

.breadcrumb::before {
  content: url('../icons/arrow-breadcrumb.svg');
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.breadcrumb.dark::before {
  content: url('../icons/arrow-breadcrumb-dark.svg');
}

.breadcrumb.dark:hover {
  color: var(--secondary);
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}

.tips-listing:has(.section-not-found), .press-listing:has(.section-not-found) {
  position: static !important;
  height: fit-content !important;
}

.loader {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.414);
}

.loading {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: var(--green);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  z-index: 4;
  left: 46%;
  top: 45%;
}

.page-item.disabled {
  color: gray;
  pointer-events: none;
  cursor: not-allowed !important;
}

.pdf-link {
  border: 1px solid var(--secondary);
  padding: 15px 30px;
  width: fit-content;
  margin: 16px 0px;
}

.slider-atf .overlay {
  z-index: 1000;
}

.slider-atf .container {
  z-index: 1002;
}

.slider-atf .cta-linkedin {
  z-index: 1002;
}

@media screen and (min-width: 1321px) {
  .container.expanded {
    max-width: calc(100% - 80px) !important;
  }
}

@media screen and (min-width: 1400px) {
  .container.expanded {
    max-width: calc(100% - 240px) !important;
  }


}

@media screen and (min-width: 1700px) {
  .top-button{
    top: 720px;
  }
}

@media screen and (min-width: 992px) {
  .w-65 {
    width: 65%;
  }
}

@media screen and (max-width: 991px) {

  h1, .h1 {
    font-size: 38px;
  }

  h2, .h2 {
    font-size: 30px;
  }

  h3, .h3 {
    font-size: 24px;
  }

  h4, .h4 {
    font-size: 18px;
  }

  .section-padding-xl {
    padding: 70px 0px;
  }

  .section-padding {
    padding: 40px 0px;
  }

  .top-button {
    display: none;
  }
}

@media screen and (max-width: 768px) {

  .hero, .hero.with-title {
    min-height: 448px;
    padding: 266px 0px 40px !important;
  }

  .hero.projects {
    padding: 266px 0px 120px !important;
  }

  .section-image, .section-image.big {
    height: 350px;
  }
}